]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/p2p/p2p.h
P2P: Remove persistent group peer if it rejects invitation
[thirdparty/hostap.git] / src / p2p / p2p.h
CommitLineData
b22128ef
JM
1/*
2 * Wi-Fi Direct - P2P module
3 * Copyright (c) 2009-2010, Atheros Communications
4 *
e22d4d95
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
b22128ef
JM
7 */
8
9#ifndef P2P_H
10#define P2P_H
11
12/**
13 * P2P_MAX_REG_CLASSES - Maximum number of regulatory classes
14 */
15#define P2P_MAX_REG_CLASSES 10
16
17/**
18 * P2P_MAX_REG_CLASS_CHANNELS - Maximum number of channels per regulatory class
19 */
20#define P2P_MAX_REG_CLASS_CHANNELS 20
21
22/**
23 * struct p2p_channels - List of supported channels
24 */
25struct p2p_channels {
26 /**
27 * struct p2p_reg_class - Supported regulatory class
28 */
29 struct p2p_reg_class {
30 /**
31 * reg_class - Regulatory class (IEEE 802.11-2007, Annex J)
32 */
33 u8 reg_class;
34
35 /**
36 * channel - Supported channels
37 */
38 u8 channel[P2P_MAX_REG_CLASS_CHANNELS];
39
40 /**
41 * channels - Number of channel entries in use
42 */
43 size_t channels;
44 } reg_class[P2P_MAX_REG_CLASSES];
45
46 /**
47 * reg_classes - Number of reg_class entries in use
48 */
49 size_t reg_classes;
50};
51
52enum p2p_wps_method {
07fecd39 53 WPS_NOT_READY, WPS_PIN_DISPLAY, WPS_PIN_KEYPAD, WPS_PBC
b22128ef
JM
54};
55
56/**
57 * struct p2p_go_neg_results - P2P Group Owner Negotiation results
58 */
59struct p2p_go_neg_results {
60 /**
61 * status - Negotiation result (Status Code)
62 *
63 * 0 (P2P_SC_SUCCESS) indicates success. Non-zero values indicate
64 * failed negotiation.
65 */
66 int status;
67
68 /**
69 * role_go - Whether local end is Group Owner
70 */
71 int role_go;
72
73 /**
74 * freq - Frequency of the group operational channel in MHz
75 */
76 int freq;
77
7aeac985
RM
78 int ht40;
79
b22128ef
JM
80 /**
81 * ssid - SSID of the group
82 */
83 u8 ssid[32];
84
85 /**
86 * ssid_len - Length of SSID in octets
87 */
88 size_t ssid_len;
89
30c371e8
MH
90 /**
91 * psk - WPA pre-shared key (256 bits) (GO only)
92 */
93 u8 psk[32];
94
95 /**
96 * psk_set - Whether PSK field is configured (GO only)
97 */
98 int psk_set;
99
b22128ef
JM
100 /**
101 * passphrase - WPA2-Personal passphrase for the group (GO only)
102 */
103 char passphrase[64];
104
105 /**
106 * peer_device_addr - P2P Device Address of the peer
107 */
108 u8 peer_device_addr[ETH_ALEN];
109
110 /**
111 * peer_interface_addr - P2P Interface Address of the peer
112 */
113 u8 peer_interface_addr[ETH_ALEN];
114
115 /**
116 * wps_method - WPS method to be used during provisioning
117 */
118 enum p2p_wps_method wps_method;
119
120#define P2P_MAX_CHANNELS 50
121
122 /**
123 * freq_list - Zero-terminated list of possible operational channels
124 */
125 int freq_list[P2P_MAX_CHANNELS];
126
127 /**
128 * persistent_group - Whether the group should be made persistent
acc247b2
JM
129 * 0 = not persistent
130 * 1 = persistent group without persistent reconnect
131 * 2 = persistent group with persistent reconnect
b22128ef
JM
132 */
133 int persistent_group;
ae3e3421
JM
134
135 /**
136 * peer_config_timeout - Peer configuration timeout (in 10 msec units)
137 */
138 unsigned int peer_config_timeout;
b22128ef
JM
139};
140
141struct p2p_data;
142
143enum p2p_scan_type {
144 P2P_SCAN_SOCIAL,
145 P2P_SCAN_FULL,
b22128ef
JM
146 P2P_SCAN_SOCIAL_PLUS_ONE
147};
148
10c5d2a5
JM
149#define P2P_MAX_WPS_VENDOR_EXT 10
150
c5db8e51
KRK
151/**
152 * struct p2p_peer_info - P2P peer information
c5db8e51
KRK
153 */
154struct p2p_peer_info {
155 /**
156 * p2p_device_addr - P2P Device Address of the peer
157 */
158 u8 p2p_device_addr[ETH_ALEN];
159
160 /**
161 * pri_dev_type - Primary Device Type
162 */
163 u8 pri_dev_type[8];
164
165 /**
b67d0d9e 166 * device_name - Device Name (0..32 octets encoded in UTF-8)
c5db8e51
KRK
167 */
168 char device_name[33];
169
b67d0d9e
JM
170 /**
171 * manufacturer - Manufacturer (0..64 octets encoded in UTF-8)
172 */
173 char manufacturer[65];
174
175 /**
176 * model_name - Model Name (0..32 octets encoded in UTF-8)
177 */
178 char model_name[33];
179
180 /**
181 * model_number - Model Number (0..32 octets encoded in UTF-8)
182 */
183 char model_number[33];
184
185 /**
186 * serial_number - Serial Number (0..32 octets encoded in UTF-8)
187 */
188 char serial_number[33];
189
6402fc43
JS
190 /**
191 * level - Signal level
192 */
193 int level;
194
c5db8e51
KRK
195 /**
196 * config_methods - WPS Configuration Methods
197 */
198 u16 config_methods;
199
200 /**
201 * dev_capab - Device Capabilities
202 */
203 u8 dev_capab;
204
205 /**
206 * group_capab - Group Capabilities
207 */
208 u8 group_capab;
e57ae6e1
JMB
209
210 /**
211 * wps_sec_dev_type_list - WPS secondary device type list
212 *
213 * This list includes from 0 to 16 Secondary Device Types as indicated
214 * by wps_sec_dev_type_list_len (8 * number of types).
215 */
216 u8 wps_sec_dev_type_list[128];
217
218 /**
219 * wps_sec_dev_type_list_len - Length of secondary device type list
220 */
221 size_t wps_sec_dev_type_list_len;
222
10c5d2a5 223 struct wpabuf *wps_vendor_ext[P2P_MAX_WPS_VENDOR_EXT];
9675ce35
JM
224
225 /**
226 * wfd_subelems - Wi-Fi Display subelements from WFD IE(s)
227 */
228 struct wpabuf *wfd_subelems;
c5db8e51
KRK
229};
230
349b213c
JS
231enum p2p_prov_disc_status {
232 P2P_PROV_DISC_SUCCESS,
233 P2P_PROV_DISC_TIMEOUT,
234 P2P_PROV_DISC_REJECTED,
175171ac 235 P2P_PROV_DISC_TIMEOUT_JOIN,
349b213c
JS
236};
237
21d996f7
JM
238struct p2p_channel {
239 u8 op_class;
240 u8 chan;
241};
242
b22128ef
JM
243/**
244 * struct p2p_config - P2P configuration
245 *
246 * This configuration is provided to the P2P module during initialization with
247 * p2p_init().
248 */
249struct p2p_config {
250 /**
251 * country - Country code to use in P2P operations
252 */
253 char country[3];
254
255 /**
256 * reg_class - Regulatory class for own listen channel
257 */
258 u8 reg_class;
259
260 /**
261 * channel - Own listen channel
262 */
263 u8 channel;
264
265 /**
266 * Regulatory class for own operational channel
267 */
268 u8 op_reg_class;
269
270 /**
271 * op_channel - Own operational channel
272 */
273 u8 op_channel;
274
7cfc4ac3
AGS
275 /**
276 * cfg_op_channel - Whether op_channel is hardcoded in configuration
277 */
278 u8 cfg_op_channel;
279
b22128ef
JM
280 /**
281 * channels - Own supported regulatory classes and channels
282 *
283 * List of supposerted channels per regulatory class. The regulatory
284 * classes are defined in IEEE Std 802.11-2007 Annex J and the
285 * numbering of the clases depends on the configured country code.
286 */
287 struct p2p_channels channels;
288
21d996f7
JM
289 /**
290 * num_pref_chan - Number of pref_chan entries
291 */
292 unsigned int num_pref_chan;
293
294 /**
295 * pref_chan - Preferred channels for GO Negotiation
296 */
297 struct p2p_channel *pref_chan;
298
b22128ef
JM
299 /**
300 * pri_dev_type - Primary Device Type (see WPS)
301 */
302 u8 pri_dev_type[8];
303
304 /**
305 * P2P_SEC_DEVICE_TYPES - Maximum number of secondary device types
306 */
307#define P2P_SEC_DEVICE_TYPES 5
308
309 /**
310 * sec_dev_type - Optional secondary device types
311 */
312 u8 sec_dev_type[P2P_SEC_DEVICE_TYPES][8];
313
b6e01800
JM
314 /**
315 * num_sec_dev_types - Number of sec_dev_type entries
316 */
317 size_t num_sec_dev_types;
318
b22128ef
JM
319 /**
320 * dev_addr - P2P Device Address
321 */
322 u8 dev_addr[ETH_ALEN];
323
324 /**
325 * dev_name - Device Name
326 */
327 char *dev_name;
328
b6e01800
JM
329 char *manufacturer;
330 char *model_name;
331 char *model_number;
332 char *serial_number;
333
334 u8 uuid[16];
335 u16 config_methods;
b22128ef
JM
336
337 /**
338 * concurrent_operations - Whether concurrent operations are supported
339 */
340 int concurrent_operations;
341
342 /**
343 * max_peers - Maximum number of discovered peers to remember
344 *
345 * If more peers are discovered, older entries will be removed to make
346 * room for the new ones.
347 */
348 size_t max_peers;
349
0f66abd2
SS
350 /**
351 * p2p_intra_bss - Intra BSS communication is supported
352 */
353 int p2p_intra_bss;
354
b22128ef
JM
355 /**
356 * ssid_postfix - Postfix data to add to the SSID
357 *
358 * This data will be added to the end of the SSID after the
359 * DIRECT-<random two octets> prefix.
360 */
361 u8 ssid_postfix[32 - 9];
362
363 /**
364 * ssid_postfix_len - Length of the ssid_postfix data
365 */
366 size_t ssid_postfix_len;
367
96beff11
JM
368 /**
369 * max_listen - Maximum listen duration in ms
370 */
371 unsigned int max_listen;
372
b22128ef
JM
373 /**
374 * msg_ctx - Context to use with wpa_msg() calls
375 */
376 void *msg_ctx;
377
378 /**
379 * cb_ctx - Context to use with callback functions
380 */
381 void *cb_ctx;
382
383
384 /* Callbacks to request lower layer driver operations */
385
386 /**
387 * p2p_scan - Request a P2P scan/search
388 * @ctx: Callback context from cb_ctx
389 * @type: Scan type
390 * @freq: Specific frequency (MHz) to scan or 0 for no restriction
046ef4aa
JMB
391 * @num_req_dev_types: Number of requested device types
392 * @req_dev_types: Array containing requested device types
6d92fa6e 393 * @dev_id: Device ID to search for or %NULL to find all devices
360182ed 394 * @pw_id: Device Password ID
b22128ef
JM
395 * Returns: 0 on success, -1 on failure
396 *
397 * This callback function is used to request a P2P scan or search
398 * operation to be completed. Type type argument specifies which type
399 * of scan is to be done. @P2P_SCAN_SOCIAL indicates that only the
400 * social channels (1, 6, 11) should be scanned. @P2P_SCAN_FULL
3df2f4fe 401 * indicates that all channels are to be scanned.
b22128ef
JM
402 * @P2P_SCAN_SOCIAL_PLUS_ONE request scan of all the social channels
403 * plus one extra channel specified by freq.
404 *
405 * The full scan is used for the initial scan to find group owners from
406 * all. The other types are used during search phase scan of the social
407 * channels (with potential variation if the Listen channel of the
408 * target peer is known or if other channels are scanned in steps).
409 *
410 * The scan results are returned after this call by calling
411 * p2p_scan_res_handler() for each scan result that has a P2P IE and
412 * then calling p2p_scan_res_handled() to indicate that all scan
413 * results have been indicated.
414 */
046ef4aa
JMB
415 int (*p2p_scan)(void *ctx, enum p2p_scan_type type, int freq,
416 unsigned int num_req_dev_types,
360182ed 417 const u8 *req_dev_types, const u8 *dev_id, u16 pw_id);
b22128ef
JM
418
419 /**
420 * send_probe_resp - Transmit a Probe Response frame
421 * @ctx: Callback context from cb_ctx
422 * @buf: Probe Response frame (including the header and body)
423 * Returns: 0 on success, -1 on failure
424 *
425 * This function is used to reply to Probe Request frames that were
426 * indicated with a call to p2p_probe_req_rx(). The response is to be
427 * sent on the same channel or to be dropped if the driver is not
428 * anymore listening to Probe Request frames.
429 *
430 * Alternatively, the responsibility for building the Probe Response
431 * frames in Listen state may be in another system component in which
432 * case this function need to be implemented (i.e., the function
433 * pointer can be %NULL). The WPS and P2P IEs to be added for Probe
434 * Response frames in such a case are available from the
435 * start_listen() callback. It should be noted that the received Probe
436 * Request frames must be indicated by calling p2p_probe_req_rx() even
437 * if this send_probe_resp() is not used.
438 */
439 int (*send_probe_resp)(void *ctx, const struct wpabuf *buf);
440
441 /**
442 * send_action - Transmit an Action frame
443 * @ctx: Callback context from cb_ctx
444 * @freq: Frequency in MHz for the channel on which to transmit
445 * @dst: Destination MAC address (Address 1)
446 * @src: Source MAC address (Address 2)
447 * @bssid: BSSID (Address 3)
448 * @buf: Frame body (starting from Category field)
449 * @len: Length of buf in octets
450 * @wait_time: How many msec to wait for a response frame
451 * Returns: 0 on success, -1 on failure
452 *
453 * The Action frame may not be transmitted immediately and the status
454 * of the transmission must be reported by calling
455 * p2p_send_action_cb() once the frame has either been transmitted or
456 * it has been dropped due to excessive retries or other failure to
457 * transmit.
458 */
459 int (*send_action)(void *ctx, unsigned int freq, const u8 *dst,
460 const u8 *src, const u8 *bssid, const u8 *buf,
461 size_t len, unsigned int wait_time);
462
463 /**
464 * send_action_done - Notify that Action frame sequence was completed
465 * @ctx: Callback context from cb_ctx
466 *
467 * This function is called when the Action frame sequence that was
468 * started with send_action() has been completed, i.e., when there is
469 * no need to wait for a response from the destination peer anymore.
470 */
471 void (*send_action_done)(void *ctx);
472
473 /**
474 * start_listen - Start Listen state
475 * @ctx: Callback context from cb_ctx
476 * @freq: Frequency of the listen channel in MHz
477 * @duration: Duration for the Listen state in milliseconds
478 * @probe_resp_ie: IE(s) to be added to Probe Response frames
479 * Returns: 0 on success, -1 on failure
480 *
481 * This Listen state may not start immediately since the driver may
482 * have other pending operations to complete first. Once the Listen
483 * state has started, p2p_listen_cb() must be called to notify the P2P
484 * module. Once the Listen state is stopped, p2p_listen_end() must be
485 * called to notify the P2P module that the driver is not in the Listen
486 * state anymore.
487 *
488 * If the send_probe_resp() is not used for generating the response,
489 * the IEs from probe_resp_ie need to be added to the end of the Probe
490 * Response frame body. If send_probe_resp() is used, the probe_resp_ie
491 * information can be ignored.
492 */
493 int (*start_listen)(void *ctx, unsigned int freq,
494 unsigned int duration,
495 const struct wpabuf *probe_resp_ie);
496 /**
497 * stop_listen - Stop Listen state
498 * @ctx: Callback context from cb_ctx
499 *
500 * This callback can be used to stop a Listen state operation that was
501 * previously requested with start_listen().
502 */
503 void (*stop_listen)(void *ctx);
504
505 /**
506 * get_noa - Get current Notice of Absence attribute payload
507 * @ctx: Callback context from cb_ctx
508 * @interface_addr: P2P Interface Address of the GO
509 * @buf: Buffer for returning NoA
510 * @buf_len: Buffer length in octets
511 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
512 * advertized, or -1 on failure
513 *
514 * This function is used to fetch the current Notice of Absence
515 * attribute value from GO.
516 */
517 int (*get_noa)(void *ctx, const u8 *interface_addr, u8 *buf,
518 size_t buf_len);
519
520 /* Callbacks to notify events to upper layer management entity */
521
522 /**
523 * dev_found - Notification of a found P2P Device
524 * @ctx: Callback context from cb_ctx
525 * @addr: Source address of the message triggering this notification
c5db8e51 526 * @info: P2P peer information
8fd7dc1b 527 * @new_device: Inform if the peer is newly found
b22128ef
JM
528 *
529 * This callback is used to notify that a new P2P Device has been
530 * found. This may happen, e.g., during Search state based on scan
531 * results or during Listen state based on receive Probe Request and
532 * Group Owner Negotiation Request.
533 */
c5db8e51 534 void (*dev_found)(void *ctx, const u8 *addr,
8fd7dc1b
JB
535 const struct p2p_peer_info *info,
536 int new_device);
b22128ef 537
56eeb8f2
JB
538 /**
539 * dev_lost - Notification of a lost P2P Device
540 * @ctx: Callback context from cb_ctx
541 * @dev_addr: P2P Device Address of the lost P2P Device
542 *
543 * This callback is used to notify that a P2P Device has been deleted.
544 */
545 void (*dev_lost)(void *ctx, const u8 *dev_addr);
546
b22128ef
JM
547 /**
548 * go_neg_req_rx - Notification of a receive GO Negotiation Request
549 * @ctx: Callback context from cb_ctx
550 * @src: Source address of the message triggering this notification
3dfda83d 551 * @dev_passwd_id: WPS Device Password ID
b22128ef
JM
552 *
553 * This callback is used to notify that a P2P Device is requesting
554 * group owner negotiation with us, but we do not have all the
555 * necessary information to start GO Negotiation. This indicates that
556 * the local user has not authorized the connection yet by providing a
557 * PIN or PBC button press. This information can be provided with a
558 * call to p2p_connect().
559 */
3dfda83d 560 void (*go_neg_req_rx)(void *ctx, const u8 *src, u16 dev_passwd_id);
b22128ef
JM
561
562 /**
563 * go_neg_completed - Notification of GO Negotiation results
564 * @ctx: Callback context from cb_ctx
565 * @res: GO Negotiation results
566 *
567 * This callback is used to notify that Group Owner Negotiation has
568 * been completed. Non-zero struct p2p_go_neg_results::status indicates
569 * failed negotiation. In case of success, this function is responsible
570 * for creating a new group interface (or using the existing interface
571 * depending on driver features), setting up the group interface in
572 * proper mode based on struct p2p_go_neg_results::role_go and
573 * initializing WPS provisioning either as a Registrar (if GO) or as an
574 * Enrollee. Successful WPS provisioning must be indicated by calling
575 * p2p_wps_success_cb(). The callee is responsible for timing out group
576 * formation if WPS provisioning cannot be completed successfully
577 * within 15 seconds.
578 */
579 void (*go_neg_completed)(void *ctx, struct p2p_go_neg_results *res);
580
581 /**
582 * sd_request - Callback on Service Discovery Request
583 * @ctx: Callback context from cb_ctx
584 * @freq: Frequency (in MHz) of the channel
585 * @sa: Source address of the request
586 * @dialog_token: Dialog token
587 * @update_indic: Service Update Indicator from the source of request
588 * @tlvs: P2P Service Request TLV(s)
589 * @tlvs_len: Length of tlvs buffer in octets
590 *
591 * This callback is used to indicate reception of a service discovery
592 * request. Response to the query must be indicated by calling
593 * p2p_sd_response() with the context information from the arguments to
594 * this callback function.
595 *
596 * This callback handler can be set to %NULL to indicate that service
597 * discovery is not supported.
598 */
599 void (*sd_request)(void *ctx, int freq, const u8 *sa, u8 dialog_token,
600 u16 update_indic, const u8 *tlvs, size_t tlvs_len);
601
602 /**
603 * sd_response - Callback on Service Discovery Response
604 * @ctx: Callback context from cb_ctx
605 * @sa: Source address of the request
606 * @update_indic: Service Update Indicator from the source of response
607 * @tlvs: P2P Service Response TLV(s)
608 * @tlvs_len: Length of tlvs buffer in octets
609 *
610 * This callback is used to indicate reception of a service discovery
611 * response. This callback handler can be set to %NULL if no service
612 * discovery requests are used. The information provided with this call
613 * is replies to the queries scheduled with p2p_sd_request().
614 */
615 void (*sd_response)(void *ctx, const u8 *sa, u16 update_indic,
616 const u8 *tlvs, size_t tlvs_len);
617
618 /**
619 * prov_disc_req - Callback on Provisiong Discovery Request
620 * @ctx: Callback context from cb_ctx
621 * @peer: Source address of the request
622 * @config_methods: Requested WPS Config Method
623 * @dev_addr: P2P Device Address of the found P2P Device
624 * @pri_dev_type: Primary Device Type
625 * @dev_name: Device Name
626 * @supp_config_methods: Supported configuration Methods
627 * @dev_capab: Device Capabilities
628 * @group_capab: Group Capabilities
c3f42784
JM
629 * @group_id: P2P Group ID (or %NULL if not included)
630 * @group_id_len: Length of P2P Group ID
b22128ef
JM
631 *
632 * This callback is used to indicate reception of a Provision Discovery
633 * Request frame that the P2P module accepted.
634 */
635 void (*prov_disc_req)(void *ctx, const u8 *peer, u16 config_methods,
636 const u8 *dev_addr, const u8 *pri_dev_type,
637 const char *dev_name, u16 supp_config_methods,
c3f42784
JM
638 u8 dev_capab, u8 group_capab,
639 const u8 *group_id, size_t group_id_len);
b22128ef
JM
640
641 /**
642 * prov_disc_resp - Callback on Provisiong Discovery Response
643 * @ctx: Callback context from cb_ctx
644 * @peer: Source address of the response
645 * @config_methods: Value from p2p_prov_disc_req() or 0 on failure
646 *
647 * This callback is used to indicate reception of a Provision Discovery
648 * Response frame for a pending request scheduled with
649 * p2p_prov_disc_req(). This callback handler can be set to %NULL if
650 * provision discovery is not used.
651 */
652 void (*prov_disc_resp)(void *ctx, const u8 *peer, u16 config_methods);
653
349b213c
JS
654 /**
655 * prov_disc_fail - Callback on Provision Discovery failure
656 * @ctx: Callback context from cb_ctx
657 * @peer: Source address of the response
658 * @status: Cause of failure, will not be %P2P_PROV_DISC_SUCCESS
659 *
660 * This callback is used to indicate either a failure or no response
661 * to an earlier provision discovery request.
662 *
663 * This callback handler can be set to %NULL if provision discovery
664 * is not used or failures do not need to be indicated.
665 */
666 void (*prov_disc_fail)(void *ctx, const u8 *peer,
667 enum p2p_prov_disc_status status);
668
b22128ef
JM
669 /**
670 * invitation_process - Optional callback for processing Invitations
671 * @ctx: Callback context from cb_ctx
672 * @sa: Source address of the Invitation Request
673 * @bssid: P2P Group BSSID from the request or %NULL if not included
674 * @go_dev_addr: GO Device Address from P2P Group ID
675 * @ssid: SSID from P2P Group ID
676 * @ssid_len: Length of ssid buffer in octets
677 * @go: Variable for returning whether the local end is GO in the group
678 * @group_bssid: Buffer for returning P2P Group BSSID (if local end GO)
679 * @force_freq: Variable for returning forced frequency for the group
680 * @persistent_group: Whether this is an invitation to reinvoke a
681 * persistent group (instead of invitation to join an active
682 * group)
683 * Returns: Status code (P2P_SC_*)
684 *
685 * This optional callback can be used to implement persistent reconnect
686 * by allowing automatic restarting of persistent groups without user
687 * interaction. If this callback is not implemented (i.e., is %NULL),
688 * the received Invitation Request frames are replied with
689 * %P2P_SC_REQ_RECEIVED status and indicated to upper layer with the
690 * invitation_result() callback.
691 *
692 * If the requested parameters are acceptable and the group is known,
693 * %P2P_SC_SUCCESS may be returned. If the requested group is unknown,
694 * %P2P_SC_FAIL_UNKNOWN_GROUP should be returned. %P2P_SC_REQ_RECEIVED
695 * can be returned if there is not enough data to provide immediate
696 * response, i.e., if some sort of user interaction is needed. The
697 * invitation_received() callback will be called in that case
698 * immediately after this call.
699 */
700 u8 (*invitation_process)(void *ctx, const u8 *sa, const u8 *bssid,
701 const u8 *go_dev_addr, const u8 *ssid,
702 size_t ssid_len, int *go, u8 *group_bssid,
703 int *force_freq, int persistent_group);
704
705 /**
706 * invitation_received - Callback on Invitation Request RX
707 * @ctx: Callback context from cb_ctx
708 * @sa: Source address of the Invitation Request
709 * @bssid: P2P Group BSSID or %NULL if not received
710 * @ssid: SSID of the group
711 * @ssid_len: Length of ssid in octets
712 * @go_dev_addr: GO Device Address
713 * @status: Response Status
714 * @op_freq: Operational frequency for the group
715 *
716 * This callback is used to indicate sending of an Invitation Response
717 * for a received Invitation Request. If status == 0 (success), the
718 * upper layer code is responsible for starting the group. status == 1
719 * indicates need to get user authorization for the group. Other status
720 * values indicate that the invitation request was rejected.
721 */
722 void (*invitation_received)(void *ctx, const u8 *sa, const u8 *bssid,
723 const u8 *ssid, size_t ssid_len,
724 const u8 *go_dev_addr, u8 status,
725 int op_freq);
726
727 /**
728 * invitation_result - Callback on Invitation result
729 * @ctx: Callback context from cb_ctx
730 * @status: Negotiation result (Status Code)
731 * @bssid: P2P Group BSSID or %NULL if not received
54733624 732 * @channels: Available operating channels for the group
dbca75f8 733 * @addr: Peer address
b22128ef
JM
734 *
735 * This callback is used to indicate result of an Invitation procedure
736 * started with a call to p2p_invite(). The indicated status code is
737 * the value received from the peer in Invitation Response with 0
738 * (P2P_SC_SUCCESS) indicating success or -1 to indicate a timeout or a
739 * local failure in transmitting the Invitation Request.
740 */
54733624 741 void (*invitation_result)(void *ctx, int status, const u8 *bssid,
dbca75f8
JM
742 const struct p2p_channels *channels,
743 const u8 *addr);
b1aebbc4
JM
744
745 /**
746 * go_connected - Check whether we are connected to a GO
747 * @ctx: Callback context from cb_ctx
748 * @dev_addr: P2P Device Address of a GO
749 * Returns: 1 if we are connected as a P2P client to the specified GO
750 * or 0 if not.
751 */
752 int (*go_connected)(void *ctx, const u8 *dev_addr);
b22128ef
JM
753};
754
755
756/* P2P module initialization/deinitialization */
757
758/**
759 * p2p_init - Initialize P2P module
760 * @cfg: P2P module configuration
761 * Returns: Pointer to private data or %NULL on failure
762 *
763 * This function is used to initialize global P2P module context (one per
764 * device). The P2P module will keep a copy of the configuration data, so the
765 * caller does not need to maintain this structure. However, the callback
766 * functions and the context parameters to them must be kept available until
767 * the P2P module is deinitialized with p2p_deinit().
768 */
769struct p2p_data * p2p_init(const struct p2p_config *cfg);
770
771/**
772 * p2p_deinit - Deinitialize P2P module
773 * @p2p: P2P module context from p2p_init()
774 */
775void p2p_deinit(struct p2p_data *p2p);
776
777/**
778 * p2p_flush - Flush P2P module state
779 * @p2p: P2P module context from p2p_init()
780 *
781 * This command removes the P2P module state like peer device entries.
782 */
783void p2p_flush(struct p2p_data *p2p);
784
9d562b79
SS
785/**
786 * p2p_unauthorize - Unauthorize the specified peer device
787 * @p2p: P2P module context from p2p_init()
788 * @addr: P2P peer entry to be unauthorized
789 * Returns: 0 on success, -1 on failure
790 *
791 * This command removes any connection authorization from the specified P2P
792 * peer device address. This can be used, e.g., to cancel effect of a previous
793 * p2p_authorize() or p2p_connect() call that has not yet resulted in completed
794 * GO Negotiation.
795 */
796int p2p_unauthorize(struct p2p_data *p2p, const u8 *addr);
797
b22128ef
JM
798/**
799 * p2p_set_dev_name - Set device name
800 * @p2p: P2P module context from p2p_init()
801 * Returns: 0 on success, -1 on failure
802 *
803 * This function can be used to update the P2P module configuration with
804 * information that was not available at the time of the p2p_init() call.
805 */
806int p2p_set_dev_name(struct p2p_data *p2p, const char *dev_name);
807
b6e01800
JM
808int p2p_set_manufacturer(struct p2p_data *p2p, const char *manufacturer);
809int p2p_set_model_name(struct p2p_data *p2p, const char *model_name);
810int p2p_set_model_number(struct p2p_data *p2p, const char *model_number);
811int p2p_set_serial_number(struct p2p_data *p2p, const char *serial_number);
812
813void p2p_set_config_methods(struct p2p_data *p2p, u16 config_methods);
814void p2p_set_uuid(struct p2p_data *p2p, const u8 *uuid);
815
b22128ef
JM
816/**
817 * p2p_set_pri_dev_type - Set primary device type
818 * @p2p: P2P module context from p2p_init()
819 * Returns: 0 on success, -1 on failure
820 *
821 * This function can be used to update the P2P module configuration with
822 * information that was not available at the time of the p2p_init() call.
823 */
824int p2p_set_pri_dev_type(struct p2p_data *p2p, const u8 *pri_dev_type);
825
826/**
827 * p2p_set_sec_dev_types - Set secondary device types
828 * @p2p: P2P module context from p2p_init()
829 * Returns: 0 on success, -1 on failure
830 *
831 * This function can be used to update the P2P module configuration with
832 * information that was not available at the time of the p2p_init() call.
833 */
834int p2p_set_sec_dev_types(struct p2p_data *p2p, const u8 dev_types[][8],
835 size_t num_dev_types);
836
837int p2p_set_country(struct p2p_data *p2p, const char *country);
838
839
840/* Commands from upper layer management entity */
841
842enum p2p_discovery_type {
843 P2P_FIND_START_WITH_FULL,
844 P2P_FIND_ONLY_SOCIAL,
845 P2P_FIND_PROGRESSIVE
846};
847
848/**
849 * p2p_find - Start P2P Find (Device Discovery)
850 * @p2p: P2P module context from p2p_init()
851 * @timeout: Timeout for find operation in seconds or 0 for no timeout
852 * @type: Device Discovery type
046ef4aa
JMB
853 * @num_req_dev_types: Number of requested device types
854 * @req_dev_types: Requested device types array, must be an array
855 * containing num_req_dev_types * WPS_DEV_TYPE_LEN bytes; %NULL if no
856 * requested device types.
6d92fa6e 857 * @dev_id: Device ID to search for or %NULL to find all devices
37448ede 858 * @search_delay: Extra delay in milliseconds between search iterations
b22128ef
JM
859 * Returns: 0 on success, -1 on failure
860 */
861int p2p_find(struct p2p_data *p2p, unsigned int timeout,
046ef4aa 862 enum p2p_discovery_type type,
6d92fa6e 863 unsigned int num_req_dev_types, const u8 *req_dev_types,
37448ede 864 const u8 *dev_id, unsigned int search_delay);
b22128ef
JM
865
866/**
867 * p2p_stop_find - Stop P2P Find (Device Discovery)
868 * @p2p: P2P module context from p2p_init()
869 */
870void p2p_stop_find(struct p2p_data *p2p);
871
0b8889d8
JM
872/**
873 * p2p_stop_find_for_freq - Stop P2P Find for next oper on specific freq
874 * @p2p: P2P module context from p2p_init()
875 * @freq: Frequency in MHz for next operation
876 *
877 * This is like p2p_stop_find(), but Listen state is not stopped if we are
878 * already on the same frequency.
879 */
880void p2p_stop_find_for_freq(struct p2p_data *p2p, int freq);
881
b22128ef
JM
882/**
883 * p2p_listen - Start P2P Listen state for specified duration
884 * @p2p: P2P module context from p2p_init()
885 * @timeout: Listen state duration in milliseconds
886 * Returns: 0 on success, -1 on failure
887 *
888 * This function can be used to request the P2P module to keep the device
889 * discoverable on the listen channel for an extended set of time. At least in
890 * its current form, this is mainly used for testing purposes and may not be of
891 * much use for normal P2P operations.
892 */
893int p2p_listen(struct p2p_data *p2p, unsigned int timeout);
894
895/**
896 * p2p_connect - Start P2P group formation (GO negotiation)
897 * @p2p: P2P module context from p2p_init()
898 * @peer_addr: MAC address of the peer P2P client
899 * @wps_method: WPS method to be used in provisioning
900 * @go_intent: Local GO intent value (1..15)
901 * @own_interface_addr: Intended interface address to use with the group
902 * @force_freq: The only allowed channel frequency in MHz or 0
acc247b2
JM
903 * @persistent_group: Whether to create a persistent group (0 = no, 1 =
904 * persistent group without persistent reconnect, 2 = persistent group with
905 * persistent reconnect)
23c84252
JM
906 * @force_ssid: Forced SSID for the group if we become GO or %NULL to generate
907 * a new SSID
908 * @force_ssid_len: Length of $force_ssid buffer
3bc462cb
JM
909 * @pd_before_go_neg: Whether to send Provision Discovery prior to GO
910 * Negotiation as an interoperability workaround when initiating group
911 * formation
04a3e69d
JM
912 * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
913 * force_freq == 0)
b22128ef
JM
914 * Returns: 0 on success, -1 on failure
915 */
916int p2p_connect(struct p2p_data *p2p, const u8 *peer_addr,
917 enum p2p_wps_method wps_method,
918 int go_intent, const u8 *own_interface_addr,
23c84252 919 unsigned int force_freq, int persistent_group,
3bc462cb 920 const u8 *force_ssid, size_t force_ssid_len,
04a3e69d 921 int pd_before_go_neg, unsigned int pref_freq);
b22128ef
JM
922
923/**
924 * p2p_authorize - Authorize P2P group formation (GO negotiation)
925 * @p2p: P2P module context from p2p_init()
926 * @peer_addr: MAC address of the peer P2P client
927 * @wps_method: WPS method to be used in provisioning
928 * @go_intent: Local GO intent value (1..15)
929 * @own_interface_addr: Intended interface address to use with the group
930 * @force_freq: The only allowed channel frequency in MHz or 0
acc247b2
JM
931 * @persistent_group: Whether to create a persistent group (0 = no, 1 =
932 * persistent group without persistent reconnect, 2 = persistent group with
933 * persistent reconnect)
23c84252
JM
934 * @force_ssid: Forced SSID for the group if we become GO or %NULL to generate
935 * a new SSID
936 * @force_ssid_len: Length of $force_ssid buffer
04a3e69d
JM
937 * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
938 * force_freq == 0)
b22128ef
JM
939 * Returns: 0 on success, -1 on failure
940 *
941 * This is like p2p_connect(), but the actual group negotiation is not
942 * initiated automatically, i.e., the other end is expected to do that.
943 */
944int p2p_authorize(struct p2p_data *p2p, const u8 *peer_addr,
945 enum p2p_wps_method wps_method,
946 int go_intent, const u8 *own_interface_addr,
23c84252 947 unsigned int force_freq, int persistent_group,
04a3e69d
JM
948 const u8 *force_ssid, size_t force_ssid_len,
949 unsigned int pref_freq);
b22128ef
JM
950
951/**
952 * p2p_reject - Reject peer device (explicitly block connection attempts)
953 * @p2p: P2P module context from p2p_init()
954 * @peer_addr: MAC address of the peer P2P client
955 * Returns: 0 on success, -1 on failure
956 */
957int p2p_reject(struct p2p_data *p2p, const u8 *peer_addr);
958
959/**
960 * p2p_prov_disc_req - Send Provision Discovery Request
961 * @p2p: P2P module context from p2p_init()
962 * @peer_addr: MAC address of the peer P2P client
963 * @config_methods: WPS Config Methods value (only one bit set)
964 * @join: Whether this is used by a client joining an active group
1ef2f7ff 965 * @force_freq: Forced TX frequency for the frame (mainly for the join case)
67527166 966 * @user_initiated_pd: Flag to indicate if initiated by user or not
b22128ef
JM
967 * Returns: 0 on success, -1 on failure
968 *
969 * This function can be used to request a discovered P2P peer to display a PIN
970 * (config_methods = WPS_CONFIG_DISPLAY) or be prepared to enter a PIN from us
971 * (config_methods = WPS_CONFIG_KEYPAD). The Provision Discovery Request frame
972 * is transmitted once immediately and if no response is received, the frame
973 * will be sent again whenever the target device is discovered during device
974 * dsicovery (start with a p2p_find() call). Response from the peer is
975 * indicated with the p2p_config::prov_disc_resp() callback.
976 */
977int p2p_prov_disc_req(struct p2p_data *p2p, const u8 *peer_addr,
67527166
SD
978 u16 config_methods, int join, int force_freq,
979 int user_initiated_pd);
b22128ef
JM
980
981/**
982 * p2p_sd_request - Schedule a service discovery query
983 * @p2p: P2P module context from p2p_init()
984 * @dst: Destination peer or %NULL to apply for all peers
985 * @tlvs: P2P Service Query TLV(s)
986 * Returns: Reference to the query or %NULL on failure
987 *
988 * Response to the query is indicated with the p2p_config::sd_response()
989 * callback.
990 */
991void * p2p_sd_request(struct p2p_data *p2p, const u8 *dst,
992 const struct wpabuf *tlvs);
993
347d6a5b
JM
994#ifdef CONFIG_WIFI_DISPLAY
995void * p2p_sd_request_wfd(struct p2p_data *p2p, const u8 *dst,
996 const struct wpabuf *tlvs);
997#endif /* CONFIG_WIFI_DISPLAY */
998
b22128ef
JM
999/**
1000 * p2p_sd_cancel_request - Cancel a pending service discovery query
1001 * @p2p: P2P module context from p2p_init()
1002 * @req: Query reference from p2p_sd_request()
1003 * Returns: 0 if request for cancelled; -1 if not found
1004 */
1005int p2p_sd_cancel_request(struct p2p_data *p2p, void *req);
1006
1007/**
1008 * p2p_sd_response - Send response to a service discovery query
1009 * @p2p: P2P module context from p2p_init()
1010 * @freq: Frequency from p2p_config::sd_request() callback
1011 * @dst: Destination address from p2p_config::sd_request() callback
1012 * @dialog_token: Dialog token from p2p_config::sd_request() callback
1013 * @resp_tlvs: P2P Service Response TLV(s)
1014 *
1015 * This function is called as a response to the request indicated with
1016 * p2p_config::sd_request() callback.
1017 */
1018void p2p_sd_response(struct p2p_data *p2p, int freq, const u8 *dst,
1019 u8 dialog_token, const struct wpabuf *resp_tlvs);
1020
1021/**
1022 * p2p_sd_service_update - Indicate a change in local services
1023 * @p2p: P2P module context from p2p_init()
1024 *
1025 * This function needs to be called whenever there is a change in availability
1026 * of the local services. This will increment the Service Update Indicator
1027 * value which will be used in SD Request and Response frames.
1028 */
1029void p2p_sd_service_update(struct p2p_data *p2p);
1030
1031
1032enum p2p_invite_role {
1033 P2P_INVITE_ROLE_GO,
1034 P2P_INVITE_ROLE_ACTIVE_GO,
1035 P2P_INVITE_ROLE_CLIENT
1036};
1037
1038/**
1039 * p2p_invite - Invite a P2P Device into a group
1040 * @p2p: P2P module context from p2p_init()
1041 * @peer: Device Address of the peer P2P Device
1042 * @role: Local role in the group
1043 * @bssid: Group BSSID or %NULL if not known
1044 * @ssid: Group SSID
1045 * @ssid_len: Length of ssid in octets
1046 * @force_freq: The only allowed channel frequency in MHz or 0
1047 * @go_dev_addr: Forced GO Device Address or %NULL if none
1048 * @persistent_group: Whether this is to reinvoke a persistent group
79879f4a
DG
1049 * @pref_freq: Preferred operating frequency in MHz or 0 (this is only used if
1050 * force_freq == 0)
b22128ef
JM
1051 * Returns: 0 on success, -1 on failure
1052 */
1053int p2p_invite(struct p2p_data *p2p, const u8 *peer, enum p2p_invite_role role,
1054 const u8 *bssid, const u8 *ssid, size_t ssid_len,
1055 unsigned int force_freq, const u8 *go_dev_addr,
79879f4a 1056 int persistent_group, unsigned int pref_freq);
b22128ef
JM
1057
1058/**
1059 * p2p_presence_req - Request GO presence
1060 * @p2p: P2P module context from p2p_init()
1061 * @go_interface_addr: GO P2P Interface Address
1062 * @own_interface_addr: Own P2P Interface Address for this group
1063 * @freq: Group operating frequence (in MHz)
1064 * @duration1: Preferred presence duration in microseconds
1065 * @interval1: Preferred presence interval in microseconds
1066 * @duration2: Acceptable presence duration in microseconds
1067 * @interval2: Acceptable presence interval in microseconds
1068 * Returns: 0 on success, -1 on failure
1069 *
1070 * If both duration and interval values are zero, the parameter pair is not
1071 * specified (i.e., to remove Presence Request, use duration1 = interval1 = 0).
1072 */
1073int p2p_presence_req(struct p2p_data *p2p, const u8 *go_interface_addr,
1074 const u8 *own_interface_addr, unsigned int freq,
1075 u32 duration1, u32 interval1, u32 duration2,
1076 u32 interval2);
1077
1078/**
1079 * p2p_ext_listen - Set Extended Listen Timing
1080 * @p2p: P2P module context from p2p_init()
1081 * @freq: Group operating frequence (in MHz)
1082 * @period: Availability period in milliseconds (1-65535; 0 to disable)
1083 * @interval: Availability interval in milliseconds (1-65535; 0 to disable)
1084 * Returns: 0 on success, -1 on failure
1085 *
1086 * This function can be used to enable or disable (period = interval = 0)
1087 * Extended Listen Timing. When enabled, the P2P Device will become
1088 * discoverable (go into Listen State) every @interval milliseconds for at
1089 * least @period milliseconds.
1090 */
1091int p2p_ext_listen(struct p2p_data *p2p, unsigned int period,
1092 unsigned int interval);
1093
1094/* Event notifications from upper layer management operations */
1095
1096/**
1097 * p2p_wps_success_cb - Report successfully completed WPS provisioning
1098 * @p2p: P2P module context from p2p_init()
1099 * @mac_addr: Peer address
1100 *
1101 * This function is used to report successfully completed WPS provisioning
1102 * during group formation in both GO/Registrar and client/Enrollee roles.
1103 */
1104void p2p_wps_success_cb(struct p2p_data *p2p, const u8 *mac_addr);
1105
1106/**
1107 * p2p_group_formation_failed - Report failed WPS provisioning
1108 * @p2p: P2P module context from p2p_init()
1109 *
1110 * This function is used to report failed group formation. This can happen
1111 * either due to failed WPS provisioning or due to 15 second timeout during
1112 * the provisioning phase.
1113 */
1114void p2p_group_formation_failed(struct p2p_data *p2p);
1115
ec437d9e
JJ
1116/**
1117 * p2p_get_provisioning_info - Get any stored provisioning info
1118 * @p2p: P2P module context from p2p_init()
1119 * @addr: Peer P2P Device Address
1120 * Returns: WPS provisioning information (WPS config method) or 0 if no
1121 * information is available
1122 *
1123 * This function is used to retrieve stored WPS provisioning info for the given
1124 * peer.
1125 */
1126u16 p2p_get_provisioning_info(struct p2p_data *p2p, const u8 *addr);
1127
1128/**
1129 * p2p_clear_provisioning_info - Clear any stored provisioning info
1130 * @p2p: P2P module context from p2p_init()
10531d21 1131 * @iface_addr: Peer P2P Device Address
ec437d9e
JJ
1132 *
1133 * This function is used to clear stored WPS provisioning info for the given
1134 * peer.
1135 */
10531d21 1136void p2p_clear_provisioning_info(struct p2p_data *p2p, const u8 *addr);
ec437d9e 1137
b22128ef
JM
1138
1139/* Event notifications from lower layer driver operations */
1140
2d43d37f
JB
1141/**
1142 * enum p2p_probe_req_status
1143 *
1144 * @P2P_PREQ_MALFORMED: frame was not well-formed
1145 * @P2P_PREQ_NOT_LISTEN: device isn't in listen state, frame ignored
1146 * @P2P_PREQ_NOT_P2P: frame was not a P2P probe request
1147 * @P2P_PREQ_P2P_NOT_PROCESSED: frame was P2P but wasn't processed
1148 * @P2P_PREQ_P2P_PROCESSED: frame has been processed by P2P
1149 */
1150enum p2p_probe_req_status {
1151 P2P_PREQ_MALFORMED,
1152 P2P_PREQ_NOT_LISTEN,
1153 P2P_PREQ_NOT_P2P,
1154 P2P_PREQ_NOT_PROCESSED,
1155 P2P_PREQ_PROCESSED
1156};
1157
b22128ef
JM
1158/**
1159 * p2p_probe_req_rx - Report reception of a Probe Request frame
1160 * @p2p: P2P module context from p2p_init()
1161 * @addr: Source MAC address
04a85e44
JM
1162 * @dst: Destination MAC address if available or %NULL
1163 * @bssid: BSSID if available or %NULL
b22128ef
JM
1164 * @ie: Information elements from the Probe Request frame body
1165 * @ie_len: Length of ie buffer in octets
2d43d37f 1166 * Returns: value indicating the type and status of the probe request
b22128ef 1167 */
2d43d37f
JB
1168enum p2p_probe_req_status
1169p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst,
1170 const u8 *bssid, const u8 *ie, size_t ie_len);
b22128ef
JM
1171
1172/**
1173 * p2p_rx_action - Report received Action frame
1174 * @p2p: P2P module context from p2p_init()
1175 * @da: Destination address of the received Action frame
1176 * @sa: Source address of the received Action frame
1177 * @bssid: Address 3 of the received Action frame
1178 * @category: Category of the received Action frame
1179 * @data: Action frame body after the Category field
1180 * @len: Length of the data buffer in octets
1181 * @freq: Frequency (in MHz) on which the frame was received
1182 */
1183void p2p_rx_action(struct p2p_data *p2p, const u8 *da, const u8 *sa,
1184 const u8 *bssid, u8 category,
1185 const u8 *data, size_t len, int freq);
1186
1187/**
1188 * p2p_scan_res_handler - Indicate a P2P scan results
1189 * @p2p: P2P module context from p2p_init()
1190 * @bssid: BSSID of the scan result
1191 * @freq: Frequency of the channel on which the device was found in MHz
c5f10e80 1192 * @rx_time: Time when the result was received
b22128ef
JM
1193 * @level: Signal level (signal strength of the received Beacon/Probe Response
1194 * frame)
1195 * @ies: Pointer to IEs from the scan result
1196 * @ies_len: Length of the ies buffer
1197 * Returns: 0 to continue or 1 to stop scan result indication
1198 *
1199 * This function is called to indicate a scan result entry with P2P IE from a
1200 * scan requested with struct p2p_config::p2p_scan(). This can be called during
1201 * the actual scan process (i.e., whenever a new device is found) or as a
1202 * sequence of calls after the full scan has been completed. The former option
1203 * can result in optimized operations, but may not be supported by all
1204 * driver/firmware designs. The ies buffer need to include at least the P2P IE,
1205 * but it is recommended to include all IEs received from the device. The
1206 * caller does not need to check that the IEs contain a P2P IE before calling
1207 * this function since frames will be filtered internally if needed.
1208 *
1209 * This function will return 1 if it wants to stop scan result iteration (and
1210 * scan in general if it is still in progress). This is used to allow faster
1211 * start of a pending operation, e.g., to start a pending GO negotiation.
1212 */
1213int p2p_scan_res_handler(struct p2p_data *p2p, const u8 *bssid, int freq,
c5f10e80 1214 struct os_time *rx_time, int level, const u8 *ies,
3dfd0484 1215 size_t ies_len);
b22128ef
JM
1216
1217/**
1218 * p2p_scan_res_handled - Indicate end of scan results
1219 * @p2p: P2P module context from p2p_init()
1220 *
1221 * This function is called to indicate that all P2P scan results from a scan
1222 * have been reported with zero or more calls to p2p_scan_res_handler(). This
1223 * function must be called as a response to successful
1224 * struct p2p_config::p2p_scan() call if none of the p2p_scan_res_handler()
1225 * calls stopped iteration.
1226 */
1227void p2p_scan_res_handled(struct p2p_data *p2p);
1228
93b7ddd0
JM
1229enum p2p_send_action_result {
1230 P2P_SEND_ACTION_SUCCESS /* Frame was send and acknowledged */,
1231 P2P_SEND_ACTION_NO_ACK /* Frame was sent, but not acknowledged */,
1232 P2P_SEND_ACTION_FAILED /* Frame was not sent due to a failure */
1233};
1234
b22128ef
JM
1235/**
1236 * p2p_send_action_cb - Notify TX status of an Action frame
1237 * @p2p: P2P module context from p2p_init()
1238 * @freq: Channel frequency in MHz
1239 * @dst: Destination MAC address (Address 1)
1240 * @src: Source MAC address (Address 2)
1241 * @bssid: BSSID (Address 3)
93b7ddd0 1242 * @result: Result of the transmission attempt
b22128ef
JM
1243 *
1244 * This function is used to indicate the result of an Action frame transmission
1245 * that was requested with struct p2p_config::send_action() callback.
1246 */
1247void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
93b7ddd0
JM
1248 const u8 *src, const u8 *bssid,
1249 enum p2p_send_action_result result);
b22128ef
JM
1250
1251/**
1252 * p2p_listen_cb - Indicate the start of a requested Listen state
1253 * @p2p: P2P module context from p2p_init()
1254 * @freq: Listen channel frequency in MHz
1255 * @duration: Duration for the Listen state in milliseconds
1256 *
1257 * This function is used to indicate that a Listen state requested with
1258 * struct p2p_config::start_listen() callback has started.
1259 */
1260void p2p_listen_cb(struct p2p_data *p2p, unsigned int freq,
1261 unsigned int duration);
1262
1263/**
1264 * p2p_listen_end - Indicate the end of a requested Listen state
1265 * @p2p: P2P module context from p2p_init()
1266 * @freq: Listen channel frequency in MHz
1267 * Returns: 0 if no operations were started, 1 if an operation was started
1268 *
1269 * This function is used to indicate that a Listen state requested with
1270 * struct p2p_config::start_listen() callback has ended.
1271 */
1272int p2p_listen_end(struct p2p_data *p2p, unsigned int freq);
1273
1274void p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
1275 const u8 *ie, size_t ie_len);
1276
1277void p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
1278 const u8 *ie, size_t ie_len);
1279
1280
1281/* Per-group P2P state for GO */
1282
1283struct p2p_group;
1284
1285/**
1286 * struct p2p_group_config - P2P group configuration
1287 *
1288 * This configuration is provided to the P2P module during initialization of
1289 * the per-group information with p2p_group_init().
1290 */
1291struct p2p_group_config {
1292 /**
1293 * persistent_group - Whether the group is persistent
acc247b2
JM
1294 * 0 = not a persistent group
1295 * 1 = persistent group without persistent reconnect
1296 * 2 = persistent group with persistent reconnect
b22128ef
JM
1297 */
1298 int persistent_group;
1299
1300 /**
1301 * interface_addr - P2P Interface Address of the group
1302 */
1303 u8 interface_addr[ETH_ALEN];
1304
3f4ce13f
JM
1305 /**
1306 * max_clients - Maximum number of clients in the group
1307 */
1308 unsigned int max_clients;
1309
6f251b6b
JM
1310 /**
1311 * ssid - Group SSID
1312 */
1313 u8 ssid[32];
1314
1315 /**
1316 * ssid_len - Length of SSID
1317 */
1318 size_t ssid_len;
1319
b22128ef
JM
1320 /**
1321 * cb_ctx - Context to use with callback functions
1322 */
1323 void *cb_ctx;
1324
1325 /**
1326 * ie_update - Notification of IE update
1327 * @ctx: Callback context from cb_ctx
1328 * @beacon_ies: P2P IE for Beacon frames or %NULL if no change
1329 * @proberesp_ies: P2P Ie for Probe Response frames
1330 *
1331 * P2P module uses this callback function to notify whenever the P2P IE
1332 * in Beacon or Probe Response frames should be updated based on group
1333 * events.
1334 *
1335 * The callee is responsible for freeing the returned buffer(s) with
1336 * wpabuf_free().
1337 */
1338 void (*ie_update)(void *ctx, struct wpabuf *beacon_ies,
1339 struct wpabuf *proberesp_ies);
3071e181
JM
1340
1341 /**
1342 * idle_update - Notification of changes in group idle state
1343 * @ctx: Callback context from cb_ctx
1344 * @idle: Whether the group is idle (no associated stations)
1345 */
1346 void (*idle_update)(void *ctx, int idle);
b22128ef
JM
1347};
1348
1349/**
1350 * p2p_group_init - Initialize P2P group
1351 * @p2p: P2P module context from p2p_init()
1352 * @config: P2P group configuration (will be freed by p2p_group_deinit())
1353 * Returns: Pointer to private data or %NULL on failure
1354 *
1355 * This function is used to initialize per-group P2P module context. Currently,
1356 * this is only used to manage GO functionality and P2P clients do not need to
1357 * create an instance of this per-group information.
1358 */
1359struct p2p_group * p2p_group_init(struct p2p_data *p2p,
1360 struct p2p_group_config *config);
1361
1362/**
1363 * p2p_group_deinit - Deinitialize P2P group
1364 * @group: P2P group context from p2p_group_init()
1365 */
1366void p2p_group_deinit(struct p2p_group *group);
1367
1368/**
1369 * p2p_group_notif_assoc - Notification of P2P client association with GO
1370 * @group: P2P group context from p2p_group_init()
1371 * @addr: Interface address of the P2P client
1372 * @ie: IEs from the (Re)association Request frame
1373 * @len: Length of the ie buffer in octets
1374 * Returns: 0 on success, -1 on failure
1375 */
1376int p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr,
1377 const u8 *ie, size_t len);
1378
1379/**
1380 * p2p_group_assoc_resp_ie - Build P2P IE for (re)association response
1381 * @group: P2P group context from p2p_group_init()
1382 * @status: Status value (P2P_SC_SUCCESS if association succeeded)
1383 * Returns: P2P IE for (Re)association Response or %NULL on failure
1384 *
1385 * The caller is responsible for freeing the returned buffer with
1386 * wpabuf_free().
1387 */
1388struct wpabuf * p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status);
1389
1390/**
1391 * p2p_group_notif_disassoc - Notification of P2P client disassociation from GO
1392 * @group: P2P group context from p2p_group_init()
1393 * @addr: Interface address of the P2P client
1394 */
1395void p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr);
1396
1397/**
1398 * p2p_group_notif_formation_done - Notification of completed group formation
1399 * @group: P2P group context from p2p_group_init()
1400 */
1401void p2p_group_notif_formation_done(struct p2p_group *group);
1402
1403/**
1404 * p2p_group_notif_noa - Notification of NoA change
1405 * @group: P2P group context from p2p_group_init()
1406 * @noa: Notice of Absence attribute payload, %NULL if none
1407 * @noa_len: Length of noa buffer in octets
1408 * Returns: 0 on success, -1 on failure
1409 *
1410 * Notify the P2P group management about a new NoA contents. This will be
1411 * inserted into the P2P IEs in Beacon and Probe Response frames with rest of
1412 * the group information.
1413 */
1414int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
1415 size_t noa_len);
1416
1417/**
1418 * p2p_group_match_dev_type - Match device types in group with requested type
1419 * @group: P2P group context from p2p_group_init()
1420 * @wps: WPS TLVs from Probe Request frame (concatenated WPS IEs)
1421 * Returns: 1 on match, 0 on mismatch
1422 *
1423 * This function can be used to match the Requested Device Type attribute in
1424 * WPS IE with the device types of a group member for deciding whether a GO
1425 * should reply to a Probe Request frame. Match will be reported if the WPS IE
1426 * is not requested any specific device type.
1427 */
1428int p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps);
1429
8017b538
JM
1430/**
1431 * p2p_group_match_dev_id - Match P2P Device Address in group with requested device id
1432 */
1433int p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p);
1434
b22128ef
JM
1435/**
1436 * p2p_group_go_discover - Send GO Discoverability Request to a group client
1437 * @group: P2P group context from p2p_group_init()
1438 * Returns: 0 on success (frame scheduled); -1 if client was not found
1439 */
1440int p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id,
1441 const u8 *searching_dev, int rx_freq);
1442
1443
1444/* Generic helper functions */
1445
1446/**
1447 * p2p_ie_text - Build text format description of P2P IE
1448 * @p2p_ie: P2P IE
1449 * @buf: Buffer for returning text
1450 * @end: Pointer to the end of the buf area
1451 * Returns: Number of octets written to the buffer or -1 on failure
1452 *
1453 * This function can be used to parse P2P IE contents into text format
1454 * field=value lines.
1455 */
1456int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end);
1457
1458/**
1459 * p2p_scan_result_text - Build text format description of P2P IE
1460 * @ies: Information elements from scan results
1461 * @ies_len: ies buffer length in octets
1462 * @buf: Buffer for returning text
1463 * @end: Pointer to the end of the buf area
1464 * Returns: Number of octets written to the buffer or -1 on failure
1465 *
1466 * This function can be used to parse P2P IE contents into text format
1467 * field=value lines.
1468 */
1469int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end);
1470
c2d76aa6
MH
1471/**
1472 * p2p_parse_dev_addr_in_p2p_ie - Parse P2P Device Address from a concatenated
1473 * P2P IE
1474 * @p2p_ie: P2P IE
1475 * @dev_addr: Buffer for returning P2P Device Address
1476 * Returns: 0 on success or -1 if P2P Device Address could not be parsed
1477 */
1478int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr);
1479
0a70f34f
JM
1480/**
1481 * p2p_parse_dev_addr - Parse P2P Device Address from P2P IE(s)
1482 * @ies: Information elements from scan results
1483 * @ies_len: ies buffer length in octets
1484 * @dev_addr: Buffer for returning P2P Device Address
1485 * Returns: 0 on success or -1 if P2P Device Address could not be parsed
1486 */
1487int p2p_parse_dev_addr(const u8 *ies, size_t ies_len, u8 *dev_addr);
1488
b22128ef
JM
1489/**
1490 * p2p_assoc_req_ie - Build P2P IE for (Re)Association Request frame
1491 * @p2p: P2P module context from p2p_init()
1492 * @bssid: BSSID
1493 * @buf: Buffer for writing the P2P IE
1494 * @len: Maximum buf length in octets
1495 * @p2p_group: Whether this is for association with a P2P GO
4c08c0bd 1496 * @p2p_ie: Reassembled P2P IE data from scan results or %NULL if none
b22128ef
JM
1497 * Returns: Number of octets written into buf or -1 on failure
1498 */
1499int p2p_assoc_req_ie(struct p2p_data *p2p, const u8 *bssid, u8 *buf,
4c08c0bd 1500 size_t len, int p2p_group, struct wpabuf *p2p_ie);
b22128ef
JM
1501
1502/**
1503 * p2p_scan_ie - Build P2P IE for Probe Request
1504 * @p2p: P2P module context from p2p_init()
1505 * @ies: Buffer for writing P2P IE
6d92fa6e 1506 * @dev_id: Device ID to search for or %NULL for any
b22128ef 1507 */
6d92fa6e 1508void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies, const u8 *dev_id);
b22128ef 1509
206e1f42
JM
1510/**
1511 * p2p_scan_ie_buf_len - Get maximum buffer length needed for p2p_scan_ie
1512 * @p2p: P2P module context from p2p_init()
1513 * Returns: Number of octets that p2p_scan_ie() may add to the buffer
1514 */
1515size_t p2p_scan_ie_buf_len(struct p2p_data *p2p);
1516
b22128ef
JM
1517/**
1518 * p2p_go_params - Generate random P2P group parameters
1519 * @p2p: P2P module context from p2p_init()
1520 * @params: Buffer for parameters
1521 * Returns: 0 on success, -1 on failure
1522 */
1523int p2p_go_params(struct p2p_data *p2p, struct p2p_go_neg_results *params);
1524
1525/**
1526 * p2p_get_group_capab - Get Group Capability from P2P IE data
1527 * @p2p_ie: P2P IE(s) contents
1528 * Returns: Group Capability
1529 */
1530u8 p2p_get_group_capab(const struct wpabuf *p2p_ie);
1531
72044390
JM
1532/**
1533 * p2p_get_cross_connect_disallowed - Does WLAN AP disallows cross connection
1534 * @p2p_ie: P2P IE(s) contents
1535 * Returns: 0 if cross connection is allow, 1 if not
1536 */
1537int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie);
1538
b22128ef
JM
1539/**
1540 * p2p_get_go_dev_addr - Get P2P Device Address from P2P IE data
1541 * @p2p_ie: P2P IE(s) contents
1542 * Returns: Pointer to P2P Device Address or %NULL if not included
1543 */
1544const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie);
1545
1546/**
b3ffc80b 1547 * p2p_get_peer_info - Get P2P peer information
b22128ef
JM
1548 * @p2p: P2P module context from p2p_init()
1549 * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
1550 * @next: Whether to select the peer entry following the one indicated by addr
b3ffc80b
JM
1551 * Returns: Pointer to peer info or %NULL if not found
1552 */
1553const struct p2p_peer_info * p2p_get_peer_info(struct p2p_data *p2p,
1554 const u8 *addr, int next);
1555
1556/**
1557 * p2p_get_peer_info_txt - Get internal P2P peer information in text format
1558 * @info: Pointer to P2P peer info from p2p_get_peer_info()
b22128ef
JM
1559 * @buf: Buffer for returning text
1560 * @buflen: Maximum buffer length
1561 * Returns: Number of octets written to the buffer or -1 on failure
b3ffc80b
JM
1562 *
1563 * Note: This information is internal to the P2P module and subject to change.
1564 * As such, this should not really be used by external programs for purposes
1565 * other than debugging.
b22128ef 1566 */
b3ffc80b
JM
1567int p2p_get_peer_info_txt(const struct p2p_peer_info *info,
1568 char *buf, size_t buflen);
b22128ef 1569
b3bcc0f5
JM
1570/**
1571 * p2p_peer_known - Check whether P2P peer is known
1572 * @p2p: P2P module context from p2p_init()
1573 * @addr: P2P Device Address of the peer
1574 * Returns: 1 if the specified device is in the P2P peer table or 0 if not
1575 */
1576int p2p_peer_known(struct p2p_data *p2p, const u8 *addr);
1577
b22128ef
JM
1578/**
1579 * p2p_set_client_discoverability - Set client discoverability capability
1580 * @p2p: P2P module context from p2p_init()
1581 * @enabled: Whether client discoverability will be enabled
1582 *
1583 * This function can be used to disable (and re-enable) client discoverability.
1584 * This capability is enabled by default and should not be disabled in normal
1585 * use cases, i.e., this is mainly for testing purposes.
1586 */
1587void p2p_set_client_discoverability(struct p2p_data *p2p, int enabled);
1588
1589/**
a601f71b 1590 * p2p_set_managed_oper - Set managed P2P Device operations capability
b22128ef
JM
1591 * @p2p: P2P module context from p2p_init()
1592 * @enabled: Whether managed P2P Device operations will be enabled
1593 */
1594void p2p_set_managed_oper(struct p2p_data *p2p, int enabled);
1595
1596int p2p_set_listen_channel(struct p2p_data *p2p, u8 reg_class, u8 channel);
1597
1598int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len);
1599
1600int p2p_get_interface_addr(struct p2p_data *p2p, const u8 *dev_addr,
1601 u8 *iface_addr);
4147a2cc
JM
1602int p2p_get_dev_addr(struct p2p_data *p2p, const u8 *iface_addr,
1603 u8 *dev_addr);
b22128ef 1604
80c9582a
JM
1605void p2p_set_peer_filter(struct p2p_data *p2p, const u8 *addr);
1606
72044390
JM
1607/**
1608 * p2p_set_cross_connect - Set cross connection capability
1609 * @p2p: P2P module context from p2p_init()
1610 * @enabled: Whether cross connection will be enabled
1611 */
1612void p2p_set_cross_connect(struct p2p_data *p2p, int enabled);
1613
f8d0131a
JM
1614int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr);
1615
0f66abd2
SS
1616/**
1617 * p2p_set_intra_bss_dist - Set intra BSS distribution
1618 * @p2p: P2P module context from p2p_init()
1619 * @enabled: Whether intra BSS distribution will be enabled
1620 */
1621void p2p_set_intra_bss_dist(struct p2p_data *p2p, int enabled);
1622
54733624
JM
1623int p2p_channels_includes_freq(const struct p2p_channels *channels,
1624 unsigned int freq);
1625
d054a462
JM
1626/**
1627 * p2p_supported_freq - Check whether channel is supported for P2P
1628 * @p2p: P2P module context from p2p_init()
1629 * @freq: Channel frequency in MHz
1630 * Returns: 0 if channel not usable for P2P, 1 if usable for P2P
1631 */
1632int p2p_supported_freq(struct p2p_data *p2p, unsigned int freq);
1633
b5c9da8d
JM
1634void p2p_update_channel_list(struct p2p_data *p2p, struct p2p_channels *chan);
1635
7cfc4ac3
AGS
1636/**
1637 * p2p_set_best_channels - Update best channel information
1638 * @p2p: P2P module context from p2p_init()
1639 * @freq_24: Frequency (MHz) of best channel in 2.4 GHz band
1640 * @freq_5: Frequency (MHz) of best channel in 5 GHz band
1641 * @freq_overall: Frequency (MHz) of best channel overall
1642 */
1643void p2p_set_best_channels(struct p2p_data *p2p, int freq_24, int freq_5,
1644 int freq_overall);
1645
6cb27aa8
JM
1646/**
1647 * p2p_set_own_freq_preference - Set own preference for channel
1648 * @p2p: P2P module context from p2p_init()
1649 * @freq: Frequency (MHz) of the preferred channel or 0 if no preference
1650 *
1651 * This function can be used to set a preference on the operating channel based
1652 * on frequencies used on the other virtual interfaces that share the same
1653 * radio. If non-zero, this is used to try to avoid multi-channel concurrency.
1654 */
1655void p2p_set_own_freq_preference(struct p2p_data *p2p, int freq);
1656
231bbd03
SS
1657const u8 * p2p_get_go_neg_peer(struct p2p_data *p2p);
1658
5efa9e2a
JB
1659/**
1660 * p2p_get_group_num_members - Get number of members in group
1661 * @group: P2P group context from p2p_group_init()
1662 * Returns: Number of members in the group
1663 */
1664unsigned int p2p_get_group_num_members(struct p2p_group *group);
1665
1666/**
1667 * p2p_iterate_group_members - Iterate group members
1668 * @group: P2P group context from p2p_group_init()
1669 * @next: iteration pointer, must be a pointer to a void * that is set to %NULL
1670 * on the first call and not modified later
1671 * Returns: A P2P Interface Address for each call and %NULL for no more members
1672 */
1673const u8 * p2p_iterate_group_members(struct p2p_group *group, void **next);
1674
c9aab274
JJ
1675/**
1676 * p2p_group_get_dev_addr - Get a P2P Device Address of a client in a group
1677 * @group: P2P group context from p2p_group_init()
1678 * @addr: P2P Interface Address of the client
1679 * Returns: P2P Device Address of the client if found or %NULL if no match
1680 * found
1681 */
1682const u8 * p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr);
1683
1d277f02
JM
1684/**
1685 * p2p_group_is_client_connected - Check whether a specific client is connected
1686 * @group: P2P group context from p2p_group_init()
1687 * @addr: P2P Device Address of the client
1688 * Returns: 1 if client is connected or 0 if not
1689 */
1690int p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr);
1691
c165d81e
JB
1692/**
1693 * p2p_get_peer_found - Get P2P peer info structure of a found peer
1694 * @p2p: P2P module context from p2p_init()
1695 * @addr: P2P Device Address of the peer or %NULL to indicate the first peer
1696 * @next: Whether to select the peer entry following the one indicated by addr
1697 * Returns: The first P2P peer info available or %NULL if no such peer exists
1698 */
1699const struct p2p_peer_info *
1700p2p_get_peer_found(struct p2p_data *p2p, const u8 *addr, int next);
1701
f95cac27
JMB
1702/**
1703 * p2p_remove_wps_vendor_extensions - Remove WPS vendor extensions
1704 * @p2p: P2P module context from p2p_init()
1705 */
1706void p2p_remove_wps_vendor_extensions(struct p2p_data *p2p);
1707
1708/**
1709 * p2p_add_wps_vendor_extension - Add a WPS vendor extension
1710 * @p2p: P2P module context from p2p_init()
1711 * @vendor_ext: The vendor extensions to add
1712 * Returns: 0 on success, -1 on failure
1713 *
1714 * The wpabuf structures in the array are owned by the P2P
1715 * module after this call.
1716 */
1717int p2p_add_wps_vendor_extension(struct p2p_data *p2p,
1718 const struct wpabuf *vendor_ext);
1719
2463ba70
JS
1720/**
1721 * p2p_set_oper_channel - Set the P2P operating channel
1722 * @p2p: P2P module context from p2p_init()
1723 * @op_reg_class: Operating regulatory class to set
1724 * @op_channel: operating channel to set
1725 * @cfg_op_channel : Whether op_channel is hardcoded in configuration
1726 * Returns: 0 on success, -1 on failure
1727 */
1728int p2p_set_oper_channel(struct p2p_data *p2p, u8 op_reg_class, u8 op_channel,
1729 int cfg_op_channel);
1730
21d996f7
JM
1731/**
1732 * p2p_set_pref_chan - Set P2P preferred channel list
1733 * @p2p: P2P module context from p2p_init()
1734 * @num_pref_chan: Number of entries in pref_chan list
1735 * @pref_chan: Preferred channels or %NULL to remove preferences
1736 * Returns: 0 on success, -1 on failure
1737 */
1738int p2p_set_pref_chan(struct p2p_data *p2p, unsigned int num_pref_chan,
1739 const struct p2p_channel *pref_chan);
1740
303f60d3
JM
1741/**
1742 * p2p_in_progress - Check whether a P2P operation is progress
1743 * @p2p: P2P module context from p2p_init()
1744 * Returns: 0 if P2P module is idle or 1 if an operation is in progress
1745 */
1746int p2p_in_progress(struct p2p_data *p2p);
1747
39185dfa
JM
1748/**
1749 * p2p_other_scan_completed - Notify completion of non-P2P scan
1750 * @p2p: P2P module context from p2p_init()
1751 * Returns: 0 if P2P module is idle or 1 if an operation was started
1752 */
1753int p2p_other_scan_completed(struct p2p_data *p2p);
1754
e5a359cf
RC
1755const char * p2p_wps_method_text(enum p2p_wps_method method);
1756
4f219667
JM
1757/**
1758 * p2p_set_config_timeout - Set local config timeouts
1759 * @p2p: P2P module context from p2p_init()
1760 * @go_timeout: Time in 10 ms units it takes to start the GO mode
1761 * @client_timeout: Time in 10 ms units it takes to start the client mode
1762 */
1763void p2p_set_config_timeout(struct p2p_data *p2p, u8 go_timeout,
1764 u8 client_timeout);
1765
99fcd404
JM
1766void p2p_increase_search_delay(struct p2p_data *p2p, unsigned int delay);
1767
9675ce35
JM
1768int p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie);
1769int p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie);
1770int p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie);
1771int p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie);
1772int p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie);
1773int p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie);
1774int p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie);
1775int p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie);
1776int p2p_set_wfd_dev_info(struct p2p_data *p2p, const struct wpabuf *elem);
1777int p2p_set_wfd_assoc_bssid(struct p2p_data *p2p, const struct wpabuf *elem);
1778int p2p_set_wfd_coupled_sink_info(struct p2p_data *p2p,
1779 const struct wpabuf *elem);
1780struct wpabuf * wifi_display_encaps(struct wpabuf *subelems);
1781
96beff11
JM
1782/**
1783 * p2p_set_disc_int - Set min/max discoverable interval for p2p_find
1784 * @p2p: P2P module context from p2p_init()
1785 * @min_disc_int: minDiscoverableInterval (in units of 100 TU); default 1
1786 * @max_disc_int: maxDiscoverableInterval (in units of 100 TU); default 3
1787 * @max_disc_tu: Maximum number of TUs (1.024 ms) for discoverable interval; or
1788 * -1 not to limit
1789 * Returns: 0 on success, or -1 on failure
1790 *
1791 * This function can be used to configure minDiscoverableInterval and
1792 * maxDiscoverableInterval parameters for the Listen state during device
1793 * discovery (p2p_find). A random number of 100 TU units is picked for each
1794 * Listen state iteration from [min_disc_int,max_disc_int] range.
1795 *
1796 * max_disc_tu can be used to futher limit the discoverable duration. However,
1797 * it should be noted that use of this parameter is not recommended since it
1798 * would not be compliant with the P2P specification.
1799 */
1800int p2p_set_disc_int(struct p2p_data *p2p, int min_disc_int, int max_disc_int,
1801 int max_disc_tu);
1802
b22128ef 1803#endif /* P2P_H */