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