dbus_new_handlers.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  1. /*
  2. * WPA Supplicant / dbus-based control interface
  3. * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
  4. * Copyright (c) 2009-2010, Witold Sowa <witold.sowa@gmail.com>
  5. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #include "includes.h"
  17. #include "common.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "eap_peer/eap_methods.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "rsn_supp/wpa.h"
  22. #include "../config.h"
  23. #include "../wpa_supplicant_i.h"
  24. #include "../driver_i.h"
  25. #include "../notify.h"
  26. #include "../wpas_glue.h"
  27. #include "../bss.h"
  28. #include "../scan.h"
  29. #include "dbus_new_helpers.h"
  30. #include "dbus_new.h"
  31. #include "dbus_new_handlers.h"
  32. #include "dbus_dict_helpers.h"
  33. extern int wpa_debug_level;
  34. extern int wpa_debug_show_keys;
  35. extern int wpa_debug_timestamp;
  36. static const char *debug_strings[] = {
  37. "msgdump", "debug", "info", "warning", "error", NULL
  38. };
  39. /**
  40. * wpas_dbus_new_decompose_object_path - Decompose an interface object path into parts
  41. * @path: The dbus object path
  42. * @network: (out) the configured network this object path refers to, if any
  43. * @bssid: (out) the scanned bssid this object path refers to, if any
  44. * Returns: The object path of the network interface this path refers to
  45. *
  46. * For a given object path, decomposes the object path into object id, network,
  47. * and BSSID parts, if those parts exist.
  48. */
  49. static char * wpas_dbus_new_decompose_object_path(const char *path,
  50. char **network,
  51. char **bssid)
  52. {
  53. const unsigned int dev_path_prefix_len =
  54. strlen(WPAS_DBUS_NEW_PATH_INTERFACES "/");
  55. char *obj_path_only;
  56. char *next_sep;
  57. /* Be a bit paranoid about path */
  58. if (!path || os_strncmp(path, WPAS_DBUS_NEW_PATH_INTERFACES "/",
  59. dev_path_prefix_len))
  60. return NULL;
  61. /* Ensure there's something at the end of the path */
  62. if ((path + dev_path_prefix_len)[0] == '\0')
  63. return NULL;
  64. obj_path_only = os_strdup(path);
  65. if (obj_path_only == NULL)
  66. return NULL;
  67. next_sep = os_strchr(obj_path_only + dev_path_prefix_len, '/');
  68. if (next_sep != NULL) {
  69. const char *net_part = os_strstr(
  70. next_sep, WPAS_DBUS_NEW_NETWORKS_PART "/");
  71. const char *bssid_part = os_strstr(
  72. next_sep, WPAS_DBUS_NEW_BSSIDS_PART "/");
  73. if (network && net_part) {
  74. /* Deal with a request for a configured network */
  75. const char *net_name = net_part +
  76. os_strlen(WPAS_DBUS_NEW_NETWORKS_PART "/");
  77. *network = NULL;
  78. if (os_strlen(net_name))
  79. *network = os_strdup(net_name);
  80. } else if (bssid && bssid_part) {
  81. /* Deal with a request for a scanned BSSID */
  82. const char *bssid_name = bssid_part +
  83. os_strlen(WPAS_DBUS_NEW_BSSIDS_PART "/");
  84. if (strlen(bssid_name))
  85. *bssid = os_strdup(bssid_name);
  86. else
  87. *bssid = NULL;
  88. }
  89. /* Cut off interface object path before "/" */
  90. *next_sep = '\0';
  91. }
  92. return obj_path_only;
  93. }
  94. /**
  95. * wpas_dbus_error_unknown_error - Return a new InvalidArgs error message
  96. * @message: Pointer to incoming dbus message this error refers to
  97. * @arg: Optional string appended to error message
  98. * Returns: a dbus error message
  99. *
  100. * Convenience function to create and return an UnknownError
  101. */
  102. DBusMessage * wpas_dbus_error_unknown_error(DBusMessage *message,
  103. const char *arg)
  104. {
  105. return dbus_message_new_error(message, WPAS_DBUS_ERROR_UNKNOWN_ERROR,
  106. arg);
  107. }
  108. /**
  109. * wpas_dbus_error_iface_unknown - Return a new invalid interface error message
  110. * @message: Pointer to incoming dbus message this error refers to
  111. * Returns: A dbus error message
  112. *
  113. * Convenience function to create and return an invalid interface error
  114. */
  115. static DBusMessage * wpas_dbus_error_iface_unknown(DBusMessage *message)
  116. {
  117. return dbus_message_new_error(message, WPAS_DBUS_ERROR_IFACE_UNKNOWN,
  118. "wpa_supplicant knows nothing about "
  119. "this interface.");
  120. }
  121. /**
  122. * wpas_dbus_error_network_unknown - Return a new NetworkUnknown error message
  123. * @message: Pointer to incoming dbus message this error refers to
  124. * Returns: a dbus error message
  125. *
  126. * Convenience function to create and return an invalid network error
  127. */
  128. static DBusMessage * wpas_dbus_error_network_unknown(DBusMessage *message)
  129. {
  130. return dbus_message_new_error(message, WPAS_DBUS_ERROR_NETWORK_UNKNOWN,
  131. "There is no such a network in this "
  132. "interface.");
  133. }
  134. /**
  135. * wpas_dbus_error_invalid_args - Return a new InvalidArgs error message
  136. * @message: Pointer to incoming dbus message this error refers to
  137. * Returns: a dbus error message
  138. *
  139. * Convenience function to create and return an invalid options error
  140. */
  141. DBusMessage * wpas_dbus_error_invalid_args(DBusMessage *message,
  142. const char *arg)
  143. {
  144. DBusMessage *reply;
  145. reply = dbus_message_new_error(message, WPAS_DBUS_ERROR_INVALID_ARGS,
  146. "Did not receive correct message "
  147. "arguments.");
  148. if (arg != NULL)
  149. dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg,
  150. DBUS_TYPE_INVALID);
  151. return reply;
  152. }
  153. static const char *dont_quote[] = {
  154. "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap",
  155. "opensc_engine_path", "pkcs11_engine_path", "pkcs11_module_path",
  156. "bssid", NULL
  157. };
  158. static dbus_bool_t should_quote_opt(const char *key)
  159. {
  160. int i = 0;
  161. while (dont_quote[i] != NULL) {
  162. if (os_strcmp(key, dont_quote[i]) == 0)
  163. return FALSE;
  164. i++;
  165. }
  166. return TRUE;
  167. }
  168. /**
  169. * get_iface_by_dbus_path - Get a new network interface
  170. * @global: Pointer to global data from wpa_supplicant_init()
  171. * @path: Pointer to a dbus object path representing an interface
  172. * Returns: Pointer to the interface or %NULL if not found
  173. */
  174. static struct wpa_supplicant * get_iface_by_dbus_path(
  175. struct wpa_global *global, const char *path)
  176. {
  177. struct wpa_supplicant *wpa_s;
  178. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  179. if (os_strcmp(wpa_s->dbus_new_path, path) == 0)
  180. return wpa_s;
  181. }
  182. return NULL;
  183. }
  184. /**
  185. * set_network_properties - Set properties of a configured network
  186. * @message: Pointer to incoming dbus message
  187. * @wpa_s: wpa_supplicant structure for a network interface
  188. * @ssid: wpa_ssid structure for a configured network
  189. * @iter: DBus message iterator containing dictionary of network
  190. * properties to set.
  191. * Returns: NULL when succeed or DBus error on failure
  192. *
  193. * Sets network configuration with parameters given id DBus dictionary
  194. */
  195. static DBusMessage * set_network_properties(DBusMessage *message,
  196. struct wpa_supplicant *wpa_s,
  197. struct wpa_ssid *ssid,
  198. DBusMessageIter *iter)
  199. {
  200. struct wpa_dbus_dict_entry entry = { .type = DBUS_TYPE_STRING };
  201. DBusMessage *reply = NULL;
  202. DBusMessageIter iter_dict;
  203. if (!wpa_dbus_dict_open_read(iter, &iter_dict))
  204. return wpas_dbus_error_invalid_args(message, NULL);
  205. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  206. char *value = NULL;
  207. size_t size = 50;
  208. int ret;
  209. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry)) {
  210. reply = wpas_dbus_error_invalid_args(message, NULL);
  211. break;
  212. }
  213. if (entry.type == DBUS_TYPE_ARRAY &&
  214. entry.array_type == DBUS_TYPE_BYTE) {
  215. if (entry.array_len <= 0)
  216. goto error;
  217. size = entry.array_len * 2 + 1;
  218. value = os_zalloc(size);
  219. if (value == NULL)
  220. goto error;
  221. ret = wpa_snprintf_hex(value, size,
  222. (u8 *) entry.bytearray_value,
  223. entry.array_len);
  224. if (ret <= 0)
  225. goto error;
  226. } else if (entry.type == DBUS_TYPE_STRING) {
  227. if (should_quote_opt(entry.key)) {
  228. size = os_strlen(entry.str_value);
  229. if (size <= 0)
  230. goto error;
  231. size += 3;
  232. value = os_zalloc(size);
  233. if (value == NULL)
  234. goto error;
  235. ret = os_snprintf(value, size, "\"%s\"",
  236. entry.str_value);
  237. if (ret < 0 || (size_t) ret != (size - 1))
  238. goto error;
  239. } else {
  240. value = os_strdup(entry.str_value);
  241. if (value == NULL)
  242. goto error;
  243. }
  244. } else if (entry.type == DBUS_TYPE_UINT32) {
  245. value = os_zalloc(size);
  246. if (value == NULL)
  247. goto error;
  248. ret = os_snprintf(value, size, "%u",
  249. entry.uint32_value);
  250. if (ret <= 0)
  251. goto error;
  252. } else if (entry.type == DBUS_TYPE_INT32) {
  253. value = os_zalloc(size);
  254. if (value == NULL)
  255. goto error;
  256. ret = os_snprintf(value, size, "%d",
  257. entry.int32_value);
  258. if (ret <= 0)
  259. goto error;
  260. } else
  261. goto error;
  262. if (wpa_config_set(ssid, entry.key, value, 0) < 0)
  263. goto error;
  264. if ((os_strcmp(entry.key, "psk") == 0 &&
  265. value[0] == '"' && ssid->ssid_len) ||
  266. (strcmp(entry.key, "ssid") == 0 && ssid->passphrase))
  267. wpa_config_update_psk(ssid);
  268. else if (os_strcmp(entry.key, "priority") == 0)
  269. wpa_config_update_prio_list(wpa_s->conf);
  270. os_free(value);
  271. wpa_dbus_dict_entry_clear(&entry);
  272. continue;
  273. error:
  274. os_free(value);
  275. reply = wpas_dbus_error_invalid_args(message, entry.key);
  276. wpa_dbus_dict_entry_clear(&entry);
  277. break;
  278. }
  279. return reply;
  280. }
  281. /**
  282. * wpas_dbus_simple_property_getter - Get basic type property
  283. * @message: Pointer to incoming dbus message
  284. * @type: DBus type of property (must be basic type)
  285. * @val: pointer to place holding property value
  286. * Returns: The DBus message containing response for Properties.Get call
  287. * or DBus error message if error occurred.
  288. *
  289. * Generic getter for basic type properties. Type is required to be basic.
  290. */
  291. DBusMessage * wpas_dbus_simple_property_getter(DBusMessage *message,
  292. const int type, const void *val)
  293. {
  294. DBusMessage *reply = NULL;
  295. DBusMessageIter iter, variant_iter;
  296. if (!dbus_type_is_basic(type)) {
  297. wpa_printf(MSG_ERROR, "dbus: wpas_dbus_simple_property_getter:"
  298. " given type is not basic");
  299. return wpas_dbus_error_unknown_error(message, NULL);
  300. }
  301. if (message == NULL)
  302. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  303. else
  304. reply = dbus_message_new_method_return(message);
  305. if (reply != NULL) {
  306. dbus_message_iter_init_append(reply, &iter);
  307. if (!dbus_message_iter_open_container(
  308. &iter, DBUS_TYPE_VARIANT,
  309. wpa_dbus_type_as_string(type), &variant_iter) ||
  310. !dbus_message_iter_append_basic(&variant_iter, type,
  311. val) ||
  312. !dbus_message_iter_close_container(&iter, &variant_iter)) {
  313. wpa_printf(MSG_ERROR, "dbus: "
  314. "wpas_dbus_simple_property_getter: out of "
  315. "memory to put property value into "
  316. "message");
  317. dbus_message_unref(reply);
  318. reply = dbus_message_new_error(message,
  319. DBUS_ERROR_NO_MEMORY,
  320. NULL);
  321. }
  322. } else {
  323. wpa_printf(MSG_ERROR, "dbus: wpas_dbus_simple_property_getter:"
  324. " out of memory to return property value");
  325. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  326. NULL);
  327. }
  328. return reply;
  329. }
  330. /**
  331. * wpas_dbus_simple_property_setter - Set basic type property
  332. * @message: Pointer to incoming dbus message
  333. * @type: DBus type of property (must be basic type)
  334. * @val: pointer to place where value being set will be stored
  335. * Returns: NULL or DBus error message if error occurred.
  336. *
  337. * Generic setter for basic type properties. Type is required to be basic.
  338. */
  339. DBusMessage * wpas_dbus_simple_property_setter(DBusMessage *message,
  340. const int type, void *val)
  341. {
  342. DBusMessageIter iter, variant_iter;
  343. if (!dbus_type_is_basic(type)) {
  344. wpa_printf(MSG_ERROR, "dbus: wpas_dbus_simple_property_setter:"
  345. " given type is not basic");
  346. return wpas_dbus_error_unknown_error(message, NULL);
  347. }
  348. if (!dbus_message_iter_init(message, &iter)) {
  349. wpa_printf(MSG_ERROR, "dbus: wpas_dbus_simple_property_setter:"
  350. " out of memory to return scanning state");
  351. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  352. NULL);
  353. }
  354. /* omit first and second argument and get value from third */
  355. dbus_message_iter_next(&iter);
  356. dbus_message_iter_next(&iter);
  357. dbus_message_iter_recurse(&iter, &variant_iter);
  358. if (dbus_message_iter_get_arg_type(&variant_iter) != type) {
  359. wpa_printf(MSG_DEBUG, "dbus: wpas_dbus_simple_property_setter:"
  360. " wrong property type");
  361. return wpas_dbus_error_invalid_args(message,
  362. "wrong property type");
  363. }
  364. dbus_message_iter_get_basic(&variant_iter, val);
  365. return NULL;
  366. }
  367. /**
  368. * wpas_dbus_simple_array_property_getter - Get array type property
  369. * @message: Pointer to incoming dbus message
  370. * @type: DBus type of property array elements (must be basic type)
  371. * @array: pointer to array of elements to put into response message
  372. * @array_len: length of above array
  373. * Returns: The DBus message containing response for Properties.Get call
  374. * or DBus error message if error occurred.
  375. *
  376. * Generic getter for array type properties. Array elements type is
  377. * required to be basic.
  378. */
  379. DBusMessage * wpas_dbus_simple_array_property_getter(DBusMessage *message,
  380. const int type,
  381. const void *array,
  382. size_t array_len)
  383. {
  384. DBusMessage *reply = NULL;
  385. DBusMessageIter iter, variant_iter, array_iter;
  386. char type_str[] = "a?"; /* ? will be replaced with subtype letter; */
  387. const char *sub_type_str;
  388. size_t element_size, i;
  389. if (!dbus_type_is_basic(type)) {
  390. wpa_printf(MSG_ERROR, "dbus: "
  391. "wpas_dbus_simple_array_property_getter: given "
  392. "type is not basic");
  393. return wpas_dbus_error_unknown_error(message, NULL);
  394. }
  395. sub_type_str = wpa_dbus_type_as_string(type);
  396. type_str[1] = sub_type_str[0];
  397. if (message == NULL)
  398. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  399. else
  400. reply = dbus_message_new_method_return(message);
  401. if (reply == NULL) {
  402. wpa_printf(MSG_ERROR, "dbus: "
  403. "wpas_dbus_simple_array_property_getter: out of "
  404. "memory to create return message");
  405. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  406. NULL);
  407. }
  408. dbus_message_iter_init_append(reply, &iter);
  409. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  410. type_str, &variant_iter) ||
  411. !dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY,
  412. sub_type_str, &array_iter)) {
  413. wpa_printf(MSG_ERROR, "dbus: "
  414. "wpas_dbus_simple_array_property_getter: out of "
  415. "memory to open container");
  416. dbus_message_unref(reply);
  417. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  418. NULL);
  419. }
  420. switch(type) {
  421. case DBUS_TYPE_BYTE:
  422. case DBUS_TYPE_BOOLEAN:
  423. element_size = 1;
  424. break;
  425. case DBUS_TYPE_INT16:
  426. case DBUS_TYPE_UINT16:
  427. element_size = sizeof(uint16_t);
  428. break;
  429. case DBUS_TYPE_INT32:
  430. case DBUS_TYPE_UINT32:
  431. element_size = sizeof(uint32_t);
  432. break;
  433. case DBUS_TYPE_INT64:
  434. case DBUS_TYPE_UINT64:
  435. element_size = sizeof(uint64_t);
  436. break;
  437. case DBUS_TYPE_DOUBLE:
  438. element_size = sizeof(double);
  439. break;
  440. case DBUS_TYPE_STRING:
  441. case DBUS_TYPE_OBJECT_PATH:
  442. element_size = sizeof(char *);
  443. break;
  444. default:
  445. wpa_printf(MSG_ERROR, "dbus: "
  446. "wpas_dbus_simple_array_property_getter: "
  447. "fatal: unknown element type");
  448. element_size = 1;
  449. break;
  450. }
  451. for (i = 0; i < array_len; i++) {
  452. dbus_message_iter_append_basic(&array_iter, type,
  453. array + i * element_size);
  454. }
  455. if (!dbus_message_iter_close_container(&variant_iter, &array_iter) ||
  456. !dbus_message_iter_close_container(&iter, &variant_iter)) {
  457. wpa_printf(MSG_ERROR, "dbus: "
  458. "wpas_dbus_simple_array_property_getter: out of "
  459. "memory to close container");
  460. dbus_message_unref(reply);
  461. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  462. NULL);
  463. }
  464. return reply;
  465. }
  466. /**
  467. * wpas_dbus_handler_create_interface - Request registration of a network iface
  468. * @message: Pointer to incoming dbus message
  469. * @global: %wpa_supplicant global data structure
  470. * Returns: The object path of the new interface object,
  471. * or a dbus error message with more information
  472. *
  473. * Handler function for "CreateInterface" method call. Handles requests
  474. * by dbus clients to register a network interface that wpa_supplicant
  475. * will manage.
  476. */
  477. DBusMessage * wpas_dbus_handler_create_interface(DBusMessage *message,
  478. struct wpa_global *global)
  479. {
  480. DBusMessageIter iter_dict;
  481. DBusMessage *reply = NULL;
  482. DBusMessageIter iter;
  483. struct wpa_dbus_dict_entry entry;
  484. char *driver = NULL;
  485. char *ifname = NULL;
  486. char *bridge_ifname = NULL;
  487. dbus_message_iter_init(message, &iter);
  488. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  489. goto error;
  490. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  491. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  492. goto error;
  493. if (!strcmp(entry.key, "Driver") &&
  494. (entry.type == DBUS_TYPE_STRING)) {
  495. driver = os_strdup(entry.str_value);
  496. wpa_dbus_dict_entry_clear(&entry);
  497. if (driver == NULL)
  498. goto error;
  499. } else if (!strcmp(entry.key, "Ifname") &&
  500. (entry.type == DBUS_TYPE_STRING)) {
  501. ifname = os_strdup(entry.str_value);
  502. wpa_dbus_dict_entry_clear(&entry);
  503. if (ifname == NULL)
  504. goto error;
  505. } else if (!strcmp(entry.key, "BridgeIfname") &&
  506. (entry.type == DBUS_TYPE_STRING)) {
  507. bridge_ifname = os_strdup(entry.str_value);
  508. wpa_dbus_dict_entry_clear(&entry);
  509. if (bridge_ifname == NULL)
  510. goto error;
  511. } else {
  512. wpa_dbus_dict_entry_clear(&entry);
  513. goto error;
  514. }
  515. }
  516. if (ifname == NULL)
  517. goto error; /* Required Ifname argument missing */
  518. /*
  519. * Try to get the wpa_supplicant record for this iface, return
  520. * an error if we already control it.
  521. */
  522. if (wpa_supplicant_get_iface(global, ifname) != NULL) {
  523. reply = dbus_message_new_error(message,
  524. WPAS_DBUS_ERROR_IFACE_EXISTS,
  525. "wpa_supplicant already "
  526. "controls this interface.");
  527. } else {
  528. struct wpa_supplicant *wpa_s;
  529. struct wpa_interface iface;
  530. os_memset(&iface, 0, sizeof(iface));
  531. iface.driver = driver;
  532. iface.ifname = ifname;
  533. iface.bridge_ifname = bridge_ifname;
  534. /* Otherwise, have wpa_supplicant attach to it. */
  535. if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
  536. const char *path = wpa_s->dbus_new_path;
  537. reply = dbus_message_new_method_return(message);
  538. dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH,
  539. &path, DBUS_TYPE_INVALID);
  540. } else {
  541. reply = wpas_dbus_error_unknown_error(
  542. message, "wpa_supplicant couldn't grab this "
  543. "interface.");
  544. }
  545. }
  546. out:
  547. os_free(driver);
  548. os_free(ifname);
  549. os_free(bridge_ifname);
  550. return reply;
  551. error:
  552. reply = wpas_dbus_error_invalid_args(message, NULL);
  553. goto out;
  554. }
  555. /**
  556. * wpas_dbus_handler_remove_interface - Request deregistration of an interface
  557. * @message: Pointer to incoming dbus message
  558. * @global: wpa_supplicant global data structure
  559. * Returns: a dbus message containing a UINT32 indicating success (1) or
  560. * failure (0), or returns a dbus error message with more information
  561. *
  562. * Handler function for "removeInterface" method call. Handles requests
  563. * by dbus clients to deregister a network interface that wpa_supplicant
  564. * currently manages.
  565. */
  566. DBusMessage * wpas_dbus_handler_remove_interface(DBusMessage *message,
  567. struct wpa_global *global)
  568. {
  569. struct wpa_supplicant *wpa_s;
  570. char *path;
  571. DBusMessage *reply = NULL;
  572. dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
  573. DBUS_TYPE_INVALID);
  574. wpa_s = get_iface_by_dbus_path(global, path);
  575. if (wpa_s == NULL)
  576. reply = wpas_dbus_error_iface_unknown(message);
  577. else if (wpa_supplicant_remove_iface(global, wpa_s)) {
  578. reply = wpas_dbus_error_unknown_error(
  579. message, "wpa_supplicant couldn't remove this "
  580. "interface.");
  581. }
  582. return reply;
  583. }
  584. /**
  585. * wpas_dbus_handler_get_interface - Get the object path for an interface name
  586. * @message: Pointer to incoming dbus message
  587. * @global: %wpa_supplicant global data structure
  588. * Returns: The object path of the interface object,
  589. * or a dbus error message with more information
  590. *
  591. * Handler function for "getInterface" method call.
  592. */
  593. DBusMessage * wpas_dbus_handler_get_interface(DBusMessage *message,
  594. struct wpa_global *global)
  595. {
  596. DBusMessage *reply = NULL;
  597. const char *ifname;
  598. const char *path;
  599. struct wpa_supplicant *wpa_s;
  600. dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &ifname,
  601. DBUS_TYPE_INVALID);
  602. wpa_s = wpa_supplicant_get_iface(global, ifname);
  603. if (wpa_s == NULL)
  604. return wpas_dbus_error_iface_unknown(message);
  605. path = wpa_s->dbus_new_path;
  606. reply = dbus_message_new_method_return(message);
  607. if (reply == NULL)
  608. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  609. NULL);
  610. if (!dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH, &path,
  611. DBUS_TYPE_INVALID)) {
  612. dbus_message_unref(reply);
  613. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  614. NULL);
  615. }
  616. return reply;
  617. }
  618. /**
  619. * wpas_dbus_getter_debug_level - Get debug level
  620. * @message: Pointer to incoming dbus message
  621. * @global: %wpa_supplicant global data structure
  622. * Returns: DBus message with value of debug level
  623. *
  624. * Getter for "DebugLevel" property.
  625. */
  626. DBusMessage * wpas_dbus_getter_debug_level(DBusMessage *message,
  627. struct wpa_global *global)
  628. {
  629. const char *str;
  630. int idx = wpa_debug_level;
  631. if (idx < 0)
  632. idx = 0;
  633. if (idx > 4)
  634. idx = 4;
  635. str = debug_strings[idx];
  636. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  637. &str);
  638. }
  639. /**
  640. * wpas_dbus_getter_debug_timestamp - Get debug timestamp
  641. * @message: Pointer to incoming dbus message
  642. * @global: %wpa_supplicant global data structure
  643. * Returns: DBus message with value of debug timestamp
  644. *
  645. * Getter for "DebugTimestamp" property.
  646. */
  647. DBusMessage * wpas_dbus_getter_debug_timestamp(DBusMessage *message,
  648. struct wpa_global *global)
  649. {
  650. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
  651. &wpa_debug_timestamp);
  652. }
  653. /**
  654. * wpas_dbus_getter_debug_show_keys - Get debug show keys
  655. * @message: Pointer to incoming dbus message
  656. * @global: %wpa_supplicant global data structure
  657. * Returns: DBus message with value of debug show_keys
  658. *
  659. * Getter for "DebugShowKeys" property.
  660. */
  661. DBusMessage * wpas_dbus_getter_debug_show_keys(DBusMessage *message,
  662. struct wpa_global *global)
  663. {
  664. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
  665. &wpa_debug_show_keys);
  666. }
  667. /**
  668. * wpas_dbus_setter_debug_level - Set debug level
  669. * @message: Pointer to incoming dbus message
  670. * @global: %wpa_supplicant global data structure
  671. * Returns: %NULL or DBus error message
  672. *
  673. * Setter for "DebugLevel" property.
  674. */
  675. DBusMessage * wpas_dbus_setter_debug_level(DBusMessage *message,
  676. struct wpa_global *global)
  677. {
  678. DBusMessage *reply;
  679. const char *str = NULL;
  680. int i, val = -1;
  681. reply = wpas_dbus_simple_property_setter(message, DBUS_TYPE_STRING,
  682. &str);
  683. if (reply)
  684. return reply;
  685. for (i = 0; debug_strings[i]; i++)
  686. if (os_strcmp(debug_strings[i], str) == 0) {
  687. val = i;
  688. break;
  689. }
  690. if (val < 0 ||
  691. wpa_supplicant_set_debug_params(global, val, wpa_debug_timestamp,
  692. wpa_debug_show_keys)) {
  693. dbus_message_unref(reply);
  694. return wpas_dbus_error_invalid_args(
  695. message, "Wrong debug level value");
  696. }
  697. return NULL;
  698. }
  699. /**
  700. * wpas_dbus_setter_debug_timestamp - Set debug timestamp
  701. * @message: Pointer to incoming dbus message
  702. * @global: %wpa_supplicant global data structure
  703. * Returns: %NULL or DBus error message
  704. *
  705. * Setter for "DebugTimestamp" property.
  706. */
  707. DBusMessage * wpas_dbus_setter_debug_timestamp(DBusMessage *message,
  708. struct wpa_global *global)
  709. {
  710. DBusMessage *reply;
  711. dbus_bool_t val;
  712. reply = wpas_dbus_simple_property_setter(message, DBUS_TYPE_BOOLEAN,
  713. &val);
  714. if (reply)
  715. return reply;
  716. wpa_supplicant_set_debug_params(global, wpa_debug_level, val ? 1 : 0,
  717. wpa_debug_show_keys);
  718. return NULL;
  719. }
  720. /**
  721. * wpas_dbus_setter_debug_show_keys - Set debug show keys
  722. * @message: Pointer to incoming dbus message
  723. * @global: %wpa_supplicant global data structure
  724. * Returns: %NULL or DBus error message
  725. *
  726. * Setter for "DebugShowKeys" property.
  727. */
  728. DBusMessage * wpas_dbus_setter_debug_show_keys(DBusMessage *message,
  729. struct wpa_global *global)
  730. {
  731. DBusMessage *reply;
  732. dbus_bool_t val;
  733. reply = wpas_dbus_simple_property_setter(message, DBUS_TYPE_BOOLEAN,
  734. &val);
  735. if (reply)
  736. return reply;
  737. wpa_supplicant_set_debug_params(global, wpa_debug_level,
  738. wpa_debug_timestamp,
  739. val ? 1 : 0);
  740. return NULL;
  741. }
  742. /**
  743. * wpas_dbus_getter_interfaces - Request registered interfaces list
  744. * @message: Pointer to incoming dbus message
  745. * @global: %wpa_supplicant global data structure
  746. * Returns: The object paths array containing registered interfaces
  747. * objects paths or DBus error on failure
  748. *
  749. * Getter for "Interfaces" property. Handles requests
  750. * by dbus clients to return list of registered interfaces objects
  751. * paths
  752. */
  753. DBusMessage * wpas_dbus_getter_interfaces(DBusMessage *message,
  754. struct wpa_global *global)
  755. {
  756. DBusMessage *reply = NULL;
  757. struct wpa_supplicant *wpa_s;
  758. const char **paths;
  759. unsigned int i = 0, num = 0;
  760. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  761. num++;
  762. paths = os_zalloc(num * sizeof(char*));
  763. if (!paths) {
  764. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  765. NULL);
  766. }
  767. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  768. paths[i] = wpa_s->dbus_new_path;
  769. reply = wpas_dbus_simple_array_property_getter(message,
  770. DBUS_TYPE_OBJECT_PATH,
  771. paths, num);
  772. os_free(paths);
  773. return reply;
  774. }
  775. /**
  776. * wpas_dbus_getter_eap_methods - Request supported EAP methods list
  777. * @message: Pointer to incoming dbus message
  778. * @nothing: not used argument. may be NULL or anything else
  779. * Returns: The object paths array containing supported EAP methods
  780. * represented by strings or DBus error on failure
  781. *
  782. * Getter for "EapMethods" property. Handles requests
  783. * by dbus clients to return list of strings with supported EAP methods
  784. */
  785. DBusMessage * wpas_dbus_getter_eap_methods(DBusMessage *message, void *nothing)
  786. {
  787. DBusMessage *reply = NULL;
  788. char **eap_methods;
  789. size_t num_items = 0;
  790. eap_methods = eap_get_names_as_string_array(&num_items);
  791. if (!eap_methods) {
  792. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  793. NULL);
  794. }
  795. reply = wpas_dbus_simple_array_property_getter(message,
  796. DBUS_TYPE_STRING,
  797. eap_methods, num_items);
  798. while (num_items)
  799. os_free(eap_methods[--num_items]);
  800. os_free(eap_methods);
  801. return reply;
  802. }
  803. static int wpas_dbus_get_scan_type(DBusMessage *message, DBusMessageIter *var,
  804. char **type, DBusMessage **reply)
  805. {
  806. if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_STRING) {
  807. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  808. "Type must be a string");
  809. *reply = wpas_dbus_error_invalid_args(
  810. message, "Wrong Type value type. String required");
  811. return -1;
  812. }
  813. dbus_message_iter_get_basic(var, type);
  814. return 0;
  815. }
  816. static int wpas_dbus_get_scan_ssids(DBusMessage *message, DBusMessageIter *var,
  817. struct wpa_driver_scan_params *params,
  818. DBusMessage **reply)
  819. {
  820. struct wpa_driver_scan_ssid *ssids = params->ssids;
  821. size_t ssids_num = 0;
  822. u8 *ssid;
  823. DBusMessageIter array_iter, sub_array_iter;
  824. char *val;
  825. int len;
  826. if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
  827. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ssids "
  828. "must be an array of arrays of bytes");
  829. *reply = wpas_dbus_error_invalid_args(
  830. message, "Wrong SSIDs value type. Array of arrays of "
  831. "bytes required");
  832. return -1;
  833. }
  834. dbus_message_iter_recurse(var, &array_iter);
  835. if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_ARRAY ||
  836. dbus_message_iter_get_element_type(&array_iter) != DBUS_TYPE_BYTE)
  837. {
  838. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ssids "
  839. "must be an array of arrays of bytes");
  840. *reply = wpas_dbus_error_invalid_args(
  841. message, "Wrong SSIDs value type. Array of arrays of "
  842. "bytes required");
  843. return -1;
  844. }
  845. while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_ARRAY)
  846. {
  847. if (ssids_num >= WPAS_MAX_SCAN_SSIDS) {
  848. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  849. "Too many ssids specified on scan dbus "
  850. "call");
  851. *reply = wpas_dbus_error_invalid_args(
  852. message, "Too many ssids specified. Specify "
  853. "at most four");
  854. return -1;
  855. }
  856. dbus_message_iter_recurse(&array_iter, &sub_array_iter);
  857. dbus_message_iter_get_fixed_array(&sub_array_iter, &val, &len);
  858. if (len == 0) {
  859. dbus_message_iter_next(&array_iter);
  860. continue;
  861. }
  862. ssid = os_malloc(len);
  863. if (ssid == NULL) {
  864. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  865. "out of memory. Cannot allocate memory for "
  866. "SSID");
  867. *reply = dbus_message_new_error(
  868. message, DBUS_ERROR_NO_MEMORY, NULL);
  869. return -1;
  870. }
  871. os_memcpy(ssid, val, len);
  872. ssids[ssids_num].ssid = ssid;
  873. ssids[ssids_num].ssid_len = len;
  874. dbus_message_iter_next(&array_iter);
  875. ssids_num++;
  876. }
  877. params->num_ssids = ssids_num;
  878. return 0;
  879. }
  880. static int wpas_dbus_get_scan_ies(DBusMessage *message, DBusMessageIter *var,
  881. struct wpa_driver_scan_params *params,
  882. DBusMessage **reply)
  883. {
  884. u8 *ies = NULL, *nies;
  885. int ies_len = 0;
  886. DBusMessageIter array_iter, sub_array_iter;
  887. char *val;
  888. int len;
  889. if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
  890. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
  891. "be an array of arrays of bytes");
  892. *reply = wpas_dbus_error_invalid_args(
  893. message, "Wrong IEs value type. Array of arrays of "
  894. "bytes required");
  895. return -1;
  896. }
  897. dbus_message_iter_recurse(var, &array_iter);
  898. if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_ARRAY ||
  899. dbus_message_iter_get_element_type(&array_iter) != DBUS_TYPE_BYTE)
  900. {
  901. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
  902. "be an array of arrays of bytes");
  903. *reply = wpas_dbus_error_invalid_args(
  904. message, "Wrong IEs value type. Array required");
  905. return -1;
  906. }
  907. while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_ARRAY)
  908. {
  909. dbus_message_iter_recurse(&array_iter, &sub_array_iter);
  910. dbus_message_iter_get_fixed_array(&sub_array_iter, &val, &len);
  911. if (len == 0) {
  912. dbus_message_iter_next(&array_iter);
  913. continue;
  914. }
  915. nies = os_realloc(ies, ies_len + len);
  916. if (nies == NULL) {
  917. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  918. "out of memory. Cannot allocate memory for "
  919. "IE");
  920. os_free(ies);
  921. *reply = dbus_message_new_error(
  922. message, DBUS_ERROR_NO_MEMORY, NULL);
  923. return -1;
  924. }
  925. ies = nies;
  926. os_memcpy(ies + ies_len, val, len);
  927. ies_len += len;
  928. dbus_message_iter_next(&array_iter);
  929. }
  930. params->extra_ies = ies;
  931. params->extra_ies_len = ies_len;
  932. return 0;
  933. }
  934. static int wpas_dbus_get_scan_channels(DBusMessage *message,
  935. DBusMessageIter *var,
  936. struct wpa_driver_scan_params *params,
  937. DBusMessage **reply)
  938. {
  939. DBusMessageIter array_iter, sub_array_iter;
  940. int *freqs = NULL, *nfreqs;
  941. int freqs_num = 0;
  942. if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
  943. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  944. "Channels must be an array of structs");
  945. *reply = wpas_dbus_error_invalid_args(
  946. message, "Wrong Channels value type. Array of structs "
  947. "required");
  948. return -1;
  949. }
  950. dbus_message_iter_recurse(var, &array_iter);
  951. if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_STRUCT) {
  952. wpa_printf(MSG_DEBUG,
  953. "wpas_dbus_handler_scan[dbus]: Channels must be an "
  954. "array of structs");
  955. *reply = wpas_dbus_error_invalid_args(
  956. message, "Wrong Channels value type. Array of structs "
  957. "required");
  958. return -1;
  959. }
  960. while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_STRUCT)
  961. {
  962. int freq, width;
  963. dbus_message_iter_recurse(&array_iter, &sub_array_iter);
  964. if (dbus_message_iter_get_arg_type(&sub_array_iter) !=
  965. DBUS_TYPE_UINT32) {
  966. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  967. "Channel must by specified by struct of "
  968. "two UINT32s %c",
  969. dbus_message_iter_get_arg_type(
  970. &sub_array_iter));
  971. *reply = wpas_dbus_error_invalid_args(
  972. message, "Wrong Channel struct. Two UINT32s "
  973. "required");
  974. os_free(freqs);
  975. return -1;
  976. }
  977. dbus_message_iter_get_basic(&sub_array_iter, &freq);
  978. if (!dbus_message_iter_next(&sub_array_iter) ||
  979. dbus_message_iter_get_arg_type(&sub_array_iter) !=
  980. DBUS_TYPE_UINT32) {
  981. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  982. "Channel must by specified by struct of "
  983. "two UINT32s");
  984. *reply = wpas_dbus_error_invalid_args(
  985. message,
  986. "Wrong Channel struct. Two UINT32s required");
  987. os_free(freqs);
  988. return -1;
  989. }
  990. dbus_message_iter_get_basic(&sub_array_iter, &width);
  991. #define FREQS_ALLOC_CHUNK 32
  992. if (freqs_num % FREQS_ALLOC_CHUNK == 0) {
  993. nfreqs = os_realloc(freqs, sizeof(int) *
  994. (freqs_num + FREQS_ALLOC_CHUNK));
  995. if (nfreqs == NULL)
  996. os_free(freqs);
  997. freqs = nfreqs;
  998. }
  999. if (freqs == NULL) {
  1000. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1001. "out of memory. can't allocate memory for "
  1002. "freqs");
  1003. *reply = dbus_message_new_error(
  1004. message, DBUS_ERROR_NO_MEMORY, NULL);
  1005. return -1;
  1006. }
  1007. freqs[freqs_num] = freq;
  1008. freqs_num++;
  1009. dbus_message_iter_next(&array_iter);
  1010. }
  1011. nfreqs = os_realloc(freqs,
  1012. sizeof(int) * (freqs_num + 1));
  1013. if (nfreqs == NULL)
  1014. os_free(freqs);
  1015. freqs = nfreqs;
  1016. if (freqs == NULL) {
  1017. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1018. "out of memory. Can't allocate memory for freqs");
  1019. *reply = dbus_message_new_error(
  1020. message, DBUS_ERROR_NO_MEMORY, NULL);
  1021. return -1;
  1022. }
  1023. freqs[freqs_num] = 0;
  1024. params->freqs = freqs;
  1025. return 0;
  1026. }
  1027. /**
  1028. * wpas_dbus_handler_scan - Request a wireless scan on an interface
  1029. * @message: Pointer to incoming dbus message
  1030. * @wpa_s: wpa_supplicant structure for a network interface
  1031. * Returns: NULL indicating success or DBus error message on failure
  1032. *
  1033. * Handler function for "Scan" method call of a network device. Requests
  1034. * that wpa_supplicant perform a wireless scan as soon as possible
  1035. * on a particular wireless interface.
  1036. */
  1037. DBusMessage * wpas_dbus_handler_scan(DBusMessage *message,
  1038. struct wpa_supplicant *wpa_s)
  1039. {
  1040. DBusMessage *reply = NULL;
  1041. DBusMessageIter iter, dict_iter, entry_iter, variant_iter;
  1042. char *key = NULL, *type = NULL;
  1043. struct wpa_driver_scan_params params;
  1044. size_t i;
  1045. os_memset(&params, 0, sizeof(params));
  1046. dbus_message_iter_init(message, &iter);
  1047. dbus_message_iter_recurse(&iter, &dict_iter);
  1048. while (dbus_message_iter_get_arg_type(&dict_iter) ==
  1049. DBUS_TYPE_DICT_ENTRY) {
  1050. dbus_message_iter_recurse(&dict_iter, &entry_iter);
  1051. dbus_message_iter_get_basic(&entry_iter, &key);
  1052. dbus_message_iter_next(&entry_iter);
  1053. dbus_message_iter_recurse(&entry_iter, &variant_iter);
  1054. if (os_strcmp(key, "Type") == 0) {
  1055. if (wpas_dbus_get_scan_type(message, &variant_iter,
  1056. &type, &reply) < 0)
  1057. goto out;
  1058. } else if (os_strcmp(key, "SSIDs") == 0) {
  1059. if (wpas_dbus_get_scan_ssids(message, &variant_iter,
  1060. &params, &reply) < 0)
  1061. goto out;
  1062. } else if (os_strcmp(key, "IEs") == 0) {
  1063. if (wpas_dbus_get_scan_ies(message, &variant_iter,
  1064. &params, &reply) < 0)
  1065. goto out;
  1066. } else if (os_strcmp(key, "Channels") == 0) {
  1067. if (wpas_dbus_get_scan_channels(message, &variant_iter,
  1068. &params, &reply) < 0)
  1069. goto out;
  1070. } else {
  1071. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1072. "Unknown argument %s", key);
  1073. reply = wpas_dbus_error_invalid_args(message, key);
  1074. goto out;
  1075. }
  1076. dbus_message_iter_next(&dict_iter);
  1077. }
  1078. if (!type) {
  1079. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1080. "Scan type not specified");
  1081. reply = wpas_dbus_error_invalid_args(message, key);
  1082. goto out;
  1083. }
  1084. if (!os_strcmp(type, "passive")) {
  1085. if (params.num_ssids || params.extra_ies_len) {
  1086. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1087. "SSIDs or IEs specified for passive scan.");
  1088. reply = wpas_dbus_error_invalid_args(
  1089. message, "You can specify only Channels in "
  1090. "passive scan");
  1091. goto out;
  1092. } else if (params.freqs && params.freqs[0]) {
  1093. /* wildcard ssid */
  1094. params.num_ssids++;
  1095. wpa_supplicant_trigger_scan(wpa_s, &params);
  1096. } else {
  1097. wpa_s->scan_req = 2;
  1098. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1099. }
  1100. } else if (!os_strcmp(type, "active")) {
  1101. wpa_supplicant_trigger_scan(wpa_s, &params);
  1102. } else {
  1103. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
  1104. "Unknown scan type: %s", type);
  1105. reply = wpas_dbus_error_invalid_args(message,
  1106. "Wrong scan type");
  1107. goto out;
  1108. }
  1109. out:
  1110. for (i = 0; i < WPAS_MAX_SCAN_SSIDS; i++)
  1111. os_free((u8 *) params.ssids[i].ssid);
  1112. os_free((u8 *) params.extra_ies);
  1113. os_free(params.freqs);
  1114. return reply;
  1115. }
  1116. /*
  1117. * wpas_dbus_handler_disconnect - Terminate the current connection
  1118. * @message: Pointer to incoming dbus message
  1119. * @wpa_s: wpa_supplicant structure for a network interface
  1120. * Returns: NotConnected DBus error message if already not connected
  1121. * or NULL otherwise.
  1122. *
  1123. * Handler function for "Disconnect" method call of network interface.
  1124. */
  1125. DBusMessage * wpas_dbus_handler_disconnect(DBusMessage *message,
  1126. struct wpa_supplicant *wpa_s)
  1127. {
  1128. if (wpa_s->current_ssid != NULL) {
  1129. wpa_s->disconnected = 1;
  1130. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1131. return NULL;
  1132. }
  1133. return dbus_message_new_error(message, WPAS_DBUS_ERROR_NOT_CONNECTED,
  1134. "This interface is not connected");
  1135. }
  1136. /**
  1137. * wpas_dbus_new_iface_add_network - Add a new configured network
  1138. * @message: Pointer to incoming dbus message
  1139. * @wpa_s: wpa_supplicant structure for a network interface
  1140. * Returns: A dbus message containing the object path of the new network
  1141. *
  1142. * Handler function for "AddNetwork" method call of a network interface.
  1143. */
  1144. DBusMessage * wpas_dbus_handler_add_network(DBusMessage *message,
  1145. struct wpa_supplicant *wpa_s)
  1146. {
  1147. DBusMessage *reply = NULL;
  1148. DBusMessageIter iter;
  1149. struct wpa_ssid *ssid = NULL;
  1150. char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *path = path_buf;
  1151. dbus_message_iter_init(message, &iter);
  1152. ssid = wpa_config_add_network(wpa_s->conf);
  1153. if (ssid == NULL) {
  1154. wpa_printf(MSG_ERROR, "wpas_dbus_handler_add_network[dbus]: "
  1155. "can't add new interface.");
  1156. reply = wpas_dbus_error_unknown_error(
  1157. message,
  1158. "wpa_supplicant could not add "
  1159. "a network on this interface.");
  1160. goto err;
  1161. }
  1162. wpas_notify_network_added(wpa_s, ssid);
  1163. ssid->disabled = 1;
  1164. wpa_config_set_network_defaults(ssid);
  1165. reply = set_network_properties(message, wpa_s, ssid, &iter);
  1166. if (reply) {
  1167. wpa_printf(MSG_DEBUG, "wpas_dbus_handler_add_network[dbus]:"
  1168. "control interface couldn't set network "
  1169. "properties");
  1170. goto err;
  1171. }
  1172. /* Construct the object path for this network. */
  1173. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1174. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
  1175. wpa_s->dbus_new_path, ssid->id);
  1176. reply = dbus_message_new_method_return(message);
  1177. if (reply == NULL) {
  1178. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1179. NULL);
  1180. goto err;
  1181. }
  1182. if (!dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH, &path,
  1183. DBUS_TYPE_INVALID)) {
  1184. dbus_message_unref(reply);
  1185. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1186. NULL);
  1187. goto err;
  1188. }
  1189. return reply;
  1190. err:
  1191. if (ssid) {
  1192. wpas_notify_network_removed(wpa_s, ssid);
  1193. wpa_config_remove_network(wpa_s->conf, ssid->id);
  1194. }
  1195. return reply;
  1196. }
  1197. /**
  1198. * wpas_dbus_handler_remove_network - Remove a configured network
  1199. * @message: Pointer to incoming dbus message
  1200. * @wpa_s: wpa_supplicant structure for a network interface
  1201. * Returns: NULL on success or dbus error on failure
  1202. *
  1203. * Handler function for "RemoveNetwork" method call of a network interface.
  1204. */
  1205. DBusMessage * wpas_dbus_handler_remove_network(DBusMessage *message,
  1206. struct wpa_supplicant *wpa_s)
  1207. {
  1208. DBusMessage *reply = NULL;
  1209. const char *op;
  1210. char *iface = NULL, *net_id = NULL;
  1211. int id;
  1212. struct wpa_ssid *ssid;
  1213. dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &op,
  1214. DBUS_TYPE_INVALID);
  1215. /* Extract the network ID and ensure the network */
  1216. /* is actually a child of this interface */
  1217. iface = wpas_dbus_new_decompose_object_path(op, &net_id, NULL);
  1218. if (iface == NULL || os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
  1219. reply = wpas_dbus_error_invalid_args(message, op);
  1220. goto out;
  1221. }
  1222. id = strtoul(net_id, NULL, 10);
  1223. if (errno == EINVAL) {
  1224. reply = wpas_dbus_error_invalid_args(message, op);
  1225. goto out;
  1226. }
  1227. ssid = wpa_config_get_network(wpa_s->conf, id);
  1228. if (ssid == NULL) {
  1229. reply = wpas_dbus_error_network_unknown(message);
  1230. goto out;
  1231. }
  1232. wpas_notify_network_removed(wpa_s, ssid);
  1233. if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
  1234. wpa_printf(MSG_ERROR,
  1235. "wpas_dbus_handler_remove_network[dbus]: "
  1236. "error occurred when removing network %d", id);
  1237. reply = wpas_dbus_error_unknown_error(
  1238. message, "error removing the specified network on "
  1239. "this interface.");
  1240. goto out;
  1241. }
  1242. if (ssid == wpa_s->current_ssid)
  1243. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1244. out:
  1245. os_free(iface);
  1246. os_free(net_id);
  1247. return reply;
  1248. }
  1249. /**
  1250. * wpas_dbus_handler_select_network - Attempt association with a network
  1251. * @message: Pointer to incoming dbus message
  1252. * @wpa_s: wpa_supplicant structure for a network interface
  1253. * Returns: NULL on success or dbus error on failure
  1254. *
  1255. * Handler function for "SelectNetwork" method call of network interface.
  1256. */
  1257. DBusMessage * wpas_dbus_handler_select_network(DBusMessage *message,
  1258. struct wpa_supplicant *wpa_s)
  1259. {
  1260. DBusMessage *reply = NULL;
  1261. const char *op;
  1262. char *iface = NULL, *net_id = NULL;
  1263. int id;
  1264. struct wpa_ssid *ssid;
  1265. dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &op,
  1266. DBUS_TYPE_INVALID);
  1267. /* Extract the network ID and ensure the network */
  1268. /* is actually a child of this interface */
  1269. iface = wpas_dbus_new_decompose_object_path(op, &net_id, NULL);
  1270. if (iface == NULL || os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
  1271. reply = wpas_dbus_error_invalid_args(message, op);
  1272. goto out;
  1273. }
  1274. id = strtoul(net_id, NULL, 10);
  1275. if (errno == EINVAL) {
  1276. reply = wpas_dbus_error_invalid_args(message, op);
  1277. goto out;
  1278. }
  1279. ssid = wpa_config_get_network(wpa_s->conf, id);
  1280. if (ssid == NULL) {
  1281. reply = wpas_dbus_error_network_unknown(message);
  1282. goto out;
  1283. }
  1284. /* Finally, associate with the network */
  1285. wpa_supplicant_select_network(wpa_s, ssid);
  1286. out:
  1287. os_free(iface);
  1288. os_free(net_id);
  1289. return reply;
  1290. }
  1291. /**
  1292. * wpas_dbus_handler_add_blob - Store named binary blob (ie, for certificates)
  1293. * @message: Pointer to incoming dbus message
  1294. * @wpa_s: %wpa_supplicant data structure
  1295. * Returns: A dbus message containing an error on failure or NULL on success
  1296. *
  1297. * Asks wpa_supplicant to internally store a binary blobs.
  1298. */
  1299. DBusMessage * wpas_dbus_handler_add_blob(DBusMessage *message,
  1300. struct wpa_supplicant *wpa_s)
  1301. {
  1302. DBusMessage *reply = NULL;
  1303. DBusMessageIter iter, array_iter;
  1304. char *blob_name;
  1305. u8 *blob_data;
  1306. int blob_len;
  1307. struct wpa_config_blob *blob = NULL;
  1308. dbus_message_iter_init(message, &iter);
  1309. dbus_message_iter_get_basic(&iter, &blob_name);
  1310. if (wpa_config_get_blob(wpa_s->conf, blob_name)) {
  1311. return dbus_message_new_error(message,
  1312. WPAS_DBUS_ERROR_BLOB_EXISTS,
  1313. NULL);
  1314. }
  1315. dbus_message_iter_next(&iter);
  1316. dbus_message_iter_recurse(&iter, &array_iter);
  1317. dbus_message_iter_get_fixed_array(&array_iter, &blob_data, &blob_len);
  1318. blob = os_zalloc(sizeof(*blob));
  1319. if (!blob) {
  1320. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1321. NULL);
  1322. goto err;
  1323. }
  1324. blob->data = os_malloc(blob_len);
  1325. if (!blob->data) {
  1326. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1327. NULL);
  1328. goto err;
  1329. }
  1330. os_memcpy(blob->data, blob_data, blob_len);
  1331. blob->len = blob_len;
  1332. blob->name = os_strdup(blob_name);
  1333. if (!blob->name) {
  1334. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1335. NULL);
  1336. goto err;
  1337. }
  1338. wpa_config_set_blob(wpa_s->conf, blob);
  1339. wpas_notify_blob_added(wpa_s, blob->name);
  1340. return reply;
  1341. err:
  1342. if (blob) {
  1343. os_free(blob->name);
  1344. os_free(blob->data);
  1345. os_free(blob);
  1346. }
  1347. return reply;
  1348. }
  1349. /**
  1350. * wpas_dbus_handler_get_blob - Get named binary blob (ie, for certificates)
  1351. * @message: Pointer to incoming dbus message
  1352. * @wpa_s: %wpa_supplicant data structure
  1353. * Returns: A dbus message containing array of bytes (blob)
  1354. *
  1355. * Gets one wpa_supplicant's binary blobs.
  1356. */
  1357. DBusMessage * wpas_dbus_handler_get_blob(DBusMessage *message,
  1358. struct wpa_supplicant *wpa_s)
  1359. {
  1360. DBusMessage *reply = NULL;
  1361. DBusMessageIter iter, array_iter;
  1362. char *blob_name;
  1363. const struct wpa_config_blob *blob;
  1364. dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &blob_name,
  1365. DBUS_TYPE_INVALID);
  1366. blob = wpa_config_get_blob(wpa_s->conf, blob_name);
  1367. if (!blob) {
  1368. return dbus_message_new_error(message,
  1369. WPAS_DBUS_ERROR_BLOB_UNKNOWN,
  1370. "Blob id not set");
  1371. }
  1372. reply = dbus_message_new_method_return(message);
  1373. if (!reply) {
  1374. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1375. NULL);
  1376. goto out;
  1377. }
  1378. dbus_message_iter_init_append(reply, &iter);
  1379. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
  1380. DBUS_TYPE_BYTE_AS_STRING,
  1381. &array_iter)) {
  1382. dbus_message_unref(reply);
  1383. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1384. NULL);
  1385. goto out;
  1386. }
  1387. if (!dbus_message_iter_append_fixed_array(&array_iter, DBUS_TYPE_BYTE,
  1388. &(blob->data), blob->len)) {
  1389. dbus_message_unref(reply);
  1390. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1391. NULL);
  1392. goto out;
  1393. }
  1394. if (!dbus_message_iter_close_container(&iter, &array_iter)) {
  1395. dbus_message_unref(reply);
  1396. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1397. NULL);
  1398. goto out;
  1399. }
  1400. out:
  1401. return reply;
  1402. }
  1403. /**
  1404. * wpas_remove_handler_remove_blob - Remove named binary blob
  1405. * @message: Pointer to incoming dbus message
  1406. * @wpa_s: %wpa_supplicant data structure
  1407. * Returns: NULL on success or dbus error
  1408. *
  1409. * Asks wpa_supplicant to internally remove a binary blobs.
  1410. */
  1411. DBusMessage * wpas_dbus_handler_remove_blob(DBusMessage *message,
  1412. struct wpa_supplicant *wpa_s)
  1413. {
  1414. DBusMessage *reply = NULL;
  1415. char *blob_name;
  1416. dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &blob_name,
  1417. DBUS_TYPE_INVALID);
  1418. if (wpa_config_remove_blob(wpa_s->conf, blob_name)) {
  1419. return dbus_message_new_error(message,
  1420. WPAS_DBUS_ERROR_BLOB_UNKNOWN,
  1421. "Blob id not set");
  1422. }
  1423. wpas_notify_blob_removed(wpa_s, blob_name);
  1424. return reply;
  1425. }
  1426. /**
  1427. * wpas_dbus_getter_capabilities - Return interface capabilities
  1428. * @message: Pointer to incoming dbus message
  1429. * @wpa_s: wpa_supplicant structure for a network interface
  1430. * Returns: A dbus message containing a dict of strings
  1431. *
  1432. * Getter for "Capabilities" property of an interface.
  1433. */
  1434. DBusMessage * wpas_dbus_getter_capabilities(DBusMessage *message,
  1435. struct wpa_supplicant *wpa_s)
  1436. {
  1437. DBusMessage *reply = NULL;
  1438. struct wpa_driver_capa capa;
  1439. int res;
  1440. DBusMessageIter iter, iter_dict;
  1441. DBusMessageIter iter_dict_entry, iter_dict_val, iter_array,
  1442. variant_iter;
  1443. const char *scans[] = { "active", "passive", "ssid" };
  1444. const char *modes[] = { "infrastructure", "ad-hoc", "ap" };
  1445. int n = sizeof(modes) / sizeof(char *);
  1446. if (message == NULL)
  1447. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  1448. else
  1449. reply = dbus_message_new_method_return(message);
  1450. if (!reply)
  1451. goto nomem;
  1452. dbus_message_iter_init_append(reply, &iter);
  1453. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  1454. "a{sv}", &variant_iter))
  1455. goto nomem;
  1456. if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
  1457. goto nomem;
  1458. res = wpa_drv_get_capa(wpa_s, &capa);
  1459. /***** pairwise cipher */
  1460. if (res < 0) {
  1461. const char *args[] = {"ccmp", "tkip", "none"};
  1462. if (!wpa_dbus_dict_append_string_array(
  1463. &iter_dict, "Pairwise", args,
  1464. sizeof(args) / sizeof(char*)))
  1465. goto nomem;
  1466. } else {
  1467. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Pairwise",
  1468. &iter_dict_entry,
  1469. &iter_dict_val,
  1470. &iter_array))
  1471. goto nomem;
  1472. if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1473. if (!wpa_dbus_dict_string_array_add_element(
  1474. &iter_array, "ccmp"))
  1475. goto nomem;
  1476. }
  1477. if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1478. if (!wpa_dbus_dict_string_array_add_element(
  1479. &iter_array, "tkip"))
  1480. goto nomem;
  1481. }
  1482. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1483. if (!wpa_dbus_dict_string_array_add_element(
  1484. &iter_array, "none"))
  1485. goto nomem;
  1486. }
  1487. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  1488. &iter_dict_entry,
  1489. &iter_dict_val,
  1490. &iter_array))
  1491. goto nomem;
  1492. }
  1493. /***** group cipher */
  1494. if (res < 0) {
  1495. const char *args[] = {
  1496. "ccmp", "tkip", "wep104", "wep40"
  1497. };
  1498. if (!wpa_dbus_dict_append_string_array(
  1499. &iter_dict, "Group", args,
  1500. sizeof(args) / sizeof(char*)))
  1501. goto nomem;
  1502. } else {
  1503. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Group",
  1504. &iter_dict_entry,
  1505. &iter_dict_val,
  1506. &iter_array))
  1507. goto nomem;
  1508. if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1509. if (!wpa_dbus_dict_string_array_add_element(
  1510. &iter_array, "ccmp"))
  1511. goto nomem;
  1512. }
  1513. if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1514. if (!wpa_dbus_dict_string_array_add_element(
  1515. &iter_array, "tkip"))
  1516. goto nomem;
  1517. }
  1518. if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP104) {
  1519. if (!wpa_dbus_dict_string_array_add_element(
  1520. &iter_array, "wep104"))
  1521. goto nomem;
  1522. }
  1523. if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP40) {
  1524. if (!wpa_dbus_dict_string_array_add_element(
  1525. &iter_array, "wep40"))
  1526. goto nomem;
  1527. }
  1528. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  1529. &iter_dict_entry,
  1530. &iter_dict_val,
  1531. &iter_array))
  1532. goto nomem;
  1533. }
  1534. /***** key management */
  1535. if (res < 0) {
  1536. const char *args[] = {
  1537. "wpa-psk", "wpa-eap", "ieee8021x", "wpa-none",
  1538. #ifdef CONFIG_WPS
  1539. "wps",
  1540. #endif /* CONFIG_WPS */
  1541. "none"
  1542. };
  1543. if (!wpa_dbus_dict_append_string_array(
  1544. &iter_dict, "KeyMgmt", args,
  1545. sizeof(args) / sizeof(char*)))
  1546. goto nomem;
  1547. } else {
  1548. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "KeyMgmt",
  1549. &iter_dict_entry,
  1550. &iter_dict_val,
  1551. &iter_array))
  1552. goto nomem;
  1553. if (!wpa_dbus_dict_string_array_add_element(&iter_array,
  1554. "none"))
  1555. goto nomem;
  1556. if (!wpa_dbus_dict_string_array_add_element(&iter_array,
  1557. "ieee8021x"))
  1558. goto nomem;
  1559. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1560. WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
  1561. if (!wpa_dbus_dict_string_array_add_element(
  1562. &iter_array, "wpa-eap"))
  1563. goto nomem;
  1564. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT)
  1565. if (!wpa_dbus_dict_string_array_add_element(
  1566. &iter_array, "wpa-ft-eap"))
  1567. goto nomem;
  1568. /* TODO: Ensure that driver actually supports sha256 encryption. */
  1569. #ifdef CONFIG_IEEE80211W
  1570. if (!wpa_dbus_dict_string_array_add_element(
  1571. &iter_array, "wpa-eap-sha256"))
  1572. goto nomem;
  1573. #endif /* CONFIG_IEEE80211W */
  1574. }
  1575. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  1576. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1577. if (!wpa_dbus_dict_string_array_add_element(
  1578. &iter_array, "wpa-psk"))
  1579. goto nomem;
  1580. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK)
  1581. if (!wpa_dbus_dict_string_array_add_element(
  1582. &iter_array, "wpa-ft-psk"))
  1583. goto nomem;
  1584. /* TODO: Ensure that driver actually supports sha256 encryption. */
  1585. #ifdef CONFIG_IEEE80211W
  1586. if (!wpa_dbus_dict_string_array_add_element(
  1587. &iter_array, "wpa-psk-sha256"))
  1588. goto nomem;
  1589. #endif /* CONFIG_IEEE80211W */
  1590. }
  1591. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1592. if (!wpa_dbus_dict_string_array_add_element(
  1593. &iter_array, "wpa-none"))
  1594. goto nomem;
  1595. }
  1596. #ifdef CONFIG_WPS
  1597. if (!wpa_dbus_dict_string_array_add_element(&iter_array,
  1598. "wps"))
  1599. goto nomem;
  1600. #endif /* CONFIG_WPS */
  1601. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  1602. &iter_dict_entry,
  1603. &iter_dict_val,
  1604. &iter_array))
  1605. goto nomem;
  1606. }
  1607. /***** WPA protocol */
  1608. if (res < 0) {
  1609. const char *args[] = { "rsn", "wpa" };
  1610. if (!wpa_dbus_dict_append_string_array(
  1611. &iter_dict, "Protocol", args,
  1612. sizeof(args) / sizeof(char*)))
  1613. goto nomem;
  1614. } else {
  1615. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Protocol",
  1616. &iter_dict_entry,
  1617. &iter_dict_val,
  1618. &iter_array))
  1619. goto nomem;
  1620. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  1621. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1622. if (!wpa_dbus_dict_string_array_add_element(
  1623. &iter_array, "rsn"))
  1624. goto nomem;
  1625. }
  1626. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1627. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
  1628. if (!wpa_dbus_dict_string_array_add_element(
  1629. &iter_array, "wpa"))
  1630. goto nomem;
  1631. }
  1632. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  1633. &iter_dict_entry,
  1634. &iter_dict_val,
  1635. &iter_array))
  1636. goto nomem;
  1637. }
  1638. /***** auth alg */
  1639. if (res < 0) {
  1640. const char *args[] = { "open", "shared", "leap" };
  1641. if (!wpa_dbus_dict_append_string_array(
  1642. &iter_dict, "AuthAlg", args,
  1643. sizeof(args) / sizeof(char*)))
  1644. goto nomem;
  1645. } else {
  1646. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "AuthAlg",
  1647. &iter_dict_entry,
  1648. &iter_dict_val,
  1649. &iter_array))
  1650. goto nomem;
  1651. if (capa.auth & (WPA_DRIVER_AUTH_OPEN)) {
  1652. if (!wpa_dbus_dict_string_array_add_element(
  1653. &iter_array, "open"))
  1654. goto nomem;
  1655. }
  1656. if (capa.auth & (WPA_DRIVER_AUTH_SHARED)) {
  1657. if (!wpa_dbus_dict_string_array_add_element(
  1658. &iter_array, "shared"))
  1659. goto nomem;
  1660. }
  1661. if (capa.auth & (WPA_DRIVER_AUTH_LEAP)) {
  1662. if (!wpa_dbus_dict_string_array_add_element(
  1663. &iter_array, "leap"))
  1664. goto nomem;
  1665. }
  1666. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  1667. &iter_dict_entry,
  1668. &iter_dict_val,
  1669. &iter_array))
  1670. goto nomem;
  1671. }
  1672. /***** Scan */
  1673. if (!wpa_dbus_dict_append_string_array(&iter_dict, "Scan", scans,
  1674. sizeof(scans) / sizeof(char *)))
  1675. goto nomem;
  1676. /***** Modes */
  1677. if (res < 0 || !(capa.flags & WPA_DRIVER_FLAGS_AP))
  1678. n--; /* exclude ap mode if it is not supported by the driver */
  1679. if (!wpa_dbus_dict_append_string_array(&iter_dict, "Modes", modes, n))
  1680. goto nomem;
  1681. if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
  1682. goto nomem;
  1683. if (!dbus_message_iter_close_container(&iter, &variant_iter))
  1684. goto nomem;
  1685. return reply;
  1686. nomem:
  1687. if (reply)
  1688. dbus_message_unref(reply);
  1689. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  1690. }
  1691. /**
  1692. * wpas_dbus_getter_state - Get interface state
  1693. * @message: Pointer to incoming dbus message
  1694. * @wpa_s: wpa_supplicant structure for a network interface
  1695. * Returns: A dbus message containing a STRING representing the current
  1696. * interface state
  1697. *
  1698. * Getter for "State" property.
  1699. */
  1700. DBusMessage * wpas_dbus_getter_state(DBusMessage *message,
  1701. struct wpa_supplicant *wpa_s)
  1702. {
  1703. DBusMessage *reply = NULL;
  1704. const char *str_state;
  1705. char *state_ls, *tmp;
  1706. str_state = wpa_supplicant_state_txt(wpa_s->wpa_state);
  1707. /* make state string lowercase to fit new DBus API convention
  1708. */
  1709. state_ls = tmp = os_strdup(str_state);
  1710. if (!tmp) {
  1711. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1712. NULL);
  1713. }
  1714. while (*tmp) {
  1715. *tmp = tolower(*tmp);
  1716. tmp++;
  1717. }
  1718. reply = wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  1719. &state_ls);
  1720. os_free(state_ls);
  1721. return reply;
  1722. }
  1723. /**
  1724. * wpas_dbus_new_iface_get_scanning - Get interface scanning state
  1725. * @message: Pointer to incoming dbus message
  1726. * @wpa_s: wpa_supplicant structure for a network interface
  1727. * Returns: A dbus message containing whether the interface is scanning
  1728. *
  1729. * Getter for "scanning" property.
  1730. */
  1731. DBusMessage * wpas_dbus_getter_scanning(DBusMessage *message,
  1732. struct wpa_supplicant *wpa_s)
  1733. {
  1734. dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
  1735. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
  1736. &scanning);
  1737. }
  1738. /**
  1739. * wpas_dbus_getter_ap_scan - Control roaming mode
  1740. * @message: Pointer to incoming dbus message
  1741. * @wpa_s: wpa_supplicant structure for a network interface
  1742. * Returns: A message containong value of ap_scan variable
  1743. *
  1744. * Getter function for "ApScan" property.
  1745. */
  1746. DBusMessage * wpas_dbus_getter_ap_scan(DBusMessage *message,
  1747. struct wpa_supplicant *wpa_s)
  1748. {
  1749. dbus_uint32_t ap_scan = wpa_s->conf->ap_scan;
  1750. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_UINT32,
  1751. &ap_scan);
  1752. }
  1753. /**
  1754. * wpas_dbus_setter_ap_scan - Control roaming mode
  1755. * @message: Pointer to incoming dbus message
  1756. * @wpa_s: wpa_supplicant structure for a network interface
  1757. * Returns: NULL
  1758. *
  1759. * Setter function for "ApScan" property.
  1760. */
  1761. DBusMessage * wpas_dbus_setter_ap_scan(DBusMessage *message,
  1762. struct wpa_supplicant *wpa_s)
  1763. {
  1764. DBusMessage *reply = NULL;
  1765. dbus_uint32_t ap_scan;
  1766. reply = wpas_dbus_simple_property_setter(message, DBUS_TYPE_UINT32,
  1767. &ap_scan);
  1768. if (reply)
  1769. return reply;
  1770. if (wpa_supplicant_set_ap_scan(wpa_s, ap_scan)) {
  1771. return wpas_dbus_error_invalid_args(
  1772. message, "ap_scan must equal 0, 1 or 2");
  1773. }
  1774. return NULL;
  1775. }
  1776. /**
  1777. * wpas_dbus_getter_ifname - Get interface name
  1778. * @message: Pointer to incoming dbus message
  1779. * @wpa_s: wpa_supplicant structure for a network interface
  1780. * Returns: A dbus message containing a name of network interface
  1781. * associated with with wpa_s
  1782. *
  1783. * Getter for "Ifname" property.
  1784. */
  1785. DBusMessage * wpas_dbus_getter_ifname(DBusMessage *message,
  1786. struct wpa_supplicant *wpa_s)
  1787. {
  1788. const char *ifname = wpa_s->ifname;
  1789. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  1790. &ifname);
  1791. }
  1792. /**
  1793. * wpas_dbus_getter_driver - Get interface name
  1794. * @message: Pointer to incoming dbus message
  1795. * @wpa_s: wpa_supplicant structure for a network interface
  1796. * Returns: A dbus message containing a name of network interface
  1797. * driver associated with with wpa_s
  1798. *
  1799. * Getter for "Driver" property.
  1800. */
  1801. DBusMessage * wpas_dbus_getter_driver(DBusMessage *message,
  1802. struct wpa_supplicant *wpa_s)
  1803. {
  1804. const char *driver;
  1805. if (wpa_s->driver == NULL || wpa_s->driver->name == NULL) {
  1806. wpa_printf(MSG_DEBUG, "wpas_dbus_getter_driver[dbus]: "
  1807. "wpa_s has no driver set");
  1808. return wpas_dbus_error_unknown_error(message, NULL);
  1809. }
  1810. driver = wpa_s->driver->name;
  1811. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  1812. &driver);
  1813. }
  1814. /**
  1815. * wpas_dbus_getter_current_bss - Get current bss object path
  1816. * @message: Pointer to incoming dbus message
  1817. * @wpa_s: wpa_supplicant structure for a network interface
  1818. * Returns: A dbus message containing a DBus object path to
  1819. * current BSS
  1820. *
  1821. * Getter for "CurrentBSS" property.
  1822. */
  1823. DBusMessage * wpas_dbus_getter_current_bss(DBusMessage *message,
  1824. struct wpa_supplicant *wpa_s)
  1825. {
  1826. DBusMessage *reply;
  1827. char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *bss_obj_path = path_buf;
  1828. if (wpa_s->current_bss)
  1829. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1830. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1831. wpa_s->dbus_new_path, wpa_s->current_bss->id);
  1832. else
  1833. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX, "/");
  1834. reply = wpas_dbus_simple_property_getter(message,
  1835. DBUS_TYPE_OBJECT_PATH,
  1836. &bss_obj_path);
  1837. return reply;
  1838. }
  1839. /**
  1840. * wpas_dbus_getter_current_network - Get current network object path
  1841. * @message: Pointer to incoming dbus message
  1842. * @wpa_s: wpa_supplicant structure for a network interface
  1843. * Returns: A dbus message containing a DBus object path to
  1844. * current network
  1845. *
  1846. * Getter for "CurrentNetwork" property.
  1847. */
  1848. DBusMessage * wpas_dbus_getter_current_network(DBusMessage *message,
  1849. struct wpa_supplicant *wpa_s)
  1850. {
  1851. DBusMessage *reply;
  1852. char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *net_obj_path = path_buf;
  1853. if (wpa_s->current_ssid)
  1854. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1855. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1856. wpa_s->dbus_new_path, wpa_s->current_ssid->id);
  1857. else
  1858. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX, "/");
  1859. reply = wpas_dbus_simple_property_getter(message,
  1860. DBUS_TYPE_OBJECT_PATH,
  1861. &net_obj_path);
  1862. return reply;
  1863. }
  1864. /**
  1865. * wpas_dbus_getter_bridge_ifname - Get interface name
  1866. * @message: Pointer to incoming dbus message
  1867. * @wpa_s: wpa_supplicant structure for a network interface
  1868. * Returns: A dbus message containing a name of bridge network
  1869. * interface associated with with wpa_s
  1870. *
  1871. * Getter for "BridgeIfname" property.
  1872. */
  1873. DBusMessage * wpas_dbus_getter_bridge_ifname(DBusMessage *message,
  1874. struct wpa_supplicant *wpa_s)
  1875. {
  1876. const char *bridge_ifname = NULL;
  1877. bridge_ifname = wpa_s->bridge_ifname;
  1878. if (bridge_ifname == NULL) {
  1879. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bridge_ifname[dbus]: "
  1880. "wpa_s has no bridge interface name set");
  1881. return wpas_dbus_error_unknown_error(message, NULL);
  1882. }
  1883. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  1884. &bridge_ifname);
  1885. }
  1886. /**
  1887. * wpas_dbus_getter_bsss - Get array of BSSs objects
  1888. * @message: Pointer to incoming dbus message
  1889. * @wpa_s: wpa_supplicant structure for a network interface
  1890. * Returns: a dbus message containing an array of all known BSS objects
  1891. * dbus paths
  1892. *
  1893. * Getter for "BSSs" property.
  1894. */
  1895. DBusMessage * wpas_dbus_getter_bsss(DBusMessage *message,
  1896. struct wpa_supplicant *wpa_s)
  1897. {
  1898. DBusMessage *reply = NULL;
  1899. struct wpa_bss *bss;
  1900. char **paths;
  1901. unsigned int i = 0;
  1902. paths = os_zalloc(wpa_s->num_bss * sizeof(char *));
  1903. if (!paths) {
  1904. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1905. NULL);
  1906. }
  1907. /* Loop through scan results and append each result's object path */
  1908. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  1909. paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1910. if (paths[i] == NULL) {
  1911. reply = dbus_message_new_error(message,
  1912. DBUS_ERROR_NO_MEMORY,
  1913. NULL);
  1914. goto out;
  1915. }
  1916. /* Construct the object path for this BSS. */
  1917. os_snprintf(paths[i++], WPAS_DBUS_OBJECT_PATH_MAX,
  1918. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1919. wpa_s->dbus_new_path, bss->id);
  1920. }
  1921. reply = wpas_dbus_simple_array_property_getter(message,
  1922. DBUS_TYPE_OBJECT_PATH,
  1923. paths, wpa_s->num_bss);
  1924. out:
  1925. while (i)
  1926. os_free(paths[--i]);
  1927. os_free(paths);
  1928. return reply;
  1929. }
  1930. /**
  1931. * wpas_dbus_getter_networks - Get array of networks objects
  1932. * @message: Pointer to incoming dbus message
  1933. * @wpa_s: wpa_supplicant structure for a network interface
  1934. * Returns: a dbus message containing an array of all configured
  1935. * networks dbus object paths.
  1936. *
  1937. * Getter for "Networks" property.
  1938. */
  1939. DBusMessage * wpas_dbus_getter_networks(DBusMessage *message,
  1940. struct wpa_supplicant *wpa_s)
  1941. {
  1942. DBusMessage *reply = NULL;
  1943. struct wpa_ssid *ssid;
  1944. char **paths;
  1945. unsigned int i = 0, num = 0;
  1946. if (wpa_s->conf == NULL) {
  1947. wpa_printf(MSG_ERROR, "wpas_dbus_getter_networks[dbus]: "
  1948. "An error occurred getting networks list.");
  1949. return wpas_dbus_error_unknown_error(message, NULL);
  1950. }
  1951. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  1952. num++;
  1953. paths = os_zalloc(num * sizeof(char *));
  1954. if (!paths) {
  1955. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1956. NULL);
  1957. }
  1958. /* Loop through configured networks and append object path of each */
  1959. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1960. paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1961. if (paths[i] == NULL) {
  1962. reply = dbus_message_new_error(message,
  1963. DBUS_ERROR_NO_MEMORY,
  1964. NULL);
  1965. goto out;
  1966. }
  1967. /* Construct the object path for this network. */
  1968. os_snprintf(paths[i++], WPAS_DBUS_OBJECT_PATH_MAX,
  1969. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
  1970. wpa_s->dbus_new_path, ssid->id);
  1971. }
  1972. reply = wpas_dbus_simple_array_property_getter(message,
  1973. DBUS_TYPE_OBJECT_PATH,
  1974. paths, num);
  1975. out:
  1976. while (i)
  1977. os_free(paths[--i]);
  1978. os_free(paths);
  1979. return reply;
  1980. }
  1981. /**
  1982. * wpas_dbus_getter_blobs - Get all blobs defined for this interface
  1983. * @message: Pointer to incoming dbus message
  1984. * @wpa_s: wpa_supplicant structure for a network interface
  1985. * Returns: a dbus message containing a dictionary of pairs (blob_name, blob)
  1986. *
  1987. * Getter for "Blobs" property.
  1988. */
  1989. DBusMessage * wpas_dbus_getter_blobs(DBusMessage *message,
  1990. struct wpa_supplicant *wpa_s)
  1991. {
  1992. DBusMessage *reply = NULL;
  1993. DBusMessageIter iter, variant_iter, dict_iter, entry_iter, array_iter;
  1994. struct wpa_config_blob *blob;
  1995. if (message == NULL)
  1996. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  1997. else
  1998. reply = dbus_message_new_method_return(message);
  1999. if (!reply)
  2000. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2001. NULL);
  2002. dbus_message_iter_init_append(reply, &iter);
  2003. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  2004. "a{say}", &variant_iter) ||
  2005. !dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY,
  2006. "{say}", &dict_iter)) {
  2007. dbus_message_unref(reply);
  2008. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2009. NULL);
  2010. }
  2011. blob = wpa_s->conf->blobs;
  2012. while (blob) {
  2013. if (!dbus_message_iter_open_container(&dict_iter,
  2014. DBUS_TYPE_DICT_ENTRY,
  2015. NULL, &entry_iter) ||
  2016. !dbus_message_iter_append_basic(&entry_iter,
  2017. DBUS_TYPE_STRING,
  2018. &(blob->name)) ||
  2019. !dbus_message_iter_open_container(&entry_iter,
  2020. DBUS_TYPE_ARRAY,
  2021. DBUS_TYPE_BYTE_AS_STRING,
  2022. &array_iter) ||
  2023. !dbus_message_iter_append_fixed_array(&array_iter,
  2024. DBUS_TYPE_BYTE,
  2025. &(blob->data),
  2026. blob->len) ||
  2027. !dbus_message_iter_close_container(&entry_iter,
  2028. &array_iter) ||
  2029. !dbus_message_iter_close_container(&dict_iter,
  2030. &entry_iter)) {
  2031. dbus_message_unref(reply);
  2032. return dbus_message_new_error(message,
  2033. DBUS_ERROR_NO_MEMORY,
  2034. NULL);
  2035. }
  2036. blob = blob->next;
  2037. }
  2038. if (!dbus_message_iter_close_container(&variant_iter, &dict_iter) ||
  2039. !dbus_message_iter_close_container(&iter, &variant_iter)) {
  2040. dbus_message_unref(reply);
  2041. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2042. NULL);
  2043. }
  2044. return reply;
  2045. }
  2046. /**
  2047. * wpas_dbus_getter_bss_bssid - Return the BSSID of a BSS
  2048. * @message: Pointer to incoming dbus message
  2049. * @bss: a pair of interface describing structure and bss's id
  2050. * Returns: a dbus message containing the bssid for the requested bss
  2051. *
  2052. * Getter for "BSSID" property.
  2053. */
  2054. DBusMessage * wpas_dbus_getter_bss_bssid(DBusMessage *message,
  2055. struct bss_handler_args *bss)
  2056. {
  2057. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2058. if (!res) {
  2059. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_bssid[dbus]: no "
  2060. "bss with id %d found", bss->id);
  2061. return NULL;
  2062. }
  2063. return wpas_dbus_simple_array_property_getter(message, DBUS_TYPE_BYTE,
  2064. res->bssid, ETH_ALEN);
  2065. }
  2066. /**
  2067. * wpas_dbus_getter_bss_ssid - Return the SSID of a BSS
  2068. * @message: Pointer to incoming dbus message
  2069. * @bss: a pair of interface describing structure and bss's id
  2070. * Returns: a dbus message containing the ssid for the requested bss
  2071. *
  2072. * Getter for "SSID" property.
  2073. */
  2074. DBusMessage * wpas_dbus_getter_bss_ssid(DBusMessage *message,
  2075. struct bss_handler_args *bss)
  2076. {
  2077. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2078. if (!res) {
  2079. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_ssid[dbus]: no "
  2080. "bss with id %d found", bss->id);
  2081. return NULL;
  2082. }
  2083. return wpas_dbus_simple_array_property_getter(message, DBUS_TYPE_BYTE,
  2084. res->ssid,
  2085. res->ssid_len);
  2086. }
  2087. /**
  2088. * wpas_dbus_getter_bss_privacy - Return the privacy flag of a BSS
  2089. * @message: Pointer to incoming dbus message
  2090. * @bss: a pair of interface describing structure and bss's id
  2091. * Returns: a dbus message containing the privacy flag value of requested bss
  2092. *
  2093. * Getter for "Privacy" property.
  2094. */
  2095. DBusMessage * wpas_dbus_getter_bss_privacy(DBusMessage *message,
  2096. struct bss_handler_args *bss)
  2097. {
  2098. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2099. dbus_bool_t privacy;
  2100. if (!res) {
  2101. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_privacy[dbus]: no "
  2102. "bss with id %d found", bss->id);
  2103. return NULL;
  2104. }
  2105. privacy = (res->caps & IEEE80211_CAP_PRIVACY) ? TRUE : FALSE;
  2106. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
  2107. &privacy);
  2108. }
  2109. /**
  2110. * wpas_dbus_getter_bss_mode - Return the mode of a BSS
  2111. * @message: Pointer to incoming dbus message
  2112. * @bss: a pair of interface describing structure and bss's id
  2113. * Returns: a dbus message containing the mode of requested bss
  2114. *
  2115. * Getter for "Mode" property.
  2116. */
  2117. DBusMessage * wpas_dbus_getter_bss_mode(DBusMessage *message,
  2118. struct bss_handler_args *bss)
  2119. {
  2120. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2121. const char *mode;
  2122. if (!res) {
  2123. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_mode[dbus]: no "
  2124. "bss with id %d found", bss->id);
  2125. return NULL;
  2126. }
  2127. if (res->caps & IEEE80211_CAP_IBSS)
  2128. mode = "ad-hoc";
  2129. else
  2130. mode = "infrastructure";
  2131. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  2132. &mode);
  2133. }
  2134. /**
  2135. * wpas_dbus_getter_bss_level - Return the signal strength of a BSS
  2136. * @message: Pointer to incoming dbus message
  2137. * @bss: a pair of interface describing structure and bss's id
  2138. * Returns: a dbus message containing the signal strength of requested bss
  2139. *
  2140. * Getter for "Level" property.
  2141. */
  2142. DBusMessage * wpas_dbus_getter_bss_signal(DBusMessage *message,
  2143. struct bss_handler_args *bss)
  2144. {
  2145. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2146. if (!res) {
  2147. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_signal[dbus]: no "
  2148. "bss with id %d found", bss->id);
  2149. return NULL;
  2150. }
  2151. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_INT16,
  2152. &res->level);
  2153. }
  2154. /**
  2155. * wpas_dbus_getter_bss_frequency - Return the frequency of a BSS
  2156. * @message: Pointer to incoming dbus message
  2157. * @bss: a pair of interface describing structure and bss's id
  2158. * Returns: a dbus message containing the frequency of requested bss
  2159. *
  2160. * Getter for "Frequency" property.
  2161. */
  2162. DBusMessage * wpas_dbus_getter_bss_frequency(DBusMessage *message,
  2163. struct bss_handler_args *bss)
  2164. {
  2165. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2166. if (!res) {
  2167. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_frequency[dbus]: "
  2168. "no bss with id %d found", bss->id);
  2169. return NULL;
  2170. }
  2171. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_UINT16,
  2172. &res->freq);
  2173. }
  2174. static int cmp_u8s_desc(const void *a, const void *b)
  2175. {
  2176. return (*(u8 *) b - *(u8 *) a);
  2177. }
  2178. /**
  2179. * wpas_dbus_getter_bss_rates - Return available bit rates of a BSS
  2180. * @message: Pointer to incoming dbus message
  2181. * @bss: a pair of interface describing structure and bss's id
  2182. * Returns: a dbus message containing sorted array of bit rates
  2183. *
  2184. * Getter for "Rates" property.
  2185. */
  2186. DBusMessage * wpas_dbus_getter_bss_rates(DBusMessage *message,
  2187. struct bss_handler_args *bss)
  2188. {
  2189. DBusMessage *reply;
  2190. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2191. u8 *ie_rates = NULL;
  2192. u32 *real_rates;
  2193. int rates_num, i;
  2194. if (!res) {
  2195. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_rates[dbus]: "
  2196. "no bss with id %d found", bss->id);
  2197. return NULL;
  2198. }
  2199. rates_num = wpa_bss_get_bit_rates(res, &ie_rates);
  2200. if (rates_num < 0)
  2201. return NULL;
  2202. qsort(ie_rates, rates_num, 1, cmp_u8s_desc);
  2203. real_rates = os_malloc(sizeof(u32) * rates_num);
  2204. if (!real_rates) {
  2205. os_free(ie_rates);
  2206. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2207. NULL);
  2208. }
  2209. for (i = 0; i < rates_num; i++)
  2210. real_rates[i] = ie_rates[i] * 500000;
  2211. reply = wpas_dbus_simple_array_property_getter(message,
  2212. DBUS_TYPE_UINT32,
  2213. real_rates, rates_num);
  2214. os_free(ie_rates);
  2215. os_free(real_rates);
  2216. return reply;
  2217. }
  2218. static DBusMessage * wpas_dbus_get_bss_security_prop(
  2219. DBusMessage *message, struct wpa_ie_data *ie_data)
  2220. {
  2221. DBusMessage *reply;
  2222. DBusMessageIter iter, iter_dict, variant_iter;
  2223. const char *group;
  2224. const char *pairwise[2]; /* max 2 pairwise ciphers is supported */
  2225. const char *key_mgmt[7]; /* max 7 key managements may be supported */
  2226. int n;
  2227. if (message == NULL)
  2228. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  2229. else
  2230. reply = dbus_message_new_method_return(message);
  2231. if (!reply)
  2232. goto nomem;
  2233. dbus_message_iter_init_append(reply, &iter);
  2234. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  2235. "a{sv}", &variant_iter))
  2236. goto nomem;
  2237. if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
  2238. goto nomem;
  2239. /* KeyMgmt */
  2240. n = 0;
  2241. if (ie_data->key_mgmt & WPA_KEY_MGMT_PSK)
  2242. key_mgmt[n++] = "wpa-psk";
  2243. if (ie_data->key_mgmt & WPA_KEY_MGMT_FT_PSK)
  2244. key_mgmt[n++] = "wpa-ft-psk";
  2245. if (ie_data->key_mgmt & WPA_KEY_MGMT_PSK_SHA256)
  2246. key_mgmt[n++] = "wpa-psk-sha256";
  2247. if (ie_data->key_mgmt & WPA_KEY_MGMT_IEEE8021X)
  2248. key_mgmt[n++] = "wpa-eap";
  2249. if (ie_data->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X)
  2250. key_mgmt[n++] = "wpa-ft-eap";
  2251. if (ie_data->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256)
  2252. key_mgmt[n++] = "wpa-eap-sha256";
  2253. if (ie_data->key_mgmt & WPA_KEY_MGMT_NONE)
  2254. key_mgmt[n++] = "wpa-none";
  2255. if (!wpa_dbus_dict_append_string_array(&iter_dict, "KeyMgmt",
  2256. key_mgmt, n))
  2257. goto nomem;
  2258. /* Group */
  2259. switch (ie_data->group_cipher) {
  2260. case WPA_CIPHER_WEP40:
  2261. group = "wep40";
  2262. break;
  2263. case WPA_CIPHER_TKIP:
  2264. group = "tkip";
  2265. break;
  2266. case WPA_CIPHER_CCMP:
  2267. group = "ccmp";
  2268. break;
  2269. case WPA_CIPHER_WEP104:
  2270. group = "wep104";
  2271. break;
  2272. default:
  2273. group = "";
  2274. break;
  2275. }
  2276. if (!wpa_dbus_dict_append_string(&iter_dict, "Group", group))
  2277. goto nomem;
  2278. /* Pairwise */
  2279. n = 0;
  2280. if (ie_data->pairwise_cipher & WPA_CIPHER_TKIP)
  2281. pairwise[n++] = "tkip";
  2282. if (ie_data->pairwise_cipher & WPA_CIPHER_CCMP)
  2283. pairwise[n++] = "ccmp";
  2284. if (!wpa_dbus_dict_append_string_array(&iter_dict, "Pairwise",
  2285. pairwise, n))
  2286. goto nomem;
  2287. /* Management group (RSN only) */
  2288. if (ie_data->proto == WPA_PROTO_RSN) {
  2289. switch (ie_data->mgmt_group_cipher) {
  2290. #ifdef CONFIG_IEEE80211W
  2291. case WPA_CIPHER_AES_128_CMAC:
  2292. group = "aes128cmac";
  2293. break;
  2294. #endif /* CONFIG_IEEE80211W */
  2295. default:
  2296. group = "";
  2297. break;
  2298. }
  2299. if (!wpa_dbus_dict_append_string(&iter_dict, "MgmtGroup",
  2300. group))
  2301. goto nomem;
  2302. }
  2303. if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
  2304. goto nomem;
  2305. if (!dbus_message_iter_close_container(&iter, &variant_iter))
  2306. goto nomem;
  2307. return reply;
  2308. nomem:
  2309. if (reply)
  2310. dbus_message_unref(reply);
  2311. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  2312. }
  2313. /**
  2314. * wpas_dbus_getter_bss_wpa - Return the WPA options of a BSS
  2315. * @message: Pointer to incoming dbus message
  2316. * @bss: a pair of interface describing structure and bss's id
  2317. * Returns: a dbus message containing the WPA options of requested bss
  2318. *
  2319. * Getter for "WPA" property.
  2320. */
  2321. DBusMessage * wpas_dbus_getter_bss_wpa(DBusMessage *message,
  2322. struct bss_handler_args *bss)
  2323. {
  2324. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2325. struct wpa_ie_data wpa_data;
  2326. const u8 *ie;
  2327. if (!res) {
  2328. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_wpa[dbus]: no "
  2329. "bss with id %d found", bss->id);
  2330. return NULL;
  2331. }
  2332. os_memset(&wpa_data, 0, sizeof(wpa_data));
  2333. ie = wpa_bss_get_vendor_ie(res, WPA_IE_VENDOR_TYPE);
  2334. if (ie)
  2335. wpa_parse_wpa_ie(ie, 2 + ie[1], &wpa_data);
  2336. return wpas_dbus_get_bss_security_prop(message, &wpa_data);
  2337. }
  2338. /**
  2339. * wpas_dbus_getter_bss_rsn - Return the RSN options of a BSS
  2340. * @message: Pointer to incoming dbus message
  2341. * @bss: a pair of interface describing structure and bss's id
  2342. * Returns: a dbus message containing the RSN options of requested bss
  2343. *
  2344. * Getter for "RSN" property.
  2345. */
  2346. DBusMessage * wpas_dbus_getter_bss_rsn(DBusMessage *message,
  2347. struct bss_handler_args *bss)
  2348. {
  2349. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2350. struct wpa_ie_data wpa_data;
  2351. const u8 *ie;
  2352. if (!res) {
  2353. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_rsn[dbus]: no "
  2354. "bss with id %d found", bss->id);
  2355. return NULL;
  2356. }
  2357. os_memset(&wpa_data, 0, sizeof(wpa_data));
  2358. ie = wpa_bss_get_ie(res, WLAN_EID_RSN);
  2359. if (ie)
  2360. wpa_parse_wpa_ie(ie, 2 + ie[1], &wpa_data);
  2361. return wpas_dbus_get_bss_security_prop(message, &wpa_data);
  2362. }
  2363. /**
  2364. * wpas_dbus_getter_bss_ies - Return all IEs of a BSS
  2365. * @message: Pointer to incoming dbus message
  2366. * @bss: a pair of interface describing structure and bss's id
  2367. * Returns: a dbus message containing IEs byte array
  2368. *
  2369. * Getter for "IEs" property.
  2370. */
  2371. DBusMessage * wpas_dbus_getter_bss_ies(DBusMessage *message,
  2372. struct bss_handler_args *bss)
  2373. {
  2374. struct wpa_bss *res = wpa_bss_get_id(bss->wpa_s, bss->id);
  2375. if (!res) {
  2376. wpa_printf(MSG_ERROR, "wpas_dbus_getter_bss_ies[dbus]: no "
  2377. "bss with id %d found", bss->id);
  2378. return NULL;
  2379. }
  2380. return wpas_dbus_simple_array_property_getter(message, DBUS_TYPE_BYTE,
  2381. res + 1, res->ie_len);
  2382. }
  2383. /**
  2384. * wpas_dbus_getter_enabled - Check whether network is enabled or disabled
  2385. * @message: Pointer to incoming dbus message
  2386. * @wpas_dbus_setter_enabled: wpa_supplicant structure for a network interface
  2387. * and wpa_ssid structure for a configured network
  2388. * Returns: DBus message with boolean indicating state of configured network
  2389. * or DBus error on failure
  2390. *
  2391. * Getter for "enabled" property of a configured network.
  2392. */
  2393. DBusMessage * wpas_dbus_getter_enabled(DBusMessage *message,
  2394. struct network_handler_args *net)
  2395. {
  2396. dbus_bool_t enabled = net->ssid->disabled ? FALSE : TRUE;
  2397. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
  2398. &enabled);
  2399. }
  2400. /**
  2401. * wpas_dbus_setter_enabled - Mark a configured network as enabled or disabled
  2402. * @message: Pointer to incoming dbus message
  2403. * @wpas_dbus_setter_enabled: wpa_supplicant structure for a network interface
  2404. * and wpa_ssid structure for a configured network
  2405. * Returns: NULL indicating success or DBus error on failure
  2406. *
  2407. * Setter for "Enabled" property of a configured network.
  2408. */
  2409. DBusMessage * wpas_dbus_setter_enabled(DBusMessage *message,
  2410. struct network_handler_args *net)
  2411. {
  2412. DBusMessage *reply = NULL;
  2413. struct wpa_supplicant *wpa_s;
  2414. struct wpa_ssid *ssid;
  2415. dbus_bool_t enable;
  2416. reply = wpas_dbus_simple_property_setter(message, DBUS_TYPE_BOOLEAN,
  2417. &enable);
  2418. if (reply)
  2419. return reply;
  2420. wpa_s = net->wpa_s;
  2421. ssid = net->ssid;
  2422. if (enable)
  2423. wpa_supplicant_enable_network(wpa_s, ssid);
  2424. else
  2425. wpa_supplicant_disable_network(wpa_s, ssid);
  2426. return NULL;
  2427. }
  2428. /**
  2429. * wpas_dbus_getter_network_properties - Get options for a configured network
  2430. * @message: Pointer to incoming dbus message
  2431. * @net: wpa_supplicant structure for a network interface and
  2432. * wpa_ssid structure for a configured network
  2433. * Returns: DBus message with network properties or DBus error on failure
  2434. *
  2435. * Getter for "Properties" property of a configured network.
  2436. */
  2437. DBusMessage * wpas_dbus_getter_network_properties(
  2438. DBusMessage *message, struct network_handler_args *net)
  2439. {
  2440. DBusMessage *reply = NULL;
  2441. DBusMessageIter iter, variant_iter, dict_iter;
  2442. char **iterator;
  2443. char **props = wpa_config_get_all(net->ssid, 0);
  2444. if (!props)
  2445. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2446. NULL);
  2447. if (message == NULL)
  2448. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  2449. else
  2450. reply = dbus_message_new_method_return(message);
  2451. if (!reply) {
  2452. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2453. NULL);
  2454. goto out;
  2455. }
  2456. dbus_message_iter_init_append(reply, &iter);
  2457. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  2458. "a{sv}", &variant_iter) ||
  2459. !wpa_dbus_dict_open_write(&variant_iter, &dict_iter)) {
  2460. dbus_message_unref(reply);
  2461. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2462. NULL);
  2463. goto out;
  2464. }
  2465. iterator = props;
  2466. while (*iterator) {
  2467. if (!wpa_dbus_dict_append_string(&dict_iter, *iterator,
  2468. *(iterator + 1))) {
  2469. dbus_message_unref(reply);
  2470. reply = dbus_message_new_error(message,
  2471. DBUS_ERROR_NO_MEMORY,
  2472. NULL);
  2473. goto out;
  2474. }
  2475. iterator += 2;
  2476. }
  2477. if (!wpa_dbus_dict_close_write(&variant_iter, &dict_iter) ||
  2478. !dbus_message_iter_close_container(&iter, &variant_iter)) {
  2479. dbus_message_unref(reply);
  2480. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  2481. NULL);
  2482. goto out;
  2483. }
  2484. out:
  2485. iterator = props;
  2486. while (*iterator) {
  2487. os_free(*iterator);
  2488. iterator++;
  2489. }
  2490. os_free(props);
  2491. return reply;
  2492. }
  2493. /**
  2494. * wpas_dbus_setter_network_properties - Set options for a configured network
  2495. * @message: Pointer to incoming dbus message
  2496. * @net: wpa_supplicant structure for a network interface and
  2497. * wpa_ssid structure for a configured network
  2498. * Returns: NULL indicating success or DBus error on failure
  2499. *
  2500. * Setter for "Properties" property of a configured network.
  2501. */
  2502. DBusMessage * wpas_dbus_setter_network_properties(
  2503. DBusMessage *message, struct network_handler_args *net)
  2504. {
  2505. struct wpa_ssid *ssid = net->ssid;
  2506. DBusMessage *reply = NULL;
  2507. DBusMessageIter iter, variant_iter;
  2508. dbus_message_iter_init(message, &iter);
  2509. dbus_message_iter_next(&iter);
  2510. dbus_message_iter_next(&iter);
  2511. dbus_message_iter_recurse(&iter, &variant_iter);
  2512. reply = set_network_properties(message, net->wpa_s, ssid,
  2513. &variant_iter);
  2514. if (reply)
  2515. wpa_printf(MSG_DEBUG, "dbus control interface couldn't set "
  2516. "network properties");
  2517. return reply;
  2518. }