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