p2p.h 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258
  1. /*
  2. * Wi-Fi Direct - P2P module
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef P2P_H
  15. #define P2P_H
  16. /**
  17. * P2P_MAX_REG_CLASSES - Maximum number of regulatory classes
  18. */
  19. #define P2P_MAX_REG_CLASSES 10
  20. /**
  21. * P2P_MAX_REG_CLASS_CHANNELS - Maximum number of channels per regulatory class
  22. */
  23. #define P2P_MAX_REG_CLASS_CHANNELS 20
  24. /**
  25. * struct p2p_channels - List of supported channels
  26. */
  27. struct p2p_channels {
  28. /**
  29. * struct p2p_reg_class - Supported regulatory class
  30. */
  31. struct p2p_reg_class {
  32. /**
  33. * reg_class - Regulatory class (IEEE 802.11-2007, Annex J)
  34. */
  35. u8 reg_class;
  36. /**
  37. * channel - Supported channels
  38. */
  39. u8 channel[P2P_MAX_REG_CLASS_CHANNELS];
  40. /**
  41. * channels - Number of channel entries in use
  42. */
  43. size_t channels;
  44. } reg_class[P2P_MAX_REG_CLASSES];
  45. /**
  46. * reg_classes - Number of reg_class entries in use
  47. */
  48. size_t reg_classes;
  49. };
  50. enum p2p_wps_method {
  51. WPS_NOT_READY, WPS_PIN_LABEL, WPS_PIN_DISPLAY, WPS_PIN_KEYPAD, WPS_PBC
  52. };
  53. /**
  54. * struct p2p_go_neg_results - P2P Group Owner Negotiation results
  55. */
  56. struct p2p_go_neg_results {
  57. /**
  58. * status - Negotiation result (Status Code)
  59. *
  60. * 0 (P2P_SC_SUCCESS) indicates success. Non-zero values indicate
  61. * failed negotiation.
  62. */
  63. int status;
  64. /**
  65. * role_go - Whether local end is Group Owner
  66. */
  67. int role_go;
  68. /**
  69. * freq - Frequency of the group operational channel in MHz
  70. */
  71. int freq;
  72. /**
  73. * ssid - SSID of the group
  74. */
  75. u8 ssid[32];
  76. /**
  77. * ssid_len - Length of SSID in octets
  78. */
  79. size_t ssid_len;
  80. /**
  81. * passphrase - WPA2-Personal passphrase for the group (GO only)
  82. */
  83. char passphrase[64];
  84. /**
  85. * peer_device_addr - P2P Device Address of the peer
  86. */
  87. u8 peer_device_addr[ETH_ALEN];
  88. /**
  89. * peer_interface_addr - P2P Interface Address of the peer
  90. */
  91. u8 peer_interface_addr[ETH_ALEN];
  92. /**
  93. * wps_method - WPS method to be used during provisioning
  94. */
  95. enum p2p_wps_method wps_method;
  96. #define P2P_MAX_CHANNELS 50
  97. /**
  98. * freq_list - Zero-terminated list of possible operational channels
  99. */
  100. int freq_list[P2P_MAX_CHANNELS];
  101. /**
  102. * persistent_group - Whether the group should be made persistent
  103. */
  104. int persistent_group;
  105. /**
  106. * peer_config_timeout - Peer configuration timeout (in 10 msec units)
  107. */
  108. unsigned int peer_config_timeout;
  109. };
  110. struct p2p_data;
  111. enum p2p_scan_type {
  112. P2P_SCAN_SOCIAL,
  113. P2P_SCAN_FULL,
  114. P2P_SCAN_SPECIFIC,
  115. P2P_SCAN_SOCIAL_PLUS_ONE
  116. };
  117. /**
  118. * struct p2p_config - P2P configuration
  119. *
  120. * This configuration is provided to the P2P module during initialization with
  121. * p2p_init().
  122. */
  123. struct p2p_config {
  124. /**
  125. * country - Country code to use in P2P operations
  126. */
  127. char country[3];
  128. /**
  129. * reg_class - Regulatory class for own listen channel
  130. */
  131. u8 reg_class;
  132. /**
  133. * channel - Own listen channel
  134. */
  135. u8 channel;
  136. /**
  137. * Regulatory class for own operational channel
  138. */
  139. u8 op_reg_class;
  140. /**
  141. * op_channel - Own operational channel
  142. */
  143. u8 op_channel;
  144. /**
  145. * channels - Own supported regulatory classes and channels
  146. *
  147. * List of supposerted channels per regulatory class. The regulatory
  148. * classes are defined in IEEE Std 802.11-2007 Annex J and the
  149. * numbering of the clases depends on the configured country code.
  150. */
  151. struct p2p_channels channels;
  152. /**
  153. * pri_dev_type - Primary Device Type (see WPS)
  154. */
  155. u8 pri_dev_type[8];
  156. /**
  157. * P2P_SEC_DEVICE_TYPES - Maximum number of secondary device types
  158. */
  159. #define P2P_SEC_DEVICE_TYPES 5
  160. /**
  161. * sec_dev_type - Optional secondary device types
  162. */
  163. u8 sec_dev_type[P2P_SEC_DEVICE_TYPES][8];
  164. /**
  165. * dev_addr - P2P Device Address
  166. */
  167. u8 dev_addr[ETH_ALEN];
  168. /**
  169. * dev_name - Device Name
  170. */
  171. char *dev_name;
  172. /**
  173. * num_sec_dev_types - Number of sec_dev_type entries
  174. */
  175. size_t num_sec_dev_types;
  176. /**
  177. * concurrent_operations - Whether concurrent operations are supported
  178. */
  179. int concurrent_operations;
  180. /**
  181. * max_peers - Maximum number of discovered peers to remember
  182. *
  183. * If more peers are discovered, older entries will be removed to make
  184. * room for the new ones.
  185. */
  186. size_t max_peers;
  187. /**
  188. * p2p_intra_bss - Intra BSS communication is supported
  189. */
  190. int p2p_intra_bss;
  191. /**
  192. * ssid_postfix - Postfix data to add to the SSID
  193. *
  194. * This data will be added to the end of the SSID after the
  195. * DIRECT-<random two octets> prefix.
  196. */
  197. u8 ssid_postfix[32 - 9];
  198. /**
  199. * ssid_postfix_len - Length of the ssid_postfix data
  200. */
  201. size_t ssid_postfix_len;
  202. /**
  203. * msg_ctx - Context to use with wpa_msg() calls
  204. */
  205. void *msg_ctx;
  206. /**
  207. * cb_ctx - Context to use with callback functions
  208. */
  209. void *cb_ctx;
  210. /* Callbacks to request lower layer driver operations */
  211. /**
  212. * p2p_scan - Request a P2P scan/search
  213. * @ctx: Callback context from cb_ctx
  214. * @type: Scan type
  215. * @freq: Specific frequency (MHz) to scan or 0 for no restriction
  216. * Returns: 0 on success, -1 on failure
  217. *
  218. * This callback function is used to request a P2P scan or search
  219. * operation to be completed. Type type argument specifies which type
  220. * of scan is to be done. @P2P_SCAN_SOCIAL indicates that only the
  221. * social channels (1, 6, 11) should be scanned. @P2P_SCAN_FULL
  222. * indicates that all channels are to be scanned. @P2P_SCAN_SPECIFIC
  223. * request a scan of a single channel specified by freq.
  224. * @P2P_SCAN_SOCIAL_PLUS_ONE request scan of all the social channels
  225. * plus one extra channel specified by freq.
  226. *
  227. * The full scan is used for the initial scan to find group owners from
  228. * all. The other types are used during search phase scan of the social
  229. * channels (with potential variation if the Listen channel of the
  230. * target peer is known or if other channels are scanned in steps).
  231. *
  232. * The scan results are returned after this call by calling
  233. * p2p_scan_res_handler() for each scan result that has a P2P IE and
  234. * then calling p2p_scan_res_handled() to indicate that all scan
  235. * results have been indicated.
  236. */
  237. int (*p2p_scan)(void *ctx, enum p2p_scan_type type, int freq);
  238. /**
  239. * send_probe_resp - Transmit a Probe Response frame
  240. * @ctx: Callback context from cb_ctx
  241. * @buf: Probe Response frame (including the header and body)
  242. * Returns: 0 on success, -1 on failure
  243. *
  244. * This function is used to reply to Probe Request frames that were
  245. * indicated with a call to p2p_probe_req_rx(). The response is to be
  246. * sent on the same channel or to be dropped if the driver is not
  247. * anymore listening to Probe Request frames.
  248. *
  249. * Alternatively, the responsibility for building the Probe Response
  250. * frames in Listen state may be in another system component in which
  251. * case this function need to be implemented (i.e., the function
  252. * pointer can be %NULL). The WPS and P2P IEs to be added for Probe
  253. * Response frames in such a case are available from the
  254. * start_listen() callback. It should be noted that the received Probe
  255. * Request frames must be indicated by calling p2p_probe_req_rx() even
  256. * if this send_probe_resp() is not used.
  257. */
  258. int (*send_probe_resp)(void *ctx, const struct wpabuf *buf);
  259. /**
  260. * send_action - Transmit an Action frame
  261. * @ctx: Callback context from cb_ctx
  262. * @freq: Frequency in MHz for the channel on which to transmit
  263. * @dst: Destination MAC address (Address 1)
  264. * @src: Source MAC address (Address 2)
  265. * @bssid: BSSID (Address 3)
  266. * @buf: Frame body (starting from Category field)
  267. * @len: Length of buf in octets
  268. * @wait_time: How many msec to wait for a response frame
  269. * Returns: 0 on success, -1 on failure
  270. *
  271. * The Action frame may not be transmitted immediately and the status
  272. * of the transmission must be reported by calling
  273. * p2p_send_action_cb() once the frame has either been transmitted or
  274. * it has been dropped due to excessive retries or other failure to
  275. * transmit.
  276. */
  277. int (*send_action)(void *ctx, unsigned int freq, const u8 *dst,
  278. const u8 *src, const u8 *bssid, const u8 *buf,
  279. size_t len, unsigned int wait_time);
  280. /**
  281. * send_action_done - Notify that Action frame sequence was completed
  282. * @ctx: Callback context from cb_ctx
  283. *
  284. * This function is called when the Action frame sequence that was
  285. * started with send_action() has been completed, i.e., when there is
  286. * no need to wait for a response from the destination peer anymore.
  287. */
  288. void (*send_action_done)(void *ctx);
  289. /**
  290. * start_listen - Start Listen state
  291. * @ctx: Callback context from cb_ctx
  292. * @freq: Frequency of the listen channel in MHz
  293. * @duration: Duration for the Listen state in milliseconds
  294. * @probe_resp_ie: IE(s) to be added to Probe Response frames
  295. * Returns: 0 on success, -1 on failure
  296. *
  297. * This Listen state may not start immediately since the driver may
  298. * have other pending operations to complete first. Once the Listen
  299. * state has started, p2p_listen_cb() must be called to notify the P2P
  300. * module. Once the Listen state is stopped, p2p_listen_end() must be
  301. * called to notify the P2P module that the driver is not in the Listen
  302. * state anymore.
  303. *
  304. * If the send_probe_resp() is not used for generating the response,
  305. * the IEs from probe_resp_ie need to be added to the end of the Probe
  306. * Response frame body. If send_probe_resp() is used, the probe_resp_ie
  307. * information can be ignored.
  308. */
  309. int (*start_listen)(void *ctx, unsigned int freq,
  310. unsigned int duration,
  311. const struct wpabuf *probe_resp_ie);
  312. /**
  313. * stop_listen - Stop Listen state
  314. * @ctx: Callback context from cb_ctx
  315. *
  316. * This callback can be used to stop a Listen state operation that was
  317. * previously requested with start_listen().
  318. */
  319. void (*stop_listen)(void *ctx);
  320. /**
  321. * get_noa - Get current Notice of Absence attribute payload
  322. * @ctx: Callback context from cb_ctx
  323. * @interface_addr: P2P Interface Address of the GO
  324. * @buf: Buffer for returning NoA
  325. * @buf_len: Buffer length in octets
  326. * Returns: Number of octets used in buf, 0 to indicate no NoA is being
  327. * advertized, or -1 on failure
  328. *
  329. * This function is used to fetch the current Notice of Absence
  330. * attribute value from GO.
  331. */
  332. int (*get_noa)(void *ctx, const u8 *interface_addr, u8 *buf,
  333. size_t buf_len);
  334. /* Callbacks to notify events to upper layer management entity */
  335. /**
  336. * dev_found - Notification of a found P2P Device
  337. * @ctx: Callback context from cb_ctx
  338. * @addr: Source address of the message triggering this notification
  339. * @dev_addr: P2P Device Address of the found P2P Device
  340. * @pri_dev_type: Primary Device Type
  341. * @dev_name: Device Name
  342. * @config_methods: Configuration Methods
  343. * @dev_capab: Device Capabilities
  344. * @group_capab: Group Capabilities
  345. *
  346. * This callback is used to notify that a new P2P Device has been
  347. * found. This may happen, e.g., during Search state based on scan
  348. * results or during Listen state based on receive Probe Request and
  349. * Group Owner Negotiation Request.
  350. */
  351. void (*dev_found)(void *ctx, const u8 *addr, const u8 *dev_addr,
  352. const u8 *pri_dev_type, const char *dev_name,
  353. u16 config_methods, u8 dev_capab, u8 group_capab);
  354. /**
  355. * go_neg_req_rx - Notification of a receive GO Negotiation Request
  356. * @ctx: Callback context from cb_ctx
  357. * @src: Source address of the message triggering this notification
  358. * @dev_passwd_id: WPS Device Password ID
  359. *
  360. * This callback is used to notify that a P2P Device is requesting
  361. * group owner negotiation with us, but we do not have all the
  362. * necessary information to start GO Negotiation. This indicates that
  363. * the local user has not authorized the connection yet by providing a
  364. * PIN or PBC button press. This information can be provided with a
  365. * call to p2p_connect().
  366. */
  367. void (*go_neg_req_rx)(void *ctx, const u8 *src, u16 dev_passwd_id);
  368. /**
  369. * go_neg_completed - Notification of GO Negotiation results
  370. * @ctx: Callback context from cb_ctx
  371. * @res: GO Negotiation results
  372. *
  373. * This callback is used to notify that Group Owner Negotiation has
  374. * been completed. Non-zero struct p2p_go_neg_results::status indicates
  375. * failed negotiation. In case of success, this function is responsible
  376. * for creating a new group interface (or using the existing interface
  377. * depending on driver features), setting up the group interface in
  378. * proper mode based on struct p2p_go_neg_results::role_go and
  379. * initializing WPS provisioning either as a Registrar (if GO) or as an
  380. * Enrollee. Successful WPS provisioning must be indicated by calling
  381. * p2p_wps_success_cb(). The callee is responsible for timing out group
  382. * formation if WPS provisioning cannot be completed successfully
  383. * within 15 seconds.
  384. */
  385. void (*go_neg_completed)(void *ctx, struct p2p_go_neg_results *res);
  386. /**
  387. * sd_request - Callback on Service Discovery Request
  388. * @ctx: Callback context from cb_ctx
  389. * @freq: Frequency (in MHz) of the channel
  390. * @sa: Source address of the request
  391. * @dialog_token: Dialog token
  392. * @update_indic: Service Update Indicator from the source of request
  393. * @tlvs: P2P Service Request TLV(s)
  394. * @tlvs_len: Length of tlvs buffer in octets
  395. *
  396. * This callback is used to indicate reception of a service discovery
  397. * request. Response to the query must be indicated by calling
  398. * p2p_sd_response() with the context information from the arguments to
  399. * this callback function.
  400. *
  401. * This callback handler can be set to %NULL to indicate that service
  402. * discovery is not supported.
  403. */
  404. void (*sd_request)(void *ctx, int freq, const u8 *sa, u8 dialog_token,
  405. u16 update_indic, const u8 *tlvs, size_t tlvs_len);
  406. /**
  407. * sd_response - Callback on Service Discovery Response
  408. * @ctx: Callback context from cb_ctx
  409. * @sa: Source address of the request
  410. * @update_indic: Service Update Indicator from the source of response
  411. * @tlvs: P2P Service Response TLV(s)
  412. * @tlvs_len: Length of tlvs buffer in octets
  413. *
  414. * This callback is used to indicate reception of a service discovery
  415. * response. This callback handler can be set to %NULL if no service
  416. * discovery requests are used. The information provided with this call
  417. * is replies to the queries scheduled with p2p_sd_request().
  418. */
  419. void (*sd_response)(void *ctx, const u8 *sa, u16 update_indic,
  420. const u8 *tlvs, size_t tlvs_len);
  421. /**
  422. * prov_disc_req - Callback on Provisiong Discovery Request
  423. * @ctx: Callback context from cb_ctx
  424. * @peer: Source address of the request
  425. * @config_methods: Requested WPS Config Method
  426. * @dev_addr: P2P Device Address of the found P2P Device
  427. * @pri_dev_type: Primary Device Type
  428. * @dev_name: Device Name
  429. * @supp_config_methods: Supported configuration Methods
  430. * @dev_capab: Device Capabilities
  431. * @group_capab: Group Capabilities
  432. *
  433. * This callback is used to indicate reception of a Provision Discovery
  434. * Request frame that the P2P module accepted.
  435. */
  436. void (*prov_disc_req)(void *ctx, const u8 *peer, u16 config_methods,
  437. const u8 *dev_addr, const u8 *pri_dev_type,
  438. const char *dev_name, u16 supp_config_methods,
  439. u8 dev_capab, u8 group_capab);
  440. /**
  441. * prov_disc_resp - Callback on Provisiong Discovery Response
  442. * @ctx: Callback context from cb_ctx
  443. * @peer: Source address of the response
  444. * @config_methods: Value from p2p_prov_disc_req() or 0 on failure
  445. *
  446. * This callback is used to indicate reception of a Provision Discovery
  447. * Response frame for a pending request scheduled with
  448. * p2p_prov_disc_req(). This callback handler can be set to %NULL if
  449. * provision discovery is not used.
  450. */
  451. void (*prov_disc_resp)(void *ctx, const u8 *peer, u16 config_methods);
  452. /**
  453. * invitation_process - Optional callback for processing Invitations
  454. * @ctx: Callback context from cb_ctx
  455. * @sa: Source address of the Invitation Request
  456. * @bssid: P2P Group BSSID from the request or %NULL if not included
  457. * @go_dev_addr: GO Device Address from P2P Group ID
  458. * @ssid: SSID from P2P Group ID
  459. * @ssid_len: Length of ssid buffer in octets
  460. * @go: Variable for returning whether the local end is GO in the group
  461. * @group_bssid: Buffer for returning P2P Group BSSID (if local end GO)
  462. * @force_freq: Variable for returning forced frequency for the group
  463. * @persistent_group: Whether this is an invitation to reinvoke a
  464. * persistent group (instead of invitation to join an active
  465. * group)
  466. * Returns: Status code (P2P_SC_*)
  467. *
  468. * This optional callback can be used to implement persistent reconnect
  469. * by allowing automatic restarting of persistent groups without user
  470. * interaction. If this callback is not implemented (i.e., is %NULL),
  471. * the received Invitation Request frames are replied with
  472. * %P2P_SC_REQ_RECEIVED status and indicated to upper layer with the
  473. * invitation_result() callback.
  474. *
  475. * If the requested parameters are acceptable and the group is known,
  476. * %P2P_SC_SUCCESS may be returned. If the requested group is unknown,
  477. * %P2P_SC_FAIL_UNKNOWN_GROUP should be returned. %P2P_SC_REQ_RECEIVED
  478. * can be returned if there is not enough data to provide immediate
  479. * response, i.e., if some sort of user interaction is needed. The
  480. * invitation_received() callback will be called in that case
  481. * immediately after this call.
  482. */
  483. u8 (*invitation_process)(void *ctx, const u8 *sa, const u8 *bssid,
  484. const u8 *go_dev_addr, const u8 *ssid,
  485. size_t ssid_len, int *go, u8 *group_bssid,
  486. int *force_freq, int persistent_group);
  487. /**
  488. * invitation_received - Callback on Invitation Request RX
  489. * @ctx: Callback context from cb_ctx
  490. * @sa: Source address of the Invitation Request
  491. * @bssid: P2P Group BSSID or %NULL if not received
  492. * @ssid: SSID of the group
  493. * @ssid_len: Length of ssid in octets
  494. * @go_dev_addr: GO Device Address
  495. * @status: Response Status
  496. * @op_freq: Operational frequency for the group
  497. *
  498. * This callback is used to indicate sending of an Invitation Response
  499. * for a received Invitation Request. If status == 0 (success), the
  500. * upper layer code is responsible for starting the group. status == 1
  501. * indicates need to get user authorization for the group. Other status
  502. * values indicate that the invitation request was rejected.
  503. */
  504. void (*invitation_received)(void *ctx, const u8 *sa, const u8 *bssid,
  505. const u8 *ssid, size_t ssid_len,
  506. const u8 *go_dev_addr, u8 status,
  507. int op_freq);
  508. /**
  509. * invitation_result - Callback on Invitation result
  510. * @ctx: Callback context from cb_ctx
  511. * @status: Negotiation result (Status Code)
  512. * @bssid: P2P Group BSSID or %NULL if not received
  513. *
  514. * This callback is used to indicate result of an Invitation procedure
  515. * started with a call to p2p_invite(). The indicated status code is
  516. * the value received from the peer in Invitation Response with 0
  517. * (P2P_SC_SUCCESS) indicating success or -1 to indicate a timeout or a
  518. * local failure in transmitting the Invitation Request.
  519. */
  520. void (*invitation_result)(void *ctx, int status, const u8 *bssid);
  521. };
  522. /* P2P module initialization/deinitialization */
  523. /**
  524. * p2p_init - Initialize P2P module
  525. * @cfg: P2P module configuration
  526. * Returns: Pointer to private data or %NULL on failure
  527. *
  528. * This function is used to initialize global P2P module context (one per
  529. * device). The P2P module will keep a copy of the configuration data, so the
  530. * caller does not need to maintain this structure. However, the callback
  531. * functions and the context parameters to them must be kept available until
  532. * the P2P module is deinitialized with p2p_deinit().
  533. */
  534. struct p2p_data * p2p_init(const struct p2p_config *cfg);
  535. /**
  536. * p2p_deinit - Deinitialize P2P module
  537. * @p2p: P2P module context from p2p_init()
  538. */
  539. void p2p_deinit(struct p2p_data *p2p);
  540. /**
  541. * p2p_flush - Flush P2P module state
  542. * @p2p: P2P module context from p2p_init()
  543. *
  544. * This command removes the P2P module state like peer device entries.
  545. */
  546. void p2p_flush(struct p2p_data *p2p);
  547. /**
  548. * p2p_set_dev_name - Set device name
  549. * @p2p: P2P module context from p2p_init()
  550. * Returns: 0 on success, -1 on failure
  551. *
  552. * This function can be used to update the P2P module configuration with
  553. * information that was not available at the time of the p2p_init() call.
  554. */
  555. int p2p_set_dev_name(struct p2p_data *p2p, const char *dev_name);
  556. /**
  557. * p2p_set_pri_dev_type - Set primary device type
  558. * @p2p: P2P module context from p2p_init()
  559. * Returns: 0 on success, -1 on failure
  560. *
  561. * This function can be used to update the P2P module configuration with
  562. * information that was not available at the time of the p2p_init() call.
  563. */
  564. int p2p_set_pri_dev_type(struct p2p_data *p2p, const u8 *pri_dev_type);
  565. /**
  566. * p2p_set_sec_dev_types - Set secondary device types
  567. * @p2p: P2P module context from p2p_init()
  568. * Returns: 0 on success, -1 on failure
  569. *
  570. * This function can be used to update the P2P module configuration with
  571. * information that was not available at the time of the p2p_init() call.
  572. */
  573. int p2p_set_sec_dev_types(struct p2p_data *p2p, const u8 dev_types[][8],
  574. size_t num_dev_types);
  575. int p2p_set_country(struct p2p_data *p2p, const char *country);
  576. /* Commands from upper layer management entity */
  577. enum p2p_discovery_type {
  578. P2P_FIND_START_WITH_FULL,
  579. P2P_FIND_ONLY_SOCIAL,
  580. P2P_FIND_PROGRESSIVE
  581. };
  582. /**
  583. * p2p_find - Start P2P Find (Device Discovery)
  584. * @p2p: P2P module context from p2p_init()
  585. * @timeout: Timeout for find operation in seconds or 0 for no timeout
  586. * @type: Device Discovery type
  587. * Returns: 0 on success, -1 on failure
  588. */
  589. int p2p_find(struct p2p_data *p2p, unsigned int timeout,
  590. enum p2p_discovery_type type);
  591. /**
  592. * p2p_stop_find - Stop P2P Find (Device Discovery)
  593. * @p2p: P2P module context from p2p_init()
  594. */
  595. void p2p_stop_find(struct p2p_data *p2p);
  596. /**
  597. * p2p_listen - Start P2P Listen state for specified duration
  598. * @p2p: P2P module context from p2p_init()
  599. * @timeout: Listen state duration in milliseconds
  600. * Returns: 0 on success, -1 on failure
  601. *
  602. * This function can be used to request the P2P module to keep the device
  603. * discoverable on the listen channel for an extended set of time. At least in
  604. * its current form, this is mainly used for testing purposes and may not be of
  605. * much use for normal P2P operations.
  606. */
  607. int p2p_listen(struct p2p_data *p2p, unsigned int timeout);
  608. /**
  609. * p2p_connect - Start P2P group formation (GO negotiation)
  610. * @p2p: P2P module context from p2p_init()
  611. * @peer_addr: MAC address of the peer P2P client
  612. * @wps_method: WPS method to be used in provisioning
  613. * @go_intent: Local GO intent value (1..15)
  614. * @own_interface_addr: Intended interface address to use with the group
  615. * @force_freq: The only allowed channel frequency in MHz or 0
  616. * @persistent_group: Whether to create a persistent group
  617. * Returns: 0 on success, -1 on failure
  618. */
  619. int p2p_connect(struct p2p_data *p2p, const u8 *peer_addr,
  620. enum p2p_wps_method wps_method,
  621. int go_intent, const u8 *own_interface_addr,
  622. unsigned int force_freq, int persistent_group);
  623. /**
  624. * p2p_authorize - Authorize P2P group formation (GO negotiation)
  625. * @p2p: P2P module context from p2p_init()
  626. * @peer_addr: MAC address of the peer P2P client
  627. * @wps_method: WPS method to be used in provisioning
  628. * @go_intent: Local GO intent value (1..15)
  629. * @own_interface_addr: Intended interface address to use with the group
  630. * @force_freq: The only allowed channel frequency in MHz or 0
  631. * @persistent_group: Whether to create a persistent group
  632. * Returns: 0 on success, -1 on failure
  633. *
  634. * This is like p2p_connect(), but the actual group negotiation is not
  635. * initiated automatically, i.e., the other end is expected to do that.
  636. */
  637. int p2p_authorize(struct p2p_data *p2p, const u8 *peer_addr,
  638. enum p2p_wps_method wps_method,
  639. int go_intent, const u8 *own_interface_addr,
  640. unsigned int force_freq, int persistent_group);
  641. /**
  642. * p2p_reject - Reject peer device (explicitly block connection attempts)
  643. * @p2p: P2P module context from p2p_init()
  644. * @peer_addr: MAC address of the peer P2P client
  645. * Returns: 0 on success, -1 on failure
  646. */
  647. int p2p_reject(struct p2p_data *p2p, const u8 *peer_addr);
  648. /**
  649. * p2p_prov_disc_req - Send Provision Discovery Request
  650. * @p2p: P2P module context from p2p_init()
  651. * @peer_addr: MAC address of the peer P2P client
  652. * @config_methods: WPS Config Methods value (only one bit set)
  653. * @join: Whether this is used by a client joining an active group
  654. * Returns: 0 on success, -1 on failure
  655. *
  656. * This function can be used to request a discovered P2P peer to display a PIN
  657. * (config_methods = WPS_CONFIG_DISPLAY) or be prepared to enter a PIN from us
  658. * (config_methods = WPS_CONFIG_KEYPAD). The Provision Discovery Request frame
  659. * is transmitted once immediately and if no response is received, the frame
  660. * will be sent again whenever the target device is discovered during device
  661. * dsicovery (start with a p2p_find() call). Response from the peer is
  662. * indicated with the p2p_config::prov_disc_resp() callback.
  663. */
  664. int p2p_prov_disc_req(struct p2p_data *p2p, const u8 *peer_addr,
  665. u16 config_methods, int join);
  666. /**
  667. * p2p_sd_request - Schedule a service discovery query
  668. * @p2p: P2P module context from p2p_init()
  669. * @dst: Destination peer or %NULL to apply for all peers
  670. * @tlvs: P2P Service Query TLV(s)
  671. * Returns: Reference to the query or %NULL on failure
  672. *
  673. * Response to the query is indicated with the p2p_config::sd_response()
  674. * callback.
  675. */
  676. void * p2p_sd_request(struct p2p_data *p2p, const u8 *dst,
  677. const struct wpabuf *tlvs);
  678. /**
  679. * p2p_sd_cancel_request - Cancel a pending service discovery query
  680. * @p2p: P2P module context from p2p_init()
  681. * @req: Query reference from p2p_sd_request()
  682. * Returns: 0 if request for cancelled; -1 if not found
  683. */
  684. int p2p_sd_cancel_request(struct p2p_data *p2p, void *req);
  685. /**
  686. * p2p_sd_response - Send response to a service discovery query
  687. * @p2p: P2P module context from p2p_init()
  688. * @freq: Frequency from p2p_config::sd_request() callback
  689. * @dst: Destination address from p2p_config::sd_request() callback
  690. * @dialog_token: Dialog token from p2p_config::sd_request() callback
  691. * @resp_tlvs: P2P Service Response TLV(s)
  692. *
  693. * This function is called as a response to the request indicated with
  694. * p2p_config::sd_request() callback.
  695. */
  696. void p2p_sd_response(struct p2p_data *p2p, int freq, const u8 *dst,
  697. u8 dialog_token, const struct wpabuf *resp_tlvs);
  698. /**
  699. * p2p_sd_service_update - Indicate a change in local services
  700. * @p2p: P2P module context from p2p_init()
  701. *
  702. * This function needs to be called whenever there is a change in availability
  703. * of the local services. This will increment the Service Update Indicator
  704. * value which will be used in SD Request and Response frames.
  705. */
  706. void p2p_sd_service_update(struct p2p_data *p2p);
  707. enum p2p_invite_role {
  708. P2P_INVITE_ROLE_GO,
  709. P2P_INVITE_ROLE_ACTIVE_GO,
  710. P2P_INVITE_ROLE_CLIENT
  711. };
  712. /**
  713. * p2p_invite - Invite a P2P Device into a group
  714. * @p2p: P2P module context from p2p_init()
  715. * @peer: Device Address of the peer P2P Device
  716. * @role: Local role in the group
  717. * @bssid: Group BSSID or %NULL if not known
  718. * @ssid: Group SSID
  719. * @ssid_len: Length of ssid in octets
  720. * @force_freq: The only allowed channel frequency in MHz or 0
  721. * @go_dev_addr: Forced GO Device Address or %NULL if none
  722. * @persistent_group: Whether this is to reinvoke a persistent group
  723. * Returns: 0 on success, -1 on failure
  724. */
  725. int p2p_invite(struct p2p_data *p2p, const u8 *peer, enum p2p_invite_role role,
  726. const u8 *bssid, const u8 *ssid, size_t ssid_len,
  727. unsigned int force_freq, const u8 *go_dev_addr,
  728. int persistent_group);
  729. /**
  730. * p2p_presence_req - Request GO presence
  731. * @p2p: P2P module context from p2p_init()
  732. * @go_interface_addr: GO P2P Interface Address
  733. * @own_interface_addr: Own P2P Interface Address for this group
  734. * @freq: Group operating frequence (in MHz)
  735. * @duration1: Preferred presence duration in microseconds
  736. * @interval1: Preferred presence interval in microseconds
  737. * @duration2: Acceptable presence duration in microseconds
  738. * @interval2: Acceptable presence interval in microseconds
  739. * Returns: 0 on success, -1 on failure
  740. *
  741. * If both duration and interval values are zero, the parameter pair is not
  742. * specified (i.e., to remove Presence Request, use duration1 = interval1 = 0).
  743. */
  744. int p2p_presence_req(struct p2p_data *p2p, const u8 *go_interface_addr,
  745. const u8 *own_interface_addr, unsigned int freq,
  746. u32 duration1, u32 interval1, u32 duration2,
  747. u32 interval2);
  748. /**
  749. * p2p_ext_listen - Set Extended Listen Timing
  750. * @p2p: P2P module context from p2p_init()
  751. * @freq: Group operating frequence (in MHz)
  752. * @period: Availability period in milliseconds (1-65535; 0 to disable)
  753. * @interval: Availability interval in milliseconds (1-65535; 0 to disable)
  754. * Returns: 0 on success, -1 on failure
  755. *
  756. * This function can be used to enable or disable (period = interval = 0)
  757. * Extended Listen Timing. When enabled, the P2P Device will become
  758. * discoverable (go into Listen State) every @interval milliseconds for at
  759. * least @period milliseconds.
  760. */
  761. int p2p_ext_listen(struct p2p_data *p2p, unsigned int period,
  762. unsigned int interval);
  763. /* Event notifications from upper layer management operations */
  764. /**
  765. * p2p_wps_success_cb - Report successfully completed WPS provisioning
  766. * @p2p: P2P module context from p2p_init()
  767. * @mac_addr: Peer address
  768. *
  769. * This function is used to report successfully completed WPS provisioning
  770. * during group formation in both GO/Registrar and client/Enrollee roles.
  771. */
  772. void p2p_wps_success_cb(struct p2p_data *p2p, const u8 *mac_addr);
  773. /**
  774. * p2p_group_formation_failed - Report failed WPS provisioning
  775. * @p2p: P2P module context from p2p_init()
  776. *
  777. * This function is used to report failed group formation. This can happen
  778. * either due to failed WPS provisioning or due to 15 second timeout during
  779. * the provisioning phase.
  780. */
  781. void p2p_group_formation_failed(struct p2p_data *p2p);
  782. /* Event notifications from lower layer driver operations */
  783. /**
  784. * p2p_probe_req_rx - Report reception of a Probe Request frame
  785. * @p2p: P2P module context from p2p_init()
  786. * @addr: Source MAC address
  787. * @ie: Information elements from the Probe Request frame body
  788. * @ie_len: Length of ie buffer in octets
  789. * Returns: 0 to indicate the frame was not processed or 1 if it was
  790. */
  791. int p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *ie,
  792. size_t ie_len);
  793. /**
  794. * p2p_rx_action - Report received Action frame
  795. * @p2p: P2P module context from p2p_init()
  796. * @da: Destination address of the received Action frame
  797. * @sa: Source address of the received Action frame
  798. * @bssid: Address 3 of the received Action frame
  799. * @category: Category of the received Action frame
  800. * @data: Action frame body after the Category field
  801. * @len: Length of the data buffer in octets
  802. * @freq: Frequency (in MHz) on which the frame was received
  803. */
  804. void p2p_rx_action(struct p2p_data *p2p, const u8 *da, const u8 *sa,
  805. const u8 *bssid, u8 category,
  806. const u8 *data, size_t len, int freq);
  807. /**
  808. * p2p_scan_res_handler - Indicate a P2P scan results
  809. * @p2p: P2P module context from p2p_init()
  810. * @bssid: BSSID of the scan result
  811. * @freq: Frequency of the channel on which the device was found in MHz
  812. * @level: Signal level (signal strength of the received Beacon/Probe Response
  813. * frame)
  814. * @ies: Pointer to IEs from the scan result
  815. * @ies_len: Length of the ies buffer
  816. * Returns: 0 to continue or 1 to stop scan result indication
  817. *
  818. * This function is called to indicate a scan result entry with P2P IE from a
  819. * scan requested with struct p2p_config::p2p_scan(). This can be called during
  820. * the actual scan process (i.e., whenever a new device is found) or as a
  821. * sequence of calls after the full scan has been completed. The former option
  822. * can result in optimized operations, but may not be supported by all
  823. * driver/firmware designs. The ies buffer need to include at least the P2P IE,
  824. * but it is recommended to include all IEs received from the device. The
  825. * caller does not need to check that the IEs contain a P2P IE before calling
  826. * this function since frames will be filtered internally if needed.
  827. *
  828. * This function will return 1 if it wants to stop scan result iteration (and
  829. * scan in general if it is still in progress). This is used to allow faster
  830. * start of a pending operation, e.g., to start a pending GO negotiation.
  831. */
  832. int p2p_scan_res_handler(struct p2p_data *p2p, const u8 *bssid, int freq,
  833. int level, const u8 *ies, size_t ies_len);
  834. /**
  835. * p2p_scan_res_handled - Indicate end of scan results
  836. * @p2p: P2P module context from p2p_init()
  837. *
  838. * This function is called to indicate that all P2P scan results from a scan
  839. * have been reported with zero or more calls to p2p_scan_res_handler(). This
  840. * function must be called as a response to successful
  841. * struct p2p_config::p2p_scan() call if none of the p2p_scan_res_handler()
  842. * calls stopped iteration.
  843. */
  844. void p2p_scan_res_handled(struct p2p_data *p2p);
  845. /**
  846. * p2p_send_action_cb - Notify TX status of an Action frame
  847. * @p2p: P2P module context from p2p_init()
  848. * @freq: Channel frequency in MHz
  849. * @dst: Destination MAC address (Address 1)
  850. * @src: Source MAC address (Address 2)
  851. * @bssid: BSSID (Address 3)
  852. * @success: Whether the transmission succeeded
  853. *
  854. * This function is used to indicate the result of an Action frame transmission
  855. * that was requested with struct p2p_config::send_action() callback.
  856. */
  857. void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
  858. const u8 *src, const u8 *bssid, int success);
  859. /**
  860. * p2p_listen_cb - Indicate the start of a requested Listen state
  861. * @p2p: P2P module context from p2p_init()
  862. * @freq: Listen channel frequency in MHz
  863. * @duration: Duration for the Listen state in milliseconds
  864. *
  865. * This function is used to indicate that a Listen state requested with
  866. * struct p2p_config::start_listen() callback has started.
  867. */
  868. void p2p_listen_cb(struct p2p_data *p2p, unsigned int freq,
  869. unsigned int duration);
  870. /**
  871. * p2p_listen_end - Indicate the end of a requested Listen state
  872. * @p2p: P2P module context from p2p_init()
  873. * @freq: Listen channel frequency in MHz
  874. * Returns: 0 if no operations were started, 1 if an operation was started
  875. *
  876. * This function is used to indicate that a Listen state requested with
  877. * struct p2p_config::start_listen() callback has ended.
  878. */
  879. int p2p_listen_end(struct p2p_data *p2p, unsigned int freq);
  880. void p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
  881. const u8 *ie, size_t ie_len);
  882. void p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
  883. const u8 *ie, size_t ie_len);
  884. /* Per-group P2P state for GO */
  885. struct p2p_group;
  886. /**
  887. * struct p2p_group_config - P2P group configuration
  888. *
  889. * This configuration is provided to the P2P module during initialization of
  890. * the per-group information with p2p_group_init().
  891. */
  892. struct p2p_group_config {
  893. /**
  894. * persistent_group - Whether the group is persistent
  895. */
  896. int persistent_group;
  897. /**
  898. * interface_addr - P2P Interface Address of the group
  899. */
  900. u8 interface_addr[ETH_ALEN];
  901. /**
  902. * cb_ctx - Context to use with callback functions
  903. */
  904. void *cb_ctx;
  905. /**
  906. * ie_update - Notification of IE update
  907. * @ctx: Callback context from cb_ctx
  908. * @beacon_ies: P2P IE for Beacon frames or %NULL if no change
  909. * @proberesp_ies: P2P Ie for Probe Response frames
  910. *
  911. * P2P module uses this callback function to notify whenever the P2P IE
  912. * in Beacon or Probe Response frames should be updated based on group
  913. * events.
  914. *
  915. * The callee is responsible for freeing the returned buffer(s) with
  916. * wpabuf_free().
  917. */
  918. void (*ie_update)(void *ctx, struct wpabuf *beacon_ies,
  919. struct wpabuf *proberesp_ies);
  920. };
  921. /**
  922. * p2p_group_init - Initialize P2P group
  923. * @p2p: P2P module context from p2p_init()
  924. * @config: P2P group configuration (will be freed by p2p_group_deinit())
  925. * Returns: Pointer to private data or %NULL on failure
  926. *
  927. * This function is used to initialize per-group P2P module context. Currently,
  928. * this is only used to manage GO functionality and P2P clients do not need to
  929. * create an instance of this per-group information.
  930. */
  931. struct p2p_group * p2p_group_init(struct p2p_data *p2p,
  932. struct p2p_group_config *config);
  933. /**
  934. * p2p_group_deinit - Deinitialize P2P group
  935. * @group: P2P group context from p2p_group_init()
  936. */
  937. void p2p_group_deinit(struct p2p_group *group);
  938. /**
  939. * p2p_group_notif_assoc - Notification of P2P client association with GO
  940. * @group: P2P group context from p2p_group_init()
  941. * @addr: Interface address of the P2P client
  942. * @ie: IEs from the (Re)association Request frame
  943. * @len: Length of the ie buffer in octets
  944. * Returns: 0 on success, -1 on failure
  945. */
  946. int p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr,
  947. const u8 *ie, size_t len);
  948. /**
  949. * p2p_group_assoc_resp_ie - Build P2P IE for (re)association response
  950. * @group: P2P group context from p2p_group_init()
  951. * @status: Status value (P2P_SC_SUCCESS if association succeeded)
  952. * Returns: P2P IE for (Re)association Response or %NULL on failure
  953. *
  954. * The caller is responsible for freeing the returned buffer with
  955. * wpabuf_free().
  956. */
  957. struct wpabuf * p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status);
  958. /**
  959. * p2p_group_notif_disassoc - Notification of P2P client disassociation from GO
  960. * @group: P2P group context from p2p_group_init()
  961. * @addr: Interface address of the P2P client
  962. */
  963. void p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr);
  964. /**
  965. * p2p_group_notif_formation_done - Notification of completed group formation
  966. * @group: P2P group context from p2p_group_init()
  967. */
  968. void p2p_group_notif_formation_done(struct p2p_group *group);
  969. /**
  970. * p2p_group_notif_noa - Notification of NoA change
  971. * @group: P2P group context from p2p_group_init()
  972. * @noa: Notice of Absence attribute payload, %NULL if none
  973. * @noa_len: Length of noa buffer in octets
  974. * Returns: 0 on success, -1 on failure
  975. *
  976. * Notify the P2P group management about a new NoA contents. This will be
  977. * inserted into the P2P IEs in Beacon and Probe Response frames with rest of
  978. * the group information.
  979. */
  980. int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
  981. size_t noa_len);
  982. /**
  983. * p2p_group_match_dev_type - Match device types in group with requested type
  984. * @group: P2P group context from p2p_group_init()
  985. * @wps: WPS TLVs from Probe Request frame (concatenated WPS IEs)
  986. * Returns: 1 on match, 0 on mismatch
  987. *
  988. * This function can be used to match the Requested Device Type attribute in
  989. * WPS IE with the device types of a group member for deciding whether a GO
  990. * should reply to a Probe Request frame. Match will be reported if the WPS IE
  991. * is not requested any specific device type.
  992. */
  993. int p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps);
  994. /**
  995. * p2p_group_go_discover - Send GO Discoverability Request to a group client
  996. * @group: P2P group context from p2p_group_init()
  997. * Returns: 0 on success (frame scheduled); -1 if client was not found
  998. */
  999. int p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id,
  1000. const u8 *searching_dev, int rx_freq);
  1001. /* Generic helper functions */
  1002. /**
  1003. * p2p_ie_text - Build text format description of P2P IE
  1004. * @p2p_ie: P2P IE
  1005. * @buf: Buffer for returning text
  1006. * @end: Pointer to the end of the buf area
  1007. * Returns: Number of octets written to the buffer or -1 on failure
  1008. *
  1009. * This function can be used to parse P2P IE contents into text format
  1010. * field=value lines.
  1011. */
  1012. int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end);
  1013. /**
  1014. * p2p_scan_result_text - Build text format description of P2P IE
  1015. * @ies: Information elements from scan results
  1016. * @ies_len: ies buffer length in octets
  1017. * @buf: Buffer for returning text
  1018. * @end: Pointer to the end of the buf area
  1019. * Returns: Number of octets written to the buffer or -1 on failure
  1020. *
  1021. * This function can be used to parse P2P IE contents into text format
  1022. * field=value lines.
  1023. */
  1024. int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end);
  1025. /**
  1026. * p2p_assoc_req_ie - Build P2P IE for (Re)Association Request frame
  1027. * @p2p: P2P module context from p2p_init()
  1028. * @bssid: BSSID
  1029. * @buf: Buffer for writing the P2P IE
  1030. * @len: Maximum buf length in octets
  1031. * @p2p_group: Whether this is for association with a P2P GO
  1032. * @p2p_ie: Reassembled P2P IE data from scan results or %NULL if none
  1033. * Returns: Number of octets written into buf or -1 on failure
  1034. */
  1035. int p2p_assoc_req_ie(struct p2p_data *p2p, const u8 *bssid, u8 *buf,
  1036. size_t len, int p2p_group, struct wpabuf *p2p_ie);
  1037. /**
  1038. * p2p_scan_ie - Build P2P IE for Probe Request
  1039. * @p2p: P2P module context from p2p_init()
  1040. * @ies: Buffer for writing P2P IE
  1041. */
  1042. void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies);
  1043. /**
  1044. * p2p_go_params - Generate random P2P group parameters
  1045. * @p2p: P2P module context from p2p_init()
  1046. * @params: Buffer for parameters
  1047. * Returns: 0 on success, -1 on failure
  1048. */
  1049. int p2p_go_params(struct p2p_data *p2p, struct p2p_go_neg_results *params);
  1050. /**
  1051. * p2p_get_group_capab - Get Group Capability from P2P IE data
  1052. * @p2p_ie: P2P IE(s) contents
  1053. * Returns: Group Capability
  1054. */
  1055. u8 p2p_get_group_capab(const struct wpabuf *p2p_ie);
  1056. /**
  1057. * p2p_get_cross_connect_disallowed - Does WLAN AP disallows cross connection
  1058. * @p2p_ie: P2P IE(s) contents
  1059. * Returns: 0 if cross connection is allow, 1 if not
  1060. */
  1061. int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie);
  1062. /**
  1063. * p2p_get_go_dev_addr - Get P2P Device Address from P2P IE data
  1064. * @p2p_ie: P2P IE(s) contents
  1065. * Returns: Pointer to P2P Device Address or %NULL if not included
  1066. */
  1067. const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie);
  1068. /**
  1069. * p2p_get_peer_info - Get P2P peer information in text format
  1070. * @p2p: P2P module context from p2p_init()
  1071. * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
  1072. * @next: Whether to select the peer entry following the one indicated by addr
  1073. * @buf: Buffer for returning text
  1074. * @buflen: Maximum buffer length
  1075. * Returns: Number of octets written to the buffer or -1 on failure
  1076. */
  1077. int p2p_get_peer_info(struct p2p_data *p2p, const u8 *addr, int next,
  1078. char *buf, size_t buflen);
  1079. /**
  1080. * p2p_set_client_discoverability - Set client discoverability capability
  1081. * @p2p: P2P module context from p2p_init()
  1082. * @enabled: Whether client discoverability will be enabled
  1083. *
  1084. * This function can be used to disable (and re-enable) client discoverability.
  1085. * This capability is enabled by default and should not be disabled in normal
  1086. * use cases, i.e., this is mainly for testing purposes.
  1087. */
  1088. void p2p_set_client_discoverability(struct p2p_data *p2p, int enabled);
  1089. /**
  1090. * p2p_set_manageD_oper - Set managed P2P Device operations capability
  1091. * @p2p: P2P module context from p2p_init()
  1092. * @enabled: Whether managed P2P Device operations will be enabled
  1093. */
  1094. void p2p_set_managed_oper(struct p2p_data *p2p, int enabled);
  1095. int p2p_set_listen_channel(struct p2p_data *p2p, u8 reg_class, u8 channel);
  1096. int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
  1097. int p2p_get_interface_addr(struct p2p_data *p2p, const u8 *dev_addr,
  1098. u8 *iface_addr);
  1099. int p2p_get_dev_addr(struct p2p_data *p2p, const u8 *iface_addr,
  1100. u8 *dev_addr);
  1101. void p2p_set_peer_filter(struct p2p_data *p2p, const u8 *addr);
  1102. /**
  1103. * p2p_set_cross_connect - Set cross connection capability
  1104. * @p2p: P2P module context from p2p_init()
  1105. * @enabled: Whether cross connection will be enabled
  1106. */
  1107. void p2p_set_cross_connect(struct p2p_data *p2p, int enabled);
  1108. int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr);
  1109. int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, int level,
  1110. const u8 *ies, size_t ies_len);
  1111. /**
  1112. * p2p_set_intra_bss_dist - Set intra BSS distribution
  1113. * @p2p: P2P module context from p2p_init()
  1114. * @enabled: Whether intra BSS distribution will be enabled
  1115. */
  1116. void p2p_set_intra_bss_dist(struct p2p_data *p2p, int enabled);
  1117. #endif /* P2P_H */