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