dbus_new_handlers_p2p.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. /*
  2. * WPA Supplicant / dbus-based control interface (P2P)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * Alternatively, this software may be distributed under the terms of BSD
  9. * license.
  10. *
  11. * See README and COPYING for more details.
  12. */
  13. #include "includes.h"
  14. #include "utils/includes.h"
  15. #include "common.h"
  16. #include "../config.h"
  17. #include "../wpa_supplicant_i.h"
  18. #include "../wps_supplicant.h"
  19. #include "../notify.h"
  20. #include "dbus_new_helpers.h"
  21. #include "dbus_new.h"
  22. #include "dbus_new_handlers.h"
  23. #include "dbus_new_handlers_p2p.h"
  24. #include "dbus_dict_helpers.h"
  25. #include "p2p/p2p.h"
  26. #include "common/ieee802_11_defs.h"
  27. #include "ap/hostapd.h"
  28. #include "ap/ap_config.h"
  29. #include "ap/wps_hostapd.h"
  30. #include "../p2p_supplicant.h"
  31. /**
  32. * Parses out the mac address from the peer object path.
  33. * @peer_path - object path of the form
  34. * /fi/w1/wpa_supplicant1/Interfaces/n/Peers/00112233445566 (no colons)
  35. * @addr - out param must be of ETH_ALEN size
  36. * Returns 0 if valid (including MAC), -1 otherwise
  37. */
  38. static int parse_peer_object_path(char *peer_path, u8 addr[ETH_ALEN])
  39. {
  40. char *p;
  41. if (!peer_path)
  42. return -1;
  43. p = strrchr(peer_path, '/');
  44. if (!p)
  45. return -1;
  46. p++;
  47. return hwaddr_compact_aton(p, addr);
  48. }
  49. /**
  50. * wpas_dbus_error_persistent_group_unknown - Return a new PersistentGroupUnknown
  51. * error message
  52. * @message: Pointer to incoming dbus message this error refers to
  53. * Returns: a dbus error message
  54. *
  55. * Convenience function to create and return an invalid persistent group error.
  56. */
  57. static DBusMessage * wpas_dbus_error_persistent_group_unknown(
  58. DBusMessage *message)
  59. {
  60. return dbus_message_new_error(message, WPAS_DBUS_ERROR_NETWORK_UNKNOWN,
  61. "There is no such persistent group in "
  62. "this P2P device.");
  63. }
  64. DBusMessage *wpas_dbus_handler_p2p_find(DBusMessage * message,
  65. struct wpa_supplicant * wpa_s)
  66. {
  67. struct wpa_dbus_dict_entry entry;
  68. DBusMessage *reply = NULL;
  69. DBusMessageIter iter;
  70. DBusMessageIter iter_dict;
  71. unsigned int timeout = 0;
  72. unsigned int searchonly = 0;
  73. enum p2p_discovery_type type = P2P_FIND_ONLY_SOCIAL;
  74. int num_req_dev_types = 0;
  75. unsigned int i;
  76. u8 *req_dev_types = NULL;
  77. dbus_message_iter_init(message, &iter);
  78. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  79. goto error;
  80. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  81. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  82. goto error;
  83. if (!os_strcmp(entry.key, "Timeout") &&
  84. (entry.type == DBUS_TYPE_INT32)) {
  85. timeout = entry.uint32_value;
  86. } else if (!os_strcmp(entry.key, "SearchOnly") &&
  87. (entry.type == DBUS_TYPE_BOOLEAN)) {
  88. searchonly = (entry.bool_value == TRUE) ? 1 : 0;
  89. } else if (os_strcmp(entry.key, "RequestedDeviceTypes") == 0) {
  90. if ((entry.type != DBUS_TYPE_ARRAY) ||
  91. (entry.array_type != WPAS_DBUS_TYPE_BINARRAY))
  92. goto error_clear;
  93. req_dev_types =
  94. os_malloc(WPS_DEV_TYPE_LEN * entry.array_len);
  95. if (!req_dev_types)
  96. goto error_clear;
  97. for (i = 0; i < entry.array_len; i++) {
  98. if (wpabuf_len(entry.binarray_value[i]) !=
  99. WPS_DEV_TYPE_LEN)
  100. goto error_clear;
  101. os_memcpy(req_dev_types + i * WPS_DEV_TYPE_LEN,
  102. wpabuf_head(entry.binarray_value[i]),
  103. WPS_DEV_TYPE_LEN);
  104. }
  105. num_req_dev_types = entry.array_len;
  106. } else
  107. goto error_clear;
  108. wpa_dbus_dict_entry_clear(&entry);
  109. }
  110. wpas_p2p_find(wpa_s, timeout, type, num_req_dev_types, req_dev_types);
  111. return reply;
  112. error_clear:
  113. os_free(req_dev_types);
  114. wpa_dbus_dict_entry_clear(&entry);
  115. error:
  116. reply = wpas_dbus_error_invalid_args(message, entry.key);
  117. return reply;
  118. }
  119. DBusMessage *wpas_dbus_handler_p2p_stop_find(DBusMessage * message,
  120. struct wpa_supplicant * wpa_s)
  121. {
  122. wpas_p2p_stop_find(wpa_s);
  123. return NULL;
  124. }
  125. DBusMessage *wpas_dbus_handler_p2p_rejectpeer(DBusMessage * message,
  126. struct wpa_supplicant * wpa_s)
  127. {
  128. DBusMessageIter iter;
  129. char *peer_object_path = NULL;
  130. u8 peer_addr[ETH_ALEN];
  131. dbus_message_iter_init(message, &iter);
  132. dbus_message_iter_get_basic(&iter, &peer_object_path);
  133. if (parse_peer_object_path(peer_object_path, peer_addr) < 0)
  134. return wpas_dbus_error_invalid_args(message, NULL);
  135. if (wpas_p2p_reject(wpa_s, peer_addr) < 0)
  136. return wpas_dbus_error_unknown_error(message,
  137. "Failed to call wpas_p2p_reject method.");
  138. return NULL;
  139. }
  140. DBusMessage *wpas_dbus_handler_p2p_listen(DBusMessage * message,
  141. struct wpa_supplicant * wpa_s)
  142. {
  143. dbus_int32_t timeout = 0;
  144. if (!dbus_message_get_args(message, NULL, DBUS_TYPE_INT32, &timeout,
  145. DBUS_TYPE_INVALID))
  146. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  147. NULL);
  148. if (wpas_p2p_listen(wpa_s, (unsigned int)timeout))
  149. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  150. NULL);
  151. return NULL;
  152. }
  153. DBusMessage *wpas_dbus_handler_p2p_extendedlisten(DBusMessage * message,
  154. struct wpa_supplicant * wpa_s)
  155. {
  156. unsigned int period = 0, interval = 0;
  157. struct wpa_dbus_dict_entry entry;
  158. DBusMessageIter iter;
  159. DBusMessageIter iter_dict;
  160. dbus_message_iter_init(message, &iter);
  161. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  162. goto error;
  163. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  164. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  165. goto error;
  166. if (!strcmp(entry.key, "period") &&
  167. (entry.type == DBUS_TYPE_INT32))
  168. period = entry.uint32_value;
  169. else if (!strcmp(entry.key, "interval") &&
  170. (entry.type == DBUS_TYPE_INT32))
  171. interval = entry.uint32_value;
  172. else
  173. goto error_clear;
  174. wpa_dbus_dict_entry_clear(&entry);
  175. }
  176. if (wpas_p2p_ext_listen(wpa_s, period, interval))
  177. return wpas_dbus_error_unknown_error(message,
  178. "failed to initiate a p2p_ext_listen.");
  179. return NULL;
  180. error_clear:
  181. wpa_dbus_dict_entry_clear(&entry);
  182. error:
  183. return wpas_dbus_error_invalid_args(message, entry.key);
  184. }
  185. DBusMessage *wpas_dbus_handler_p2p_presence_request(DBusMessage * message,
  186. struct wpa_supplicant *
  187. wpa_s)
  188. {
  189. unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
  190. struct wpa_dbus_dict_entry entry;
  191. DBusMessageIter iter;
  192. DBusMessageIter iter_dict;
  193. dbus_message_iter_init(message, &iter);
  194. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  195. goto error;
  196. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  197. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  198. goto error;
  199. if (!strcmp(entry.key, "duration1") &&
  200. (entry.type == DBUS_TYPE_INT32))
  201. dur1 = entry.uint32_value;
  202. else if (!strcmp(entry.key, "interval1") &&
  203. entry.type == DBUS_TYPE_INT32)
  204. int1 = entry.uint32_value;
  205. else if (!strcmp(entry.key, "duration2") &&
  206. entry.type == DBUS_TYPE_INT32)
  207. dur2 = entry.uint32_value;
  208. else if (!strcmp(entry.key, "interval2") &&
  209. entry.type == DBUS_TYPE_INT32)
  210. int2 = entry.uint32_value;
  211. else
  212. goto error_clear;
  213. wpa_dbus_dict_entry_clear(&entry);
  214. }
  215. if (wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2) < 0)
  216. return wpas_dbus_error_unknown_error(message,
  217. "Failed to invoke presence request.");
  218. return NULL;
  219. error_clear:
  220. wpa_dbus_dict_entry_clear(&entry);
  221. error:
  222. return wpas_dbus_error_invalid_args(message, entry.key);
  223. }
  224. DBusMessage *wpas_dbus_handler_p2p_group_add(DBusMessage * message,
  225. struct wpa_supplicant * wpa_s)
  226. {
  227. DBusMessageIter iter_dict;
  228. DBusMessage *reply = NULL;
  229. DBusMessageIter iter;
  230. struct wpa_dbus_dict_entry entry;
  231. char *pg_object_path = NULL;
  232. int persistent_group = 0;
  233. int freq = 0;
  234. char *iface = NULL;
  235. char *net_id_str = NULL;
  236. unsigned int group_id = 0;
  237. struct wpa_ssid *ssid;
  238. dbus_message_iter_init(message, &iter);
  239. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  240. goto inv_args;
  241. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  242. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  243. goto inv_args;
  244. if (!strcmp(entry.key, "persistent") &&
  245. (entry.type == DBUS_TYPE_BOOLEAN)) {
  246. persistent_group = (entry.bool_value == TRUE) ? 1 : 0;
  247. } else if (!strcmp(entry.key, "frequency") &&
  248. (entry.type == DBUS_TYPE_INT32)) {
  249. freq = entry.int32_value;
  250. if (freq <= 0)
  251. goto inv_args_clear;
  252. } else if (!strcmp(entry.key, "persistent_group_object") &&
  253. entry.type == DBUS_TYPE_OBJECT_PATH)
  254. pg_object_path = os_strdup(entry.str_value);
  255. else
  256. goto inv_args_clear;
  257. wpa_dbus_dict_entry_clear(&entry);
  258. }
  259. if (pg_object_path != NULL) {
  260. /*
  261. * A persistent group Object Path is defined meaning we want
  262. * to re-invoke a persistent group.
  263. */
  264. iface = wpas_dbus_new_decompose_object_path(pg_object_path, 1,
  265. &net_id_str, NULL);
  266. if (iface == NULL ||
  267. os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
  268. reply =
  269. wpas_dbus_error_invalid_args(message,
  270. pg_object_path);
  271. goto out;
  272. }
  273. group_id = strtoul(net_id_str, NULL, 10);
  274. if (errno == EINVAL) {
  275. reply = wpas_dbus_error_invalid_args(
  276. message, pg_object_path);
  277. goto out;
  278. }
  279. /* Get the SSID structure form the persistant group id */
  280. ssid = wpa_config_get_network(wpa_s->conf, group_id);
  281. if (ssid == NULL || ssid->disabled != 2)
  282. goto inv_args;
  283. if (wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq)) {
  284. reply = wpas_dbus_error_unknown_error(message,
  285. "Failed to reinvoke a persistent group");
  286. goto out;
  287. }
  288. } else if (wpas_p2p_group_add(wpa_s, persistent_group, freq))
  289. goto inv_args;
  290. out:
  291. os_free(pg_object_path);
  292. os_free(net_id_str);
  293. os_free(iface);
  294. return reply;
  295. inv_args_clear:
  296. wpa_dbus_dict_entry_clear(&entry);
  297. inv_args:
  298. reply = wpas_dbus_error_invalid_args(message, NULL);
  299. goto out;
  300. }
  301. DBusMessage *wpas_dbus_handler_p2p_disconnect(DBusMessage *message,
  302. struct wpa_supplicant *wpa_s)
  303. {
  304. if (wpas_p2p_disconnect(wpa_s))
  305. return wpas_dbus_error_unknown_error(message,
  306. "failed to disconnect");
  307. return NULL;
  308. }
  309. DBusMessage *wpas_dbus_handler_p2p_flush(DBusMessage * message,
  310. struct wpa_supplicant * wpa_s)
  311. {
  312. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  313. wpa_s->force_long_sd = 0;
  314. p2p_flush(wpa_s->global->p2p);
  315. return NULL;
  316. }
  317. DBusMessage *wpas_dbus_handler_p2p_connect(DBusMessage * message,
  318. struct wpa_supplicant * wpa_s)
  319. {
  320. DBusMessageIter iter_dict;
  321. DBusMessage *reply = NULL;
  322. DBusMessageIter iter;
  323. struct wpa_dbus_dict_entry entry;
  324. char *peer_object_path = NULL;
  325. int persistent_group = 0;
  326. int join = 0;
  327. int authorize_only = 0;
  328. int go_intent = -1;
  329. int freq = 0;
  330. u8 addr[ETH_ALEN];
  331. char *pin = NULL;
  332. enum p2p_wps_method wps_method = WPS_NOT_READY;
  333. int new_pin;
  334. char *err_msg = NULL;
  335. char *iface = NULL;
  336. dbus_message_iter_init(message, &iter);
  337. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  338. goto inv_args;
  339. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  340. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  341. goto inv_args;
  342. if (!strcmp(entry.key, "peer") &&
  343. (entry.type == DBUS_TYPE_OBJECT_PATH)) {
  344. peer_object_path = os_strdup(entry.str_value);
  345. } else if (!strcmp(entry.key, "persistent") &&
  346. (entry.type == DBUS_TYPE_BOOLEAN)) {
  347. persistent_group = (entry.bool_value == TRUE) ? 1 : 0;
  348. } else if (!strcmp(entry.key, "join") &&
  349. (entry.type == DBUS_TYPE_BOOLEAN)) {
  350. join = (entry.bool_value == TRUE) ? 1 : 0;
  351. } else if (!strcmp(entry.key, "authorize_only") &&
  352. (entry.type == DBUS_TYPE_BOOLEAN)) {
  353. authorize_only = (entry.bool_value == TRUE) ? 1 : 0;
  354. } else if (!strcmp(entry.key, "frequency") &&
  355. (entry.type == DBUS_TYPE_INT32)) {
  356. freq = entry.int32_value;
  357. if (freq <= 0)
  358. goto inv_args_clear;
  359. } else if (!strcmp(entry.key, "go_intent") &&
  360. (entry.type == DBUS_TYPE_INT32)) {
  361. go_intent = entry.int32_value;
  362. if ((go_intent < 0) || (go_intent > 15))
  363. goto inv_args_clear;
  364. } else if (!strcmp(entry.key, "wps_method") &&
  365. (entry.type == DBUS_TYPE_STRING)) {
  366. if (!strcmp(entry.str_value, "pbc"))
  367. wps_method = WPS_PBC;
  368. else if (!strcmp(entry.str_value, "pin"))
  369. wps_method = WPS_PIN_DISPLAY;
  370. else if (!strcmp(entry.str_value, "label"))
  371. wps_method = WPS_PIN_LABEL;
  372. else if (!strcmp(entry.str_value, "display"))
  373. wps_method = WPS_PIN_DISPLAY;
  374. else if (!strcmp(entry.str_value, "keypad"))
  375. wps_method = WPS_PIN_KEYPAD;
  376. else
  377. goto inv_args_clear;
  378. } else if (!strcmp(entry.key, "pin") &&
  379. (entry.type == DBUS_TYPE_STRING)) {
  380. pin = os_strdup(entry.str_value);
  381. } else
  382. goto inv_args_clear;
  383. wpa_dbus_dict_entry_clear(&entry);
  384. }
  385. if (!peer_object_path || (wps_method == WPS_NOT_READY) ||
  386. (parse_peer_object_path(peer_object_path, addr) < 0) ||
  387. (p2p_get_peer_info(wpa_s->global->p2p, addr, 0, NULL, 0) < 0)) {
  388. reply = wpas_dbus_error_invalid_args(message, NULL);
  389. goto inv_args;
  390. }
  391. /*
  392. * Validate the wps_method specified and the pin value.
  393. */
  394. if ((!pin || !pin[0]) &&
  395. ((wps_method == WPS_PIN_LABEL) || (wps_method == WPS_PIN_KEYPAD)))
  396. goto inv_args;
  397. new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
  398. persistent_group, join, authorize_only,
  399. go_intent, freq);
  400. if (new_pin >= 0) {
  401. reply = dbus_message_new_method_return(message);
  402. dbus_message_append_args(reply, DBUS_TYPE_INT32,
  403. &new_pin, DBUS_TYPE_INVALID);
  404. } else {
  405. switch (new_pin) {
  406. case -2:
  407. err_msg = "connect failed due to"
  408. " channel unavailability.";
  409. iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNAVAILABLE;
  410. break;
  411. case -3:
  412. err_msg = "connect failed due to"
  413. " unsupported channel.";
  414. iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNSUPPORTED;
  415. break;
  416. default:
  417. err_msg = "connect failed due to"
  418. " unspecified error.";
  419. iface = WPAS_DBUS_ERROR_CONNECT_UNSPECIFIED_ERROR;
  420. break;
  421. }
  422. /*
  423. * TODO::
  424. * Do we need specialized errors corresponding to above
  425. * error conditions as against just returning a different
  426. * error message?
  427. */
  428. reply = dbus_message_new_error(message, iface, err_msg);
  429. }
  430. out:
  431. os_free(peer_object_path);
  432. os_free(pin);
  433. return reply;
  434. inv_args_clear:
  435. wpa_dbus_dict_entry_clear(&entry);
  436. inv_args:
  437. reply = wpas_dbus_error_invalid_args(message, NULL);
  438. goto out;
  439. }
  440. DBusMessage *wpas_dbus_handler_p2p_invite(DBusMessage * message,
  441. struct wpa_supplicant *wpa_s)
  442. {
  443. DBusMessageIter iter_dict;
  444. DBusMessage *reply = NULL;
  445. DBusMessageIter iter;
  446. struct wpa_dbus_dict_entry entry;
  447. char *peer_object_path = NULL;
  448. char *pg_object_path = NULL;
  449. char *iface = NULL;
  450. char *net_id_str = NULL;
  451. u8 peer_addr[ETH_ALEN];
  452. unsigned int group_id = 0;
  453. int persistent = 0;
  454. struct wpa_ssid *ssid;
  455. dbus_message_iter_init(message, &iter);
  456. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  457. goto err;
  458. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  459. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  460. goto err;
  461. if (!strcmp(entry.key, "peer") &&
  462. (entry.type == DBUS_TYPE_OBJECT_PATH)) {
  463. peer_object_path = os_strdup(entry.str_value);
  464. wpa_dbus_dict_entry_clear(&entry);
  465. } else if (!strcmp(entry.key, "persistent_group_object") &&
  466. (entry.type == DBUS_TYPE_OBJECT_PATH)) {
  467. pg_object_path = os_strdup(entry.str_value);
  468. persistent = 1;
  469. wpa_dbus_dict_entry_clear(&entry);
  470. } else {
  471. wpa_dbus_dict_entry_clear(&entry);
  472. goto err;
  473. }
  474. }
  475. if (!peer_object_path ||
  476. (parse_peer_object_path(peer_object_path, peer_addr) < 0) ||
  477. (p2p_get_peer_info(wpa_s->global->p2p,
  478. peer_addr, 0, NULL, 0) < 0)) {
  479. goto err;
  480. }
  481. if (persistent) {
  482. /*
  483. * A group ID is defined meaning we want to re-invoke a
  484. * persisatnt group
  485. */
  486. iface = wpas_dbus_new_decompose_object_path(pg_object_path, 1,
  487. &net_id_str, NULL);
  488. if (iface == NULL ||
  489. os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
  490. reply =
  491. wpas_dbus_error_invalid_args(message,
  492. pg_object_path);
  493. goto out;
  494. }
  495. group_id = strtoul(net_id_str, NULL, 10);
  496. if (errno == EINVAL) {
  497. reply = wpas_dbus_error_invalid_args(
  498. message, pg_object_path);
  499. goto out;
  500. }
  501. /* Get the SSID structure form the persistant group id */
  502. ssid = wpa_config_get_network(wpa_s->conf, group_id);
  503. if (ssid == NULL || ssid->disabled != 2)
  504. goto err;
  505. if (wpas_p2p_invite(wpa_s, peer_addr, ssid, NULL) < 0) {
  506. reply = wpas_dbus_error_unknown_error(
  507. message,
  508. "Failed to reinvoke a persistent group");
  509. goto out;
  510. }
  511. } else {
  512. /*
  513. * No group ID means propose to a peer to join my active group
  514. */
  515. if (wpas_p2p_invite_group(wpa_s, wpa_s->ifname,
  516. peer_addr, NULL)) {
  517. reply = wpas_dbus_error_unknown_error(
  518. message,
  519. "Failed to join to an active group");
  520. goto out;
  521. }
  522. }
  523. out:
  524. os_free(pg_object_path);
  525. os_free(peer_object_path);
  526. return reply;
  527. err:
  528. reply = wpas_dbus_error_invalid_args(message, NULL);
  529. goto out;
  530. }
  531. DBusMessage *wpas_dbus_handler_p2p_prov_disc_req(DBusMessage * message,
  532. struct wpa_supplicant *wpa_s)
  533. {
  534. DBusMessageIter iter;
  535. char *peer_object_path = NULL;
  536. char *config_method = NULL;
  537. u8 peer_addr[ETH_ALEN];
  538. dbus_message_iter_init(message, &iter);
  539. dbus_message_iter_get_basic(&iter, &peer_object_path);
  540. if (parse_peer_object_path(peer_object_path, peer_addr) < 0)
  541. return wpas_dbus_error_invalid_args(message, NULL);
  542. dbus_message_iter_next(&iter);
  543. dbus_message_iter_get_basic(&iter, &config_method);
  544. /*
  545. * Validation checks on config_method are being duplicated here
  546. * to be able to return invalid args reply since the error code
  547. * from p2p module are not granular enough (yet).
  548. */
  549. if (os_strcmp(config_method, "display") &&
  550. os_strcmp(config_method, "keypad") &&
  551. os_strcmp(config_method, "pbc") &&
  552. os_strcmp(config_method, "pushbutton"))
  553. return wpas_dbus_error_invalid_args(message, NULL);
  554. if (wpas_p2p_prov_disc(wpa_s, peer_addr, config_method) < 0)
  555. return wpas_dbus_error_unknown_error(message,
  556. "Failed to send provision discovery request");
  557. return NULL;
  558. }
  559. /*
  560. * P2P Device property accessor methods.
  561. */
  562. DBusMessage *wpas_dbus_getter_p2p_device_properties(DBusMessage * message,
  563. struct wpa_supplicant *
  564. wpa_s)
  565. {
  566. DBusMessage *reply = NULL;
  567. DBusMessageIter iter, variant_iter, dict_iter;
  568. const char *dev_name;
  569. int num_sec_dev_types = 0;
  570. int num_vendor_extensions = 0;
  571. int i;
  572. const struct wpabuf *vendor_ext[P2P_MAX_WPS_VENDOR_EXT];
  573. if (message == NULL)
  574. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  575. else
  576. reply = dbus_message_new_method_return(message);
  577. if (!reply)
  578. goto err_no_mem;
  579. dbus_message_iter_init_append(reply, &iter);
  580. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  581. "a{sv}", &variant_iter) ||
  582. !wpa_dbus_dict_open_write(&variant_iter, &dict_iter))
  583. goto err_no_mem;
  584. /* DeviceName */
  585. dev_name = wpa_s->conf->device_name;
  586. if (dev_name &&
  587. !wpa_dbus_dict_append_string(&dict_iter, "DeviceName", dev_name))
  588. goto err_no_mem;
  589. /* Primary device type */
  590. if (!wpa_dbus_dict_append_byte_array(&dict_iter, "PrimaryDeviceType",
  591. (char *)wpa_s->conf->device_type,
  592. WPS_DEV_TYPE_LEN))
  593. goto err_no_mem;
  594. /* Secondary device types */
  595. for (i = 0; i < MAX_SEC_DEVICE_TYPES; i++) {
  596. if (wpa_s->conf->sec_device_type[i] == NULL)
  597. break;
  598. num_sec_dev_types++;
  599. }
  600. if (!wpa_dbus_dict_append_string_array(
  601. &dict_iter, "SecondaryDeviceTypes",
  602. (const char **)wpa_s->conf->sec_device_type,
  603. num_sec_dev_types))
  604. goto err_no_mem;
  605. /* Vendor Extensions */
  606. for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
  607. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  608. continue;
  609. vendor_ext[num_vendor_extensions++] =
  610. wpa_s->conf->wps_vendor_ext[i];
  611. }
  612. if (num_vendor_extensions &&
  613. !wpa_dbus_dict_append_wpabuf_array(&dict_iter,
  614. "VendorExtension",
  615. vendor_ext,
  616. num_vendor_extensions))
  617. goto err_no_mem;
  618. /* GO Intent */
  619. if (!wpa_dbus_dict_append_uint32(&dict_iter, "GOIntent",
  620. wpa_s->conf->p2p_go_intent))
  621. goto err_no_mem;
  622. /* Persistant Reconnect */
  623. if (!wpa_dbus_dict_append_bool(&dict_iter, "PersistantReconnect",
  624. wpa_s->conf->persistent_reconnect))
  625. goto err_no_mem;
  626. /* Listen Reg Class */
  627. if (!wpa_dbus_dict_append_uint32(&dict_iter, "ListenRegClass",
  628. wpa_s->conf->p2p_listen_reg_class))
  629. goto err_no_mem;
  630. /* Listen Channel */
  631. if (!wpa_dbus_dict_append_uint32(&dict_iter, "ListenChannel",
  632. wpa_s->conf->p2p_listen_channel))
  633. goto err_no_mem;
  634. /* Oper Reg Class */
  635. if (!wpa_dbus_dict_append_uint32(&dict_iter, "OperRegClass",
  636. wpa_s->conf->p2p_oper_reg_class))
  637. goto err_no_mem;
  638. /* Oper Channel */
  639. if (!wpa_dbus_dict_append_uint32(&dict_iter, "OperChannel",
  640. wpa_s->conf->p2p_oper_channel))
  641. goto err_no_mem;
  642. /* SSID Postfix */
  643. if (wpa_s->conf->p2p_ssid_postfix &&
  644. !wpa_dbus_dict_append_string(&dict_iter, "SsidPostfix",
  645. wpa_s->conf->p2p_ssid_postfix))
  646. goto err_no_mem;
  647. /* Intra Bss */
  648. if (!wpa_dbus_dict_append_bool(&dict_iter, "IntraBss",
  649. wpa_s->conf->p2p_intra_bss))
  650. goto err_no_mem;
  651. /* Group Idle */
  652. if (!wpa_dbus_dict_append_uint32(&dict_iter, "GroupIdle",
  653. wpa_s->conf->p2p_group_idle))
  654. goto err_no_mem;
  655. /* Dissasociation low ack */
  656. if (!wpa_dbus_dict_append_uint32(&dict_iter, "disassoc_low_ack",
  657. wpa_s->conf->disassoc_low_ack))
  658. goto err_no_mem;
  659. if (!wpa_dbus_dict_close_write(&variant_iter, &dict_iter) ||
  660. !dbus_message_iter_close_container(&iter, &variant_iter))
  661. goto err_no_mem;
  662. return reply;
  663. err_no_mem:
  664. dbus_message_unref(reply);
  665. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  666. }
  667. DBusMessage *wpas_dbus_setter_p2p_device_properties(DBusMessage * message,
  668. struct wpa_supplicant *
  669. wpa_s)
  670. {
  671. DBusMessage *reply = NULL;
  672. DBusMessageIter iter, variant_iter;
  673. struct wpa_dbus_dict_entry entry = {.type = DBUS_TYPE_STRING };
  674. DBusMessageIter iter_dict;
  675. unsigned int i;
  676. dbus_message_iter_init(message, &iter);
  677. dbus_message_iter_next(&iter);
  678. dbus_message_iter_next(&iter);
  679. dbus_message_iter_recurse(&iter, &variant_iter);
  680. if (!wpa_dbus_dict_open_read(&variant_iter, &iter_dict))
  681. return wpas_dbus_error_invalid_args(message, NULL);
  682. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  683. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  684. return wpas_dbus_error_invalid_args(message, NULL);
  685. if (os_strcmp(entry.key, "DeviceName") == 0) {
  686. char *devname;
  687. if (entry.type != DBUS_TYPE_STRING)
  688. goto error_clear;
  689. devname = os_strdup(entry.str_value);
  690. if (devname == NULL)
  691. goto err_no_mem_clear;
  692. os_free(wpa_s->conf->device_name);
  693. wpa_s->conf->device_name = devname;
  694. wpa_s->conf->changed_parameters |=
  695. CFG_CHANGED_DEVICE_NAME;
  696. } else if (os_strcmp(entry.key, "PrimaryDeviceType") == 0) {
  697. if (entry.type != DBUS_TYPE_ARRAY ||
  698. entry.array_type != DBUS_TYPE_BYTE ||
  699. entry.array_len != WPS_DEV_TYPE_LEN)
  700. goto error_clear;
  701. os_memcpy(wpa_s->conf->device_type,
  702. entry.bytearray_value,
  703. WPS_DEV_TYPE_LEN);
  704. wpa_s->conf->changed_parameters |=
  705. CFG_CHANGED_DEVICE_TYPE;
  706. } else if (os_strcmp(entry.key, "SecondaryDeviceTypes") == 0) {
  707. if (entry.type != DBUS_TYPE_ARRAY ||
  708. entry.array_type != WPAS_DBUS_TYPE_BINARRAY ||
  709. entry.array_len > MAX_SEC_DEVICE_TYPES)
  710. goto error;
  711. for (i = 0; i < entry.array_len; i++)
  712. if (wpabuf_len(entry.binarray_value[i]) != WPS_DEV_TYPE_LEN)
  713. goto err_no_mem_clear;
  714. for (i = 0; i < entry.array_len; i++)
  715. os_memcpy(wpa_s->conf->sec_device_type[i],
  716. wpabuf_head(entry.binarray_value[i]),
  717. WPS_DEV_TYPE_LEN);
  718. wpa_s->conf->num_sec_device_types = entry.array_len;
  719. wpa_s->conf->changed_parameters |=
  720. CFG_CHANGED_SEC_DEVICE_TYPE;
  721. } else if (os_strcmp(entry.key, "VendorExtension") == 0) {
  722. if ((entry.type != DBUS_TYPE_ARRAY) ||
  723. (entry.array_type != WPAS_DBUS_TYPE_BINARRAY) ||
  724. (entry.array_len > P2P_MAX_WPS_VENDOR_EXT))
  725. goto error_clear;
  726. wpa_s->conf->changed_parameters |=
  727. CFG_CHANGED_VENDOR_EXTENSION;
  728. for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
  729. wpabuf_free(wpa_s->conf->wps_vendor_ext[i]);
  730. if (i < entry.array_len) {
  731. wpa_s->conf->wps_vendor_ext[i] =
  732. entry.binarray_value[i];
  733. entry.binarray_value[i] = NULL;
  734. } else
  735. wpa_s->conf->wps_vendor_ext[i] = NULL;
  736. }
  737. } else if ((os_strcmp(entry.key, "GOIntent") == 0) &&
  738. (entry.type == DBUS_TYPE_UINT32) &&
  739. (entry.uint32_value <= 15))
  740. wpa_s->conf->p2p_go_intent = entry.uint32_value;
  741. else if ((os_strcmp(entry.key, "PersistantReconnect") == 0) &&
  742. (entry.type == DBUS_TYPE_BOOLEAN))
  743. wpa_s->conf->persistent_reconnect = entry.bool_value;
  744. else if ((os_strcmp(entry.key, "ListenRegClass") == 0) &&
  745. (entry.type == DBUS_TYPE_UINT32))
  746. wpa_s->conf->p2p_listen_reg_class = entry.uint32_value;
  747. else if ((os_strcmp(entry.key, "ListenChannel") == 0) &&
  748. (entry.type == DBUS_TYPE_UINT32))
  749. wpa_s->conf->p2p_listen_channel = entry.uint32_value;
  750. else if ((os_strcmp(entry.key, "OperRegClass") == 0) &&
  751. (entry.type == DBUS_TYPE_UINT32))
  752. wpa_s->conf->p2p_oper_reg_class = entry.uint32_value;
  753. else if ((os_strcmp(entry.key, "OperChannel") == 0) &&
  754. (entry.type == DBUS_TYPE_UINT32))
  755. wpa_s->conf->p2p_oper_channel = entry.uint32_value;
  756. else if (os_strcmp(entry.key, "SsidPostfix") == 0) {
  757. char *postfix;
  758. if (entry.type != DBUS_TYPE_STRING)
  759. goto error_clear;
  760. postfix = os_strdup(entry.str_value);
  761. if (!postfix)
  762. goto err_no_mem_clear;
  763. os_free(wpa_s->conf->p2p_ssid_postfix);
  764. wpa_s->conf->p2p_ssid_postfix = postfix;
  765. wpa_s->conf->changed_parameters |=
  766. CFG_CHANGED_P2P_SSID_POSTFIX;
  767. } else if ((os_strcmp(entry.key, "IntraBss") == 0) &&
  768. (entry.type == DBUS_TYPE_BOOLEAN)) {
  769. wpa_s->conf->p2p_intra_bss = entry.bool_value;
  770. wpa_s->conf->changed_parameters |=
  771. CFG_CHANGED_P2P_INTRA_BSS;
  772. } else if ((os_strcmp(entry.key, "GroupIdle") == 0) &&
  773. (entry.type == DBUS_TYPE_UINT32))
  774. wpa_s->conf->p2p_group_idle = entry.uint32_value;
  775. else if (os_strcmp(entry.key, "disassoc_low_ack") == 0 &&
  776. entry.type == DBUS_TYPE_UINT32)
  777. wpa_s->conf->disassoc_low_ack = entry.uint32_value;
  778. else
  779. goto error_clear;
  780. wpa_dbus_dict_entry_clear(&entry);
  781. }
  782. if (wpa_s->conf->changed_parameters) {
  783. /* Some changed parameters requires to update config*/
  784. wpa_supplicant_update_config(wpa_s);
  785. }
  786. return reply;
  787. error_clear:
  788. wpa_dbus_dict_entry_clear(&entry);
  789. error:
  790. reply = wpas_dbus_error_invalid_args(message, entry.key);
  791. wpa_dbus_dict_entry_clear(&entry);
  792. return reply;
  793. err_no_mem_clear:
  794. wpa_dbus_dict_entry_clear(&entry);
  795. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  796. }
  797. DBusMessage *wpas_dbus_getter_p2p_peers(DBusMessage * message,
  798. struct wpa_supplicant * wpa_s)
  799. {
  800. DBusMessage *reply = NULL;
  801. struct p2p_data *p2p = wpa_s->global->p2p;
  802. int next = 0, i = 0;
  803. int num = 0, out_of_mem = 0;
  804. const u8 *addr;
  805. const struct p2p_peer_info *peer_info = NULL;
  806. struct dl_list peer_objpath_list;
  807. struct peer_objpath_node {
  808. struct dl_list list;
  809. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  810. } *node, *tmp;
  811. char **peer_obj_paths = NULL;
  812. dl_list_init(&peer_objpath_list);
  813. /* Get the first peer info */
  814. peer_info = p2p_get_peer_found(p2p, NULL, next);
  815. /* Get next and accumulate them */
  816. next = 1;
  817. while (peer_info != NULL) {
  818. node = os_zalloc(sizeof(struct peer_objpath_node));
  819. if (!node) {
  820. out_of_mem = 1;
  821. goto error;
  822. }
  823. addr = peer_info->p2p_device_addr;
  824. os_snprintf(node->path, WPAS_DBUS_OBJECT_PATH_MAX,
  825. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART
  826. "/" COMPACT_MACSTR,
  827. wpa_s->dbus_new_path, MAC2STR(addr));
  828. dl_list_add_tail(&peer_objpath_list, &node->list);
  829. num++;
  830. peer_info = p2p_get_peer_found(p2p, addr, next);
  831. }
  832. /*
  833. * Now construct the peer object paths in a form suitable for
  834. * array_property_getter helper below.
  835. */
  836. peer_obj_paths = os_zalloc(num * sizeof(char *));
  837. if (!peer_obj_paths) {
  838. out_of_mem = 1;
  839. goto error;
  840. }
  841. dl_list_for_each_safe(node, tmp, &peer_objpath_list,
  842. struct peer_objpath_node, list)
  843. peer_obj_paths[i++] = node->path;
  844. reply = wpas_dbus_simple_array_property_getter(message,
  845. DBUS_TYPE_OBJECT_PATH,
  846. peer_obj_paths, num);
  847. error:
  848. if (peer_obj_paths)
  849. os_free(peer_obj_paths);
  850. dl_list_for_each_safe(node, tmp, &peer_objpath_list,
  851. struct peer_objpath_node, list) {
  852. dl_list_del(&node->list);
  853. os_free(node);
  854. }
  855. if (out_of_mem)
  856. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  857. NULL);
  858. return reply;
  859. }
  860. enum wpas_p2p_role {
  861. WPAS_P2P_ROLE_DEVICE,
  862. WPAS_P2P_ROLE_GO,
  863. WPAS_P2P_ROLE_CLIENT,
  864. };
  865. static enum wpas_p2p_role wpas_get_p2p_role(struct wpa_supplicant *wpa_s)
  866. {
  867. struct wpa_ssid *ssid = wpa_s->current_ssid;
  868. if (!ssid)
  869. return WPAS_P2P_ROLE_DEVICE;
  870. if (wpa_s->wpa_state != WPA_COMPLETED)
  871. return WPAS_P2P_ROLE_DEVICE;
  872. switch (ssid->mode) {
  873. case WPAS_MODE_P2P_GO:
  874. case WPAS_MODE_P2P_GROUP_FORMATION:
  875. return WPAS_P2P_ROLE_GO;
  876. case WPAS_MODE_INFRA:
  877. if (ssid->p2p_group)
  878. return WPAS_P2P_ROLE_CLIENT;
  879. return WPAS_P2P_ROLE_DEVICE;
  880. default:
  881. return WPAS_P2P_ROLE_DEVICE;
  882. }
  883. }
  884. DBusMessage *wpas_dbus_getter_p2p_role(DBusMessage * message,
  885. struct wpa_supplicant * wpa_s)
  886. {
  887. char *str;
  888. switch (wpas_get_p2p_role(wpa_s)) {
  889. case WPAS_P2P_ROLE_GO:
  890. str = "GO";
  891. break;
  892. case WPAS_P2P_ROLE_CLIENT:
  893. str = "client";
  894. break;
  895. default:
  896. str = "device";
  897. }
  898. return wpas_dbus_simple_property_getter(message, DBUS_TYPE_STRING,
  899. &str);
  900. }
  901. DBusMessage *wpas_dbus_getter_p2p_group(DBusMessage * message,
  902. struct wpa_supplicant * wpa_s)
  903. {
  904. if (wpa_s->dbus_groupobj_path == NULL)
  905. return NULL;
  906. return wpas_dbus_simple_property_getter(message,
  907. DBUS_TYPE_OBJECT_PATH,
  908. &wpa_s->dbus_groupobj_path);
  909. }
  910. DBusMessage *wpas_dbus_getter_p2p_peergo(DBusMessage * message,
  911. struct wpa_supplicant * wpa_s)
  912. {
  913. char go_peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  914. if (wpas_get_p2p_role(wpa_s) != WPAS_P2P_ROLE_CLIENT)
  915. return NULL;
  916. os_snprintf(go_peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  917. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  918. wpa_s->dbus_new_path, MAC2STR(wpa_s->go_dev_addr));
  919. path = go_peer_obj_path;
  920. return wpas_dbus_simple_property_getter(message,
  921. DBUS_TYPE_OBJECT_PATH, &path);
  922. }
  923. /*
  924. * Peer object properties accessor methods
  925. */
  926. DBusMessage *wpas_dbus_getter_p2p_peer_properties(DBusMessage * message,
  927. struct peer_handler_args *
  928. peer_args)
  929. {
  930. DBusMessage *reply = NULL;
  931. DBusMessageIter iter, variant_iter, dict_iter;
  932. const struct p2p_peer_info *info = NULL;
  933. char devtype[WPS_DEV_TYPE_BUFSIZE];
  934. /* get the peer info */
  935. info = p2p_get_peer_found(peer_args->wpa_s->global->p2p,
  936. peer_args->p2p_device_addr, 0);
  937. if (info == NULL)
  938. return NULL;
  939. if (message == NULL)
  940. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  941. else
  942. reply = dbus_message_new_method_return(message);
  943. if (!reply)
  944. goto err_no_mem;
  945. dbus_message_iter_init_append(reply, &iter);
  946. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  947. "a{sv}", &variant_iter) ||
  948. !wpa_dbus_dict_open_write(&variant_iter, &dict_iter))
  949. goto err_no_mem;
  950. /* Fill out the dictionary */
  951. wps_dev_type_bin2str(info->pri_dev_type, devtype, sizeof(devtype));
  952. if (!wpa_dbus_dict_append_string(&dict_iter, "DeviceName",
  953. info->device_name))
  954. goto err_no_mem;
  955. if (!wpa_dbus_dict_append_string(&dict_iter, "PrimaryDeviceType",
  956. devtype))
  957. goto err_no_mem;
  958. if (!wpa_dbus_dict_append_uint16(&dict_iter, "config_method",
  959. info->config_methods))
  960. goto err_no_mem;
  961. if (!wpa_dbus_dict_append_int32(&dict_iter, "level",
  962. info->level))
  963. goto err_no_mem;
  964. if (!wpa_dbus_dict_append_byte(&dict_iter, "devicecapability",
  965. info->dev_capab))
  966. goto err_no_mem;
  967. if (!wpa_dbus_dict_append_byte(&dict_iter, "groupcapability",
  968. info->group_capab))
  969. goto err_no_mem;
  970. if (info->wps_sec_dev_type_list_len) {
  971. char *sec_dev_types[MAX_SEC_DEVICE_TYPES];
  972. u8 *sec_dev_type_list = NULL;
  973. char secdevtype[WPS_DEV_TYPE_BUFSIZE];
  974. int num_sec_dev_types = 0;
  975. int i;
  976. sec_dev_type_list = os_zalloc(info->wps_sec_dev_type_list_len);
  977. if (sec_dev_type_list == NULL)
  978. goto err_no_mem;
  979. os_memcpy(sec_dev_type_list, info->wps_sec_dev_type_list,
  980. info->wps_sec_dev_type_list_len);
  981. for (i = 0; i < MAX_SEC_DEVICE_TYPES &&
  982. i < (int) (info->wps_sec_dev_type_list_len /
  983. WPS_DEV_TYPE_LEN);
  984. i++) {
  985. sec_dev_types[i] = os_zalloc(sizeof(secdevtype));
  986. if (!sec_dev_types[i] ||
  987. wps_dev_type_bin2str(
  988. &sec_dev_type_list[i *
  989. WPS_DEV_TYPE_LEN],
  990. sec_dev_types[i],
  991. sizeof(secdevtype)) == NULL) {
  992. while (--i >= 0)
  993. os_free(sec_dev_types[i]);
  994. os_free(sec_dev_type_list);
  995. goto err_no_mem;
  996. }
  997. num_sec_dev_types++;
  998. }
  999. os_free(sec_dev_type_list);
  1000. if (num_sec_dev_types) {
  1001. if (!wpa_dbus_dict_append_string_array(&dict_iter,
  1002. "SecondaryDeviceTypes",
  1003. (const char **)sec_dev_types,
  1004. num_sec_dev_types)) {
  1005. for (i = 0; i < num_sec_dev_types; i++)
  1006. os_free(sec_dev_types[i]);
  1007. goto err_no_mem;
  1008. }
  1009. for (i = 0; i < num_sec_dev_types; i++)
  1010. os_free(sec_dev_types[i]);
  1011. }
  1012. }
  1013. {
  1014. /* Add WPS vendor extensions attribute */
  1015. const struct wpabuf *vendor_extension[P2P_MAX_WPS_VENDOR_EXT];
  1016. int i, num = 0;
  1017. for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
  1018. if (info->wps_vendor_ext[i] == NULL)
  1019. continue;
  1020. vendor_extension[num] = info->wps_vendor_ext[i];
  1021. num++;
  1022. }
  1023. if (!wpa_dbus_dict_append_wpabuf_array(
  1024. &dict_iter, "VendorExtension",
  1025. vendor_extension, num))
  1026. goto err_no_mem;
  1027. }
  1028. if (!wpa_dbus_dict_close_write(&variant_iter, &dict_iter) ||
  1029. !dbus_message_iter_close_container(&iter, &variant_iter))
  1030. goto err_no_mem;
  1031. return reply;
  1032. err_no_mem:
  1033. dbus_message_unref(reply);
  1034. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  1035. }
  1036. DBusMessage *wpas_dbus_getter_p2p_peer_ies(DBusMessage * message,
  1037. struct peer_handler_args * peer_args)
  1038. {
  1039. return NULL;
  1040. }
  1041. /**
  1042. * wpas_dbus_getter_persistent_groups - Get array of peristent group objects
  1043. * @message: Pointer to incoming dbus message
  1044. * @wpa_s: wpa_supplicant structure for a network interface
  1045. * Returns: a dbus message containing an array of all persistent group
  1046. * dbus object paths.
  1047. *
  1048. * Getter for "Networks" property.
  1049. */
  1050. DBusMessage * wpas_dbus_getter_persistent_groups(DBusMessage *message,
  1051. struct wpa_supplicant *wpa_s)
  1052. {
  1053. DBusMessage *reply = NULL;
  1054. struct wpa_ssid *ssid;
  1055. char **paths;
  1056. unsigned int i = 0, num = 0;
  1057. if (wpa_s->conf == NULL) {
  1058. wpa_printf(MSG_ERROR, "dbus: %s: "
  1059. "An error occurred getting persistent groups list",
  1060. __func__);
  1061. return wpas_dbus_error_unknown_error(message, NULL);
  1062. }
  1063. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  1064. if (network_is_persistent_group(ssid))
  1065. num++;
  1066. paths = os_zalloc(num * sizeof(char *));
  1067. if (!paths) {
  1068. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1069. NULL);
  1070. }
  1071. /* Loop through configured networks and append object path of each */
  1072. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1073. if (!network_is_persistent_group(ssid))
  1074. continue;
  1075. paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1076. if (paths[i] == NULL) {
  1077. reply = dbus_message_new_error(message,
  1078. DBUS_ERROR_NO_MEMORY,
  1079. NULL);
  1080. goto out;
  1081. }
  1082. /* Construct the object path for this network. */
  1083. os_snprintf(paths[i++], WPAS_DBUS_OBJECT_PATH_MAX,
  1084. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%d",
  1085. wpa_s->dbus_new_path, ssid->id);
  1086. }
  1087. reply = wpas_dbus_simple_array_property_getter(message,
  1088. DBUS_TYPE_OBJECT_PATH,
  1089. paths, num);
  1090. out:
  1091. while (i)
  1092. os_free(paths[--i]);
  1093. os_free(paths);
  1094. return reply;
  1095. }
  1096. /**
  1097. * wpas_dbus_getter_persistent_group_properties - Get options for a persistent
  1098. * group
  1099. * @message: Pointer to incoming dbus message
  1100. * @net: wpa_supplicant structure for a network interface and
  1101. * wpa_ssid structure for a configured persistent group (internally network)
  1102. * Returns: DBus message with network properties or DBus error on failure
  1103. *
  1104. * Getter for "Properties" property of a persistent group.
  1105. */
  1106. DBusMessage * wpas_dbus_getter_persistent_group_properties(
  1107. DBusMessage *message, struct network_handler_args *net)
  1108. {
  1109. /*
  1110. * Leveraging the fact that persistent group object is still
  1111. * represented in same manner as network within.
  1112. */
  1113. return wpas_dbus_getter_network_properties(message, net);
  1114. }
  1115. /**
  1116. * wpas_dbus_setter_persistent_group_properties - Get options for a persistent
  1117. * group
  1118. * @message: Pointer to incoming dbus message
  1119. * @net: wpa_supplicant structure for a network interface and
  1120. * wpa_ssid structure for a configured persistent group (internally network)
  1121. * Returns: DBus message with network properties or DBus error on failure
  1122. *
  1123. * Setter for "Properties" property of a persistent group.
  1124. */
  1125. DBusMessage * wpas_dbus_setter_persistent_group_properties(
  1126. DBusMessage *message, struct network_handler_args *net)
  1127. {
  1128. struct wpa_ssid *ssid = net->ssid;
  1129. DBusMessage *reply = NULL;
  1130. DBusMessageIter iter, variant_iter;
  1131. dbus_message_iter_init(message, &iter);
  1132. dbus_message_iter_next(&iter);
  1133. dbus_message_iter_next(&iter);
  1134. dbus_message_iter_recurse(&iter, &variant_iter);
  1135. /*
  1136. * Leveraging the fact that persistent group object is still
  1137. * represented in same manner as network within.
  1138. */
  1139. reply = set_network_properties(message, net->wpa_s, ssid,
  1140. &variant_iter);
  1141. if (reply)
  1142. wpa_printf(MSG_DEBUG, "dbus control interface couldn't set "
  1143. "persistent group properties");
  1144. return reply;
  1145. }
  1146. /**
  1147. * wpas_dbus_new_iface_add_persistent_group - Add a new configured
  1148. * persistent_group
  1149. * @message: Pointer to incoming dbus message
  1150. * @wpa_s: wpa_supplicant structure for a network interface
  1151. * Returns: A dbus message containing the object path of the new
  1152. * persistent group
  1153. *
  1154. * Handler function for "AddPersistentGroup" method call of a P2P Device
  1155. * interface.
  1156. */
  1157. DBusMessage * wpas_dbus_handler_add_persistent_group(
  1158. DBusMessage *message, struct wpa_supplicant *wpa_s)
  1159. {
  1160. DBusMessage *reply = NULL;
  1161. DBusMessageIter iter;
  1162. struct wpa_ssid *ssid = NULL;
  1163. char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *path = path_buf;
  1164. dbus_message_iter_init(message, &iter);
  1165. ssid = wpa_config_add_network(wpa_s->conf);
  1166. if (ssid == NULL) {
  1167. wpa_printf(MSG_ERROR, "dbus: %s: "
  1168. "Cannot add new persistent group", __func__);
  1169. reply = wpas_dbus_error_unknown_error(
  1170. message,
  1171. "wpa_supplicant could not add "
  1172. "a persistent group on this interface.");
  1173. goto err;
  1174. }
  1175. /* Mark the ssid as being a persistent group before the notification */
  1176. ssid->disabled = 2;
  1177. ssid->p2p_persistent_group = 1;
  1178. wpas_notify_persistent_group_added(wpa_s, ssid);
  1179. wpa_config_set_network_defaults(ssid);
  1180. reply = set_network_properties(message, wpa_s, ssid, &iter);
  1181. if (reply) {
  1182. wpa_printf(MSG_DEBUG, "dbus: %s: "
  1183. "Control interface could not set persistent group "
  1184. "properties", __func__);
  1185. goto err;
  1186. }
  1187. /* Construct the object path for this network. */
  1188. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1189. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%d",
  1190. wpa_s->dbus_new_path, ssid->id);
  1191. reply = dbus_message_new_method_return(message);
  1192. if (reply == NULL) {
  1193. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1194. NULL);
  1195. goto err;
  1196. }
  1197. if (!dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH, &path,
  1198. DBUS_TYPE_INVALID)) {
  1199. dbus_message_unref(reply);
  1200. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  1201. NULL);
  1202. goto err;
  1203. }
  1204. return reply;
  1205. err:
  1206. if (ssid) {
  1207. wpas_notify_persistent_group_removed(wpa_s, ssid);
  1208. wpa_config_remove_network(wpa_s->conf, ssid->id);
  1209. }
  1210. return reply;
  1211. }
  1212. /**
  1213. * wpas_dbus_handler_remove_persistent_group - Remove a configured persistent
  1214. * group
  1215. * @message: Pointer to incoming dbus message
  1216. * @wpa_s: wpa_supplicant structure for a network interface
  1217. * Returns: NULL on success or dbus error on failure
  1218. *
  1219. * Handler function for "RemovePersistentGroup" method call of a P2P Device
  1220. * interface.
  1221. */
  1222. DBusMessage * wpas_dbus_handler_remove_persistent_group(
  1223. DBusMessage *message, struct wpa_supplicant *wpa_s)
  1224. {
  1225. DBusMessage *reply = NULL;
  1226. const char *op;
  1227. char *iface = NULL, *persistent_group_id = NULL;
  1228. int id;
  1229. struct wpa_ssid *ssid;
  1230. dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &op,
  1231. DBUS_TYPE_INVALID);
  1232. /*
  1233. * Extract the network ID and ensure the network is actually a child of
  1234. * this interface.
  1235. */
  1236. iface = wpas_dbus_new_decompose_object_path(op, 1,
  1237. &persistent_group_id,
  1238. NULL);
  1239. if (iface == NULL || os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
  1240. reply = wpas_dbus_error_invalid_args(message, op);
  1241. goto out;
  1242. }
  1243. id = strtoul(persistent_group_id, NULL, 10);
  1244. if (errno == EINVAL) {
  1245. reply = wpas_dbus_error_invalid_args(message, op);
  1246. goto out;
  1247. }
  1248. ssid = wpa_config_get_network(wpa_s->conf, id);
  1249. if (ssid == NULL) {
  1250. reply = wpas_dbus_error_persistent_group_unknown(message);
  1251. goto out;
  1252. }
  1253. wpas_notify_persistent_group_removed(wpa_s, ssid);
  1254. if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
  1255. wpa_printf(MSG_ERROR, "dbus: %s: "
  1256. "error occurred when removing persistent group %d",
  1257. __func__, id);
  1258. reply = wpas_dbus_error_unknown_error(
  1259. message,
  1260. "error removing the specified persistent group on "
  1261. "this interface.");
  1262. goto out;
  1263. }
  1264. out:
  1265. os_free(iface);
  1266. os_free(persistent_group_id);
  1267. return reply;
  1268. }
  1269. static void remove_persistent_group(struct wpa_supplicant *wpa_s,
  1270. struct wpa_ssid *ssid)
  1271. {
  1272. wpas_notify_persistent_group_removed(wpa_s, ssid);
  1273. if (wpa_config_remove_network(wpa_s->conf, ssid->id) < 0) {
  1274. wpa_printf(MSG_ERROR, "dbus: %s: "
  1275. "error occurred when removing persistent group %d",
  1276. __func__, ssid->id);
  1277. return;
  1278. }
  1279. }
  1280. /**
  1281. * wpas_dbus_handler_remove_all_persistent_groups - Remove all configured
  1282. * persistent groups
  1283. * @message: Pointer to incoming dbus message
  1284. * @wpa_s: wpa_supplicant structure for a network interface
  1285. * Returns: NULL on success or dbus error on failure
  1286. *
  1287. * Handler function for "RemoveAllPersistentGroups" method call of a
  1288. * P2P Device interface.
  1289. */
  1290. DBusMessage * wpas_dbus_handler_remove_all_persistent_groups(
  1291. DBusMessage *message, struct wpa_supplicant *wpa_s)
  1292. {
  1293. struct wpa_ssid *ssid, *next;
  1294. struct wpa_config *config;
  1295. config = wpa_s->conf;
  1296. ssid = config->ssid;
  1297. while (ssid) {
  1298. next = ssid->next;
  1299. if (network_is_persistent_group(ssid))
  1300. remove_persistent_group(wpa_s, ssid);
  1301. ssid = next;
  1302. }
  1303. return NULL;
  1304. }
  1305. /*
  1306. * Group object properties accessor methods
  1307. */
  1308. DBusMessage *wpas_dbus_getter_p2p_group_members(DBusMessage * message,
  1309. struct wpa_supplicant * wpa_s)
  1310. {
  1311. DBusMessage *reply = NULL;
  1312. struct wpa_ssid *ssid;
  1313. unsigned int num_members;
  1314. char **paths;
  1315. unsigned int i;
  1316. void *next = NULL;
  1317. const u8 *addr;
  1318. /* Ensure we are a GO */
  1319. if (wpa_s->wpa_state != WPA_COMPLETED)
  1320. goto out;
  1321. ssid = wpa_s->conf->ssid;
  1322. /* At present WPAS P2P_GO mode only applicable for p2p_go */
  1323. if (ssid->mode != WPAS_MODE_P2P_GO &&
  1324. ssid->mode != WPAS_MODE_AP &&
  1325. ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  1326. goto out;
  1327. num_members = p2p_get_group_num_members(wpa_s->p2p_group);
  1328. paths = os_zalloc(num_members * sizeof(char *));
  1329. if (!paths)
  1330. goto out_of_memory;
  1331. i = 0;
  1332. while ((addr = p2p_iterate_group_members(wpa_s->p2p_group, &next))) {
  1333. paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1334. if (!paths[i])
  1335. goto out_of_memory;
  1336. os_snprintf(paths[i], WPAS_DBUS_OBJECT_PATH_MAX,
  1337. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART
  1338. "/" COMPACT_MACSTR,
  1339. wpa_s->dbus_groupobj_path, MAC2STR(addr));
  1340. i++;
  1341. }
  1342. reply = wpas_dbus_simple_array_property_getter(message,
  1343. DBUS_TYPE_OBJECT_PATH,
  1344. paths, num_members);
  1345. out_free:
  1346. for (i = 0; i < num_members; i++)
  1347. os_free(paths[i]);
  1348. os_free(paths);
  1349. out:
  1350. return reply;
  1351. out_of_memory:
  1352. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  1353. goto out_free;
  1354. }
  1355. DBusMessage *wpas_dbus_getter_p2p_group_properties(
  1356. DBusMessage *message,
  1357. struct wpa_supplicant *wpa_s)
  1358. {
  1359. DBusMessage *reply = NULL;
  1360. DBusMessageIter iter, variant_iter, dict_iter;
  1361. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  1362. const struct wpabuf *vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
  1363. int num_vendor_ext = 0;
  1364. int i;
  1365. if (!hapd) {
  1366. reply = dbus_message_new_error(message, DBUS_ERROR_FAILED,
  1367. NULL);
  1368. return reply;
  1369. }
  1370. if (message == NULL)
  1371. reply = dbus_message_new(DBUS_MESSAGE_TYPE_SIGNAL);
  1372. else
  1373. reply = dbus_message_new_method_return(message);
  1374. if (!reply)
  1375. goto err_no_mem;
  1376. dbus_message_iter_init_append(reply, &iter);
  1377. if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
  1378. "a{sv}", &variant_iter) ||
  1379. !wpa_dbus_dict_open_write(&variant_iter, &dict_iter))
  1380. goto err_no_mem;
  1381. /* Parse WPS Vendor Extensions sent in Beacon/Probe Response */
  1382. for (i = 0; i < MAX_WPS_VENDOR_EXTENSIONS; i++) {
  1383. if (hapd->conf->wps_vendor_ext[i] == NULL)
  1384. continue;
  1385. vendor_ext[num_vendor_ext++] = hapd->conf->wps_vendor_ext[i];
  1386. }
  1387. if (!wpa_dbus_dict_append_wpabuf_array(&dict_iter,
  1388. "WPSVendorExtensions",
  1389. vendor_ext, num_vendor_ext))
  1390. goto err_no_mem;
  1391. if (!wpa_dbus_dict_close_write(&variant_iter, &dict_iter) ||
  1392. !dbus_message_iter_close_container(&iter, &variant_iter))
  1393. goto err_no_mem;
  1394. return reply;
  1395. err_no_mem:
  1396. dbus_message_unref(reply);
  1397. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
  1398. }
  1399. DBusMessage *wpas_dbus_setter_p2p_group_properties(
  1400. DBusMessage *message,
  1401. struct wpa_supplicant *wpa_s)
  1402. {
  1403. DBusMessage *reply = NULL;
  1404. DBusMessageIter iter, variant_iter;
  1405. struct wpa_dbus_dict_entry entry = {.type = DBUS_TYPE_STRING };
  1406. DBusMessageIter iter_dict;
  1407. unsigned int i;
  1408. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  1409. if (!hapd)
  1410. goto error;
  1411. dbus_message_iter_init(message, &iter);
  1412. dbus_message_iter_next(&iter);
  1413. dbus_message_iter_next(&iter);
  1414. dbus_message_iter_recurse(&iter, &variant_iter);
  1415. if (!wpa_dbus_dict_open_read(&variant_iter, &iter_dict))
  1416. return wpas_dbus_error_invalid_args(message, NULL);
  1417. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1418. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry)) {
  1419. reply = wpas_dbus_error_invalid_args(message, NULL);
  1420. break;
  1421. }
  1422. if (os_strcmp(entry.key, "WPSVendorExtensions") == 0) {
  1423. if (entry.type != DBUS_TYPE_ARRAY ||
  1424. entry.array_type != WPAS_DBUS_TYPE_BINARRAY ||
  1425. entry.array_len > MAX_WPS_VENDOR_EXTENSIONS)
  1426. goto error;
  1427. for (i = 0; i < MAX_WPS_VENDOR_EXTENSIONS; i++) {
  1428. if (i < entry.array_len) {
  1429. hapd->conf->wps_vendor_ext[i] =
  1430. entry.binarray_value[i];
  1431. entry.binarray_value[i] = NULL;
  1432. } else
  1433. hapd->conf->wps_vendor_ext[i] = NULL;
  1434. }
  1435. hostapd_update_wps(hapd);
  1436. } else
  1437. goto error;
  1438. wpa_dbus_dict_entry_clear(&entry);
  1439. }
  1440. return reply;
  1441. error:
  1442. reply = wpas_dbus_error_invalid_args(message, entry.key);
  1443. wpa_dbus_dict_entry_clear(&entry);
  1444. return reply;
  1445. }
  1446. DBusMessage *wpas_dbus_handler_p2p_add_service(DBusMessage * message,
  1447. struct wpa_supplicant * wpa_s)
  1448. {
  1449. DBusMessageIter iter_dict;
  1450. DBusMessage *reply = NULL;
  1451. DBusMessageIter iter;
  1452. struct wpa_dbus_dict_entry entry;
  1453. int upnp = 0;
  1454. int bonjour = 0;
  1455. char *service = NULL;
  1456. struct wpabuf *query = NULL;
  1457. struct wpabuf *resp = NULL;
  1458. u8 version = 0;
  1459. dbus_message_iter_init(message, &iter);
  1460. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1461. goto error;
  1462. if (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1463. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1464. goto error;
  1465. if (!strcmp(entry.key, "service_type") &&
  1466. (entry.type == DBUS_TYPE_STRING)) {
  1467. if (!strcmp(entry.str_value, "upnp"))
  1468. upnp = 1;
  1469. else if (!strcmp(entry.str_value, "bonjour"))
  1470. bonjour = 1;
  1471. else
  1472. goto error_clear;
  1473. wpa_dbus_dict_entry_clear(&entry);
  1474. }
  1475. }
  1476. if (upnp == 1) {
  1477. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1478. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1479. goto error;
  1480. if (!strcmp(entry.key, "version") &&
  1481. entry.type == DBUS_TYPE_INT32)
  1482. version = entry.uint32_value;
  1483. else if (!strcmp(entry.key, "service") &&
  1484. entry.type == DBUS_TYPE_STRING)
  1485. service = os_strdup(entry.str_value);
  1486. wpa_dbus_dict_entry_clear(&entry);
  1487. }
  1488. if (version <= 0 || service == NULL)
  1489. goto error;
  1490. if (wpas_p2p_service_add_upnp(wpa_s, version, service) != 0)
  1491. goto error;
  1492. os_free(service);
  1493. } else if (bonjour == 1) {
  1494. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1495. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1496. goto error;
  1497. if (!strcmp(entry.key, "query")) {
  1498. if ((entry.type != DBUS_TYPE_ARRAY) ||
  1499. (entry.array_type != DBUS_TYPE_BYTE))
  1500. goto error_clear;
  1501. query = wpabuf_alloc_copy(entry.bytearray_value,
  1502. entry.array_len);
  1503. } else if (!strcmp(entry.key, "response")) {
  1504. if ((entry.type != DBUS_TYPE_ARRAY) ||
  1505. (entry.array_type != DBUS_TYPE_BYTE))
  1506. goto error_clear;
  1507. resp = wpabuf_alloc_copy(entry.bytearray_value,
  1508. entry.array_len);
  1509. }
  1510. wpa_dbus_dict_entry_clear(&entry);
  1511. }
  1512. if (query == NULL || resp == NULL)
  1513. goto error;
  1514. if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
  1515. wpabuf_free(query);
  1516. wpabuf_free(resp);
  1517. goto error;
  1518. }
  1519. } else
  1520. goto error;
  1521. return reply;
  1522. error_clear:
  1523. wpa_dbus_dict_entry_clear(&entry);
  1524. error:
  1525. return wpas_dbus_error_invalid_args(message, NULL);
  1526. }
  1527. DBusMessage *wpas_dbus_handler_p2p_delete_service(DBusMessage * message,
  1528. struct wpa_supplicant * wpa_s)
  1529. {
  1530. DBusMessageIter iter_dict;
  1531. DBusMessage *reply = NULL;
  1532. DBusMessageIter iter;
  1533. struct wpa_dbus_dict_entry entry;
  1534. int upnp = 0;
  1535. int bonjour = 0;
  1536. int ret = 0;
  1537. char *service = NULL;
  1538. struct wpabuf *query = NULL;
  1539. u8 version = 0;
  1540. dbus_message_iter_init(message, &iter);
  1541. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1542. goto error;
  1543. if (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1544. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1545. goto error;
  1546. if (!strcmp(entry.key, "service_type") &&
  1547. (entry.type == DBUS_TYPE_STRING)) {
  1548. if (!strcmp(entry.str_value, "upnp"))
  1549. upnp = 1;
  1550. else if (!strcmp(entry.str_value, "bonjour"))
  1551. bonjour = 1;
  1552. else
  1553. goto error_clear;
  1554. wpa_dbus_dict_entry_clear(&entry);
  1555. }
  1556. }
  1557. if (upnp == 1) {
  1558. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1559. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1560. goto error;
  1561. if (!strcmp(entry.key, "version") &&
  1562. entry.type == DBUS_TYPE_INT32)
  1563. version = entry.uint32_value;
  1564. else if (!strcmp(entry.key, "service") &&
  1565. entry.type == DBUS_TYPE_STRING)
  1566. service = os_strdup(entry.str_value);
  1567. else
  1568. goto error_clear;
  1569. wpa_dbus_dict_entry_clear(&entry);
  1570. }
  1571. if (version <= 0 || service == NULL)
  1572. goto error;
  1573. ret = wpas_p2p_service_del_upnp(wpa_s, version, service);
  1574. os_free(service);
  1575. if (ret != 0)
  1576. goto error;
  1577. } else if (bonjour == 1) {
  1578. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1579. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1580. goto error;
  1581. if (!strcmp(entry.key, "query")) {
  1582. if ((entry.type != DBUS_TYPE_ARRAY) ||
  1583. (entry.array_type != DBUS_TYPE_BYTE))
  1584. goto error_clear;
  1585. query = wpabuf_alloc_copy(entry.bytearray_value,
  1586. entry.array_len);
  1587. } else
  1588. goto error_clear;
  1589. wpa_dbus_dict_entry_clear(&entry);
  1590. }
  1591. if (query == NULL)
  1592. goto error;
  1593. ret = wpas_p2p_service_del_bonjour(wpa_s, query);
  1594. if (ret != 0)
  1595. goto error;
  1596. wpabuf_free(query);
  1597. } else
  1598. goto error;
  1599. return reply;
  1600. error_clear:
  1601. wpa_dbus_dict_entry_clear(&entry);
  1602. error:
  1603. return wpas_dbus_error_invalid_args(message, NULL);
  1604. }
  1605. DBusMessage *wpas_dbus_handler_p2p_flush_service(DBusMessage * message,
  1606. struct wpa_supplicant * wpa_s)
  1607. {
  1608. wpas_p2p_service_flush(wpa_s);
  1609. return NULL;
  1610. }
  1611. DBusMessage *wpas_dbus_handler_p2p_service_sd_req(DBusMessage * message,
  1612. struct wpa_supplicant * wpa_s)
  1613. {
  1614. DBusMessageIter iter_dict;
  1615. DBusMessage *reply = NULL;
  1616. DBusMessageIter iter;
  1617. struct wpa_dbus_dict_entry entry;
  1618. int upnp = 0;
  1619. char *service = NULL;
  1620. char *peer_object_path = NULL;
  1621. struct wpabuf *tlv = NULL;
  1622. u8 version = 0;
  1623. u64 ref = 0;
  1624. u8 addr[ETH_ALEN];
  1625. dbus_message_iter_init(message, &iter);
  1626. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1627. goto error;
  1628. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1629. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1630. goto error;
  1631. if (!strcmp(entry.key, "peer_object") &&
  1632. entry.type == DBUS_TYPE_OBJECT_PATH) {
  1633. peer_object_path = os_strdup(entry.str_value);
  1634. } else if (!strcmp(entry.key, "service_type") &&
  1635. entry.type == DBUS_TYPE_STRING) {
  1636. if (!strcmp(entry.str_value, "upnp"))
  1637. upnp = 1;
  1638. else
  1639. goto error_clear;
  1640. } else if (!strcmp(entry.key, "version") &&
  1641. entry.type == DBUS_TYPE_INT32) {
  1642. version = entry.uint32_value;
  1643. } else if (!strcmp(entry.key, "service") &&
  1644. entry.type == DBUS_TYPE_STRING) {
  1645. service = os_strdup(entry.str_value);
  1646. } else if (!strcmp(entry.key, "tlv")) {
  1647. if (entry.type != DBUS_TYPE_ARRAY ||
  1648. entry.array_type != DBUS_TYPE_BYTE)
  1649. goto error_clear;
  1650. tlv = wpabuf_alloc_copy(entry.bytearray_value,
  1651. entry.array_len);
  1652. } else
  1653. goto error_clear;
  1654. wpa_dbus_dict_entry_clear(&entry);
  1655. }
  1656. if (!peer_object_path ||
  1657. (parse_peer_object_path(peer_object_path, addr) < 0) ||
  1658. (p2p_get_peer_info(wpa_s->global->p2p, addr, 0, NULL, 0) < 0))
  1659. goto error;
  1660. if (upnp == 1) {
  1661. if (version <= 0 || service == NULL)
  1662. goto error;
  1663. ref = (unsigned long)wpas_p2p_sd_request_upnp(wpa_s, addr,
  1664. version, service);
  1665. } else {
  1666. if (tlv == NULL)
  1667. goto error;
  1668. ref = (unsigned long)wpas_p2p_sd_request(wpa_s, addr, tlv);
  1669. wpabuf_free(tlv);
  1670. }
  1671. if (ref != 0) {
  1672. reply = dbus_message_new_method_return(message);
  1673. dbus_message_append_args(reply, DBUS_TYPE_UINT64,
  1674. &ref, DBUS_TYPE_INVALID);
  1675. } else {
  1676. reply = wpas_dbus_error_unknown_error(message,
  1677. "Unable to send SD request");
  1678. }
  1679. out:
  1680. os_free(service);
  1681. os_free(peer_object_path);
  1682. return reply;
  1683. error_clear:
  1684. wpa_dbus_dict_entry_clear(&entry);
  1685. error:
  1686. if (tlv)
  1687. wpabuf_free(tlv);
  1688. reply = wpas_dbus_error_invalid_args(message, NULL);
  1689. goto out;
  1690. }
  1691. DBusMessage *wpas_dbus_handler_p2p_service_sd_res(
  1692. DBusMessage *message, struct wpa_supplicant *wpa_s)
  1693. {
  1694. DBusMessageIter iter_dict;
  1695. DBusMessage *reply = NULL;
  1696. DBusMessageIter iter;
  1697. struct wpa_dbus_dict_entry entry;
  1698. char *peer_object_path = NULL;
  1699. struct wpabuf *tlv = NULL;
  1700. int freq = 0;
  1701. int dlg_tok = 0;
  1702. u8 addr[ETH_ALEN];
  1703. dbus_message_iter_init(message, &iter);
  1704. if (!wpa_dbus_dict_open_read(&iter, &iter_dict))
  1705. goto error;
  1706. while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
  1707. if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
  1708. goto error;
  1709. if (!strcmp(entry.key, "peer_object") &&
  1710. entry.type == DBUS_TYPE_OBJECT_PATH) {
  1711. peer_object_path = os_strdup(entry.str_value);
  1712. } else if (!strcmp(entry.key, "frequency") &&
  1713. entry.type == DBUS_TYPE_INT32) {
  1714. freq = entry.uint32_value;
  1715. } else if (!strcmp(entry.key, "dialog_token") &&
  1716. entry.type == DBUS_TYPE_UINT32) {
  1717. dlg_tok = entry.uint32_value;
  1718. } else if (!strcmp(entry.key, "tlvs")) {
  1719. if (entry.type != DBUS_TYPE_ARRAY ||
  1720. entry.array_type != DBUS_TYPE_BYTE)
  1721. goto error_clear;
  1722. tlv = wpabuf_alloc_copy(entry.bytearray_value,
  1723. entry.array_len);
  1724. } else
  1725. goto error_clear;
  1726. wpa_dbus_dict_entry_clear(&entry);
  1727. }
  1728. if (!peer_object_path ||
  1729. (parse_peer_object_path(peer_object_path, addr) < 0) ||
  1730. (p2p_get_peer_info(wpa_s->global->p2p, addr, 0, NULL, 0) < 0))
  1731. goto error;
  1732. if (tlv == NULL)
  1733. goto error;
  1734. wpas_p2p_sd_response(wpa_s, freq, addr, (u8) dlg_tok, tlv);
  1735. wpabuf_free(tlv);
  1736. out:
  1737. os_free(peer_object_path);
  1738. return reply;
  1739. error_clear:
  1740. wpa_dbus_dict_entry_clear(&entry);
  1741. error:
  1742. reply = wpas_dbus_error_invalid_args(message, NULL);
  1743. goto out;
  1744. }
  1745. DBusMessage *wpas_dbus_handler_p2p_service_sd_cancel_req(DBusMessage * message, struct wpa_supplicant
  1746. *wpa_s)
  1747. {
  1748. DBusMessageIter iter;
  1749. u64 req = 0;
  1750. dbus_message_iter_init(message, &iter);
  1751. dbus_message_iter_get_basic(&iter, &req);
  1752. if (req == 0)
  1753. goto error;
  1754. if (!wpas_p2p_sd_cancel_request(wpa_s, (void *)(unsigned long)req))
  1755. goto error;
  1756. return NULL;
  1757. error:
  1758. return wpas_dbus_error_invalid_args(message, NULL);
  1759. }
  1760. DBusMessage *wpas_dbus_handler_p2p_service_update(DBusMessage * message,
  1761. struct wpa_supplicant * wpa_s)
  1762. {
  1763. wpas_p2p_sd_service_update(wpa_s);
  1764. return NULL;
  1765. }
  1766. DBusMessage *wpas_dbus_handler_p2p_serv_disc_external(DBusMessage * message,
  1767. struct wpa_supplicant *
  1768. wpa_s)
  1769. {
  1770. DBusMessageIter iter;
  1771. int ext = 0;
  1772. dbus_message_iter_init(message, &iter);
  1773. dbus_message_iter_get_basic(&iter, &ext);
  1774. wpa_s->p2p_sd_over_ctrl_iface = ext;
  1775. return NULL;
  1776. }