dbus_old_handlers.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440
  1. /*
  2. * WPA Supplicant / dbus-based control interface
  3. * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include <dbus/dbus.h>
  16. #include "common.h"
  17. #include "eap_peer/eap_methods.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "eapol_supp/eapol_supp_sm.h"
  20. #include "rsn_supp/wpa.h"
  21. #include "../config.h"
  22. #include "../wpa_supplicant_i.h"
  23. #include "../driver_i.h"
  24. #include "../notify.h"
  25. #include "../wpas_glue.h"
  26. #include "../bss.h"
  27. #include "dbus_old.h"
  28. #include "dbus_old_handlers.h"
  29. #include "dbus_dict_helpers.h"
  30. extern int wpa_debug_level;
  31. extern int wpa_debug_show_keys;
  32. extern int wpa_debug_timestamp;
  33. /**
  34. * wpas_dbus_new_invalid_opts_error - Return a new invalid options error message
  35. * @message: Pointer to incoming dbus message this error refers to
  36. * Returns: a dbus error message
  37. *
  38. * Convenience function to create and return an invalid options error
  39. */
  40. DBusMessage * wpas_dbus_new_invalid_opts_error(DBusMessage *message,
  41. const char *arg)
  42. {
  43. DBusMessage *reply;
  44. reply = dbus_message_new_error(message, WPAS_ERROR_INVALID_OPTS,
  45. "Did not receive correct message "
  46. "arguments.");
  47. if (arg != NULL)
  48. dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg,
  49. DBUS_TYPE_INVALID);
  50. return reply;
  51. }
  52. /**
  53. * wpas_dbus_new_success_reply - Return a new success reply message
  54. * @message: Pointer to incoming dbus message this reply refers to
  55. * Returns: a dbus message containing a single UINT32 that indicates
  56. * success (ie, a value of 1)
  57. *
  58. * Convenience function to create and return a success reply message
  59. */
  60. DBusMessage * wpas_dbus_new_success_reply(DBusMessage *message)
  61. {
  62. DBusMessage *reply;
  63. unsigned int success = 1;
  64. reply = dbus_message_new_method_return(message);
  65. dbus_message_append_args(reply, DBUS_TYPE_UINT32, &success,
  66. DBUS_TYPE_INVALID);
  67. return reply;
  68. }
  69. /**
  70. * wpas_dbus_global_add_interface - Request registration of a network interface
  71. * @message: Pointer to incoming dbus message
  72. * @global: %wpa_supplicant global data structure
  73. * Returns: The object path of the new interface object,
  74. * or a dbus error message with more information
  75. *
  76. * Handler function for "addInterface" method call. Handles requests
  77. * by dbus clients to register a network interface that wpa_supplicant
  78. * will manage.
  79. */
  80. DBusMessage * wpas_dbus_global_add_interface(DBusMessage *message,
  81. struct wpa_global *global)
  82. {
  83. char *ifname = NULL;
  84. char *driver = NULL;
  85. char *driver_param = NULL;
  86. char *confname = NULL;
  87. char *bridge_ifname = NULL;
  88. DBusMessage *reply = NULL;
  89. DBusMessageIter iter;
  90. dbus_message_iter_init(message, &iter);
  91. /* First argument: interface name (DBUS_TYPE_STRING)
  92. * Required; must be non-zero length
  93. */
  94. if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
  95. goto error;
  96. dbus_message_iter_get_basic(&iter, &ifname);
  97. if (!os_strlen(ifname))
  98. goto error;
  99. /* Second argument: dict of options */
  100. if (dbus_message_iter_next(&iter)) {
  101. DBusMessageIter iter_dict;
  102. struct wpa_dbus_dict_entry entry;
  103. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  104. goto error;
  105. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  106. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  107. goto error;
  108. if (!strcmp(entry.key, "driver") &&
  109. (entry.type == DBUS_TYPE_STRING)) {
  110. driver = os_strdup(entry.str_value);
  111. wpa_dbus_dict_entry_clear(&entry);
  112. if (driver == NULL)
  113. goto error;
  114. } else if (!strcmp(entry.key, "driver-params") &&
  115. (entry.type == DBUS_TYPE_STRING)) {
  116. driver_param = os_strdup(entry.str_value);
  117. wpa_dbus_dict_entry_clear(&entry);
  118. if (driver_param == NULL)
  119. goto error;
  120. } else if (!strcmp(entry.key, "config-file") &&
  121. (entry.type == DBUS_TYPE_STRING)) {
  122. confname = os_strdup(entry.str_value);
  123. wpa_dbus_dict_entry_clear(&entry);
  124. if (confname == NULL)
  125. goto error;
  126. } else if (!strcmp(entry.key, "bridge-ifname") &&
  127. (entry.type == DBUS_TYPE_STRING)) {
  128. bridge_ifname = os_strdup(entry.str_value);
  129. wpa_dbus_dict_entry_clear(&entry);
  130. if (bridge_ifname == NULL)
  131. goto error;
  132. } else {
  133. wpa_dbus_dict_entry_clear(&entry);
  134. goto error;
  135. }
  136. }
  137. }
  138. /*
  139. * Try to get the wpa_supplicant record for this iface, return
  140. * an error if we already control it.
  141. */
  142. if (wpa_supplicant_get_iface(global, ifname) != NULL) {
  143. reply = dbus_message_new_error(message,
  144. WPAS_ERROR_EXISTS_ERROR,
  145. "wpa_supplicant already "
  146. "controls this interface.");
  147. } else {
  148. struct wpa_supplicant *wpa_s;
  149. struct wpa_interface iface;
  150. os_memset(&iface, 0, sizeof(iface));
  151. iface.ifname = ifname;
  152. iface.driver = driver;
  153. iface.driver_param = driver_param;
  154. iface.confname = confname;
  155. iface.bridge_ifname = bridge_ifname;
  156. /* Otherwise, have wpa_supplicant attach to it. */
  157. if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
  158. const char *path = wpa_s->dbus_path;
  159. reply = dbus_message_new_method_return(message);
  160. dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH,
  161. &path, DBUS_TYPE_INVALID);
  162. } else {
  163. reply = dbus_message_new_error(message,
  164. WPAS_ERROR_ADD_ERROR,
  165. "wpa_supplicant "
  166. "couldn't grab this "
  167. "interface.");
  168. }
  169. }
  170. out:
  171. os_free(driver);
  172. os_free(driver_param);
  173. os_free(confname);
  174. os_free(bridge_ifname);
  175. return reply;
  176. error:
  177. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  178. goto out;
  179. }
  180. /**
  181. * wpas_dbus_global_remove_interface - Request deregistration of an interface
  182. * @message: Pointer to incoming dbus message
  183. * @global: wpa_supplicant global data structure
  184. * Returns: a dbus message containing a UINT32 indicating success (1) or
  185. * failure (0), or returns a dbus error message with more information
  186. *
  187. * Handler function for "removeInterface" method call. Handles requests
  188. * by dbus clients to deregister a network interface that wpa_supplicant
  189. * currently manages.
  190. */
  191. DBusMessage * wpas_dbus_global_remove_interface(DBusMessage *message,
  192. struct wpa_global *global)
  193. {
  194. struct wpa_supplicant *wpa_s;
  195. char *path;
  196. DBusMessage *reply = NULL;
  197. if (!dbus_message_get_args(message, NULL,
  198. DBUS_TYPE_OBJECT_PATH, &path,
  199. DBUS_TYPE_INVALID)) {
  200. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  201. goto out;
  202. }
  203. wpa_s = wpa_supplicant_get_iface_by_dbus_path(global, path);
  204. if (wpa_s == NULL) {
  205. reply = wpas_dbus_new_invalid_iface_error(message);
  206. goto out;
  207. }
  208. if (!wpa_supplicant_remove_iface(global, wpa_s)) {
  209. reply = wpas_dbus_new_success_reply(message);
  210. } else {
  211. reply = dbus_message_new_error(message,
  212. WPAS_ERROR_REMOVE_ERROR,
  213. "wpa_supplicant couldn't "
  214. "remove this interface.");
  215. }
  216. out:
  217. return reply;
  218. }
  219. /**
  220. * wpas_dbus_global_get_interface - Get the object path for an interface name
  221. * @message: Pointer to incoming dbus message
  222. * @global: %wpa_supplicant global data structure
  223. * Returns: The object path of the interface object,
  224. * or a dbus error message with more information
  225. *
  226. * Handler function for "getInterface" method call. Handles requests
  227. * by dbus clients for the object path of an specific network interface.
  228. */
  229. DBusMessage * wpas_dbus_global_get_interface(DBusMessage *message,
  230. struct wpa_global *global)
  231. {
  232. DBusMessage *reply = NULL;
  233. const char *ifname;
  234. const char *path;
  235. struct wpa_supplicant *wpa_s;
  236. if (!dbus_message_get_args(message, NULL,
  237. DBUS_TYPE_STRING, &ifname,
  238. DBUS_TYPE_INVALID)) {
  239. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  240. goto out;
  241. }
  242. wpa_s = wpa_supplicant_get_iface(global, ifname);
  243. if (wpa_s == NULL) {
  244. reply = wpas_dbus_new_invalid_iface_error(message);
  245. goto out;
  246. }
  247. path = wpa_s->dbus_path;
  248. reply = dbus_message_new_method_return(message);
  249. dbus_message_append_args(reply,
  250. DBUS_TYPE_OBJECT_PATH, &path,
  251. DBUS_TYPE_INVALID);
  252. out:
  253. return reply;
  254. }
  255. /**
  256. * wpas_dbus_global_set_debugparams- Set the debug params
  257. * @message: Pointer to incoming dbus message
  258. * @global: %wpa_supplicant global data structure
  259. * Returns: a dbus message containing a UINT32 indicating success (1) or
  260. * failure (0), or returns a dbus error message with more information
  261. *
  262. * Handler function for "setDebugParams" method call. Handles requests
  263. * by dbus clients for the object path of an specific network interface.
  264. */
  265. DBusMessage * wpas_dbus_global_set_debugparams(DBusMessage *message,
  266. struct wpa_global *global)
  267. {
  268. DBusMessage *reply = NULL;
  269. int debug_level;
  270. dbus_bool_t debug_timestamp;
  271. dbus_bool_t debug_show_keys;
  272. if (!dbus_message_get_args(message, NULL,
  273. DBUS_TYPE_INT32, &debug_level,
  274. DBUS_TYPE_BOOLEAN, &debug_timestamp,
  275. DBUS_TYPE_BOOLEAN, &debug_show_keys,
  276. DBUS_TYPE_INVALID)) {
  277. return wpas_dbus_new_invalid_opts_error(message, NULL);
  278. }
  279. if (wpa_supplicant_set_debug_params(global, debug_level,
  280. debug_timestamp ? 1 : 0,
  281. debug_show_keys ? 1 : 0)) {
  282. return wpas_dbus_new_invalid_opts_error(message, NULL);
  283. }
  284. reply = wpas_dbus_new_success_reply(message);
  285. return reply;
  286. }
  287. /**
  288. * wpas_dbus_iface_scan - Request a wireless scan on an interface
  289. * @message: Pointer to incoming dbus message
  290. * @wpa_s: wpa_supplicant structure for a network interface
  291. * Returns: a dbus message containing a UINT32 indicating success (1) or
  292. * failure (0)
  293. *
  294. * Handler function for "scan" method call of a network device. Requests
  295. * that wpa_supplicant perform a wireless scan as soon as possible
  296. * on a particular wireless interface.
  297. */
  298. DBusMessage * wpas_dbus_iface_scan(DBusMessage *message,
  299. struct wpa_supplicant *wpa_s)
  300. {
  301. wpa_s->scan_req = 2;
  302. wpa_supplicant_req_scan(wpa_s, 0, 0);
  303. return wpas_dbus_new_success_reply(message);
  304. }
  305. /**
  306. * wpas_dbus_iface_scan_results - Get the results of a recent scan request
  307. * @message: Pointer to incoming dbus message
  308. * @wpa_s: wpa_supplicant structure for a network interface
  309. * Returns: a dbus message containing a dbus array of objects paths, or returns
  310. * a dbus error message if not scan results could be found
  311. *
  312. * Handler function for "scanResults" method call of a network device. Returns
  313. * a dbus message containing the object paths of wireless networks found.
  314. */
  315. DBusMessage * wpas_dbus_iface_scan_results(DBusMessage *message,
  316. struct wpa_supplicant *wpa_s)
  317. {
  318. DBusMessage *reply = NULL;
  319. DBusMessageIter iter;
  320. DBusMessageIter sub_iter;
  321. struct wpa_bss *bss;
  322. /* Create and initialize the return message */
  323. reply = dbus_message_new_method_return(message);
  324. dbus_message_iter_init_append(reply, &iter);
  325. dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
  326. DBUS_TYPE_OBJECT_PATH_AS_STRING,
  327. &sub_iter);
  328. /* Loop through scan results and append each result's object path */
  329. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  330. char path_buf[WPAS_DBUS_OBJECT_PATH_MAX];
  331. char *path = path_buf;
  332. /* Construct the object path for this network. Note that ':'
  333. * is not a valid character in dbus object paths.
  334. */
  335. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  336. "%s/" WPAS_DBUS_BSSIDS_PART "/"
  337. WPAS_DBUS_BSSID_FORMAT,
  338. wpa_s->dbus_path, MAC2STR(bss->bssid));
  339. dbus_message_iter_append_basic(&sub_iter,
  340. DBUS_TYPE_OBJECT_PATH, &path);
  341. }
  342. dbus_message_iter_close_container(&iter, &sub_iter);
  343. return reply;
  344. }
  345. /**
  346. * wpas_dbus_bssid_properties - Return the properties of a scanned network
  347. * @message: Pointer to incoming dbus message
  348. * @wpa_s: wpa_supplicant structure for a network interface
  349. * @res: wpa_supplicant scan result for which to get properties
  350. * Returns: a dbus message containing the properties for the requested network
  351. *
  352. * Handler function for "properties" method call of a scanned network.
  353. * Returns a dbus message containing the the properties.
  354. */
  355. DBusMessage * wpas_dbus_bssid_properties(DBusMessage *message,
  356. struct wpa_supplicant *wpa_s,
  357. struct wpa_bss *bss)
  358. {
  359. DBusMessage *reply;
  360. DBusMessageIter iter, iter_dict;
  361. const u8 *ie;
  362. /* Dump the properties into a dbus message */
  363. reply = dbus_message_new_method_return(message);
  364. dbus_message_iter_init_append(reply, &iter);
  365. if (!wpa_dbus_dict_open_write(&iter, &iter_dict))
  366. goto error;
  367. if (!wpa_dbus_dict_append_byte_array(&iter_dict, "bssid",
  368. (const char *) bss->bssid,
  369. ETH_ALEN))
  370. goto error;
  371. ie = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  372. if (ie) {
  373. if (!wpa_dbus_dict_append_byte_array(&iter_dict, "ssid",
  374. (const char *) (ie + 2),
  375. ie[1]))
  376. goto error;
  377. }
  378. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  379. if (ie) {
  380. if (!wpa_dbus_dict_append_byte_array(&iter_dict, "wpaie",
  381. (const char *) ie,
  382. ie[1] + 2))
  383. goto error;
  384. }
  385. ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  386. if (ie) {
  387. if (!wpa_dbus_dict_append_byte_array(&iter_dict, "rsnie",
  388. (const char *) ie,
  389. ie[1] + 2))
  390. goto error;
  391. }
  392. ie = wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE);
  393. if (ie) {
  394. if (!wpa_dbus_dict_append_byte_array(&iter_dict, "wpsie",
  395. (const char *) ie,
  396. ie[1] + 2))
  397. goto error;
  398. }
  399. if (bss->freq) {
  400. if (!wpa_dbus_dict_append_int32(&iter_dict, "frequency",
  401. bss->freq))
  402. goto error;
  403. }
  404. if (!wpa_dbus_dict_append_uint16(&iter_dict, "capabilities",
  405. bss->caps))
  406. goto error;
  407. if (!(bss->flags & WPA_BSS_QUAL_INVALID) &&
  408. !wpa_dbus_dict_append_int32(&iter_dict, "quality", bss->qual))
  409. goto error;
  410. if (!(bss->flags & WPA_BSS_NOISE_INVALID) &&
  411. !wpa_dbus_dict_append_int32(&iter_dict, "noise", bss->noise))
  412. goto error;
  413. if (!(bss->flags & WPA_BSS_LEVEL_INVALID) &&
  414. !wpa_dbus_dict_append_int32(&iter_dict, "level", bss->level))
  415. goto error;
  416. if (!wpa_dbus_dict_append_int32(&iter_dict, "maxrate",
  417. wpa_bss_get_max_rate(bss) * 500000))
  418. goto error;
  419. if (!wpa_dbus_dict_close_write(&iter, &iter_dict))
  420. goto error;
  421. return reply;
  422. error:
  423. if (reply)
  424. dbus_message_unref(reply);
  425. return dbus_message_new_error(message, WPAS_ERROR_INTERNAL_ERROR,
  426. "an internal error occurred returning "
  427. "BSSID properties.");
  428. }
  429. /**
  430. * wpas_dbus_iface_capabilities - Return interface capabilities
  431. * @message: Pointer to incoming dbus message
  432. * @wpa_s: wpa_supplicant structure for a network interface
  433. * Returns: A dbus message containing a dict of strings
  434. *
  435. * Handler function for "capabilities" method call of an interface.
  436. */
  437. DBusMessage * wpas_dbus_iface_capabilities(DBusMessage *message,
  438. struct wpa_supplicant *wpa_s)
  439. {
  440. DBusMessage *reply = NULL;
  441. struct wpa_driver_capa capa;
  442. int res;
  443. DBusMessageIter iter, iter_dict;
  444. char **eap_methods;
  445. size_t num_items;
  446. dbus_bool_t strict = FALSE;
  447. DBusMessageIter iter_dict_entry, iter_dict_val, iter_array;
  448. if (!dbus_message_get_args(message, NULL,
  449. DBUS_TYPE_BOOLEAN, &strict,
  450. DBUS_TYPE_INVALID))
  451. strict = FALSE;
  452. reply = dbus_message_new_method_return(message);
  453. dbus_message_iter_init_append(reply, &iter);
  454. if (!wpa_dbus_dict_open_write(&iter, &iter_dict))
  455. goto error;
  456. /* EAP methods */
  457. eap_methods = eap_get_names_as_string_array(&num_items);
  458. if (eap_methods) {
  459. dbus_bool_t success = FALSE;
  460. size_t i = 0;
  461. success = wpa_dbus_dict_append_string_array(
  462. &iter_dict, "eap", (const char **) eap_methods,
  463. num_items);
  464. /* free returned method array */
  465. while (eap_methods[i])
  466. os_free(eap_methods[i++]);
  467. os_free(eap_methods);
  468. if (!success)
  469. goto error;
  470. }
  471. res = wpa_drv_get_capa(wpa_s, &capa);
  472. /***** pairwise cipher */
  473. if (res < 0) {
  474. if (!strict) {
  475. const char *args[] = {"CCMP", "TKIP", "NONE"};
  476. if (!wpa_dbus_dict_append_string_array(
  477. &iter_dict, "pairwise", args,
  478. sizeof(args) / sizeof(char*)))
  479. goto error;
  480. }
  481. } else {
  482. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "pairwise",
  483. &iter_dict_entry,
  484. &iter_dict_val,
  485. &iter_array))
  486. goto error;
  487. if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  488. if (!wpa_dbus_dict_string_array_add_element(
  489. &iter_array, "CCMP"))
  490. goto error;
  491. }
  492. if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  493. if (!wpa_dbus_dict_string_array_add_element(
  494. &iter_array, "TKIP"))
  495. goto error;
  496. }
  497. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  498. if (!wpa_dbus_dict_string_array_add_element(
  499. &iter_array, "NONE"))
  500. goto error;
  501. }
  502. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  503. &iter_dict_entry,
  504. &iter_dict_val,
  505. &iter_array))
  506. goto error;
  507. }
  508. /***** group cipher */
  509. if (res < 0) {
  510. if (!strict) {
  511. const char *args[] = {
  512. "CCMP", "TKIP", "WEP104", "WEP40"
  513. };
  514. if (!wpa_dbus_dict_append_string_array(
  515. &iter_dict, "group", args,
  516. sizeof(args) / sizeof(char*)))
  517. goto error;
  518. }
  519. } else {
  520. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "group",
  521. &iter_dict_entry,
  522. &iter_dict_val,
  523. &iter_array))
  524. goto error;
  525. if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  526. if (!wpa_dbus_dict_string_array_add_element(
  527. &iter_array, "CCMP"))
  528. goto error;
  529. }
  530. if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  531. if (!wpa_dbus_dict_string_array_add_element(
  532. &iter_array, "TKIP"))
  533. goto error;
  534. }
  535. if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP104) {
  536. if (!wpa_dbus_dict_string_array_add_element(
  537. &iter_array, "WEP104"))
  538. goto error;
  539. }
  540. if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP40) {
  541. if (!wpa_dbus_dict_string_array_add_element(
  542. &iter_array, "WEP40"))
  543. goto error;
  544. }
  545. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  546. &iter_dict_entry,
  547. &iter_dict_val,
  548. &iter_array))
  549. goto error;
  550. }
  551. /***** key management */
  552. if (res < 0) {
  553. if (!strict) {
  554. const char *args[] = {
  555. "WPA-PSK", "WPA-EAP", "IEEE8021X", "WPA-NONE",
  556. "NONE"
  557. };
  558. if (!wpa_dbus_dict_append_string_array(
  559. &iter_dict, "key_mgmt", args,
  560. sizeof(args) / sizeof(char*)))
  561. goto error;
  562. }
  563. } else {
  564. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "key_mgmt",
  565. &iter_dict_entry,
  566. &iter_dict_val,
  567. &iter_array))
  568. goto error;
  569. if (!wpa_dbus_dict_string_array_add_element(&iter_array,
  570. "NONE"))
  571. goto error;
  572. if (!wpa_dbus_dict_string_array_add_element(&iter_array,
  573. "IEEE8021X"))
  574. goto error;
  575. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  576. WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
  577. if (!wpa_dbus_dict_string_array_add_element(
  578. &iter_array, "WPA-EAP"))
  579. goto error;
  580. }
  581. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  582. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  583. if (!wpa_dbus_dict_string_array_add_element(
  584. &iter_array, "WPA-PSK"))
  585. goto error;
  586. }
  587. if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  588. if (!wpa_dbus_dict_string_array_add_element(
  589. &iter_array, "WPA-NONE"))
  590. goto error;
  591. }
  592. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  593. &iter_dict_entry,
  594. &iter_dict_val,
  595. &iter_array))
  596. goto error;
  597. }
  598. /***** WPA protocol */
  599. if (res < 0) {
  600. if (!strict) {
  601. const char *args[] = { "RSN", "WPA" };
  602. if (!wpa_dbus_dict_append_string_array(
  603. &iter_dict, "proto", args,
  604. sizeof(args) / sizeof(char*)))
  605. goto error;
  606. }
  607. } else {
  608. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "proto",
  609. &iter_dict_entry,
  610. &iter_dict_val,
  611. &iter_array))
  612. goto error;
  613. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  614. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  615. if (!wpa_dbus_dict_string_array_add_element(
  616. &iter_array, "RSN"))
  617. goto error;
  618. }
  619. if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  620. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
  621. if (!wpa_dbus_dict_string_array_add_element(
  622. &iter_array, "WPA"))
  623. goto error;
  624. }
  625. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  626. &iter_dict_entry,
  627. &iter_dict_val,
  628. &iter_array))
  629. goto error;
  630. }
  631. /***** auth alg */
  632. if (res < 0) {
  633. if (!strict) {
  634. const char *args[] = { "OPEN", "SHARED", "LEAP" };
  635. if (!wpa_dbus_dict_append_string_array(
  636. &iter_dict, "auth_alg", args,
  637. sizeof(args) / sizeof(char*)))
  638. goto error;
  639. }
  640. } else {
  641. if (!wpa_dbus_dict_begin_string_array(&iter_dict, "auth_alg",
  642. &iter_dict_entry,
  643. &iter_dict_val,
  644. &iter_array))
  645. goto error;
  646. if (capa.auth & (WPA_DRIVER_AUTH_OPEN)) {
  647. if (!wpa_dbus_dict_string_array_add_element(
  648. &iter_array, "OPEN"))
  649. goto error;
  650. }
  651. if (capa.auth & (WPA_DRIVER_AUTH_SHARED)) {
  652. if (!wpa_dbus_dict_string_array_add_element(
  653. &iter_array, "SHARED"))
  654. goto error;
  655. }
  656. if (capa.auth & (WPA_DRIVER_AUTH_LEAP)) {
  657. if (!wpa_dbus_dict_string_array_add_element(
  658. &iter_array, "LEAP"))
  659. goto error;
  660. }
  661. if (!wpa_dbus_dict_end_string_array(&iter_dict,
  662. &iter_dict_entry,
  663. &iter_dict_val,
  664. &iter_array))
  665. goto error;
  666. }
  667. if (!wpa_dbus_dict_close_write(&iter, &iter_dict))
  668. goto error;
  669. return reply;
  670. error:
  671. if (reply)
  672. dbus_message_unref(reply);
  673. return dbus_message_new_error(message, WPAS_ERROR_INTERNAL_ERROR,
  674. "an internal error occurred returning "
  675. "interface capabilities.");
  676. }
  677. /**
  678. * wpas_dbus_iface_add_network - Add a new configured network
  679. * @message: Pointer to incoming dbus message
  680. * @wpa_s: wpa_supplicant structure for a network interface
  681. * Returns: A dbus message containing the object path of the new network
  682. *
  683. * Handler function for "addNetwork" method call of a network interface.
  684. */
  685. DBusMessage * wpas_dbus_iface_add_network(DBusMessage *message,
  686. struct wpa_supplicant *wpa_s)
  687. {
  688. DBusMessage *reply = NULL;
  689. struct wpa_ssid *ssid;
  690. char *path = NULL;
  691. path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  692. if (path == NULL) {
  693. wpa_printf(MSG_ERROR, "dbus: Not enough memory to send scan "
  694. "results signal");
  695. goto out;
  696. }
  697. ssid = wpa_config_add_network(wpa_s->conf);
  698. if (ssid == NULL) {
  699. reply = dbus_message_new_error(message,
  700. WPAS_ERROR_ADD_NETWORK_ERROR,
  701. "wpa_supplicant could not add "
  702. "a network on this interface.");
  703. goto out;
  704. }
  705. wpas_notify_network_added(wpa_s, ssid);
  706. ssid->disabled = 1;
  707. wpa_config_set_network_defaults(ssid);
  708. /* Construct the object path for this network. */
  709. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  710. "%s/" WPAS_DBUS_NETWORKS_PART "/%d",
  711. wpa_s->dbus_path, ssid->id);
  712. reply = dbus_message_new_method_return(message);
  713. dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH,
  714. &path, DBUS_TYPE_INVALID);
  715. out:
  716. os_free(path);
  717. return reply;
  718. }
  719. /**
  720. * wpas_dbus_iface_remove_network - Remove a configured network
  721. * @message: Pointer to incoming dbus message
  722. * @wpa_s: wpa_supplicant structure for a network interface
  723. * Returns: A dbus message containing a UINT32 indicating success (1) or
  724. * failure (0)
  725. *
  726. * Handler function for "removeNetwork" method call of a network interface.
  727. */
  728. DBusMessage * wpas_dbus_iface_remove_network(DBusMessage *message,
  729. struct wpa_supplicant *wpa_s)
  730. {
  731. DBusMessage *reply = NULL;
  732. const char *op;
  733. char *iface = NULL, *net_id = NULL;
  734. int id;
  735. struct wpa_ssid *ssid;
  736. if (!dbus_message_get_args(message, NULL,
  737. DBUS_TYPE_OBJECT_PATH, &op,
  738. DBUS_TYPE_INVALID)) {
  739. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  740. goto out;
  741. }
  742. /* Extract the network ID */
  743. iface = wpas_dbus_decompose_object_path(op, &net_id, NULL);
  744. if (iface == NULL) {
  745. reply = wpas_dbus_new_invalid_network_error(message);
  746. goto out;
  747. }
  748. /* Ensure the network is actually a child of this interface */
  749. if (os_strcmp(iface, wpa_s->dbus_path) != 0) {
  750. reply = wpas_dbus_new_invalid_network_error(message);
  751. goto out;
  752. }
  753. id = strtoul(net_id, NULL, 10);
  754. ssid = wpa_config_get_network(wpa_s->conf, id);
  755. if (ssid == NULL) {
  756. reply = wpas_dbus_new_invalid_network_error(message);
  757. goto out;
  758. }
  759. wpas_notify_network_removed(wpa_s, ssid);
  760. if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
  761. reply = dbus_message_new_error(message,
  762. WPAS_ERROR_REMOVE_NETWORK_ERROR,
  763. "error removing the specified "
  764. "on this interface.");
  765. goto out;
  766. }
  767. if (ssid == wpa_s->current_ssid)
  768. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  769. reply = wpas_dbus_new_success_reply(message);
  770. out:
  771. os_free(iface);
  772. os_free(net_id);
  773. return reply;
  774. }
  775. static const char *dont_quote[] = {
  776. "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap",
  777. "opensc_engine_path", "pkcs11_engine_path", "pkcs11_module_path",
  778. "bssid", NULL
  779. };
  780. static dbus_bool_t should_quote_opt(const char *key)
  781. {
  782. int i = 0;
  783. while (dont_quote[i] != NULL) {
  784. if (strcmp(key, dont_quote[i]) == 0)
  785. return FALSE;
  786. i++;
  787. }
  788. return TRUE;
  789. }
  790. /**
  791. * wpas_dbus_iface_set_network - Set options for a configured network
  792. * @message: Pointer to incoming dbus message
  793. * @wpa_s: wpa_supplicant structure for a network interface
  794. * @ssid: wpa_ssid structure for a configured network
  795. * Returns: a dbus message containing a UINT32 indicating success (1) or
  796. * failure (0)
  797. *
  798. * Handler function for "set" method call of a configured network.
  799. */
  800. DBusMessage * wpas_dbus_iface_set_network(DBusMessage *message,
  801. struct wpa_supplicant *wpa_s,
  802. struct wpa_ssid *ssid)
  803. {
  804. DBusMessage *reply = NULL;
  805. struct wpa_dbus_dict_entry entry = { .type = DBUS_TYPE_STRING };
  806. DBusMessageIter iter, iter_dict;
  807. dbus_message_iter_init(message, &iter);
  808. if (!wpa_dbus_dict_open_read(&iter, &iter_dict)) {
  809. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  810. goto out;
  811. }
  812. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  813. char *value = NULL;
  814. size_t size = 50;
  815. int ret;
  816. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry)) {
  817. reply = wpas_dbus_new_invalid_opts_error(message,
  818. NULL);
  819. goto out;
  820. }
  821. /* Type conversions, since wpa_supplicant wants strings */
  822. if (entry.type == DBUS_TYPE_ARRAY &&
  823. entry.array_type == DBUS_TYPE_BYTE) {
  824. if (entry.array_len <= 0)
  825. goto error;
  826. size = entry.array_len * 2 + 1;
  827. value = os_zalloc(size);
  828. if (value == NULL)
  829. goto error;
  830. ret = wpa_snprintf_hex(value, size,
  831. (u8 *) entry.bytearray_value,
  832. entry.array_len);
  833. if (ret <= 0)
  834. goto error;
  835. } else if (entry.type == DBUS_TYPE_STRING) {
  836. if (should_quote_opt(entry.key)) {
  837. size = os_strlen(entry.str_value);
  838. /* Zero-length option check */
  839. if (size <= 0)
  840. goto error;
  841. size += 3; /* For quotes and terminator */
  842. value = os_zalloc(size);
  843. if (value == NULL)
  844. goto error;
  845. ret = os_snprintf(value, size, "\"%s\"",
  846. entry.str_value);
  847. if (ret < 0 || (size_t) ret != (size - 1))
  848. goto error;
  849. } else {
  850. value = os_strdup(entry.str_value);
  851. if (value == NULL)
  852. goto error;
  853. }
  854. } else if (entry.type == DBUS_TYPE_UINT32) {
  855. value = os_zalloc(size);
  856. if (value == NULL)
  857. goto error;
  858. ret = os_snprintf(value, size, "%u",
  859. entry.uint32_value);
  860. if (ret <= 0)
  861. goto error;
  862. } else if (entry.type == DBUS_TYPE_INT32) {
  863. value = os_zalloc(size);
  864. if (value == NULL)
  865. goto error;
  866. ret = os_snprintf(value, size, "%d",
  867. entry.int32_value);
  868. if (ret <= 0)
  869. goto error;
  870. } else
  871. goto error;
  872. if (wpa_config_set(ssid, entry.key, value, 0) < 0)
  873. goto error;
  874. if ((os_strcmp(entry.key, "psk") == 0 &&
  875. value[0] == '"' && ssid->ssid_len) ||
  876. (os_strcmp(entry.key, "ssid") == 0 && ssid->passphrase))
  877. wpa_config_update_psk(ssid);
  878. os_free(value);
  879. wpa_dbus_dict_entry_clear(&entry);
  880. continue;
  881. error:
  882. os_free(value);
  883. reply = wpas_dbus_new_invalid_opts_error(message, entry.key);
  884. wpa_dbus_dict_entry_clear(&entry);
  885. break;
  886. }
  887. if (!reply)
  888. reply = wpas_dbus_new_success_reply(message);
  889. out:
  890. return reply;
  891. }
  892. /**
  893. * wpas_dbus_iface_enable_network - Mark a configured network as enabled
  894. * @message: Pointer to incoming dbus message
  895. * @wpa_s: wpa_supplicant structure for a network interface
  896. * @ssid: wpa_ssid structure for a configured network
  897. * Returns: A dbus message containing a UINT32 indicating success (1) or
  898. * failure (0)
  899. *
  900. * Handler function for "enable" method call of a configured network.
  901. */
  902. DBusMessage * wpas_dbus_iface_enable_network(DBusMessage *message,
  903. struct wpa_supplicant *wpa_s,
  904. struct wpa_ssid *ssid)
  905. {
  906. wpa_supplicant_enable_network(wpa_s, ssid);
  907. return wpas_dbus_new_success_reply(message);
  908. }
  909. /**
  910. * wpas_dbus_iface_disable_network - Mark a configured network as disabled
  911. * @message: Pointer to incoming dbus message
  912. * @wpa_s: wpa_supplicant structure for a network interface
  913. * @ssid: wpa_ssid structure for a configured network
  914. * Returns: A dbus message containing a UINT32 indicating success (1) or
  915. * failure (0)
  916. *
  917. * Handler function for "disable" method call of a configured network.
  918. */
  919. DBusMessage * wpas_dbus_iface_disable_network(DBusMessage *message,
  920. struct wpa_supplicant *wpa_s,
  921. struct wpa_ssid *ssid)
  922. {
  923. wpa_supplicant_disable_network(wpa_s, ssid);
  924. return wpas_dbus_new_success_reply(message);
  925. }
  926. /**
  927. * wpas_dbus_iface_select_network - Attempt association with a configured network
  928. * @message: Pointer to incoming dbus message
  929. * @wpa_s: wpa_supplicant structure for a network interface
  930. * Returns: A dbus message containing a UINT32 indicating success (1) or
  931. * failure (0)
  932. *
  933. * Handler function for "selectNetwork" method call of network interface.
  934. */
  935. DBusMessage * wpas_dbus_iface_select_network(DBusMessage *message,
  936. struct wpa_supplicant *wpa_s)
  937. {
  938. DBusMessage *reply = NULL;
  939. const char *op;
  940. struct wpa_ssid *ssid;
  941. char *iface_obj_path = NULL;
  942. char *network = NULL;
  943. if (os_strlen(dbus_message_get_signature(message)) == 0) {
  944. /* Any network */
  945. ssid = NULL;
  946. } else {
  947. int nid;
  948. if (!dbus_message_get_args(message, NULL,
  949. DBUS_TYPE_OBJECT_PATH, &op,
  950. DBUS_TYPE_INVALID)) {
  951. reply = wpas_dbus_new_invalid_opts_error(message,
  952. NULL);
  953. goto out;
  954. }
  955. /* Extract the network number */
  956. iface_obj_path = wpas_dbus_decompose_object_path(op,
  957. &network,
  958. NULL);
  959. if (iface_obj_path == NULL) {
  960. reply = wpas_dbus_new_invalid_iface_error(message);
  961. goto out;
  962. }
  963. /* Ensure the object path really points to this interface */
  964. if (os_strcmp(iface_obj_path, wpa_s->dbus_path) != 0) {
  965. reply = wpas_dbus_new_invalid_network_error(message);
  966. goto out;
  967. }
  968. nid = strtoul(network, NULL, 10);
  969. if (errno == EINVAL) {
  970. reply = wpas_dbus_new_invalid_network_error(message);
  971. goto out;
  972. }
  973. ssid = wpa_config_get_network(wpa_s->conf, nid);
  974. if (ssid == NULL) {
  975. reply = wpas_dbus_new_invalid_network_error(message);
  976. goto out;
  977. }
  978. }
  979. /* Finally, associate with the network */
  980. wpa_supplicant_select_network(wpa_s, ssid);
  981. reply = wpas_dbus_new_success_reply(message);
  982. out:
  983. os_free(iface_obj_path);
  984. os_free(network);
  985. return reply;
  986. }
  987. /**
  988. * wpas_dbus_iface_disconnect - Terminate the current connection
  989. * @message: Pointer to incoming dbus message
  990. * @wpa_s: wpa_supplicant structure for a network interface
  991. * Returns: A dbus message containing a UINT32 indicating success (1) or
  992. * failure (0)
  993. *
  994. * Handler function for "disconnect" method call of network interface.
  995. */
  996. DBusMessage * wpas_dbus_iface_disconnect(DBusMessage *message,
  997. struct wpa_supplicant *wpa_s)
  998. {
  999. wpa_s->disconnected = 1;
  1000. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1001. return wpas_dbus_new_success_reply(message);
  1002. }
  1003. /**
  1004. * wpas_dbus_iface_set_ap_scan - Control roaming mode
  1005. * @message: Pointer to incoming dbus message
  1006. * @wpa_s: wpa_supplicant structure for a network interface
  1007. * Returns: A dbus message containing a UINT32 indicating success (1) or
  1008. * failure (0)
  1009. *
  1010. * Handler function for "setAPScan" method call.
  1011. */
  1012. DBusMessage * wpas_dbus_iface_set_ap_scan(DBusMessage *message,
  1013. struct wpa_supplicant *wpa_s)
  1014. {
  1015. DBusMessage *reply = NULL;
  1016. dbus_uint32_t ap_scan = 1;
  1017. if (!dbus_message_get_args(message, NULL, DBUS_TYPE_UINT32, &ap_scan,
  1018. DBUS_TYPE_INVALID)) {
  1019. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  1020. goto out;
  1021. }
  1022. if (wpa_supplicant_set_ap_scan(wpa_s, ap_scan)) {
  1023. reply = wpas_dbus_new_invalid_opts_error(message, NULL);
  1024. goto out;
  1025. }
  1026. reply = wpas_dbus_new_success_reply(message);
  1027. out:
  1028. return reply;
  1029. }
  1030. /**
  1031. * wpas_dbus_iface_set_smartcard_modules - Set smartcard related module paths
  1032. * @message: Pointer to incoming dbus message
  1033. * @wpa_s: wpa_supplicant structure for a network interface
  1034. * Returns: A dbus message containing a UINT32 indicating success (1) or
  1035. * failure (0)
  1036. *
  1037. * Handler function for "setSmartcardModules" method call.
  1038. */
  1039. DBusMessage * wpas_dbus_iface_set_smartcard_modules(
  1040. DBusMessage *message, struct wpa_supplicant *wpa_s)
  1041. {
  1042. DBusMessageIter iter, iter_dict;
  1043. char *opensc_engine_path = NULL;
  1044. char *pkcs11_engine_path = NULL;
  1045. char *pkcs11_module_path = NULL;
  1046. struct wpa_dbus_dict_entry entry;
  1047. if (!dbus_message_iter_init(message, &iter))
  1048. goto error;
  1049. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1050. goto error;
  1051. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1052. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1053. goto error;
  1054. if (!strcmp(entry.key, "opensc_engine_path") &&
  1055. (entry.type == DBUS_TYPE_STRING)) {
  1056. opensc_engine_path = os_strdup(entry.str_value);
  1057. if (opensc_engine_path == NULL)
  1058. goto error;
  1059. } else if (!strcmp(entry.key, "pkcs11_engine_path") &&
  1060. (entry.type == DBUS_TYPE_STRING)) {
  1061. pkcs11_engine_path = os_strdup(entry.str_value);
  1062. if (pkcs11_engine_path == NULL)
  1063. goto error;
  1064. } else if (!strcmp(entry.key, "pkcs11_module_path") &&
  1065. (entry.type == DBUS_TYPE_STRING)) {
  1066. pkcs11_module_path = os_strdup(entry.str_value);
  1067. if (pkcs11_module_path == NULL)
  1068. goto error;
  1069. } else {
  1070. wpa_dbus_dict_entry_clear(&entry);
  1071. goto error;
  1072. }
  1073. wpa_dbus_dict_entry_clear(&entry);
  1074. }
  1075. os_free(wpa_s->conf->opensc_engine_path);
  1076. wpa_s->conf->opensc_engine_path = opensc_engine_path;
  1077. os_free(wpa_s->conf->pkcs11_engine_path);
  1078. wpa_s->conf->pkcs11_engine_path = pkcs11_engine_path;
  1079. os_free(wpa_s->conf->pkcs11_module_path);
  1080. wpa_s->conf->pkcs11_module_path = pkcs11_module_path;
  1081. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  1082. eapol_sm_deinit(wpa_s->eapol);
  1083. wpa_s->eapol = NULL;
  1084. wpa_supplicant_init_eapol(wpa_s);
  1085. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  1086. return wpas_dbus_new_success_reply(message);
  1087. error:
  1088. os_free(opensc_engine_path);
  1089. os_free(pkcs11_engine_path);
  1090. os_free(pkcs11_module_path);
  1091. return wpas_dbus_new_invalid_opts_error(message, NULL);
  1092. }
  1093. /**
  1094. * wpas_dbus_iface_get_state - Get interface state
  1095. * @message: Pointer to incoming dbus message
  1096. * @wpa_s: wpa_supplicant structure for a network interface
  1097. * Returns: A dbus message containing a STRING representing the current
  1098. * interface state
  1099. *
  1100. * Handler function for "state" method call.
  1101. */
  1102. DBusMessage * wpas_dbus_iface_get_state(DBusMessage *message,
  1103. struct wpa_supplicant *wpa_s)
  1104. {
  1105. DBusMessage *reply = NULL;
  1106. const char *str_state;
  1107. reply = dbus_message_new_method_return(message);
  1108. if (reply != NULL) {
  1109. str_state = wpa_supplicant_state_txt(wpa_s->wpa_state);
  1110. dbus_message_append_args(reply, DBUS_TYPE_STRING, &str_state,
  1111. DBUS_TYPE_INVALID);
  1112. }
  1113. return reply;
  1114. }
  1115. /**
  1116. * wpas_dbus_iface_get_scanning - Get interface scanning state
  1117. * @message: Pointer to incoming dbus message
  1118. * @wpa_s: wpa_supplicant structure for a network interface
  1119. * Returns: A dbus message containing whether the interface is scanning
  1120. *
  1121. * Handler function for "scanning" method call.
  1122. */
  1123. DBusMessage * wpas_dbus_iface_get_scanning(DBusMessage *message,
  1124. struct wpa_supplicant *wpa_s)
  1125. {
  1126. DBusMessage *reply = NULL;
  1127. dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
  1128. reply = dbus_message_new_method_return(message);
  1129. if (reply != NULL) {
  1130. dbus_message_append_args(reply, DBUS_TYPE_BOOLEAN, &scanning,
  1131. DBUS_TYPE_INVALID);
  1132. } else {
  1133. wpa_printf(MSG_ERROR, "dbus: Not enough memory to return "
  1134. "scanning state");
  1135. }
  1136. return reply;
  1137. }
  1138. /**
  1139. * wpas_dbus_iface_set_blobs - Store named binary blobs (ie, for certificates)
  1140. * @message: Pointer to incoming dbus message
  1141. * @wpa_s: %wpa_supplicant data structure
  1142. * Returns: A dbus message containing a UINT32 indicating success (1) or
  1143. * failure (0)
  1144. *
  1145. * Asks wpa_supplicant to internally store a one or more binary blobs.
  1146. */
  1147. DBusMessage * wpas_dbus_iface_set_blobs(DBusMessage *message,
  1148. struct wpa_supplicant *wpa_s)
  1149. {
  1150. DBusMessage *reply = NULL;
  1151. struct wpa_dbus_dict_entry entry = { .type = DBUS_TYPE_STRING };
  1152. DBusMessageIter iter, iter_dict;
  1153. dbus_message_iter_init(message, &iter);
  1154. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1155. return wpas_dbus_new_invalid_opts_error(message, NULL);
  1156. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1157. struct wpa_config_blob *blob;
  1158. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry)) {
  1159. reply = wpas_dbus_new_invalid_opts_error(message,
  1160. NULL);
  1161. break;
  1162. }
  1163. if (entry.type != DBUS_TYPE_ARRAY ||
  1164. entry.array_type != DBUS_TYPE_BYTE) {
  1165. reply = wpas_dbus_new_invalid_opts_error(
  1166. message, "Byte array expected.");
  1167. break;
  1168. }
  1169. if ((entry.array_len <= 0) || (entry.array_len > 65536) ||
  1170. !strlen(entry.key)) {
  1171. reply = wpas_dbus_new_invalid_opts_error(
  1172. message, "Invalid array size.");
  1173. break;
  1174. }
  1175. blob = os_zalloc(sizeof(*blob));
  1176. if (blob == NULL) {
  1177. reply = dbus_message_new_error(
  1178. message, WPAS_ERROR_ADD_ERROR,
  1179. "Not enough memory to add blob.");
  1180. break;
  1181. }
  1182. blob->data = os_zalloc(entry.array_len);
  1183. if (blob->data == NULL) {
  1184. reply = dbus_message_new_error(
  1185. message, WPAS_ERROR_ADD_ERROR,
  1186. "Not enough memory to add blob data.");
  1187. os_free(blob);
  1188. break;
  1189. }
  1190. blob->name = os_strdup(entry.key);
  1191. blob->len = entry.array_len;
  1192. os_memcpy(blob->data, (u8 *) entry.bytearray_value,
  1193. entry.array_len);
  1194. if (blob->name == NULL || blob->data == NULL) {
  1195. wpa_config_free_blob(blob);
  1196. reply = dbus_message_new_error(
  1197. message, WPAS_ERROR_ADD_ERROR,
  1198. "Error adding blob.");
  1199. break;
  1200. }
  1201. /* Success */
  1202. if (!wpa_config_remove_blob(wpa_s->conf, blob->name))
  1203. wpas_notify_blob_removed(wpa_s, blob->name);
  1204. wpa_config_set_blob(wpa_s->conf, blob);
  1205. wpas_notify_blob_added(wpa_s, blob->name);
  1206. wpa_dbus_dict_entry_clear(&entry);
  1207. }
  1208. wpa_dbus_dict_entry_clear(&entry);
  1209. return reply ? reply : wpas_dbus_new_success_reply(message);
  1210. }
  1211. /**
  1212. * wpas_dbus_iface_remove_blob - Remove named binary blobs
  1213. * @message: Pointer to incoming dbus message
  1214. * @wpa_s: %wpa_supplicant data structure
  1215. * Returns: A dbus message containing a UINT32 indicating success (1) or
  1216. * failure (0)
  1217. *
  1218. * Asks wpa_supplicant to remove one or more previously stored binary blobs.
  1219. */
  1220. DBusMessage * wpas_dbus_iface_remove_blobs(DBusMessage *message,
  1221. struct wpa_supplicant *wpa_s)
  1222. {
  1223. DBusMessageIter iter, array;
  1224. char *err_msg = NULL;
  1225. dbus_message_iter_init(message, &iter);
  1226. if ((dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_ARRAY) ||
  1227. (dbus_message_iter_get_element_type (&iter) != DBUS_TYPE_STRING))
  1228. return wpas_dbus_new_invalid_opts_error(message, NULL);
  1229. dbus_message_iter_recurse(&iter, &array);
  1230. while (dbus_message_iter_get_arg_type(&array) == DBUS_TYPE_STRING) {
  1231. const char *name;
  1232. dbus_message_iter_get_basic(&array, &name);
  1233. if (!os_strlen(name))
  1234. err_msg = "Invalid blob name.";
  1235. if (wpa_config_remove_blob(wpa_s->conf, name) != 0)
  1236. err_msg = "Error removing blob.";
  1237. else
  1238. wpas_notify_blob_removed(wpa_s, name);
  1239. dbus_message_iter_next(&array);
  1240. }
  1241. if (err_msg)
  1242. return dbus_message_new_error(message, WPAS_ERROR_REMOVE_ERROR,
  1243. err_msg);
  1244. return wpas_dbus_new_success_reply(message);
  1245. }