p2p.h 43 KB

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