1 /*
2  * Wi-Fi Direct - P2P module
3  * Copyright (c) 2009-2010, Atheros Communications
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef P2P_H
10 #define P2P_H
11 
12 #include "common/ieee802_11_defs.h"
13 #include "wps/wps.h"
14 
15 /* P2P ASP Setup Capability */
16 #define P2PS_SETUP_NONE 0
17 #define P2PS_SETUP_NEW BIT(0)
18 #define P2PS_SETUP_CLIENT BIT(1)
19 #define P2PS_SETUP_GROUP_OWNER BIT(2)
20 
21 #define P2PS_WILD_HASH_STR "org.wi-fi.wfds"
22 #define P2PS_HASH_LEN 6
23 #define P2P_MAX_QUERY_HASH 6
24 #define P2PS_FEATURE_CAPAB_CPT_MAX 2
25 
26 /**
27  * P2P_MAX_PREF_CHANNELS - Maximum number of preferred channels
28  */
29 #define P2P_MAX_PREF_CHANNELS 100
30 
31 /**
32  * P2P_MAX_REG_CLASSES - Maximum number of regulatory classes
33  */
34 #define P2P_MAX_REG_CLASSES 15
35 
36 /**
37  * P2P_MAX_REG_CLASS_CHANNELS - Maximum number of channels per regulatory class
38  */
39 #define P2P_MAX_REG_CLASS_CHANNELS 60
40 
41 /**
42  * struct p2p_channels - List of supported channels
43  */
44 struct p2p_channels {
45 	/**
46 	 * struct p2p_reg_class - Supported regulatory class
47 	 */
48 	struct p2p_reg_class {
49 		/**
50 		 * reg_class - Regulatory class (IEEE 802.11-2007, Annex J)
51 		 */
52 		u8 reg_class;
53 
54 		/**
55 		 * channel - Supported channels
56 		 */
57 		u8 channel[P2P_MAX_REG_CLASS_CHANNELS];
58 
59 		/**
60 		 * channels - Number of channel entries in use
61 		 */
62 		size_t channels;
63 	} reg_class[P2P_MAX_REG_CLASSES];
64 
65 	/**
66 	 * reg_classes - Number of reg_class entries in use
67 	 */
68 	size_t reg_classes;
69 };
70 
71 enum p2p_wps_method {
72 	WPS_NOT_READY, WPS_PIN_DISPLAY, WPS_PIN_KEYPAD, WPS_PBC, WPS_NFC,
73 	WPS_P2PS
74 };
75 
76 /**
77  * struct p2p_go_neg_results - P2P Group Owner Negotiation results
78  */
79 struct p2p_go_neg_results {
80 	/**
81 	 * status - Negotiation result (Status Code)
82 	 *
83 	 * 0 (P2P_SC_SUCCESS) indicates success. Non-zero values indicate
84 	 * failed negotiation.
85 	 */
86 	int status;
87 
88 	/**
89 	 * role_go - Whether local end is Group Owner
90 	 */
91 	int role_go;
92 
93 	/**
94 	 * freq - Frequency of the group operational channel in MHz
95 	 */
96 	int freq;
97 
98 	int ht40;
99 
100 	int vht;
101 
102 	int edmg;
103 
104 	u8 max_oper_chwidth;
105 
106 	unsigned int vht_center_freq2;
107 
108 	/**
109 	 * he - Indicates if IEEE 802.11ax HE is enabled
110 	 */
111 	int he;
112 
113 	/**
114 	 * ssid - SSID of the group
115 	 */
116 	u8 ssid[SSID_MAX_LEN];
117 
118 	/**
119 	 * ssid_len - Length of SSID in octets
120 	 */
121 	size_t ssid_len;
122 
123 	/**
124 	 * psk - WPA pre-shared key (256 bits) (GO only)
125 	 */
126 	u8 psk[32];
127 
128 	/**
129 	 * psk_set - Whether PSK field is configured (GO only)
130 	 */
131 	int psk_set;
132 
133 	/**
134 	 * passphrase - WPA2-Personal passphrase for the group (GO only)
135 	 */
136 	char passphrase[64];
137 
138 	/**
139 	 * peer_device_addr - P2P Device Address of the peer
140 	 */
141 	u8 peer_device_addr[ETH_ALEN];
142 
143 	/**
144 	 * peer_interface_addr - P2P Interface Address of the peer
145 	 */
146 	u8 peer_interface_addr[ETH_ALEN];
147 
148 	/**
149 	 * wps_method - WPS method to be used during provisioning
150 	 */
151 	enum p2p_wps_method wps_method;
152 
153 #define P2P_MAX_CHANNELS 50
154 
155 	/**
156 	 * freq_list - Zero-terminated list of possible operational channels
157 	 */
158 	int freq_list[P2P_MAX_CHANNELS];
159 
160 	/**
161 	 * persistent_group - Whether the group should be made persistent
162 	 * 0 = not persistent
163 	 * 1 = persistent group without persistent reconnect
164 	 * 2 = persistent group with persistent reconnect
165 	 */
166 	int persistent_group;
167 
168 	/**
169 	 * peer_config_timeout - Peer configuration timeout (in 10 msec units)
170 	 */
171 	unsigned int peer_config_timeout;
172 };
173 
174 struct p2ps_provision {
175 	/**
176 	 * pd_seeker - P2PS provision discovery seeker role
177 	 */
178 	unsigned int pd_seeker:1;
179 
180 	/**
181 	 * status - Remote returned provisioning status code
182 	 */
183 	int status;
184 
185 	/**
186 	 * adv_id - P2PS Advertisement ID
187 	 */
188 	u32 adv_id;
189 
190 	/**
191 	 * session_id - P2PS Session ID
192 	 */
193 	u32 session_id;
194 
195 	/**
196 	 * method - WPS Method (to be) used to establish session
197 	 */
198 	u16 method;
199 
200 	/**
201 	 * conncap - Connection Capabilities negotiated between P2P peers
202 	 */
203 	u8 conncap;
204 
205 	/**
206 	 * role - Info about the roles to be used for this connection
207 	 */
208 	u8 role;
209 
210 	/**
211 	 * session_mac - MAC address of the peer that started the session
212 	 */
213 	u8 session_mac[ETH_ALEN];
214 
215 	/**
216 	 * adv_mac - MAC address of the peer advertised the service
217 	 */
218 	u8 adv_mac[ETH_ALEN];
219 
220 	/**
221 	 * cpt_mask - Supported Coordination Protocol Transport mask
222 	 *
223 	 * A bitwise mask of supported ASP Coordination Protocol Transports.
224 	 * This property is set together and corresponds with cpt_priority.
225 	 */
226 	u8 cpt_mask;
227 
228 	/**
229 	 * cpt_priority - Coordination Protocol Transport priority list
230 	 *
231 	 * Priorities of supported ASP Coordination Protocol Transports.
232 	 * This property is set together and corresponds with cpt_mask.
233 	 * The CPT priority list is 0 terminated.
234 	 */
235 	u8 cpt_priority[P2PS_FEATURE_CAPAB_CPT_MAX + 1];
236 
237 	/**
238 	 * force_freq - The only allowed channel frequency in MHz or 0.
239 	 */
240 	unsigned int force_freq;
241 
242 	/**
243 	 * pref_freq - Preferred operating frequency in MHz or 0.
244 	 */
245 	unsigned int pref_freq;
246 
247 	/**
248 	 * info - Vendor defined extra Provisioning information
249 	 */
250 	char info[0];
251 };
252 
253 struct p2ps_advertisement {
254 	struct p2ps_advertisement *next;
255 
256 	/**
257 	 * svc_info - Pointer to (internal) Service defined information
258 	 */
259 	char *svc_info;
260 
261 	/**
262 	 * id - P2PS Advertisement ID
263 	 */
264 	u32 id;
265 
266 	/**
267 	 * config_methods - WPS Methods which are allowed for this service
268 	 */
269 	u16 config_methods;
270 
271 	/**
272 	 * state - Current state of the service: 0 - Out Of Service, 1-255 Vendor defined
273 	 */
274 	u8 state;
275 
276 	/**
277 	 * auto_accept - Automatically Accept provisioning request if possible.
278 	 */
279 	u8 auto_accept;
280 
281 	/**
282 	 * hash - 6 octet Service Name has to match against incoming Probe Requests
283 	 */
284 	u8 hash[P2PS_HASH_LEN];
285 
286 	/**
287 	 * cpt_mask - supported Coordination Protocol Transport mask
288 	 *
289 	 * A bitwise mask of supported ASP Coordination Protocol Transports.
290 	 * This property is set together and corresponds with cpt_priority.
291 	 */
292 	u8 cpt_mask;
293 
294 	/**
295 	 * cpt_priority - Coordination Protocol Transport priority list
296 	 *
297 	 * Priorities of supported ASP Coordinatin Protocol Transports.
298 	 * This property is set together and corresponds with cpt_mask.
299 	 * The CPT priority list is 0 terminated.
300 	 */
301 	u8 cpt_priority[P2PS_FEATURE_CAPAB_CPT_MAX + 1];
302 
303 	/**
304 	 * svc_name - NULL Terminated UTF-8 Service Name, and svc_info storage
305 	 */
306 	char svc_name[0];
307 };
308 
309 
310 struct p2p_data;
311 
312 enum p2p_scan_type {
313 	P2P_SCAN_SOCIAL,
314 	P2P_SCAN_FULL,
315 	P2P_SCAN_SPECIFIC,
316 	P2P_SCAN_SOCIAL_PLUS_ONE,
317 #ifdef OPEN_HARMONY_P2P_ONEHOP_FIND
318 	P2P_SCAN_POSSIBLE_CHANNEL
319 #endif
320 };
321 
322 enum CmdType {
323 	GET = 1,
324 	SET = 2
325 };
326 
327 enum DataType {
328 	P2P_RANDOM_MAC_TYPE = 1,
329 	SET_ONENINE_SCAN_STATE = 4,
330 };
331 
332 #define P2P_MAX_WPS_VENDOR_EXT 10
333 
334 /**
335  * struct p2p_peer_info - P2P peer information
336  */
337 struct p2p_peer_info {
338 	/**
339 	 * p2p_device_addr - P2P Device Address of the peer
340 	 */
341 	u8 p2p_device_addr[ETH_ALEN];
342 
343 	/**
344 	 * pri_dev_type - Primary Device Type
345 	 */
346 	u8 pri_dev_type[8];
347 
348 	/**
349 	 * device_name - Device Name (0..32 octets encoded in UTF-8)
350 	 */
351 	char device_name[WPS_DEV_NAME_MAX_LEN + 1];
352 
353 	/**
354 	 * manufacturer - Manufacturer (0..64 octets encoded in UTF-8)
355 	 */
356 	char manufacturer[WPS_MANUFACTURER_MAX_LEN + 1];
357 
358 	/**
359 	 * model_name - Model Name (0..32 octets encoded in UTF-8)
360 	 */
361 	char model_name[WPS_MODEL_NAME_MAX_LEN + 1];
362 
363 	/**
364 	 * model_number - Model Number (0..32 octets encoded in UTF-8)
365 	 */
366 	char model_number[WPS_MODEL_NUMBER_MAX_LEN + 1];
367 
368 	/**
369 	 * serial_number - Serial Number (0..32 octets encoded in UTF-8)
370 	 */
371 	char serial_number[WPS_SERIAL_NUMBER_MAX_LEN + 1];
372 
373 	/**
374 	 * level - Signal level
375 	 */
376 	int level;
377 
378 	/**
379 	 * config_methods - WPS Configuration Methods
380 	 */
381 	u16 config_methods;
382 
383 	/**
384 	 * dev_capab - Device Capabilities
385 	 */
386 	u8 dev_capab;
387 
388 	/**
389 	 * group_capab - Group Capabilities
390 	 */
391 	u8 group_capab;
392 
393 	/**
394 	 * wps_sec_dev_type_list - WPS secondary device type list
395 	 *
396 	 * This list includes from 0 to 16 Secondary Device Types as indicated
397 	 * by wps_sec_dev_type_list_len (8 * number of types).
398 	 */
399 	u8 wps_sec_dev_type_list[WPS_SEC_DEV_TYPE_MAX_LEN];
400 
401 	/**
402 	 * wps_sec_dev_type_list_len - Length of secondary device type list
403 	 */
404 	size_t wps_sec_dev_type_list_len;
405 
406 	struct wpabuf *wps_vendor_ext[P2P_MAX_WPS_VENDOR_EXT];
407 
408 	/**
409 	 * wfd_subelems - Wi-Fi Display subelements from WFD IE(s)
410 	 */
411 	struct wpabuf *wfd_subelems;
412 
413 	/**
414 	 * vendor_elems - Unrecognized vendor elements
415 	 *
416 	 * This buffer includes any other vendor element than P2P, WPS, and WFD
417 	 * IE(s) from the frame that was used to discover the peer.
418 	 */
419 	struct wpabuf *vendor_elems;
420 
421 	/**
422 	 * p2ps_instance - P2PS Application Service Info
423 	 */
424 	struct wpabuf *p2ps_instance;
425 };
426 
427 enum p2p_prov_disc_status {
428 	P2P_PROV_DISC_SUCCESS,
429 	P2P_PROV_DISC_TIMEOUT,
430 	P2P_PROV_DISC_REJECTED,
431 	P2P_PROV_DISC_TIMEOUT_JOIN,
432 	P2P_PROV_DISC_INFO_UNAVAILABLE,
433 };
434 
435 struct p2p_channel {
436 	u8 op_class;
437 	u8 chan;
438 };
439 
440 /**
441  * struct p2p_config - P2P configuration
442  *
443  * This configuration is provided to the P2P module during initialization with
444  * p2p_init().
445  */
446 struct p2p_config {
447 	/**
448 	 * country - Country code to use in P2P operations
449 	 */
450 	char country[3];
451 
452 	/**
453 	 * reg_class - Regulatory class for own listen channel
454 	 */
455 	u8 reg_class;
456 
457 	/**
458 	 * channel - Own listen channel
459 	 */
460 	u8 channel;
461 
462 	/**
463 	 * channel_forced - the listen channel was forced by configuration
464 	 *                  or by control interface and cannot be overridden
465 	 */
466 	u8 channel_forced;
467 
468 	/**
469 	 * Regulatory class for own operational channel
470 	 */
471 	u8 op_reg_class;
472 
473 	/**
474 	 * op_channel - Own operational channel
475 	 */
476 	u8 op_channel;
477 
478 	/**
479 	 * cfg_op_channel - Whether op_channel is hardcoded in configuration
480 	 */
481 	u8 cfg_op_channel;
482 
483 	/**
484 	 * channels - Own supported regulatory classes and channels
485 	 *
486 	 * List of supposerted channels per regulatory class. The regulatory
487 	 * classes are defined in IEEE Std 802.11-2007 Annex J and the
488 	 * numbering of the clases depends on the configured country code.
489 	 */
490 	struct p2p_channels channels;
491 
492 	/**
493 	 * cli_channels - Additional client channels
494 	 *
495 	 * This list of channels (if any) will be used when advertising local
496 	 * channels during GO Negotiation or Invitation for the cases where the
497 	 * local end may become the client. This may allow the peer to become a
498 	 * GO on additional channels if it supports these options. The main use
499 	 * case for this is to include passive-scan channels on devices that may
500 	 * not know their current location and have configured most channels to
501 	 * not allow initiation of radition (i.e., another device needs to take
502 	 * master responsibilities).
503 	 */
504 	struct p2p_channels cli_channels;
505 
506 	/**
507 	 * num_pref_chan - Number of pref_chan entries
508 	 */
509 	unsigned int num_pref_chan;
510 
511 	/**
512 	 * pref_chan - Preferred channels for GO Negotiation
513 	 */
514 	struct p2p_channel *pref_chan;
515 
516 	/**
517 	 * p2p_6ghz_disable - Disable 6GHz for P2P operations
518 	 */
519 	bool p2p_6ghz_disable;
520 
521 	/**
522 	 * pri_dev_type - Primary Device Type (see WPS)
523 	 */
524 	u8 pri_dev_type[8];
525 
526 	/**
527 	 * P2P_SEC_DEVICE_TYPES - Maximum number of secondary device types
528 	 */
529 #define P2P_SEC_DEVICE_TYPES 5
530 
531 	/**
532 	 * sec_dev_type - Optional secondary device types
533 	 */
534 	u8 sec_dev_type[P2P_SEC_DEVICE_TYPES][8];
535 
536 	/**
537 	 * num_sec_dev_types - Number of sec_dev_type entries
538 	 */
539 	size_t num_sec_dev_types;
540 
541 	/**
542 	 * dev_addr - P2P Device Address
543 	 */
544 	u8 dev_addr[ETH_ALEN];
545 
546 	/**
547 	 * dev_name - Device Name
548 	 */
549 	char *dev_name;
550 
551 	char *manufacturer;
552 	char *model_name;
553 	char *model_number;
554 	char *serial_number;
555 
556 	u8 uuid[16];
557 	u16 config_methods;
558 
559 	/**
560 	 * concurrent_operations - Whether concurrent operations are supported
561 	 */
562 	int concurrent_operations;
563 
564 	/**
565 	 * max_peers - Maximum number of discovered peers to remember
566 	 *
567 	 * If more peers are discovered, older entries will be removed to make
568 	 * room for the new ones.
569 	 */
570 	size_t max_peers;
571 
572 	/**
573 	 * p2p_intra_bss - Intra BSS communication is supported
574 	 */
575 	int p2p_intra_bss;
576 
577 	/**
578 	 * ssid_postfix - Postfix data to add to the SSID
579 	 *
580 	 * This data will be added to the end of the SSID after the
581 	 * DIRECT-<random two octets> prefix.
582 	 */
583 	u8 ssid_postfix[SSID_MAX_LEN - 9];
584 
585 	/**
586 	 * ssid_postfix_len - Length of the ssid_postfix data
587 	 */
588 	size_t ssid_postfix_len;
589 
590 	/**
591 	 * max_listen - Maximum listen duration in ms
592 	 */
593 	unsigned int max_listen;
594 
595 	/**
596 	 * passphrase_len - Passphrase length (8..63)
597 	 *
598 	 * This parameter controls the length of the random passphrase that is
599 	 * generated at the GO.
600 	 */
601 	unsigned int passphrase_len;
602 
603 	/**
604 	 * cb_ctx - Context to use with callback functions
605 	 */
606 	void *cb_ctx;
607 
608 	/**
609 	 * debug_print - Debug print
610 	 * @ctx: Callback context from cb_ctx
611 	 * @level: Debug verbosity level (MSG_*)
612 	 * @msg: Debug message
613 	 */
614 	void (*debug_print)(void *ctx, int level, const char *msg);
615 
616 
617 	/* Callbacks to request lower layer driver operations */
618 
619 	/**
620 	 * p2p_scan - Request a P2P scan/search
621 	 * @ctx: Callback context from cb_ctx
622 	 * @type: Scan type
623 	 * @freq: Specific frequency (MHz) to scan or 0 for no restriction
624 	 * @num_req_dev_types: Number of requested device types
625 	 * @req_dev_types: Array containing requested device types
626 	 * @dev_id: Device ID to search for or %NULL to find all devices
627 	 * @pw_id: Device Password ID
628 	 * @include_6ghz: Include 6 GHz channels in P2P scan
629 	 * Returns: 0 on success, -1 on failure
630 	 *
631 	 * This callback function is used to request a P2P scan or search
632 	 * operation to be completed. Type type argument specifies which type
633 	 * of scan is to be done. @P2P_SCAN_SOCIAL indicates that only the
634 	 * social channels (1, 6, 11) should be scanned. @P2P_SCAN_FULL
635 	 * indicates that all channels are to be scanned. @P2P_SCAN_SPECIFIC
636 	 * request a scan of a single channel specified by freq.
637 	 * @P2P_SCAN_SOCIAL_PLUS_ONE request scan of all the social channels
638 	 * plus one extra channel specified by freq.
639 	 *
640 	 * The full scan is used for the initial scan to find group owners from
641 	 * all. The other types are used during search phase scan of the social
642 	 * channels (with potential variation if the Listen channel of the
643 	 * target peer is known or if other channels are scanned in steps).
644 	 *
645 	 * The scan results are returned after this call by calling
646 	 * p2p_scan_res_handler() for each scan result that has a P2P IE and
647 	 * then calling p2p_scan_res_handled() to indicate that all scan
648 	 * results have been indicated.
649 	 */
650 	int (*p2p_scan)(void *ctx, enum p2p_scan_type type, int freq,
651 			unsigned int num_req_dev_types,
652 			const u8 *req_dev_types, const u8 *dev_id, u16 pw_id,
653 			bool include_6ghz);
654 
655 	/**
656 	 * send_probe_resp - Transmit a Probe Response frame
657 	 * @ctx: Callback context from cb_ctx
658 	 * @buf: Probe Response frame (including the header and body)
659 	 * @freq: Forced frequency (in MHz) to use or 0.
660 	 * Returns: 0 on success, -1 on failure
661 	 *
662 	 * This function is used to reply to Probe Request frames that were
663 	 * indicated with a call to p2p_probe_req_rx(). The response is to be
664 	 * sent on the same channel, unless otherwise specified, or to be
665 	 * dropped if the driver is not listening to Probe Request frames
666 	 * anymore.
667 	 *
668 	 * Alternatively, the responsibility for building the Probe Response
669 	 * frames in Listen state may be in another system component in which
670 	 * case this function need to be implemented (i.e., the function
671 	 * pointer can be %NULL). The WPS and P2P IEs to be added for Probe
672 	 * Response frames in such a case are available from the
673 	 * start_listen() callback. It should be noted that the received Probe
674 	 * Request frames must be indicated by calling p2p_probe_req_rx() even
675 	 * if this send_probe_resp() is not used.
676 	 */
677 	int (*send_probe_resp)(void *ctx, const struct wpabuf *buf,
678 			       unsigned int freq);
679 
680 	/**
681 	 * send_action - Transmit an Action frame
682 	 * @ctx: Callback context from cb_ctx
683 	 * @freq: Frequency in MHz for the channel on which to transmit
684 	 * @dst: Destination MAC address (Address 1)
685 	 * @src: Source MAC address (Address 2)
686 	 * @bssid: BSSID (Address 3)
687 	 * @buf: Frame body (starting from Category field)
688 	 * @len: Length of buf in octets
689 	 * @wait_time: How many msec to wait for a response frame
690 	 * @scheduled: Return value indicating whether the transmissions was
691 	 *	scheduled to happen once the radio is available
692 	 * Returns: 0 on success, -1 on failure
693 	 *
694 	 * The Action frame may not be transmitted immediately and the status
695 	 * of the transmission must be reported by calling
696 	 * p2p_send_action_cb() once the frame has either been transmitted or
697 	 * it has been dropped due to excessive retries or other failure to
698 	 * transmit.
699 	 */
700 	int (*send_action)(void *ctx, unsigned int freq, const u8 *dst,
701 			   const u8 *src, const u8 *bssid, const u8 *buf,
702 			   size_t len, unsigned int wait_time, int *scheduled);
703 
704 	/**
705 	 * send_action_done - Notify that Action frame sequence was completed
706 	 * @ctx: Callback context from cb_ctx
707 	 *
708 	 * This function is called when the Action frame sequence that was
709 	 * started with send_action() has been completed, i.e., when there is
710 	 * no need to wait for a response from the destination peer anymore.
711 	 */
712 	void (*send_action_done)(void *ctx);
713 
714 	/**
715 	 * start_listen - Start Listen state
716 	 * @ctx: Callback context from cb_ctx
717 	 * @freq: Frequency of the listen channel in MHz
718 	 * @duration: Duration for the Listen state in milliseconds
719 	 * @probe_resp_ie: IE(s) to be added to Probe Response frames
720 	 * Returns: 0 on success, -1 on failure
721 	 *
722 	 * This Listen state may not start immediately since the driver may
723 	 * have other pending operations to complete first. Once the Listen
724 	 * state has started, p2p_listen_cb() must be called to notify the P2P
725 	 * module. Once the Listen state is stopped, p2p_listen_end() must be
726 	 * called to notify the P2P module that the driver is not in the Listen
727 	 * state anymore.
728 	 *
729 	 * If the send_probe_resp() is not used for generating the response,
730 	 * the IEs from probe_resp_ie need to be added to the end of the Probe
731 	 * Response frame body. If send_probe_resp() is used, the probe_resp_ie
732 	 * information can be ignored.
733 	 */
734 	int (*start_listen)(void *ctx, unsigned int freq,
735 			    unsigned int duration,
736 			    const struct wpabuf *probe_resp_ie);
737 	/**
738 	 * stop_listen - Stop Listen state
739 	 * @ctx: Callback context from cb_ctx
740 	 *
741 	 * This callback can be used to stop a Listen state operation that was
742 	 * previously requested with start_listen().
743 	 */
744 	void (*stop_listen)(void *ctx);
745 
746 	/**
747 	 * get_noa - Get current Notice of Absence attribute payload
748 	 * @ctx: Callback context from cb_ctx
749 	 * @interface_addr: P2P Interface Address of the GO
750 	 * @buf: Buffer for returning NoA
751 	 * @buf_len: Buffer length in octets
752 	 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
753 	 * advertized, or -1 on failure
754 	 *
755 	 * This function is used to fetch the current Notice of Absence
756 	 * attribute value from GO.
757 	 */
758 	int (*get_noa)(void *ctx, const u8 *interface_addr, u8 *buf,
759 		       size_t buf_len);
760 
761 	/* Callbacks to notify events to upper layer management entity */
762 
763 	/**
764 	 * dev_found - Notification of a found P2P Device
765 	 * @ctx: Callback context from cb_ctx
766 	 * @addr: Source address of the message triggering this notification
767 	 * @info: P2P peer information
768 	 * @new_device: Inform if the peer is newly found
769 	 *
770 	 * This callback is used to notify that a new P2P Device has been
771 	 * found. This may happen, e.g., during Search state based on scan
772 	 * results or during Listen state based on receive Probe Request and
773 	 * Group Owner Negotiation Request.
774 	 */
775 	void (*dev_found)(void *ctx, const u8 *addr,
776 			  const struct p2p_peer_info *info,
777 			  int new_device);
778 
779 	/**
780 	 * dev_lost - Notification of a lost P2P Device
781 	 * @ctx: Callback context from cb_ctx
782 	 * @dev_addr: P2P Device Address of the lost P2P Device
783 	 *
784 	 * This callback is used to notify that a P2P Device has been deleted.
785 	 */
786 	void (*dev_lost)(void *ctx, const u8 *dev_addr);
787 
788 	/**
789 	 * find_stopped - Notification of a p2p_find operation stopping
790 	 * @ctx: Callback context from cb_ctx
791 	 */
792 	void (*find_stopped)(void *ctx);
793 
794 	/**
795 	 * go_neg_req_rx - Notification of a receive GO Negotiation Request
796 	 * @ctx: Callback context from cb_ctx
797 	 * @src: Source address of the message triggering this notification
798 	 * @dev_passwd_id: WPS Device Password ID
799 	 * @go_intent: Peer's GO Intent
800 	 *
801 	 * This callback is used to notify that a P2P Device is requesting
802 	 * group owner negotiation with us, but we do not have all the
803 	 * necessary information to start GO Negotiation. This indicates that
804 	 * the local user has not authorized the connection yet by providing a
805 	 * PIN or PBC button press. This information can be provided with a
806 	 * call to p2p_connect().
807 	 */
808 	void (*go_neg_req_rx)(void *ctx, const u8 *src, u16 dev_passwd_id,
809 			      u8 go_intent);
810 
811 	/**
812 	 * go_neg_completed - Notification of GO Negotiation results
813 	 * @ctx: Callback context from cb_ctx
814 	 * @res: GO Negotiation results
815 	 *
816 	 * This callback is used to notify that Group Owner Negotiation has
817 	 * been completed. Non-zero struct p2p_go_neg_results::status indicates
818 	 * failed negotiation. In case of success, this function is responsible
819 	 * for creating a new group interface (or using the existing interface
820 	 * depending on driver features), setting up the group interface in
821 	 * proper mode based on struct p2p_go_neg_results::role_go and
822 	 * initializing WPS provisioning either as a Registrar (if GO) or as an
823 	 * Enrollee. Successful WPS provisioning must be indicated by calling
824 	 * p2p_wps_success_cb(). The callee is responsible for timing out group
825 	 * formation if WPS provisioning cannot be completed successfully
826 	 * within 15 seconds.
827 	 */
828 	void (*go_neg_completed)(void *ctx, struct p2p_go_neg_results *res);
829 
830 	/**
831 	 * sd_request - Callback on Service Discovery Request
832 	 * @ctx: Callback context from cb_ctx
833 	 * @freq: Frequency (in MHz) of the channel
834 	 * @sa: Source address of the request
835 	 * @dialog_token: Dialog token
836 	 * @update_indic: Service Update Indicator from the source of request
837 	 * @tlvs: P2P Service Request TLV(s)
838 	 * @tlvs_len: Length of tlvs buffer in octets
839 	 *
840 	 * This callback is used to indicate reception of a service discovery
841 	 * request. Response to the query must be indicated by calling
842 	 * p2p_sd_response() with the context information from the arguments to
843 	 * this callback function.
844 	 *
845 	 * This callback handler can be set to %NULL to indicate that service
846 	 * discovery is not supported.
847 	 */
848 	void (*sd_request)(void *ctx, int freq, const u8 *sa, u8 dialog_token,
849 			   u16 update_indic, const u8 *tlvs, size_t tlvs_len);
850 
851 	/**
852 	 * sd_response - Callback on Service Discovery Response
853 	 * @ctx: Callback context from cb_ctx
854 	 * @sa: Source address of the request
855 	 * @update_indic: Service Update Indicator from the source of response
856 	 * @tlvs: P2P Service Response TLV(s)
857 	 * @tlvs_len: Length of tlvs buffer in octets
858 	 *
859 	 * This callback is used to indicate reception of a service discovery
860 	 * response. This callback handler can be set to %NULL if no service
861 	 * discovery requests are used. The information provided with this call
862 	 * is replies to the queries scheduled with p2p_sd_request().
863 	 */
864 	void (*sd_response)(void *ctx, const u8 *sa, u16 update_indic,
865 			    const u8 *tlvs, size_t tlvs_len);
866 
867 	/**
868 	 * prov_disc_req - Callback on Provisiong Discovery Request
869 	 * @ctx: Callback context from cb_ctx
870 	 * @peer: Source address of the request
871 	 * @config_methods: Requested WPS Config Method
872 	 * @dev_addr: P2P Device Address of the found P2P Device
873 	 * @pri_dev_type: Primary Device Type
874 	 * @dev_name: Device Name
875 	 * @supp_config_methods: Supported configuration Methods
876 	 * @dev_capab: Device Capabilities
877 	 * @group_capab: Group Capabilities
878 	 * @group_id: P2P Group ID (or %NULL if not included)
879 	 * @group_id_len: Length of P2P Group ID
880 	 *
881 	 * This callback is used to indicate reception of a Provision Discovery
882 	 * Request frame that the P2P module accepted.
883 	 */
884 	void (*prov_disc_req)(void *ctx, const u8 *peer, u16 config_methods,
885 			      const u8 *dev_addr, const u8 *pri_dev_type,
886 			      const char *dev_name, u16 supp_config_methods,
887 			      u8 dev_capab, u8 group_capab,
888 			      const u8 *group_id, size_t group_id_len);
889 
890 	/**
891 	 * prov_disc_resp - Callback on Provisiong Discovery Response
892 	 * @ctx: Callback context from cb_ctx
893 	 * @peer: Source address of the response
894 	 * @config_methods: Value from p2p_prov_disc_req() or 0 on failure
895 	 *
896 	 * This callback is used to indicate reception of a Provision Discovery
897 	 * Response frame for a pending request scheduled with
898 	 * p2p_prov_disc_req(). This callback handler can be set to %NULL if
899 	 * provision discovery is not used.
900 	 */
901 	void (*prov_disc_resp)(void *ctx, const u8 *peer, u16 config_methods);
902 
903 	/**
904 	 * prov_disc_fail - Callback on Provision Discovery failure
905 	 * @ctx: Callback context from cb_ctx
906 	 * @peer: Source address of the response
907 	 * @status: Cause of failure, will not be %P2P_PROV_DISC_SUCCESS
908 	 * @adv_id: If non-zero, then the adv_id of the PD Request
909 	 * @adv_mac: P2P Device Address of the advertizer
910 	 * @deferred_session_resp: Deferred session response sent by advertizer
911 	 *
912 	 * This callback is used to indicate either a failure or no response
913 	 * to an earlier provision discovery request.
914 	 *
915 	 * This callback handler can be set to %NULL if provision discovery
916 	 * is not used or failures do not need to be indicated.
917 	 */
918 	void (*prov_disc_fail)(void *ctx, const u8 *peer,
919 			       enum p2p_prov_disc_status status,
920 			       u32 adv_id, const u8 *adv_mac,
921 			       const char *deferred_session_resp);
922 
923 	/**
924 	 * invitation_process - Optional callback for processing Invitations
925 	 * @ctx: Callback context from cb_ctx
926 	 * @sa: Source address of the Invitation Request
927 	 * @bssid: P2P Group BSSID from the request or %NULL if not included
928 	 * @go_dev_addr: GO Device Address from P2P Group ID
929 	 * @ssid: SSID from P2P Group ID
930 	 * @ssid_len: Length of ssid buffer in octets
931 	 * @go: Variable for returning whether the local end is GO in the group
932 	 * @group_bssid: Buffer for returning P2P Group BSSID (if local end GO)
933 	 * @force_freq: Variable for returning forced frequency for the group
934 	 * @persistent_group: Whether this is an invitation to reinvoke a
935 	 *	persistent group (instead of invitation to join an active
936 	 *	group)
937 	 * @channels: Available operating channels for the group
938 	 * @dev_pw_id: Device Password ID for NFC static handover or -1 if not
939 	 *	used
940 	 * Returns: Status code (P2P_SC_*)
941 	 *
942 	 * This optional callback can be used to implement persistent reconnect
943 	 * by allowing automatic restarting of persistent groups without user
944 	 * interaction. If this callback is not implemented (i.e., is %NULL),
945 	 * the received Invitation Request frames are replied with
946 	 * %P2P_SC_REQ_RECEIVED status and indicated to upper layer with the
947 	 * invitation_result() callback.
948 	 *
949 	 * If the requested parameters are acceptable and the group is known,
950 	 * %P2P_SC_SUCCESS may be returned. If the requested group is unknown,
951 	 * %P2P_SC_FAIL_UNKNOWN_GROUP should be returned. %P2P_SC_REQ_RECEIVED
952 	 * can be returned if there is not enough data to provide immediate
953 	 * response, i.e., if some sort of user interaction is needed. The
954 	 * invitation_received() callback will be called in that case
955 	 * immediately after this call.
956 	 */
957 	u8 (*invitation_process)(void *ctx, const u8 *sa, const u8 *bssid,
958 				 const u8 *go_dev_addr, const u8 *ssid,
959 				 size_t ssid_len, int *go, u8 *group_bssid,
960 				 int *force_freq, int persistent_group,
961 				 const struct p2p_channels *channels,
962 				 int dev_pw_id);
963 
964 	/**
965 	 * invitation_received - Callback on Invitation Request RX
966 	 * @ctx: Callback context from cb_ctx
967 	 * @sa: Source address of the Invitation Request
968 	 * @bssid: P2P Group BSSID or %NULL if not received
969 	 * @ssid: SSID of the group
970 	 * @ssid_len: Length of ssid in octets
971 	 * @go_dev_addr: GO Device Address
972 	 * @status: Response Status
973 	 * @op_freq: Operational frequency for the group
974 	 *
975 	 * This callback is used to indicate sending of an Invitation Response
976 	 * for a received Invitation Request. If status == 0 (success), the
977 	 * upper layer code is responsible for starting the group. status == 1
978 	 * indicates need to get user authorization for the group. Other status
979 	 * values indicate that the invitation request was rejected.
980 	 */
981 	void (*invitation_received)(void *ctx, const u8 *sa, const u8 *bssid,
982 				    const u8 *ssid, size_t ssid_len,
983 				    const u8 *go_dev_addr, u8 status,
984 				    int op_freq);
985 
986 	/**
987 	 * invitation_result - Callback on Invitation result
988 	 * @ctx: Callback context from cb_ctx
989 	 * @status: Negotiation result (Status Code)
990 	 * @bssid: P2P Group BSSID or %NULL if not received
991 	 * @channels: Available operating channels for the group
992 	 * @addr: Peer address
993 	 * @freq: Frequency (in MHz) indicated during invitation or 0
994 	 * @peer_oper_freq: Operating frequency (in MHz) advertized by the peer
995 	 * during invitation or 0
996 	 *
997 	 * This callback is used to indicate result of an Invitation procedure
998 	 * started with a call to p2p_invite(). The indicated status code is
999 	 * the value received from the peer in Invitation Response with 0
1000 	 * (P2P_SC_SUCCESS) indicating success or -1 to indicate a timeout or a
1001 	 * local failure in transmitting the Invitation Request.
1002 	 */
1003 	void (*invitation_result)(void *ctx, int status, const u8 *bssid,
1004 				  const struct p2p_channels *channels,
1005 				  const u8 *addr, int freq, int peer_oper_freq);
1006 
1007 	/**
1008 	 * go_connected - Check whether we are connected to a GO
1009 	 * @ctx: Callback context from cb_ctx
1010 	 * @dev_addr: P2P Device Address of a GO
1011 	 * Returns: 1 if we are connected as a P2P client to the specified GO
1012 	 * or 0 if not.
1013 	 */
1014 	int (*go_connected)(void *ctx, const u8 *dev_addr);
1015 
1016 	/**
1017 	 * presence_resp - Callback on Presence Response
1018 	 * @ctx: Callback context from cb_ctx
1019 	 * @src: Source address (GO's P2P Interface Address)
1020 	 * @status: Result of the request (P2P_SC_*)
1021 	 * @noa: Returned NoA value
1022 	 * @noa_len: Length of the NoA buffer in octets
1023 	 */
1024 	void (*presence_resp)(void *ctx, const u8 *src, u8 status,
1025 			      const u8 *noa, size_t noa_len);
1026 
1027 	/**
1028 	 * is_concurrent_session_active - Check whether concurrent session is
1029 	 * active on other virtual interfaces
1030 	 * @ctx: Callback context from cb_ctx
1031 	 * Returns: 1 if concurrent session is active on other virtual interface
1032 	 * or 0 if not.
1033 	 */
1034 	int (*is_concurrent_session_active)(void *ctx);
1035 
1036 	/**
1037 	 * is_p2p_in_progress - Check whether P2P operation is in progress
1038 	 * @ctx: Callback context from cb_ctx
1039 	 * Returns: 1 if P2P operation (e.g., group formation) is in progress
1040 	 * or 0 if not.
1041 	 */
1042 	int (*is_p2p_in_progress)(void *ctx);
1043 
1044 	/**
1045 	 * Determine if we have a persistent group we share with remote peer
1046 	 * and allocate interface for this group if needed
1047 	 * @ctx: Callback context from cb_ctx
1048 	 * @addr: Peer device address to search for
1049 	 * @ssid: Persistent group SSID or %NULL if any
1050 	 * @ssid_len: Length of @ssid
1051 	 * @go_dev_addr: Buffer for returning GO P2P Device Address
1052 	 * @ret_ssid: Buffer for returning group SSID
1053 	 * @ret_ssid_len: Buffer for returning length of @ssid
1054 	 * @intended_iface_addr: Buffer for returning intended iface address
1055 	 * Returns: 1 if a matching persistent group was found, 0 otherwise
1056 	 */
1057 	int (*get_persistent_group)(void *ctx, const u8 *addr, const u8 *ssid,
1058 				    size_t ssid_len, u8 *go_dev_addr,
1059 				    u8 *ret_ssid, size_t *ret_ssid_len,
1060 				    u8 *intended_iface_addr);
1061 
1062 	/**
1063 	 * Get information about a possible local GO role
1064 	 * @ctx: Callback context from cb_ctx
1065 	 * @intended_addr: Buffer for returning intended GO interface address
1066 	 * @ssid: Buffer for returning group SSID
1067 	 * @ssid_len: Buffer for returning length of @ssid
1068 	 * @group_iface: Buffer for returning whether a separate group interface
1069 	 *	would be used
1070 	 * @freq: Variable for returning the current operating frequency of a
1071 	 *	currently running P2P GO.
1072 	 * Returns: 1 if GO info found, 0 otherwise
1073 	 *
1074 	 * This is used to compose New Group settings (SSID, and intended
1075 	 * address) during P2PS provisioning if results of provisioning *might*
1076 	 * result in our being an autonomous GO.
1077 	 */
1078 	int (*get_go_info)(void *ctx, u8 *intended_addr,
1079 			   u8 *ssid, size_t *ssid_len, int *group_iface,
1080 			   unsigned int *freq);
1081 
1082 	/**
1083 	 * remove_stale_groups - Remove stale P2PS groups
1084 	 *
1085 	 * Because P2PS stages *potential* GOs, and remote devices can remove
1086 	 * credentials unilaterally, we need to make sure we don't let stale
1087 	 * unusable groups build up.
1088 	 */
1089 	int (*remove_stale_groups)(void *ctx, const u8 *peer, const u8 *go,
1090 				   const u8 *ssid, size_t ssid_len);
1091 
1092 	/**
1093 	 * p2ps_prov_complete - P2PS provisioning complete
1094 	 *
1095 	 * When P2PS provisioning completes (successfully or not) we must
1096 	 * transmit all of the results to the upper layers.
1097 	 */
1098 	void (*p2ps_prov_complete)(void *ctx, u8 status, const u8 *dev,
1099 				   const u8 *adv_mac, const u8 *ses_mac,
1100 				   const u8 *grp_mac, u32 adv_id, u32 ses_id,
1101 				   u8 conncap, int passwd_id,
1102 				   const u8 *persist_ssid,
1103 				   size_t persist_ssid_size, int response_done,
1104 				   int prov_start, const char *session_info,
1105 				   const u8 *feat_cap, size_t feat_cap_len,
1106 				   unsigned int freq, const u8 *group_ssid,
1107 				   size_t group_ssid_len);
1108 
1109 	/**
1110 	 * prov_disc_resp_cb - Callback for indicating completion of PD Response
1111 	 * @ctx: Callback context from cb_ctx
1112 	 * Returns: 1 if operation was started, 0 otherwise
1113 	 *
1114 	 * This callback can be used to perform any pending actions after
1115 	 * provisioning. It is mainly used for P2PS pending group creation.
1116 	 */
1117 	int (*prov_disc_resp_cb)(void *ctx);
1118 
1119 	/**
1120 	 * p2ps_group_capability - Determine group capability
1121 	 * @ctx: Callback context from cb_ctx
1122 	 * @incoming: Peer requested roles, expressed with P2PS_SETUP_* bitmap.
1123 	 * @role: Local roles, expressed with P2PS_SETUP_* bitmap.
1124 	 * @force_freq: Variable for returning forced frequency for the group.
1125 	 * @pref_freq: Variable for returning preferred frequency for the group.
1126 	 * Returns: P2PS_SETUP_* bitmap of group capability result.
1127 	 *
1128 	 * This function can be used to determine group capability and
1129 	 * frequencies based on information from P2PS PD exchange and the
1130 	 * current state of ongoing groups and driver capabilities.
1131 	 */
1132 	u8 (*p2ps_group_capability)(void *ctx, u8 incoming, u8 role,
1133 				    unsigned int *force_freq,
1134 				    unsigned int *pref_freq);
1135 
1136 	/**
1137 	 * get_pref_freq_list - Get preferred frequency list for an interface
1138 	 * @ctx: Callback context from cb_ctx
1139 	 * @go: Whether the use if for GO role
1140 	 * @len: Length of freq_list in entries (both IN and OUT)
1141 	 * @freq_list: Buffer for returning the preferred frequencies (MHz)
1142 	 * Returns: 0 on success, -1 on failure
1143 	 *
1144 	 * This function can be used to query the preferred frequency list from
1145 	 * the driver specific to a particular interface type.
1146 	 */
1147 	int (*get_pref_freq_list)(void *ctx, int go,
1148 				  unsigned int *len, unsigned int *freq_list);
1149 };
1150 
1151 
1152 /* P2P module initialization/deinitialization */
1153 
1154 /**
1155  * p2p_init - Initialize P2P module
1156  * @cfg: P2P module configuration
1157  * Returns: Pointer to private data or %NULL on failure
1158  *
1159  * This function is used to initialize global P2P module context (one per
1160  * device). The P2P module will keep a copy of the configuration data, so the
1161  * caller does not need to maintain this structure. However, the callback
1162  * functions and the context parameters to them must be kept available until
1163  * the P2P module is deinitialized with p2p_deinit().
1164  */
1165 struct p2p_data * p2p_init(const struct p2p_config *cfg);
1166 
1167 /**
1168  * p2p_deinit - Deinitialize P2P module
1169  * @p2p: P2P module context from p2p_init()
1170  */
1171 void p2p_deinit(struct p2p_data *p2p);
1172 
1173 /**
1174  * p2p_flush - Flush P2P module state
1175  * @p2p: P2P module context from p2p_init()
1176  *
1177  * This command removes the P2P module state like peer device entries.
1178  */
1179 void p2p_flush(struct p2p_data *p2p);
1180 
1181 /**
1182  * p2p_unauthorize - Unauthorize the specified peer device
1183  * @p2p: P2P module context from p2p_init()
1184  * @addr: P2P peer entry to be unauthorized
1185  * Returns: 0 on success, -1 on failure
1186  *
1187  * This command removes any connection authorization from the specified P2P
1188  * peer device address. This can be used, e.g., to cancel effect of a previous
1189  * p2p_authorize() or p2p_connect() call that has not yet resulted in completed
1190  * GO Negotiation.
1191  */
1192 int p2p_unauthorize(struct p2p_data *p2p, const u8 *addr);
1193 
1194 /**
1195  * p2p_set_dev_name - Set device name
1196  * @p2p: P2P module context from p2p_init()
1197  * Returns: 0 on success, -1 on failure
1198  *
1199  * This function can be used to update the P2P module configuration with
1200  * information that was not available at the time of the p2p_init() call.
1201  */
1202 int p2p_set_dev_name(struct p2p_data *p2p, const char *dev_name);
1203 
1204 int p2p_set_manufacturer(struct p2p_data *p2p, const char *manufacturer);
1205 int p2p_set_model_name(struct p2p_data *p2p, const char *model_name);
1206 int p2p_set_model_number(struct p2p_data *p2p, const char *model_number);
1207 int p2p_set_serial_number(struct p2p_data *p2p, const char *serial_number);
1208 
1209 void p2p_set_config_methods(struct p2p_data *p2p, u16 config_methods);
1210 void p2p_set_uuid(struct p2p_data *p2p, const u8 *uuid);
1211 
1212 /**
1213  * p2p_set_pri_dev_type - Set primary device type
1214  * @p2p: P2P module context from p2p_init()
1215  * Returns: 0 on success, -1 on failure
1216  *
1217  * This function can be used to update the P2P module configuration with
1218  * information that was not available at the time of the p2p_init() call.
1219  */
1220 int p2p_set_pri_dev_type(struct p2p_data *p2p, const u8 *pri_dev_type);
1221 
1222 /**
1223  * p2p_set_sec_dev_types - Set secondary device types
1224  * @p2p: P2P module context from p2p_init()
1225  * Returns: 0 on success, -1 on failure
1226  *
1227  * This function can be used to update the P2P module configuration with
1228  * information that was not available at the time of the p2p_init() call.
1229  */
1230 int p2p_set_sec_dev_types(struct p2p_data *p2p, const u8 dev_types[][8],
1231 			  size_t num_dev_types);
1232 
1233 int p2p_set_country(struct p2p_data *p2p, const char *country);
1234 
1235 
1236 /* Commands from upper layer management entity */
1237 
1238 enum p2p_discovery_type {
1239 	P2P_FIND_START_WITH_FULL,
1240 	P2P_FIND_ONLY_SOCIAL,
1241 	P2P_FIND_PROGRESSIVE,
1242 #ifdef CONFIG_OPEN_HARMONY_SPECIFIC_P2P_FIND
1243 	P2P_FIND_SPECIFIC_FREQ,
1244 #endif
1245 };
1246 
1247 /**
1248  * p2p_find - Start P2P Find (Device Discovery)
1249  * @p2p: P2P module context from p2p_init()
1250  * @timeout: Timeout for find operation in seconds or 0 for no timeout
1251  * @type: Device Discovery type
1252  * @num_req_dev_types: Number of requested device types
1253  * @req_dev_types: Requested device types array, must be an array
1254  *	containing num_req_dev_types * WPS_DEV_TYPE_LEN bytes; %NULL if no
1255  *	requested device types.
1256  * @dev_id: Device ID to search for or %NULL to find all devices
1257  * @search_delay: Extra delay in milliseconds between search iterations
1258  * @seek_count: Number of ASP Service Strings in the seek_string array
1259  * @seek_string: ASP Service Strings to query for in Probe Requests
1260  * @freq: Requested first scan frequency (in MHz) to modify type ==
1261  *	P2P_FIND_START_WITH_FULL behavior. 0 = Use normal full scan.
1262  *	If p2p_find is already in progress, this parameter is ignored and full
1263  *	scan will be executed.
1264  * @include_6ghz: Include 6 GHz channels in P2P find
1265  * Returns: 0 on success, -1 on failure
1266  */
1267 int p2p_find(struct p2p_data *p2p, unsigned int timeout,
1268 	     enum p2p_discovery_type type,
1269 	     unsigned int num_req_dev_types, const u8 *req_dev_types,
1270 	     const u8 *dev_id, unsigned int search_delay,
1271 	     u8 seek_count, const char **seek_string, int freq,
1272 	     bool include_6ghz);
1273 
1274 /**
1275  * p2p_notify_scan_trigger_status - Indicate scan trigger status
1276  * @p2p: P2P module context from p2p_init()
1277  * @status: 0 on success, -1 on failure
1278  */
1279 void p2p_notify_scan_trigger_status(struct p2p_data *p2p, int status);
1280 
1281 /**
1282  * p2p_stop_find - Stop P2P Find (Device Discovery)
1283  * @p2p: P2P module context from p2p_init()
1284  */
1285 void p2p_stop_find(struct p2p_data *p2p);
1286 
1287 /**
1288  * p2p_stop_find_for_freq - Stop P2P Find for next oper on specific freq
1289  * @p2p: P2P module context from p2p_init()
1290  * @freq: Frequency in MHz for next operation
1291  *
1292  * This is like p2p_stop_find(), but Listen state is not stopped if we are
1293  * already on the same frequency.
1294  */
1295 void p2p_stop_find_for_freq(struct p2p_data *p2p, int freq);
1296 
1297 /**
1298  * p2p_listen - Start P2P Listen state for specified duration
1299  * @p2p: P2P module context from p2p_init()
1300  * @timeout: Listen state duration in milliseconds
1301  * Returns: 0 on success, -1 on failure
1302  *
1303  * This function can be used to request the P2P module to keep the device
1304  * discoverable on the listen channel for an extended set of time. At least in
1305  * its current form, this is mainly used for testing purposes and may not be of
1306  * much use for normal P2P operations.
1307  */
1308 int p2p_listen(struct p2p_data *p2p, unsigned int timeout);
1309 
1310 /**
1311  * p2p_stop_listen - Stop P2P Listen
1312  * @p2p: P2P module context from p2p_init()
1313  */
1314 void p2p_stop_listen(struct p2p_data *p2p);
1315 
1316 /**
1317  * p2p_connect - Start P2P group formation (GO negotiation)
1318  * @p2p: P2P module context from p2p_init()
1319  * @peer_addr: MAC address of the peer P2P client
1320  * @wps_method: WPS method to be used in provisioning
1321  * @go_intent: Local GO intent value (1..15)
1322  * @own_interface_addr: Intended interface address to use with the group
1323  * @force_freq: The only allowed channel frequency in MHz or 0
1324  * @persistent_group: Whether to create a persistent group (0 = no, 1 =
1325  * persistent group without persistent reconnect, 2 = persistent group with
1326  * persistent reconnect)
1327  * @force_ssid: Forced SSID for the group if we become GO or %NULL to generate
1328  *	a new SSID
1329  * @force_ssid_len: Length of $force_ssid buffer
1330  * @pd_before_go_neg: Whether to send Provision Discovery prior to GO
1331  *	Negotiation as an interoperability workaround when initiating group
1332  *	formation
1333  * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
1334  *	force_freq == 0)
1335  * Returns: 0 on success, -1 on failure
1336  */
1337 int p2p_connect(struct p2p_data *p2p, const u8 *peer_addr,
1338 		enum p2p_wps_method wps_method,
1339 		int go_intent, const u8 *own_interface_addr,
1340 		unsigned int force_freq, int persistent_group,
1341 		const u8 *force_ssid, size_t force_ssid_len,
1342 		int pd_before_go_neg, unsigned int pref_freq, u16 oob_pw_id);
1343 
1344 /**
1345  * p2p_authorize - Authorize P2P group formation (GO negotiation)
1346  * @p2p: P2P module context from p2p_init()
1347  * @peer_addr: MAC address of the peer P2P client
1348  * @wps_method: WPS method to be used in provisioning
1349  * @go_intent: Local GO intent value (1..15)
1350  * @own_interface_addr: Intended interface address to use with the group
1351  * @force_freq: The only allowed channel frequency in MHz or 0
1352  * @persistent_group: Whether to create a persistent group (0 = no, 1 =
1353  * persistent group without persistent reconnect, 2 = persistent group with
1354  * persistent reconnect)
1355  * @force_ssid: Forced SSID for the group if we become GO or %NULL to generate
1356  *	a new SSID
1357  * @force_ssid_len: Length of $force_ssid buffer
1358  * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
1359  *	force_freq == 0)
1360  * Returns: 0 on success, -1 on failure
1361  *
1362  * This is like p2p_connect(), but the actual group negotiation is not
1363  * initiated automatically, i.e., the other end is expected to do that.
1364  */
1365 int p2p_authorize(struct p2p_data *p2p, const u8 *peer_addr,
1366 		  enum p2p_wps_method wps_method,
1367 		  int go_intent, const u8 *own_interface_addr,
1368 		  unsigned int force_freq, int persistent_group,
1369 		  const u8 *force_ssid, size_t force_ssid_len,
1370 		  unsigned int pref_freq, u16 oob_pw_id);
1371 
1372 /**
1373  * p2p_reject - Reject peer device (explicitly block connection attempts)
1374  * @p2p: P2P module context from p2p_init()
1375  * @peer_addr: MAC address of the peer P2P client
1376  * Returns: 0 on success, -1 on failure
1377  */
1378 int p2p_reject(struct p2p_data *p2p, const u8 *peer_addr);
1379 
1380 /**
1381  * p2p_prov_disc_req - Send Provision Discovery Request
1382  * @p2p: P2P module context from p2p_init()
1383  * @peer_addr: MAC address of the peer P2P client
1384  * @p2ps_prov: Provisioning info for P2PS
1385  * @config_methods: WPS Config Methods value (only one bit set)
1386  * @join: Whether this is used by a client joining an active group
1387  * @force_freq: Forced TX frequency for the frame (mainly for the join case)
1388  * @user_initiated_pd: Flag to indicate if initiated by user or not
1389  * Returns: 0 on success, -1 on failure
1390  *
1391  * This function can be used to request a discovered P2P peer to display a PIN
1392  * (config_methods = WPS_CONFIG_DISPLAY) or be prepared to enter a PIN from us
1393  * (config_methods = WPS_CONFIG_KEYPAD). The Provision Discovery Request frame
1394  * is transmitted once immediately and if no response is received, the frame
1395  * will be sent again whenever the target device is discovered during device
1396  * dsicovery (start with a p2p_find() call). Response from the peer is
1397  * indicated with the p2p_config::prov_disc_resp() callback.
1398  */
1399 int p2p_prov_disc_req(struct p2p_data *p2p, const u8 *peer_addr,
1400 		      struct p2ps_provision *p2ps_prov, u16 config_methods,
1401 		      int join, int force_freq,
1402 		      int user_initiated_pd);
1403 
1404 /**
1405  * p2p_sd_request - Schedule a service discovery query
1406  * @p2p: P2P module context from p2p_init()
1407  * @dst: Destination peer or %NULL to apply for all peers
1408  * @tlvs: P2P Service Query TLV(s)
1409  * Returns: Reference to the query or %NULL on failure
1410  *
1411  * Response to the query is indicated with the p2p_config::sd_response()
1412  * callback.
1413  */
1414 void * p2p_sd_request(struct p2p_data *p2p, const u8 *dst,
1415 		      const struct wpabuf *tlvs);
1416 
1417 #ifdef CONFIG_WIFI_DISPLAY
1418 void * p2p_sd_request_wfd(struct p2p_data *p2p, const u8 *dst,
1419 			  const struct wpabuf *tlvs);
1420 #endif /* CONFIG_WIFI_DISPLAY */
1421 
1422 /**
1423  * p2p_sd_cancel_request - Cancel a pending service discovery query
1424  * @p2p: P2P module context from p2p_init()
1425  * @req: Query reference from p2p_sd_request()
1426  * Returns: 0 if request for cancelled; -1 if not found
1427  */
1428 int p2p_sd_cancel_request(struct p2p_data *p2p, void *req);
1429 
1430 /**
1431  * p2p_sd_response - Send response to a service discovery query
1432  * @p2p: P2P module context from p2p_init()
1433  * @freq: Frequency from p2p_config::sd_request() callback
1434  * @dst: Destination address from p2p_config::sd_request() callback
1435  * @dialog_token: Dialog token from p2p_config::sd_request() callback
1436  * @resp_tlvs: P2P Service Response TLV(s)
1437  *
1438  * This function is called as a response to the request indicated with
1439  * p2p_config::sd_request() callback.
1440  */
1441 void p2p_sd_response(struct p2p_data *p2p, int freq, const u8 *dst,
1442 		     u8 dialog_token, const struct wpabuf *resp_tlvs);
1443 
1444 /**
1445  * p2p_sd_service_update - Indicate a change in local services
1446  * @p2p: P2P module context from p2p_init()
1447  *
1448  * This function needs to be called whenever there is a change in availability
1449  * of the local services. This will increment the Service Update Indicator
1450  * value which will be used in SD Request and Response frames.
1451  */
1452 void p2p_sd_service_update(struct p2p_data *p2p);
1453 
1454 
1455 enum p2p_invite_role {
1456 	P2P_INVITE_ROLE_GO,
1457 	P2P_INVITE_ROLE_ACTIVE_GO,
1458 	P2P_INVITE_ROLE_CLIENT
1459 };
1460 
1461 /**
1462  * p2p_invite - Invite a P2P Device into a group
1463  * @p2p: P2P module context from p2p_init()
1464  * @peer: Device Address of the peer P2P Device
1465  * @role: Local role in the group
1466  * @bssid: Group BSSID or %NULL if not known
1467  * @ssid: Group SSID
1468  * @ssid_len: Length of ssid in octets
1469  * @force_freq: The only allowed channel frequency in MHz or 0
1470  * @go_dev_addr: Forced GO Device Address or %NULL if none
1471  * @persistent_group: Whether this is to reinvoke a persistent group
1472  * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
1473  *	force_freq == 0)
1474  * @dev_pw_id: Device Password ID from OOB Device Password (NFC) static handover
1475  *	case or -1 if not used
1476  * Returns: 0 on success, -1 on failure
1477  */
1478 int p2p_invite(struct p2p_data *p2p, const u8 *peer, enum p2p_invite_role role,
1479 	       const u8 *bssid, const u8 *ssid, size_t ssid_len,
1480 	       unsigned int force_freq, const u8 *go_dev_addr,
1481 	       int persistent_group, unsigned int pref_freq, int dev_pw_id);
1482 
1483 /**
1484  * p2p_presence_req - Request GO presence
1485  * @p2p: P2P module context from p2p_init()
1486  * @go_interface_addr: GO P2P Interface Address
1487  * @own_interface_addr: Own P2P Interface Address for this group
1488  * @freq: Group operating frequence (in MHz)
1489  * @duration1: Preferred presence duration in microseconds
1490  * @interval1: Preferred presence interval in microseconds
1491  * @duration2: Acceptable presence duration in microseconds
1492  * @interval2: Acceptable presence interval in microseconds
1493  * Returns: 0 on success, -1 on failure
1494  *
1495  * If both duration and interval values are zero, the parameter pair is not
1496  * specified (i.e., to remove Presence Request, use duration1 = interval1 = 0).
1497  */
1498 int p2p_presence_req(struct p2p_data *p2p, const u8 *go_interface_addr,
1499 		     const u8 *own_interface_addr, unsigned int freq,
1500 		     u32 duration1, u32 interval1, u32 duration2,
1501 		     u32 interval2);
1502 
1503 /**
1504  * p2p_ext_listen - Set Extended Listen Timing
1505  * @p2p: P2P module context from p2p_init()
1506  * @freq: Group operating frequence (in MHz)
1507  * @period: Availability period in milliseconds (1-65535; 0 to disable)
1508  * @interval: Availability interval in milliseconds (1-65535; 0 to disable)
1509  * Returns: 0 on success, -1 on failure
1510  *
1511  * This function can be used to enable or disable (period = interval = 0)
1512  * Extended Listen Timing. When enabled, the P2P Device will become
1513  * discoverable (go into Listen State) every @interval milliseconds for at
1514  * least @period milliseconds.
1515  */
1516 int p2p_ext_listen(struct p2p_data *p2p, unsigned int period,
1517 		   unsigned int interval);
1518 
1519 /* Event notifications from upper layer management operations */
1520 
1521 /**
1522  * p2p_wps_success_cb - Report successfully completed WPS provisioning
1523  * @p2p: P2P module context from p2p_init()
1524  * @mac_addr: Peer address
1525  *
1526  * This function is used to report successfully completed WPS provisioning
1527  * during group formation in both GO/Registrar and client/Enrollee roles.
1528  */
1529 void p2p_wps_success_cb(struct p2p_data *p2p, const u8 *mac_addr);
1530 
1531 /**
1532  * p2p_group_formation_failed - Report failed WPS provisioning
1533  * @p2p: P2P module context from p2p_init()
1534  *
1535  * This function is used to report failed group formation. This can happen
1536  * either due to failed WPS provisioning or due to 15 second timeout during
1537  * the provisioning phase.
1538  */
1539 void p2p_group_formation_failed(struct p2p_data *p2p);
1540 
1541 /**
1542  * p2p_get_provisioning_info - Get any stored provisioning info
1543  * @p2p: P2P module context from p2p_init()
1544  * @addr: Peer P2P Device Address
1545  * Returns: WPS provisioning information (WPS config method) or 0 if no
1546  * information is available
1547  *
1548  * This function is used to retrieve stored WPS provisioning info for the given
1549  * peer.
1550  */
1551 u16 p2p_get_provisioning_info(struct p2p_data *p2p, const u8 *addr);
1552 
1553 /**
1554  * p2p_clear_provisioning_info - Clear any stored provisioning info
1555  * @p2p: P2P module context from p2p_init()
1556  * @iface_addr: Peer P2P Device Address
1557  *
1558  * This function is used to clear stored WPS provisioning info for the given
1559  * peer.
1560  */
1561 void p2p_clear_provisioning_info(struct p2p_data *p2p, const u8 *addr);
1562 
1563 
1564 /* Event notifications from lower layer driver operations */
1565 
1566 /**
1567  * enum p2p_probe_req_status
1568  *
1569  * @P2P_PREQ_MALFORMED: frame was not well-formed
1570  * @P2P_PREQ_NOT_LISTEN: device isn't in listen state, frame ignored
1571  * @P2P_PREQ_NOT_P2P: frame was not a P2P probe request
1572  * @P2P_PREQ_P2P_NOT_PROCESSED: frame was P2P but wasn't processed
1573  * @P2P_PREQ_P2P_PROCESSED: frame has been processed by P2P
1574  */
1575 enum p2p_probe_req_status {
1576 	P2P_PREQ_MALFORMED,
1577 	P2P_PREQ_NOT_LISTEN,
1578 	P2P_PREQ_NOT_P2P,
1579 	P2P_PREQ_NOT_PROCESSED,
1580 	P2P_PREQ_PROCESSED
1581 };
1582 
1583 /**
1584  * p2p_probe_req_rx - Report reception of a Probe Request frame
1585  * @p2p: P2P module context from p2p_init()
1586  * @addr: Source MAC address
1587  * @dst: Destination MAC address if available or %NULL
1588  * @bssid: BSSID if available or %NULL
1589  * @ie: Information elements from the Probe Request frame body
1590  * @ie_len: Length of ie buffer in octets
1591  * @rx_freq: Probe Request frame RX frequency
1592  * @p2p_lo_started: Whether P2P Listen Offload is started
1593  * Returns: value indicating the type and status of the probe request
1594  */
1595 enum p2p_probe_req_status
1596 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst,
1597 		 const u8 *bssid, const u8 *ie, size_t ie_len,
1598 		 unsigned int rx_freq, int p2p_lo_started);
1599 
1600 /**
1601  * p2p_rx_action - Report received Action frame
1602  * @p2p: P2P module context from p2p_init()
1603  * @da: Destination address of the received Action frame
1604  * @sa: Source address of the received Action frame
1605  * @bssid: Address 3 of the received Action frame
1606  * @category: Category of the received Action frame
1607  * @data: Action frame body after the Category field
1608  * @len: Length of the data buffer in octets
1609  * @freq: Frequency (in MHz) on which the frame was received
1610  */
1611 void p2p_rx_action(struct p2p_data *p2p, const u8 *da, const u8 *sa,
1612 		   const u8 *bssid, u8 category,
1613 		   const u8 *data, size_t len, int freq);
1614 
1615 /**
1616  * p2p_scan_res_handler - Indicate a P2P scan results
1617  * @p2p: P2P module context from p2p_init()
1618  * @bssid: BSSID of the scan result
1619  * @freq: Frequency of the channel on which the device was found in MHz
1620  * @rx_time: Time when the result was received
1621  * @level: Signal level (signal strength of the received Beacon/Probe Response
1622  *	frame)
1623  * @ies: Pointer to IEs from the scan result
1624  * @ies_len: Length of the ies buffer
1625  * Returns: 0 to continue or 1 to stop scan result indication
1626  *
1627  * This function is called to indicate a scan result entry with P2P IE from a
1628  * scan requested with struct p2p_config::p2p_scan(). This can be called during
1629  * the actual scan process (i.e., whenever a new device is found) or as a
1630  * sequence of calls after the full scan has been completed. The former option
1631  * can result in optimized operations, but may not be supported by all
1632  * driver/firmware designs. The ies buffer need to include at least the P2P IE,
1633  * but it is recommended to include all IEs received from the device. The
1634  * caller does not need to check that the IEs contain a P2P IE before calling
1635  * this function since frames will be filtered internally if needed.
1636  *
1637  * This function will return 1 if it wants to stop scan result iteration (and
1638  * scan in general if it is still in progress). This is used to allow faster
1639  * start of a pending operation, e.g., to start a pending GO negotiation.
1640  */
1641 int p2p_scan_res_handler(struct p2p_data *p2p, const u8 *bssid, int freq,
1642 			 struct os_reltime *rx_time, int level, const u8 *ies,
1643 			 size_t ies_len);
1644 
1645 /**
1646  * p2p_scan_res_handled - Indicate end of scan results
1647  * @p2p: P2P module context from p2p_init()
1648  * @delay: Search delay for next scan in ms
1649  *
1650  * This function is called to indicate that all P2P scan results from a scan
1651  * have been reported with zero or more calls to p2p_scan_res_handler(). This
1652  * function must be called as a response to successful
1653  * struct p2p_config::p2p_scan() call if none of the p2p_scan_res_handler()
1654  * calls stopped iteration.
1655  */
1656 void p2p_scan_res_handled(struct p2p_data *p2p, unsigned int delay);
1657 
1658 enum p2p_send_action_result {
1659 	P2P_SEND_ACTION_SUCCESS /* Frame was send and acknowledged */,
1660 	P2P_SEND_ACTION_NO_ACK /* Frame was sent, but not acknowledged */,
1661 	P2P_SEND_ACTION_FAILED /* Frame was not sent due to a failure */
1662 };
1663 
1664 /**
1665  * p2p_send_action_cb - Notify TX status of an Action frame
1666  * @p2p: P2P module context from p2p_init()
1667  * @freq: Channel frequency in MHz
1668  * @dst: Destination MAC address (Address 1)
1669  * @src: Source MAC address (Address 2)
1670  * @bssid: BSSID (Address 3)
1671  * @result: Result of the transmission attempt
1672  *
1673  * This function is used to indicate the result of an Action frame transmission
1674  * that was requested with struct p2p_config::send_action() callback.
1675  */
1676 void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
1677 			const u8 *src, const u8 *bssid,
1678 			enum p2p_send_action_result result);
1679 
1680 /**
1681  * p2p_listen_cb - Indicate the start of a requested Listen state
1682  * @p2p: P2P module context from p2p_init()
1683  * @freq: Listen channel frequency in MHz
1684  * @duration: Duration for the Listen state in milliseconds
1685  *
1686  * This function is used to indicate that a Listen state requested with
1687  * struct p2p_config::start_listen() callback has started.
1688  */
1689 void p2p_listen_cb(struct p2p_data *p2p, unsigned int freq,
1690 		   unsigned int duration);
1691 
1692 /**
1693  * p2p_listen_end - Indicate the end of a requested Listen state
1694  * @p2p: P2P module context from p2p_init()
1695  * @freq: Listen channel frequency in MHz
1696  * Returns: 0 if no operations were started, 1 if an operation was started
1697  *
1698  * This function is used to indicate that a Listen state requested with
1699  * struct p2p_config::start_listen() callback has ended.
1700  */
1701 int p2p_listen_end(struct p2p_data *p2p, unsigned int freq);
1702 
1703 void p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
1704 		      const u8 *ie, size_t ie_len);
1705 
1706 void p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
1707 			const u8 *ie, size_t ie_len);
1708 
1709 
1710 /* Per-group P2P state for GO */
1711 
1712 struct p2p_group;
1713 
1714 /**
1715  * struct p2p_group_config - P2P group configuration
1716  *
1717  * This configuration is provided to the P2P module during initialization of
1718  * the per-group information with p2p_group_init().
1719  */
1720 struct p2p_group_config {
1721 	/**
1722 	 * persistent_group - Whether the group is persistent
1723 	 * 0 = not a persistent group
1724 	 * 1 = persistent group without persistent reconnect
1725 	 * 2 = persistent group with persistent reconnect
1726 	 */
1727 	int persistent_group;
1728 
1729 	/**
1730 	 * interface_addr - P2P Interface Address of the group
1731 	 */
1732 	u8 interface_addr[ETH_ALEN];
1733 
1734 	/**
1735 	 * max_clients - Maximum number of clients in the group
1736 	 */
1737 	unsigned int max_clients;
1738 
1739 	/**
1740 	 * ssid - Group SSID
1741 	 */
1742 	u8 ssid[SSID_MAX_LEN];
1743 
1744 	/**
1745 	 * ssid_len - Length of SSID
1746 	 */
1747 	size_t ssid_len;
1748 
1749 	/**
1750 	 * freq - Operating channel of the group
1751 	 */
1752 	int freq;
1753 
1754 	/**
1755 	 * ip_addr_alloc - Whether IP address allocation within 4-way handshake
1756 	 *	is supported
1757 	 */
1758 	int ip_addr_alloc;
1759 
1760 	/**
1761 	 * cb_ctx - Context to use with callback functions
1762 	 */
1763 	void *cb_ctx;
1764 
1765 	/**
1766 	 * ie_update - Notification of IE update
1767 	 * @ctx: Callback context from cb_ctx
1768 	 * @beacon_ies: P2P IE for Beacon frames or %NULL if no change
1769 	 * @proberesp_ies: P2P Ie for Probe Response frames
1770 	 *
1771 	 * P2P module uses this callback function to notify whenever the P2P IE
1772 	 * in Beacon or Probe Response frames should be updated based on group
1773 	 * events.
1774 	 *
1775 	 * The callee is responsible for freeing the returned buffer(s) with
1776 	 * wpabuf_free().
1777 	 */
1778 	void (*ie_update)(void *ctx, struct wpabuf *beacon_ies,
1779 			  struct wpabuf *proberesp_ies);
1780 
1781 	/**
1782 	 * idle_update - Notification of changes in group idle state
1783 	 * @ctx: Callback context from cb_ctx
1784 	 * @idle: Whether the group is idle (no associated stations)
1785 	 */
1786 	void (*idle_update)(void *ctx, int idle);
1787 };
1788 
1789 /**
1790  * p2p_group_init - Initialize P2P group
1791  * @p2p: P2P module context from p2p_init()
1792  * @config: P2P group configuration (will be freed by p2p_group_deinit())
1793  * Returns: Pointer to private data or %NULL on failure
1794  *
1795  * This function is used to initialize per-group P2P module context. Currently,
1796  * this is only used to manage GO functionality and P2P clients do not need to
1797  * create an instance of this per-group information.
1798  */
1799 struct p2p_group * p2p_group_init(struct p2p_data *p2p,
1800 				  struct p2p_group_config *config);
1801 
1802 /**
1803  * p2p_group_deinit - Deinitialize P2P group
1804  * @group: P2P group context from p2p_group_init()
1805  */
1806 void p2p_group_deinit(struct p2p_group *group);
1807 
1808 /**
1809  * p2p_group_notif_assoc - Notification of P2P client association with GO
1810  * @group: P2P group context from p2p_group_init()
1811  * @addr: Interface address of the P2P client
1812  * @ie: IEs from the (Re)association Request frame
1813  * @len: Length of the ie buffer in octets
1814  * Returns: 0 on success, -1 on failure
1815  */
1816 int p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr,
1817 			  const u8 *ie, size_t len);
1818 
1819 /**
1820  * p2p_group_assoc_resp_ie - Build P2P IE for (re)association response
1821  * @group: P2P group context from p2p_group_init()
1822  * @status: Status value (P2P_SC_SUCCESS if association succeeded)
1823  * Returns: P2P IE for (Re)association Response or %NULL on failure
1824  *
1825  * The caller is responsible for freeing the returned buffer with
1826  * wpabuf_free().
1827  */
1828 struct wpabuf * p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status);
1829 
1830 /**
1831  * p2p_group_notif_disassoc - Notification of P2P client disassociation from GO
1832  * @group: P2P group context from p2p_group_init()
1833  * @addr: Interface address of the P2P client
1834  */
1835 void p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr);
1836 
1837 /**
1838  * p2p_group_notif_formation_done - Notification of completed group formation
1839  * @group: P2P group context from p2p_group_init()
1840  */
1841 void p2p_group_notif_formation_done(struct p2p_group *group);
1842 
1843 /**
1844  * p2p_group_notif_noa - Notification of NoA change
1845  * @group: P2P group context from p2p_group_init()
1846  * @noa: Notice of Absence attribute payload, %NULL if none
1847  * @noa_len: Length of noa buffer in octets
1848  * Returns: 0 on success, -1 on failure
1849  *
1850  * Notify the P2P group management about a new NoA contents. This will be
1851  * inserted into the P2P IEs in Beacon and Probe Response frames with rest of
1852  * the group information.
1853  */
1854 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
1855 			size_t noa_len);
1856 
1857 /**
1858  * p2p_group_match_dev_type - Match device types in group with requested type
1859  * @group: P2P group context from p2p_group_init()
1860  * @wps: WPS TLVs from Probe Request frame (concatenated WPS IEs)
1861  * Returns: 1 on match, 0 on mismatch
1862  *
1863  * This function can be used to match the Requested Device Type attribute in
1864  * WPS IE with the device types of a group member for deciding whether a GO
1865  * should reply to a Probe Request frame. Match will be reported if the WPS IE
1866  * is not requested any specific device type.
1867  */
1868 int p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps);
1869 
1870 /**
1871  * p2p_group_match_dev_id - Match P2P Device Address in group with requested device id
1872  */
1873 int p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p);
1874 
1875 /**
1876  * p2p_group_go_discover - Send GO Discoverability Request to a group client
1877  * @group: P2P group context from p2p_group_init()
1878  * Returns: 0 on success (frame scheduled); -1 if client was not found
1879  */
1880 int p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id,
1881 			  const u8 *searching_dev, int rx_freq);
1882 
1883 
1884 /* Generic helper functions */
1885 
1886 /**
1887  * p2p_ie_text - Build text format description of P2P IE
1888  * @p2p_ie: P2P IE
1889  * @buf: Buffer for returning text
1890  * @end: Pointer to the end of the buf area
1891  * Returns: Number of octets written to the buffer or -1 on failure
1892  *
1893  * This function can be used to parse P2P IE contents into text format
1894  * field=value lines.
1895  */
1896 int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end);
1897 
1898 /**
1899  * p2p_scan_result_text - Build text format description of P2P IE
1900  * @ies: Information elements from scan results
1901  * @ies_len: ies buffer length in octets
1902  * @buf: Buffer for returning text
1903  * @end: Pointer to the end of the buf area
1904  * Returns: Number of octets written to the buffer or -1 on failure
1905  *
1906  * This function can be used to parse P2P IE contents into text format
1907  * field=value lines.
1908  */
1909 int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end);
1910 
1911 /**
1912  * p2p_parse_dev_addr_in_p2p_ie - Parse P2P Device Address from a concatenated
1913  * P2P IE
1914  * @p2p_ie: P2P IE
1915  * @dev_addr: Buffer for returning P2P Device Address
1916  * Returns: 0 on success or -1 if P2P Device Address could not be parsed
1917  */
1918 int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr);
1919 
1920 /**
1921  * p2p_parse_dev_addr - Parse P2P Device Address from P2P IE(s)
1922  * @ies: Information elements from scan results
1923  * @ies_len: ies buffer length in octets
1924  * @dev_addr: Buffer for returning P2P Device Address
1925  * Returns: 0 on success or -1 if P2P Device Address could not be parsed
1926  */
1927 int p2p_parse_dev_addr(const u8 *ies, size_t ies_len, u8 *dev_addr);
1928 
1929 /**
1930  * p2p_assoc_req_ie - Build P2P IE for (Re)Association Request frame
1931  * @p2p: P2P module context from p2p_init()
1932  * @bssid: BSSID
1933  * @buf: Buffer for writing the P2P IE
1934  * @len: Maximum buf length in octets
1935  * @p2p_group: Whether this is for association with a P2P GO
1936  * @p2p_ie: Reassembled P2P IE data from scan results or %NULL if none
1937  * Returns: Number of octets written into buf or -1 on failure
1938  */
1939 int p2p_assoc_req_ie(struct p2p_data *p2p, const u8 *bssid, u8 *buf,
1940 		     size_t len, int p2p_group, struct wpabuf *p2p_ie);
1941 
1942 /**
1943  * p2p_scan_ie - Build P2P IE for Probe Request
1944  * @p2p: P2P module context from p2p_init()
1945  * @ies: Buffer for writing P2P IE
1946  * @dev_id: Device ID to search for or %NULL for any
1947  * @bands: Frequency bands used in the scan (enum wpa_radio_work_band bitmap)
1948  */
1949 void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies, const u8 *dev_id,
1950 		 unsigned int bands);
1951 
1952 /**
1953  * p2p_scan_ie_buf_len - Get maximum buffer length needed for p2p_scan_ie
1954  * @p2p: P2P module context from p2p_init()
1955  * Returns: Number of octets that p2p_scan_ie() may add to the buffer
1956  */
1957 size_t p2p_scan_ie_buf_len(struct p2p_data *p2p);
1958 
1959 /**
1960  * p2p_go_params - Generate random P2P group parameters
1961  * @p2p: P2P module context from p2p_init()
1962  * @params: Buffer for parameters
1963  * Returns: 0 on success, -1 on failure
1964  */
1965 int p2p_go_params(struct p2p_data *p2p, struct p2p_go_neg_results *params);
1966 
1967 /**
1968  * p2p_get_group_capab - Get Group Capability from P2P IE data
1969  * @p2p_ie: P2P IE(s) contents
1970  * Returns: Group Capability
1971  */
1972 u8 p2p_get_group_capab(const struct wpabuf *p2p_ie);
1973 
1974 /**
1975  * p2p_get_cross_connect_disallowed - Does WLAN AP disallows cross connection
1976  * @p2p_ie: P2P IE(s) contents
1977  * Returns: 0 if cross connection is allow, 1 if not
1978  */
1979 int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie);
1980 
1981 /**
1982  * p2p_get_go_dev_addr - Get P2P Device Address from P2P IE data
1983  * @p2p_ie: P2P IE(s) contents
1984  * Returns: Pointer to P2P Device Address or %NULL if not included
1985  */
1986 const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie);
1987 
1988 /**
1989  * p2p_get_peer_info - Get P2P peer information
1990  * @p2p: P2P module context from p2p_init()
1991  * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
1992  * @next: Whether to select the peer entry following the one indicated by addr
1993  * Returns: Pointer to peer info or %NULL if not found
1994  */
1995 const struct p2p_peer_info * p2p_get_peer_info(struct p2p_data *p2p,
1996 					       const u8 *addr, int next);
1997 
1998 /**
1999  * p2p_get_peer_info_txt - Get internal P2P peer information in text format
2000  * @info: Pointer to P2P peer info from p2p_get_peer_info()
2001  * @buf: Buffer for returning text
2002  * @buflen: Maximum buffer length
2003  * Returns: Number of octets written to the buffer or -1 on failure
2004  *
2005  * Note: This information is internal to the P2P module and subject to change.
2006  * As such, this should not really be used by external programs for purposes
2007  * other than debugging.
2008  */
2009 int p2p_get_peer_info_txt(const struct p2p_peer_info *info,
2010 			  char *buf, size_t buflen);
2011 
2012 /**
2013  * p2p_peer_known - Check whether P2P peer is known
2014  * @p2p: P2P module context from p2p_init()
2015  * @addr: P2P Device Address of the peer
2016  * Returns: 1 if the specified device is in the P2P peer table or 0 if not
2017  */
2018 int p2p_peer_known(struct p2p_data *p2p, const u8 *addr);
2019 
2020 /**
2021  * p2p_set_client_discoverability - Set client discoverability capability
2022  * @p2p: P2P module context from p2p_init()
2023  * @enabled: Whether client discoverability will be enabled
2024  *
2025  * This function can be used to disable (and re-enable) client discoverability.
2026  * This capability is enabled by default and should not be disabled in normal
2027  * use cases, i.e., this is mainly for testing purposes.
2028  */
2029 void p2p_set_client_discoverability(struct p2p_data *p2p, int enabled);
2030 
2031 /**
2032  * p2p_set_managed_oper - Set managed P2P Device operations capability
2033  * @p2p: P2P module context from p2p_init()
2034  * @enabled: Whether managed P2P Device operations will be enabled
2035  */
2036 void p2p_set_managed_oper(struct p2p_data *p2p, int enabled);
2037 
2038 /**
2039  * p2p_config_get_random_social - Return a random social channel
2040  * @p2p: P2P config
2041  * @op_class: Selected operating class
2042  * @op_channel: Selected social channel
2043  * @avoid_list: Channel ranges to try to avoid or %NULL
2044  * @disallow_list: Channel ranges to discard or %NULL
2045  * Returns: 0 on success, -1 on failure
2046  *
2047  * This function is used before p2p_init is called. A random social channel
2048  * from supports bands 2.4 GHz (channels 1,6,11) and 60 GHz (channel 2) is
2049  * returned on success.
2050  */
2051 int p2p_config_get_random_social(struct p2p_config *p2p, u8 *op_class,
2052 				 u8 *op_channel,
2053 				 struct wpa_freq_range_list *avoid_list,
2054 				 struct wpa_freq_range_list *disallow_list);
2055 
2056 int p2p_set_listen_channel(struct p2p_data *p2p, u8 reg_class, u8 channel,
2057 			   u8 forced);
2058 
2059 u8 p2p_get_listen_channel(struct p2p_data *p2p);
2060 
2061 int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
2062 
2063 int p2p_get_interface_addr(struct p2p_data *p2p, const u8 *dev_addr,
2064 			   u8 *iface_addr);
2065 int p2p_get_dev_addr(struct p2p_data *p2p, const u8 *iface_addr,
2066 			   u8 *dev_addr);
2067 
2068 void p2p_set_peer_filter(struct p2p_data *p2p, const u8 *addr);
2069 
2070 /**
2071  * p2p_set_cross_connect - Set cross connection capability
2072  * @p2p: P2P module context from p2p_init()
2073  * @enabled: Whether cross connection will be enabled
2074  */
2075 void p2p_set_cross_connect(struct p2p_data *p2p, int enabled);
2076 
2077 int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr);
2078 
2079 /**
2080  * p2p_set_intra_bss_dist - Set intra BSS distribution
2081  * @p2p: P2P module context from p2p_init()
2082  * @enabled: Whether intra BSS distribution will be enabled
2083  */
2084 void p2p_set_intra_bss_dist(struct p2p_data *p2p, int enabled);
2085 
2086 int p2p_channels_includes_freq(const struct p2p_channels *channels,
2087 			       unsigned int freq);
2088 
2089 int p2p_channels_to_freqs(const struct p2p_channels *channels,
2090 			  int *freq_list, unsigned int max_len);
2091 
2092 /**
2093  * p2p_supported_freq - Check whether channel is supported for P2P
2094  * @p2p: P2P module context from p2p_init()
2095  * @freq: Channel frequency in MHz
2096  * Returns: 0 if channel not usable for P2P, 1 if usable for P2P
2097  */
2098 int p2p_supported_freq(struct p2p_data *p2p, unsigned int freq);
2099 
2100 /**
2101  * p2p_supported_freq_go - Check whether channel is supported for P2P GO operation
2102  * @p2p: P2P module context from p2p_init()
2103  * @freq: Channel frequency in MHz
2104  * Returns: 0 if channel not usable for P2P, 1 if usable for P2P
2105  */
2106 int p2p_supported_freq_go(struct p2p_data *p2p, unsigned int freq);
2107 
2108 /**
2109  * p2p_supported_freq_cli - Check whether channel is supported for P2P client operation
2110  * @p2p: P2P module context from p2p_init()
2111  * @freq: Channel frequency in MHz
2112  * Returns: 0 if channel not usable for P2P, 1 if usable for P2P
2113  */
2114 int p2p_supported_freq_cli(struct p2p_data *p2p, unsigned int freq);
2115 
2116 /**
2117  * p2p_get_pref_freq - Get channel from preferred channel list
2118  * @p2p: P2P module context from p2p_init()
2119  * @channels: List of channels
2120  * Returns: Preferred channel
2121  */
2122 unsigned int p2p_get_pref_freq(struct p2p_data *p2p,
2123 			       const struct p2p_channels *channels);
2124 
2125 void p2p_update_channel_list(struct p2p_data *p2p,
2126 			     const struct p2p_channels *chan,
2127 			     const struct p2p_channels *cli_chan);
2128 
2129 bool is_p2p_6ghz_disabled(struct p2p_data *p2p);
2130 
2131 /**
2132  * p2p_set_best_channels - Update best channel information
2133  * @p2p: P2P module context from p2p_init()
2134  * @freq_24: Frequency (MHz) of best channel in 2.4 GHz band
2135  * @freq_5: Frequency (MHz) of best channel in 5 GHz band
2136  * @freq_overall: Frequency (MHz) of best channel overall
2137  */
2138 void p2p_set_best_channels(struct p2p_data *p2p, int freq_24, int freq_5,
2139 			   int freq_overall);
2140 
2141 /**
2142  * p2p_set_own_freq_preference - Set own preference for channel
2143  * @p2p: P2P module context from p2p_init()
2144  * @freq: Frequency (MHz) of the preferred channel or 0 if no preference
2145  *
2146  * This function can be used to set a preference on the operating channel based
2147  * on frequencies used on the other virtual interfaces that share the same
2148  * radio. If non-zero, this is used to try to avoid multi-channel concurrency.
2149  */
2150 void p2p_set_own_freq_preference(struct p2p_data *p2p, int freq);
2151 
2152 const u8 * p2p_get_go_neg_peer(struct p2p_data *p2p);
2153 
2154 /**
2155  * p2p_get_group_num_members - Get number of members in group
2156  * @group: P2P group context from p2p_group_init()
2157  * Returns: Number of members in the group
2158  */
2159 unsigned int p2p_get_group_num_members(struct p2p_group *group);
2160 
2161 /**
2162  * p2p_client_limit_reached - Check if client limit is reached
2163  * @group: P2P group context from p2p_group_init()
2164  * Returns: 1 if no of clients limit reached
2165  */
2166 int p2p_client_limit_reached(struct p2p_group *group);
2167 
2168 /**
2169  * p2p_iterate_group_members - Iterate group members
2170  * @group: P2P group context from p2p_group_init()
2171  * @next: iteration pointer, must be a pointer to a void * that is set to %NULL
2172  *	on the first call and not modified later
2173  * Returns: A P2P Device Address for each call and %NULL for no more members
2174  */
2175 const u8 * p2p_iterate_group_members(struct p2p_group *group, void **next);
2176 
2177 /**
2178  * p2p_group_get_client_interface_addr - Get P2P Interface Address of a client in a group
2179  * @group: P2P group context from p2p_group_init()
2180  * @dev_addr: P2P Device Address of the client
2181  * Returns: P2P Interface Address of the client if found or %NULL if no match
2182  * found
2183  */
2184 const u8 * p2p_group_get_client_interface_addr(struct p2p_group *group,
2185 					       const u8 *dev_addr);
2186 
2187 /**
2188  * p2p_group_get_dev_addr - Get a P2P Device Address of a client in a group
2189  * @group: P2P group context from p2p_group_init()
2190  * @addr: P2P Interface Address of the client
2191  * Returns: P2P Device Address of the client if found or %NULL if no match
2192  * found
2193  */
2194 const u8 * p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr);
2195 
2196 /**
2197  * p2p_group_is_client_connected - Check whether a specific client is connected
2198  * @group: P2P group context from p2p_group_init()
2199  * @addr: P2P Device Address of the client
2200  * Returns: 1 if client is connected or 0 if not
2201  */
2202 int p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr);
2203 
2204 /**
2205  * p2p_group_get_config - Get the group configuration
2206  * @group: P2P group context from p2p_group_init()
2207  * Returns: The group configuration pointer
2208  */
2209 const struct p2p_group_config * p2p_group_get_config(struct p2p_group *group);
2210 
2211 /**
2212  * p2p_loop_on_all_groups - Run the given callback on all groups
2213  * @p2p: P2P module context from p2p_init()
2214  * @group_callback: The callback function pointer
2215  * @user_data: Some user data pointer which can be %NULL
2216  *
2217  * The group_callback function can stop the iteration by returning 0.
2218  */
2219 void p2p_loop_on_all_groups(struct p2p_data *p2p,
2220 			    int (*group_callback)(struct p2p_group *group,
2221 						  void *user_data),
2222 			    void *user_data);
2223 
2224 /**
2225  * p2p_get_peer_found - Get P2P peer info structure of a found peer
2226  * @p2p: P2P module context from p2p_init()
2227  * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
2228  * @next: Whether to select the peer entry following the one indicated by addr
2229  * Returns: The first P2P peer info available or %NULL if no such peer exists
2230  */
2231 const struct p2p_peer_info *
2232 p2p_get_peer_found(struct p2p_data *p2p, const u8 *addr, int next);
2233 
2234 /**
2235  * p2p_remove_wps_vendor_extensions - Remove WPS vendor extensions
2236  * @p2p: P2P module context from p2p_init()
2237  */
2238 void p2p_remove_wps_vendor_extensions(struct p2p_data *p2p);
2239 
2240 /**
2241  * p2p_add_wps_vendor_extension - Add a WPS vendor extension
2242  * @p2p: P2P module context from p2p_init()
2243  * @vendor_ext: The vendor extensions to add
2244  * Returns: 0 on success, -1 on failure
2245  *
2246  * The wpabuf structures in the array are owned by the P2P
2247  * module after this call.
2248  */
2249 int p2p_add_wps_vendor_extension(struct p2p_data *p2p,
2250 				 const struct wpabuf *vendor_ext);
2251 
2252 /**
2253  * p2p_set_oper_channel - Set the P2P operating channel
2254  * @p2p: P2P module context from p2p_init()
2255  * @op_reg_class: Operating regulatory class to set
2256  * @op_channel: operating channel to set
2257  * @cfg_op_channel : Whether op_channel is hardcoded in configuration
2258  * Returns: 0 on success, -1 on failure
2259  */
2260 int p2p_set_oper_channel(struct p2p_data *p2p, u8 op_reg_class, u8 op_channel,
2261 			 int cfg_op_channel);
2262 
2263 /**
2264  * p2p_set_pref_chan - Set P2P preferred channel list
2265  * @p2p: P2P module context from p2p_init()
2266  * @num_pref_chan: Number of entries in pref_chan list
2267  * @pref_chan: Preferred channels or %NULL to remove preferences
2268  * Returns: 0 on success, -1 on failure
2269  */
2270 int p2p_set_pref_chan(struct p2p_data *p2p, unsigned int num_pref_chan,
2271 		      const struct p2p_channel *pref_chan);
2272 
2273 /**
2274  * p2p_set_no_go_freq - Set no GO channel ranges
2275  * @p2p: P2P module context from p2p_init()
2276  * @list: Channel ranges or %NULL to remove restriction
2277  * Returns: 0 on success, -1 on failure
2278  */
2279 int p2p_set_no_go_freq(struct p2p_data *p2p,
2280 		       const struct wpa_freq_range_list *list);
2281 
2282 /**
2283  * p2p_in_progress - Check whether a P2P operation is progress
2284  * @p2p: P2P module context from p2p_init()
2285  * Returns: 0 if P2P module is idle, 1 if an operation is in progress but not
2286  * in search state, or 2 if search state operation is in progress
2287  */
2288 int p2p_in_progress(struct p2p_data *p2p);
2289 
2290 const char * p2p_wps_method_text(enum p2p_wps_method method);
2291 
2292 /**
2293  * p2p_set_config_timeout - Set local config timeouts
2294  * @p2p: P2P module context from p2p_init()
2295  * @go_timeout: Time in 10 ms units it takes to start the GO mode
2296  * @client_timeout: Time in 10 ms units it takes to start the client mode
2297  */
2298 void p2p_set_config_timeout(struct p2p_data *p2p, u8 go_timeout,
2299 			    u8 client_timeout);
2300 
2301 int p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie);
2302 int p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie);
2303 int p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie);
2304 int p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie);
2305 int p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie);
2306 int p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie);
2307 int p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie);
2308 int p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie);
2309 int p2p_set_wfd_dev_info(struct p2p_data *p2p, const struct wpabuf *elem);
2310 int p2p_set_wfd_r2_dev_info(struct p2p_data *p2p, const struct wpabuf *elem);
2311 int p2p_set_wfd_assoc_bssid(struct p2p_data *p2p, const struct wpabuf *elem);
2312 int p2p_set_wfd_coupled_sink_info(struct p2p_data *p2p,
2313 				  const struct wpabuf *elem);
2314 struct wpabuf * wifi_display_encaps(struct wpabuf *subelems);
2315 
2316 #ifdef CONFIG_OPEN_HARMONY_P2P_DEV_NOTIFY
2317 int is_pvt_wfd_elems_valid();
2318 void wfd_add_pvt_elem_hex(char **wfd_dev_info_hex);
2319 #endif
2320 /**
2321  * p2p_set_disc_int - Set min/max discoverable interval for p2p_find
2322  * @p2p: P2P module context from p2p_init()
2323  * @min_disc_int: minDiscoverableInterval (in units of 100 TU); default 1
2324  * @max_disc_int: maxDiscoverableInterval (in units of 100 TU); default 3
2325  * @max_disc_tu: Maximum number of TUs (1.024 ms) for discoverable interval; or
2326  *	-1 not to limit
2327  * Returns: 0 on success, or -1 on failure
2328  *
2329  * This function can be used to configure minDiscoverableInterval and
2330  * maxDiscoverableInterval parameters for the Listen state during device
2331  * discovery (p2p_find). A random number of 100 TU units is picked for each
2332  * Listen state iteration from [min_disc_int,max_disc_int] range.
2333  *
2334  * max_disc_tu can be used to further limit the discoverable duration. However,
2335  * it should be noted that use of this parameter is not recommended since it
2336  * would not be compliant with the P2P specification.
2337  */
2338 int p2p_set_disc_int(struct p2p_data *p2p, int min_disc_int, int max_disc_int,
2339 		     int max_disc_tu);
2340 
2341 /**
2342  * p2p_get_state_txt - Get current P2P state for debug purposes
2343  * @p2p: P2P module context from p2p_init()
2344  * Returns: Name of the current P2P module state
2345  *
2346  * It should be noted that the P2P module state names are internal information
2347  * and subject to change at any point, i.e., this information should be used
2348  * mainly for debugging purposes.
2349  */
2350 const char * p2p_get_state_txt(struct p2p_data *p2p);
2351 
2352 struct wpabuf * p2p_build_nfc_handover_req(struct p2p_data *p2p,
2353 					   int client_freq,
2354 					   const u8 *go_dev_addr,
2355 					   const u8 *ssid, size_t ssid_len);
2356 struct wpabuf * p2p_build_nfc_handover_sel(struct p2p_data *p2p,
2357 					   int client_freq,
2358 					   const u8 *go_dev_addr,
2359 					   const u8 *ssid, size_t ssid_len);
2360 
2361 struct p2p_nfc_params {
2362 	int sel;
2363 	const u8 *wsc_attr;
2364 	size_t wsc_len;
2365 	const u8 *p2p_attr;
2366 	size_t p2p_len;
2367 
2368 	enum {
2369 		NO_ACTION, JOIN_GROUP, AUTH_JOIN, INIT_GO_NEG, RESP_GO_NEG,
2370 		BOTH_GO, PEER_CLIENT
2371 	} next_step;
2372 	struct p2p_peer_info *peer;
2373 	u8 oob_dev_pw[WPS_OOB_PUBKEY_HASH_LEN + 2 +
2374 		      WPS_OOB_DEVICE_PASSWORD_LEN];
2375 	size_t oob_dev_pw_len;
2376 	int go_freq;
2377 	u8 go_dev_addr[ETH_ALEN];
2378 	u8 go_ssid[SSID_MAX_LEN];
2379 	size_t go_ssid_len;
2380 };
2381 
2382 int p2p_process_nfc_connection_handover(struct p2p_data *p2p,
2383 					struct p2p_nfc_params *params);
2384 
2385 void p2p_set_authorized_oob_dev_pw_id(struct p2p_data *p2p, u16 dev_pw_id,
2386 				      int go_intent,
2387 				      const u8 *own_interface_addr);
2388 
2389 int p2p_set_passphrase_len(struct p2p_data *p2p, unsigned int len);
2390 
2391 void p2p_loop_on_known_peers(struct p2p_data *p2p,
2392 			     void (*peer_callback)(struct p2p_peer_info *peer,
2393 						   void *user_data),
2394 			     void *user_data);
2395 
2396 void p2p_set_vendor_elems(struct p2p_data *p2p, struct wpabuf **vendor_elem);
2397 
2398 #ifdef HARMONY_CONNECTIVITY_PATCH
2399 #ifndef OPEN_HARMONY_MIRACAST_SINK_OPT
2400 int p2p_get_persistent_group_need_remove_flag(struct p2p_data *p2p);
2401 void p2p_set_persistent_group_need_remove_flag(struct p2p_data *p2p, int value);
2402 #endif
2403 #endif
2404 
2405 void p2p_set_intended_addr(struct p2p_data *p2p, const u8 *intended_addr);
2406 
2407 struct p2ps_advertisement *
2408 p2p_service_p2ps_id(struct p2p_data *p2p, u32 adv_id);
2409 int p2p_service_add_asp(struct p2p_data *p2p, int auto_accept, u32 adv_id,
2410 			const char *adv_str, u8 svc_state,
2411 			u16 config_methods, const char *svc_info,
2412 			const u8 *cpt_priority);
2413 int p2p_service_del_asp(struct p2p_data *p2p, u32 adv_id);
2414 void p2p_service_flush_asp(struct p2p_data *p2p);
2415 struct p2ps_advertisement * p2p_get_p2ps_adv_list(struct p2p_data *p2p);
2416 
2417 /**
2418  * p2p_expire_peers - Periodic cleanup function to expire peers
2419  * @p2p: P2P module context from p2p_init()
2420  *
2421  * This is a cleanup function that the entity calling p2p_init() is
2422  * expected to call periodically to clean up expired peer entries.
2423  */
2424 void p2p_expire_peers(struct p2p_data *p2p);
2425 
2426 void p2p_set_own_pref_freq_list(struct p2p_data *p2p,
2427 				const unsigned int *pref_freq_list,
2428 				unsigned int size);
2429 void p2p_set_override_pref_op_chan(struct p2p_data *p2p, u8 op_class,
2430 				   u8 chan);
2431 
2432 /**
2433  * p2p_group_get_common_freqs - Get the group common frequencies
2434  * @group: P2P group context from p2p_group_init()
2435  * @common_freqs: On return will hold the group common frequencies
2436  * @num: On return will hold the number of group common frequencies
2437  * Returns: 0 on success, -1 otherwise
2438  */
2439 int p2p_group_get_common_freqs(struct p2p_group *group, int *common_freqs,
2440 			       unsigned int *num);
2441 
2442 struct wpabuf * p2p_build_probe_resp_template(struct p2p_data *p2p,
2443 					      unsigned int freq);
2444 
2445 void p2p_set_6ghz_dev_capab(struct p2p_data *p2p, bool allow_6ghz);
2446 bool is_p2p_6ghz_capable(struct p2p_data *p2p);
2447 bool p2p_is_peer_6ghz_capab(struct p2p_data *p2p, const u8 *addr);
2448 bool p2p_peer_wfd_enabled(struct p2p_data *p2p, const u8 *peer_addr);
2449 bool p2p_wfd_enabled(struct p2p_data *p2p);
2450 bool is_p2p_allow_6ghz(struct p2p_data *p2p);
2451 void set_p2p_allow_6ghz(struct p2p_data *p2p, bool value);
2452 int p2p_remove_6ghz_channels(unsigned int *pref_freq_list, int size);
2453 
2454 #if defined(CONFIG_OPEN_HARMONY_PATCH) && defined(OPEN_HARMONY_MIRACAST_SINK_OPT)
2455 void p2p_ext_listen_timeout(void *eloop_ctx, void *timeout_ctx);
2456 #endif
2457 
2458 #endif /* P2P_H */
2459