dbus_new_handlers.c 86 KB

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