p2p.h 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275
  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. enum p2p_send_action_result {
  846. P2P_SEND_ACTION_SUCCESS /* Frame was send and acknowledged */,
  847. P2P_SEND_ACTION_NO_ACK /* Frame was sent, but not acknowledged */,
  848. P2P_SEND_ACTION_FAILED /* Frame was not sent due to a failure */
  849. };
  850. /**
  851. * p2p_send_action_cb - Notify TX status of an Action frame
  852. * @p2p: P2P module context from p2p_init()
  853. * @freq: Channel frequency in MHz
  854. * @dst: Destination MAC address (Address 1)
  855. * @src: Source MAC address (Address 2)
  856. * @bssid: BSSID (Address 3)
  857. * @result: Result of the transmission attempt
  858. *
  859. * This function is used to indicate the result of an Action frame transmission
  860. * that was requested with struct p2p_config::send_action() callback.
  861. */
  862. void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
  863. const u8 *src, const u8 *bssid,
  864. enum p2p_send_action_result result);
  865. /**
  866. * p2p_listen_cb - Indicate the start of a requested Listen state
  867. * @p2p: P2P module context from p2p_init()
  868. * @freq: Listen channel frequency in MHz
  869. * @duration: Duration for the Listen state in milliseconds
  870. *
  871. * This function is used to indicate that a Listen state requested with
  872. * struct p2p_config::start_listen() callback has started.
  873. */
  874. void p2p_listen_cb(struct p2p_data *p2p, unsigned int freq,
  875. unsigned int duration);
  876. /**
  877. * p2p_listen_end - Indicate the end of a requested Listen state
  878. * @p2p: P2P module context from p2p_init()
  879. * @freq: Listen channel frequency in MHz
  880. * Returns: 0 if no operations were started, 1 if an operation was started
  881. *
  882. * This function is used to indicate that a Listen state requested with
  883. * struct p2p_config::start_listen() callback has ended.
  884. */
  885. int p2p_listen_end(struct p2p_data *p2p, unsigned int freq);
  886. void p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
  887. const u8 *ie, size_t ie_len);
  888. void p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
  889. const u8 *ie, size_t ie_len);
  890. /* Per-group P2P state for GO */
  891. struct p2p_group;
  892. /**
  893. * struct p2p_group_config - P2P group configuration
  894. *
  895. * This configuration is provided to the P2P module during initialization of
  896. * the per-group information with p2p_group_init().
  897. */
  898. struct p2p_group_config {
  899. /**
  900. * persistent_group - Whether the group is persistent
  901. */
  902. int persistent_group;
  903. /**
  904. * interface_addr - P2P Interface Address of the group
  905. */
  906. u8 interface_addr[ETH_ALEN];
  907. /**
  908. * cb_ctx - Context to use with callback functions
  909. */
  910. void *cb_ctx;
  911. /**
  912. * ie_update - Notification of IE update
  913. * @ctx: Callback context from cb_ctx
  914. * @beacon_ies: P2P IE for Beacon frames or %NULL if no change
  915. * @proberesp_ies: P2P Ie for Probe Response frames
  916. *
  917. * P2P module uses this callback function to notify whenever the P2P IE
  918. * in Beacon or Probe Response frames should be updated based on group
  919. * events.
  920. *
  921. * The callee is responsible for freeing the returned buffer(s) with
  922. * wpabuf_free().
  923. */
  924. void (*ie_update)(void *ctx, struct wpabuf *beacon_ies,
  925. struct wpabuf *proberesp_ies);
  926. };
  927. /**
  928. * p2p_group_init - Initialize P2P group
  929. * @p2p: P2P module context from p2p_init()
  930. * @config: P2P group configuration (will be freed by p2p_group_deinit())
  931. * Returns: Pointer to private data or %NULL on failure
  932. *
  933. * This function is used to initialize per-group P2P module context. Currently,
  934. * this is only used to manage GO functionality and P2P clients do not need to
  935. * create an instance of this per-group information.
  936. */
  937. struct p2p_group * p2p_group_init(struct p2p_data *p2p,
  938. struct p2p_group_config *config);
  939. /**
  940. * p2p_group_deinit - Deinitialize P2P group
  941. * @group: P2P group context from p2p_group_init()
  942. */
  943. void p2p_group_deinit(struct p2p_group *group);
  944. /**
  945. * p2p_group_notif_assoc - Notification of P2P client association with GO
  946. * @group: P2P group context from p2p_group_init()
  947. * @addr: Interface address of the P2P client
  948. * @ie: IEs from the (Re)association Request frame
  949. * @len: Length of the ie buffer in octets
  950. * Returns: 0 on success, -1 on failure
  951. */
  952. int p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr,
  953. const u8 *ie, size_t len);
  954. /**
  955. * p2p_group_assoc_resp_ie - Build P2P IE for (re)association response
  956. * @group: P2P group context from p2p_group_init()
  957. * @status: Status value (P2P_SC_SUCCESS if association succeeded)
  958. * Returns: P2P IE for (Re)association Response or %NULL on failure
  959. *
  960. * The caller is responsible for freeing the returned buffer with
  961. * wpabuf_free().
  962. */
  963. struct wpabuf * p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status);
  964. /**
  965. * p2p_group_notif_disassoc - Notification of P2P client disassociation from GO
  966. * @group: P2P group context from p2p_group_init()
  967. * @addr: Interface address of the P2P client
  968. */
  969. void p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr);
  970. /**
  971. * p2p_group_notif_formation_done - Notification of completed group formation
  972. * @group: P2P group context from p2p_group_init()
  973. */
  974. void p2p_group_notif_formation_done(struct p2p_group *group);
  975. /**
  976. * p2p_group_notif_noa - Notification of NoA change
  977. * @group: P2P group context from p2p_group_init()
  978. * @noa: Notice of Absence attribute payload, %NULL if none
  979. * @noa_len: Length of noa buffer in octets
  980. * Returns: 0 on success, -1 on failure
  981. *
  982. * Notify the P2P group management about a new NoA contents. This will be
  983. * inserted into the P2P IEs in Beacon and Probe Response frames with rest of
  984. * the group information.
  985. */
  986. int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
  987. size_t noa_len);
  988. /**
  989. * p2p_group_match_dev_type - Match device types in group with requested type
  990. * @group: P2P group context from p2p_group_init()
  991. * @wps: WPS TLVs from Probe Request frame (concatenated WPS IEs)
  992. * Returns: 1 on match, 0 on mismatch
  993. *
  994. * This function can be used to match the Requested Device Type attribute in
  995. * WPS IE with the device types of a group member for deciding whether a GO
  996. * should reply to a Probe Request frame. Match will be reported if the WPS IE
  997. * is not requested any specific device type.
  998. */
  999. int p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps);
  1000. /**
  1001. * p2p_group_go_discover - Send GO Discoverability Request to a group client
  1002. * @group: P2P group context from p2p_group_init()
  1003. * Returns: 0 on success (frame scheduled); -1 if client was not found
  1004. */
  1005. int p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id,
  1006. const u8 *searching_dev, int rx_freq);
  1007. /* Generic helper functions */
  1008. /**
  1009. * p2p_ie_text - Build text format description of P2P IE
  1010. * @p2p_ie: P2P IE
  1011. * @buf: Buffer for returning text
  1012. * @end: Pointer to the end of the buf area
  1013. * Returns: Number of octets written to the buffer or -1 on failure
  1014. *
  1015. * This function can be used to parse P2P IE contents into text format
  1016. * field=value lines.
  1017. */
  1018. int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end);
  1019. /**
  1020. * p2p_scan_result_text - Build text format description of P2P IE
  1021. * @ies: Information elements from scan results
  1022. * @ies_len: ies buffer length in octets
  1023. * @buf: Buffer for returning text
  1024. * @end: Pointer to the end of the buf area
  1025. * Returns: Number of octets written to the buffer or -1 on failure
  1026. *
  1027. * This function can be used to parse P2P IE contents into text format
  1028. * field=value lines.
  1029. */
  1030. int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end);
  1031. /**
  1032. * p2p_assoc_req_ie - Build P2P IE for (Re)Association Request frame
  1033. * @p2p: P2P module context from p2p_init()
  1034. * @bssid: BSSID
  1035. * @buf: Buffer for writing the P2P IE
  1036. * @len: Maximum buf length in octets
  1037. * @p2p_group: Whether this is for association with a P2P GO
  1038. * @p2p_ie: Reassembled P2P IE data from scan results or %NULL if none
  1039. * Returns: Number of octets written into buf or -1 on failure
  1040. */
  1041. int p2p_assoc_req_ie(struct p2p_data *p2p, const u8 *bssid, u8 *buf,
  1042. size_t len, int p2p_group, struct wpabuf *p2p_ie);
  1043. /**
  1044. * p2p_scan_ie - Build P2P IE for Probe Request
  1045. * @p2p: P2P module context from p2p_init()
  1046. * @ies: Buffer for writing P2P IE
  1047. */
  1048. void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies);
  1049. /**
  1050. * p2p_go_params - Generate random P2P group parameters
  1051. * @p2p: P2P module context from p2p_init()
  1052. * @params: Buffer for parameters
  1053. * Returns: 0 on success, -1 on failure
  1054. */
  1055. int p2p_go_params(struct p2p_data *p2p, struct p2p_go_neg_results *params);
  1056. /**
  1057. * p2p_get_group_capab - Get Group Capability from P2P IE data
  1058. * @p2p_ie: P2P IE(s) contents
  1059. * Returns: Group Capability
  1060. */
  1061. u8 p2p_get_group_capab(const struct wpabuf *p2p_ie);
  1062. /**
  1063. * p2p_get_cross_connect_disallowed - Does WLAN AP disallows cross connection
  1064. * @p2p_ie: P2P IE(s) contents
  1065. * Returns: 0 if cross connection is allow, 1 if not
  1066. */
  1067. int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie);
  1068. /**
  1069. * p2p_get_go_dev_addr - Get P2P Device Address from P2P IE data
  1070. * @p2p_ie: P2P IE(s) contents
  1071. * Returns: Pointer to P2P Device Address or %NULL if not included
  1072. */
  1073. const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie);
  1074. /**
  1075. * p2p_get_peer_info - Get P2P peer information in text format
  1076. * @p2p: P2P module context from p2p_init()
  1077. * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
  1078. * @next: Whether to select the peer entry following the one indicated by addr
  1079. * @buf: Buffer for returning text
  1080. * @buflen: Maximum buffer length
  1081. * Returns: Number of octets written to the buffer or -1 on failure
  1082. */
  1083. int p2p_get_peer_info(struct p2p_data *p2p, const u8 *addr, int next,
  1084. char *buf, size_t buflen);
  1085. /**
  1086. * p2p_set_client_discoverability - Set client discoverability capability
  1087. * @p2p: P2P module context from p2p_init()
  1088. * @enabled: Whether client discoverability will be enabled
  1089. *
  1090. * This function can be used to disable (and re-enable) client discoverability.
  1091. * This capability is enabled by default and should not be disabled in normal
  1092. * use cases, i.e., this is mainly for testing purposes.
  1093. */
  1094. void p2p_set_client_discoverability(struct p2p_data *p2p, int enabled);
  1095. /**
  1096. * p2p_set_manageD_oper - Set managed P2P Device operations capability
  1097. * @p2p: P2P module context from p2p_init()
  1098. * @enabled: Whether managed P2P Device operations will be enabled
  1099. */
  1100. void p2p_set_managed_oper(struct p2p_data *p2p, int enabled);
  1101. int p2p_set_listen_channel(struct p2p_data *p2p, u8 reg_class, u8 channel);
  1102. int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
  1103. int p2p_get_interface_addr(struct p2p_data *p2p, const u8 *dev_addr,
  1104. u8 *iface_addr);
  1105. int p2p_get_dev_addr(struct p2p_data *p2p, const u8 *iface_addr,
  1106. u8 *dev_addr);
  1107. void p2p_set_peer_filter(struct p2p_data *p2p, const u8 *addr);
  1108. /**
  1109. * p2p_set_cross_connect - Set cross connection capability
  1110. * @p2p: P2P module context from p2p_init()
  1111. * @enabled: Whether cross connection will be enabled
  1112. */
  1113. void p2p_set_cross_connect(struct p2p_data *p2p, int enabled);
  1114. int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr);
  1115. int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, int level,
  1116. const u8 *ies, size_t ies_len);
  1117. /**
  1118. * p2p_set_intra_bss_dist - Set intra BSS distribution
  1119. * @p2p: P2P module context from p2p_init()
  1120. * @enabled: Whether intra BSS distribution will be enabled
  1121. */
  1122. void p2p_set_intra_bss_dist(struct p2p_data *p2p, int enabled);
  1123. /**
  1124. * p2p_supported_freq - Check whether channel is supported for P2P
  1125. * @p2p: P2P module context from p2p_init()
  1126. * @freq: Channel frequency in MHz
  1127. * Returns: 0 if channel not usable for P2P, 1 if usable for P2P
  1128. */
  1129. int p2p_supported_freq(struct p2p_data *p2p, unsigned int freq);
  1130. void p2p_update_channel_list(struct p2p_data *p2p, struct p2p_channels *chan);
  1131. #endif /* P2P_H */