p2p.h 46 KB

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