dbus_old_handlers.c 40 KB

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