dbus_old_handlers.c 40 KB

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