p2p_i.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. /*
  2. * P2P - Internal definitions for 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. #ifndef P2P_I_H
  9. #define P2P_I_H
  10. #include "utils/list.h"
  11. #include "p2p.h"
  12. enum p2p_go_state {
  13. UNKNOWN_GO,
  14. LOCAL_GO,
  15. REMOTE_GO
  16. };
  17. /**
  18. * struct p2p_device - P2P Device data (internal to P2P module)
  19. */
  20. struct p2p_device {
  21. struct dl_list list;
  22. struct os_time last_seen;
  23. int listen_freq;
  24. enum p2p_wps_method wps_method;
  25. struct p2p_peer_info info;
  26. /*
  27. * If the peer was discovered based on an interface address (e.g., GO
  28. * from Beacon/Probe Response), the interface address is stored here.
  29. * p2p_device_addr must still be set in such a case to the unique
  30. * identifier for the P2P Device.
  31. */
  32. u8 interface_addr[ETH_ALEN];
  33. /*
  34. * P2P Device Address of the GO in whose group this P2P Device is a
  35. * client.
  36. */
  37. u8 member_in_go_dev[ETH_ALEN];
  38. /*
  39. * P2P Interface Address of the GO in whose group this P2P Device is a
  40. * client.
  41. */
  42. u8 member_in_go_iface[ETH_ALEN];
  43. int go_neg_req_sent;
  44. enum p2p_go_state go_state;
  45. u8 dialog_token;
  46. u8 intended_addr[ETH_ALEN];
  47. char country[3];
  48. struct p2p_channels channels;
  49. int oper_freq;
  50. u8 oper_ssid[32];
  51. size_t oper_ssid_len;
  52. /**
  53. * req_config_methods - Pending provision discovery methods
  54. */
  55. u16 req_config_methods;
  56. /**
  57. * wps_prov_info - Stored provisioning WPS config method
  58. *
  59. * This is used to store pending WPS config method between Provisioning
  60. * Discovery and connection to a running group.
  61. */
  62. u16 wps_prov_info;
  63. #define P2P_DEV_PROBE_REQ_ONLY BIT(0)
  64. #define P2P_DEV_REPORTED BIT(1)
  65. #define P2P_DEV_NOT_YET_READY BIT(2)
  66. #define P2P_DEV_SD_INFO BIT(3)
  67. #define P2P_DEV_SD_SCHEDULE BIT(4)
  68. #define P2P_DEV_PD_PEER_DISPLAY BIT(5)
  69. #define P2P_DEV_PD_PEER_KEYPAD BIT(6)
  70. #define P2P_DEV_USER_REJECTED BIT(7)
  71. #define P2P_DEV_PEER_WAITING_RESPONSE BIT(8)
  72. #define P2P_DEV_PREFER_PERSISTENT_GROUP BIT(9)
  73. #define P2P_DEV_WAIT_GO_NEG_RESPONSE BIT(10)
  74. #define P2P_DEV_WAIT_GO_NEG_CONFIRM BIT(11)
  75. #define P2P_DEV_GROUP_CLIENT_ONLY BIT(12)
  76. #define P2P_DEV_FORCE_FREQ BIT(13)
  77. #define P2P_DEV_PD_FOR_JOIN BIT(14)
  78. #define P2P_DEV_REPORTED_ONCE BIT(15)
  79. #define P2P_DEV_PREFER_PERSISTENT_RECONN BIT(16)
  80. #define P2P_DEV_PD_BEFORE_GO_NEG BIT(17)
  81. unsigned int flags;
  82. int status; /* enum p2p_status_code */
  83. unsigned int wait_count;
  84. unsigned int connect_reqs;
  85. unsigned int invitation_reqs;
  86. u16 ext_listen_period;
  87. u16 ext_listen_interval;
  88. u8 go_timeout;
  89. u8 client_timeout;
  90. };
  91. struct p2p_sd_query {
  92. struct p2p_sd_query *next;
  93. u8 peer[ETH_ALEN];
  94. int for_all_peers;
  95. struct wpabuf *tlvs;
  96. };
  97. struct p2p_pending_action_tx {
  98. unsigned int freq;
  99. u8 dst[ETH_ALEN];
  100. u8 src[ETH_ALEN];
  101. u8 bssid[ETH_ALEN];
  102. size_t len;
  103. unsigned int wait_time;
  104. /* Followed by len octets of the frame */
  105. };
  106. /**
  107. * struct p2p_data - P2P module data (internal to P2P module)
  108. */
  109. struct p2p_data {
  110. /**
  111. * cfg - P2P module configuration
  112. *
  113. * This is included in the same memory allocation with the
  114. * struct p2p_data and as such, must not be freed separately.
  115. */
  116. struct p2p_config *cfg;
  117. /**
  118. * state - The current P2P state
  119. */
  120. enum p2p_state {
  121. /**
  122. * P2P_IDLE - Idle
  123. */
  124. P2P_IDLE,
  125. /**
  126. * P2P_SEARCH - Search (Device Discovery)
  127. */
  128. P2P_SEARCH,
  129. /**
  130. * P2P_CONNECT - Trying to start GO Negotiation
  131. */
  132. P2P_CONNECT,
  133. /**
  134. * P2P_CONNECT_LISTEN - Listen during GO Negotiation start
  135. */
  136. P2P_CONNECT_LISTEN,
  137. /**
  138. * P2P_GO_NEG - In GO Negotiation
  139. */
  140. P2P_GO_NEG,
  141. /**
  142. * P2P_LISTEN_ONLY - Listen only
  143. */
  144. P2P_LISTEN_ONLY,
  145. /**
  146. * P2P_WAIT_PEER_CONNECT - Waiting peer in List for GO Neg
  147. */
  148. P2P_WAIT_PEER_CONNECT,
  149. /**
  150. * P2P_WAIT_PEER_IDLE - Waiting peer idle for GO Neg
  151. */
  152. P2P_WAIT_PEER_IDLE,
  153. /**
  154. * P2P_SD_DURING_FIND - Service Discovery during find
  155. */
  156. P2P_SD_DURING_FIND,
  157. /**
  158. * P2P_PROVISIONING - Provisioning (during group formation)
  159. */
  160. P2P_PROVISIONING,
  161. /**
  162. * P2P_PD_DURING_FIND - Provision Discovery during find
  163. */
  164. P2P_PD_DURING_FIND,
  165. /**
  166. * P2P_INVITE - Trying to start Invite
  167. */
  168. P2P_INVITE,
  169. /**
  170. * P2P_INVITE_LISTEN - Listen during Invite
  171. */
  172. P2P_INVITE_LISTEN,
  173. /**
  174. * P2P_SEARCH_WHEN_READY - Waiting to start Search
  175. */
  176. P2P_SEARCH_WHEN_READY,
  177. /**
  178. * P2P_CONTINUE_SEARCH_WHEN_READY - Waiting to continue Search
  179. */
  180. P2P_CONTINUE_SEARCH_WHEN_READY,
  181. } state;
  182. /**
  183. * min_disc_int - minDiscoverableInterval
  184. */
  185. int min_disc_int;
  186. /**
  187. * max_disc_int - maxDiscoverableInterval
  188. */
  189. int max_disc_int;
  190. /**
  191. * devices - List of known P2P Device peers
  192. */
  193. struct dl_list devices;
  194. /**
  195. * go_neg_peer - Pointer to GO Negotiation peer
  196. */
  197. struct p2p_device *go_neg_peer;
  198. /**
  199. * invite_peer - Pointer to Invite peer
  200. */
  201. struct p2p_device *invite_peer;
  202. const u8 *invite_go_dev_addr;
  203. u8 invite_go_dev_addr_buf[ETH_ALEN];
  204. /**
  205. * sd_peer - Pointer to Service Discovery peer
  206. */
  207. struct p2p_device *sd_peer;
  208. /**
  209. * sd_query - Pointer to Service Discovery query
  210. */
  211. struct p2p_sd_query *sd_query;
  212. /* GO Negotiation data */
  213. /**
  214. * intended_addr - Local Intended P2P Interface Address
  215. *
  216. * This address is used during group owner negotiation as the Intended
  217. * P2P Interface Address and the group interface will be created with
  218. * address as the local address in case of successfully completed
  219. * negotiation.
  220. */
  221. u8 intended_addr[ETH_ALEN];
  222. /**
  223. * go_intent - Local GO Intent to be used during GO Negotiation
  224. */
  225. u8 go_intent;
  226. /**
  227. * next_tie_breaker - Next tie-breaker value to use in GO Negotiation
  228. */
  229. u8 next_tie_breaker;
  230. /**
  231. * ssid - Selected SSID for GO Negotiation (if local end will be GO)
  232. */
  233. u8 ssid[32];
  234. /**
  235. * ssid_len - ssid length in octets
  236. */
  237. size_t ssid_len;
  238. /**
  239. * ssid_set - Whether SSID is already set for GO Negotiation
  240. */
  241. int ssid_set;
  242. /**
  243. * Regulatory class for own operational channel
  244. */
  245. u8 op_reg_class;
  246. /**
  247. * op_channel - Own operational channel
  248. */
  249. u8 op_channel;
  250. /**
  251. * channels - Own supported regulatory classes and channels
  252. *
  253. * List of supposerted channels per regulatory class. The regulatory
  254. * classes are defined in IEEE Std 802.11-2007 Annex J and the
  255. * numbering of the clases depends on the configured country code.
  256. */
  257. struct p2p_channels channels;
  258. enum p2p_pending_action_state {
  259. P2P_NO_PENDING_ACTION,
  260. P2P_PENDING_GO_NEG_REQUEST,
  261. P2P_PENDING_GO_NEG_RESPONSE,
  262. P2P_PENDING_GO_NEG_RESPONSE_FAILURE,
  263. P2P_PENDING_GO_NEG_CONFIRM,
  264. P2P_PENDING_SD,
  265. P2P_PENDING_PD,
  266. P2P_PENDING_INVITATION_REQUEST,
  267. P2P_PENDING_INVITATION_RESPONSE,
  268. P2P_PENDING_DEV_DISC_REQUEST,
  269. P2P_PENDING_DEV_DISC_RESPONSE,
  270. P2P_PENDING_GO_DISC_REQ
  271. } pending_action_state;
  272. unsigned int pending_listen_freq;
  273. unsigned int pending_listen_sec;
  274. unsigned int pending_listen_usec;
  275. u8 dev_capab;
  276. int in_listen;
  277. int drv_in_listen;
  278. /**
  279. * sd_queries - Pending service discovery queries
  280. */
  281. struct p2p_sd_query *sd_queries;
  282. /**
  283. * srv_update_indic - Service Update Indicator for local services
  284. */
  285. u16 srv_update_indic;
  286. struct wpabuf *sd_resp; /* Fragmented SD response */
  287. u8 sd_resp_addr[ETH_ALEN];
  288. u8 sd_resp_dialog_token;
  289. size_t sd_resp_pos; /* Offset in sd_resp */
  290. u8 sd_frag_id;
  291. struct wpabuf *sd_rx_resp; /* Reassembled SD response */
  292. u16 sd_rx_update_indic;
  293. /* P2P Invitation data */
  294. enum p2p_invite_role inv_role;
  295. u8 inv_bssid[ETH_ALEN];
  296. int inv_bssid_set;
  297. u8 inv_ssid[32];
  298. size_t inv_ssid_len;
  299. u8 inv_sa[ETH_ALEN];
  300. u8 inv_group_bssid[ETH_ALEN];
  301. u8 *inv_group_bssid_ptr;
  302. u8 inv_go_dev_addr[ETH_ALEN];
  303. u8 inv_status;
  304. int inv_op_freq;
  305. int inv_persistent;
  306. enum p2p_discovery_type find_type;
  307. unsigned int last_p2p_find_timeout;
  308. u8 last_prog_scan_class;
  309. u8 last_prog_scan_chan;
  310. int p2p_scan_running;
  311. enum p2p_after_scan {
  312. P2P_AFTER_SCAN_NOTHING,
  313. P2P_AFTER_SCAN_LISTEN,
  314. P2P_AFTER_SCAN_CONNECT
  315. } start_after_scan;
  316. u8 after_scan_peer[ETH_ALEN];
  317. struct p2p_pending_action_tx *after_scan_tx;
  318. /* Requested device types for find/search */
  319. unsigned int num_req_dev_types;
  320. u8 *req_dev_types;
  321. u8 *find_dev_id;
  322. u8 find_dev_id_buf[ETH_ALEN];
  323. struct p2p_group **groups;
  324. size_t num_groups;
  325. struct p2p_device *pending_client_disc_go;
  326. u8 pending_client_disc_addr[ETH_ALEN];
  327. u8 pending_dev_disc_dialog_token;
  328. u8 pending_dev_disc_addr[ETH_ALEN];
  329. int pending_dev_disc_freq;
  330. unsigned int pending_client_disc_freq;
  331. int ext_listen_only;
  332. unsigned int ext_listen_period;
  333. unsigned int ext_listen_interval;
  334. unsigned int ext_listen_interval_sec;
  335. unsigned int ext_listen_interval_usec;
  336. u8 peer_filter[ETH_ALEN];
  337. int cross_connect;
  338. int best_freq_24;
  339. int best_freq_5;
  340. int best_freq_overall;
  341. /**
  342. * wps_vendor_ext - WPS Vendor Extensions to add
  343. */
  344. struct wpabuf *wps_vendor_ext[P2P_MAX_WPS_VENDOR_EXT];
  345. /*
  346. * user_initiated_pd - Whether a PD request is user initiated or not.
  347. */
  348. u8 user_initiated_pd;
  349. /*
  350. * Keep track of which peer a given PD request was sent to.
  351. * Used to raise a timeout alert in case there is no response.
  352. */
  353. u8 pending_pd_devaddr[ETH_ALEN];
  354. /*
  355. * Retry counter for provision discovery requests when issued
  356. * in IDLE state.
  357. */
  358. int pd_retries;
  359. u8 go_timeout;
  360. u8 client_timeout;
  361. /* Extra delay in milliseconds between search iterations */
  362. unsigned int search_delay;
  363. int in_search_delay;
  364. #ifdef CONFIG_WIFI_DISPLAY
  365. struct wpabuf *wfd_ie_beacon;
  366. struct wpabuf *wfd_ie_probe_req;
  367. struct wpabuf *wfd_ie_probe_resp;
  368. struct wpabuf *wfd_ie_assoc_req;
  369. struct wpabuf *wfd_ie_invitation;
  370. struct wpabuf *wfd_ie_prov_disc_req;
  371. struct wpabuf *wfd_ie_prov_disc_resp;
  372. struct wpabuf *wfd_ie_go_neg;
  373. struct wpabuf *wfd_dev_info;
  374. struct wpabuf *wfd_assoc_bssid;
  375. struct wpabuf *wfd_coupled_sink_info;
  376. #endif /* CONFIG_WIFI_DISPLAY */
  377. };
  378. /**
  379. * struct p2p_message - Parsed P2P message (or P2P IE)
  380. */
  381. struct p2p_message {
  382. struct wpabuf *p2p_attributes;
  383. struct wpabuf *wps_attributes;
  384. struct wpabuf *wfd_subelems;
  385. u8 dialog_token;
  386. const u8 *capability;
  387. const u8 *go_intent;
  388. const u8 *status;
  389. const u8 *listen_channel;
  390. const u8 *operating_channel;
  391. const u8 *channel_list;
  392. u8 channel_list_len;
  393. const u8 *config_timeout;
  394. const u8 *intended_addr;
  395. const u8 *group_bssid;
  396. const u8 *invitation_flags;
  397. const u8 *group_info;
  398. size_t group_info_len;
  399. const u8 *group_id;
  400. size_t group_id_len;
  401. const u8 *device_id;
  402. const u8 *manageability;
  403. const u8 *noa;
  404. size_t noa_len;
  405. const u8 *ext_listen_timing;
  406. const u8 *minor_reason_code;
  407. /* P2P Device Info */
  408. const u8 *p2p_device_info;
  409. size_t p2p_device_info_len;
  410. const u8 *p2p_device_addr;
  411. const u8 *pri_dev_type;
  412. u8 num_sec_dev_types;
  413. char device_name[33];
  414. u16 config_methods;
  415. /* WPS IE */
  416. u16 dev_password_id;
  417. u16 wps_config_methods;
  418. const u8 *wps_pri_dev_type;
  419. const u8 *wps_sec_dev_type_list;
  420. size_t wps_sec_dev_type_list_len;
  421. const u8 *wps_vendor_ext[P2P_MAX_WPS_VENDOR_EXT];
  422. size_t wps_vendor_ext_len[P2P_MAX_WPS_VENDOR_EXT];
  423. const u8 *manufacturer;
  424. size_t manufacturer_len;
  425. const u8 *model_name;
  426. size_t model_name_len;
  427. const u8 *model_number;
  428. size_t model_number_len;
  429. const u8 *serial_number;
  430. size_t serial_number_len;
  431. /* DS Parameter Set IE */
  432. const u8 *ds_params;
  433. /* SSID IE */
  434. const u8 *ssid;
  435. };
  436. #define P2P_MAX_GROUP_ENTRIES 50
  437. struct p2p_group_info {
  438. unsigned int num_clients;
  439. struct p2p_client_info {
  440. const u8 *p2p_device_addr;
  441. const u8 *p2p_interface_addr;
  442. u8 dev_capab;
  443. u16 config_methods;
  444. const u8 *pri_dev_type;
  445. u8 num_sec_dev_types;
  446. const u8 *sec_dev_types;
  447. const char *dev_name;
  448. size_t dev_name_len;
  449. } client[P2P_MAX_GROUP_ENTRIES];
  450. };
  451. /* p2p_utils.c */
  452. int p2p_random(char *buf, size_t len);
  453. int p2p_channel_to_freq(const char *country, int reg_class, int channel);
  454. int p2p_freq_to_channel(const char *country, unsigned int freq, u8 *reg_class,
  455. u8 *channel);
  456. void p2p_channels_intersect(const struct p2p_channels *a,
  457. const struct p2p_channels *b,
  458. struct p2p_channels *res);
  459. int p2p_channels_includes(const struct p2p_channels *channels, u8 reg_class,
  460. u8 channel);
  461. /* p2p_parse.c */
  462. int p2p_parse_p2p_ie(const struct wpabuf *buf, struct p2p_message *msg);
  463. int p2p_parse_ies(const u8 *data, size_t len, struct p2p_message *msg);
  464. int p2p_parse(const u8 *data, size_t len, struct p2p_message *msg);
  465. void p2p_parse_free(struct p2p_message *msg);
  466. int p2p_attr_text(struct wpabuf *data, char *buf, char *end);
  467. int p2p_group_info_parse(const u8 *gi, size_t gi_len,
  468. struct p2p_group_info *info);
  469. /* p2p_build.c */
  470. struct p2p_noa_desc {
  471. u8 count_type;
  472. u32 duration;
  473. u32 interval;
  474. u32 start_time;
  475. };
  476. /* p2p_group.c */
  477. const u8 * p2p_group_get_interface_addr(struct p2p_group *group);
  478. u8 p2p_group_presence_req(struct p2p_group *group,
  479. const u8 *client_interface_addr,
  480. const u8 *noa, size_t noa_len);
  481. int p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id,
  482. size_t group_id_len);
  483. void p2p_group_update_ies(struct p2p_group *group);
  484. struct wpabuf * p2p_group_get_wfd_ie(struct p2p_group *g);
  485. void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token);
  486. void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype,
  487. u8 dialog_token);
  488. u8 * p2p_buf_add_ie_hdr(struct wpabuf *buf);
  489. void p2p_buf_add_status(struct wpabuf *buf, u8 status);
  490. void p2p_buf_add_device_info(struct wpabuf *buf, struct p2p_data *p2p,
  491. struct p2p_device *peer);
  492. void p2p_buf_add_device_id(struct wpabuf *buf, const u8 *dev_addr);
  493. void p2p_buf_update_ie_hdr(struct wpabuf *buf, u8 *len);
  494. void p2p_buf_add_capability(struct wpabuf *buf, u8 dev_capab, u8 group_capab);
  495. void p2p_buf_add_go_intent(struct wpabuf *buf, u8 go_intent);
  496. void p2p_buf_add_listen_channel(struct wpabuf *buf, const char *country,
  497. u8 reg_class, u8 channel);
  498. void p2p_buf_add_operating_channel(struct wpabuf *buf, const char *country,
  499. u8 reg_class, u8 channel);
  500. void p2p_buf_add_channel_list(struct wpabuf *buf, const char *country,
  501. struct p2p_channels *chan);
  502. void p2p_buf_add_config_timeout(struct wpabuf *buf, u8 go_timeout,
  503. u8 client_timeout);
  504. void p2p_buf_add_intended_addr(struct wpabuf *buf, const u8 *interface_addr);
  505. void p2p_buf_add_group_bssid(struct wpabuf *buf, const u8 *bssid);
  506. void p2p_buf_add_group_id(struct wpabuf *buf, const u8 *dev_addr,
  507. const u8 *ssid, size_t ssid_len);
  508. void p2p_buf_add_invitation_flags(struct wpabuf *buf, u8 flags);
  509. void p2p_buf_add_noa(struct wpabuf *buf, u8 noa_index, u8 opp_ps, u8 ctwindow,
  510. struct p2p_noa_desc *desc1, struct p2p_noa_desc *desc2);
  511. void p2p_buf_add_ext_listen_timing(struct wpabuf *buf, u16 period,
  512. u16 interval);
  513. void p2p_buf_add_p2p_interface(struct wpabuf *buf, struct p2p_data *p2p);
  514. void p2p_build_wps_ie(struct p2p_data *p2p, struct wpabuf *buf, int pw_id,
  515. int all_attr);
  516. /* p2p_sd.c */
  517. struct p2p_sd_query * p2p_pending_sd_req(struct p2p_data *p2p,
  518. struct p2p_device *dev);
  519. void p2p_free_sd_queries(struct p2p_data *p2p);
  520. void p2p_rx_gas_initial_req(struct p2p_data *p2p, const u8 *sa,
  521. const u8 *data, size_t len, int rx_freq);
  522. void p2p_rx_gas_initial_resp(struct p2p_data *p2p, const u8 *sa,
  523. const u8 *data, size_t len, int rx_freq);
  524. void p2p_rx_gas_comeback_req(struct p2p_data *p2p, const u8 *sa,
  525. const u8 *data, size_t len, int rx_freq);
  526. void p2p_rx_gas_comeback_resp(struct p2p_data *p2p, const u8 *sa,
  527. const u8 *data, size_t len, int rx_freq);
  528. int p2p_start_sd(struct p2p_data *p2p, struct p2p_device *dev);
  529. /* p2p_go_neg.c */
  530. int p2p_peer_channels_check(struct p2p_data *p2p, struct p2p_channels *own,
  531. struct p2p_device *dev,
  532. const u8 *channel_list, size_t channel_list_len);
  533. void p2p_process_go_neg_req(struct p2p_data *p2p, const u8 *sa,
  534. const u8 *data, size_t len, int rx_freq);
  535. void p2p_process_go_neg_resp(struct p2p_data *p2p, const u8 *sa,
  536. const u8 *data, size_t len, int rx_freq);
  537. void p2p_process_go_neg_conf(struct p2p_data *p2p, const u8 *sa,
  538. const u8 *data, size_t len);
  539. int p2p_connect_send(struct p2p_data *p2p, struct p2p_device *dev);
  540. u16 p2p_wps_method_pw_id(enum p2p_wps_method wps_method);
  541. /* p2p_pd.c */
  542. void p2p_process_prov_disc_req(struct p2p_data *p2p, const u8 *sa,
  543. const u8 *data, size_t len, int rx_freq);
  544. void p2p_process_prov_disc_resp(struct p2p_data *p2p, const u8 *sa,
  545. const u8 *data, size_t len);
  546. int p2p_send_prov_disc_req(struct p2p_data *p2p, struct p2p_device *dev,
  547. int join, int force_freq);
  548. void p2p_reset_pending_pd(struct p2p_data *p2p);
  549. /* p2p_invitation.c */
  550. void p2p_process_invitation_req(struct p2p_data *p2p, const u8 *sa,
  551. const u8 *data, size_t len, int rx_freq);
  552. void p2p_process_invitation_resp(struct p2p_data *p2p, const u8 *sa,
  553. const u8 *data, size_t len);
  554. int p2p_invite_send(struct p2p_data *p2p, struct p2p_device *dev,
  555. const u8 *go_dev_addr);
  556. void p2p_invitation_req_cb(struct p2p_data *p2p, int success);
  557. void p2p_invitation_resp_cb(struct p2p_data *p2p, int success);
  558. /* p2p_dev_disc.c */
  559. void p2p_process_dev_disc_req(struct p2p_data *p2p, const u8 *sa,
  560. const u8 *data, size_t len, int rx_freq);
  561. void p2p_dev_disc_req_cb(struct p2p_data *p2p, int success);
  562. int p2p_send_dev_disc_req(struct p2p_data *p2p, struct p2p_device *dev);
  563. void p2p_dev_disc_resp_cb(struct p2p_data *p2p, int success);
  564. void p2p_process_dev_disc_resp(struct p2p_data *p2p, const u8 *sa,
  565. const u8 *data, size_t len);
  566. void p2p_go_disc_req_cb(struct p2p_data *p2p, int success);
  567. void p2p_process_go_disc_req(struct p2p_data *p2p, const u8 *da, const u8 *sa,
  568. const u8 *data, size_t len, int rx_freq);
  569. /* p2p.c */
  570. void p2p_set_state(struct p2p_data *p2p, int new_state);
  571. void p2p_set_timeout(struct p2p_data *p2p, unsigned int sec,
  572. unsigned int usec);
  573. void p2p_clear_timeout(struct p2p_data *p2p);
  574. void p2p_continue_find(struct p2p_data *p2p);
  575. struct p2p_device * p2p_add_dev_from_go_neg_req(struct p2p_data *p2p,
  576. const u8 *addr,
  577. struct p2p_message *msg);
  578. void p2p_add_dev_info(struct p2p_data *p2p, const u8 *addr,
  579. struct p2p_device *dev, struct p2p_message *msg);
  580. int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, int level,
  581. const u8 *ies, size_t ies_len, int scan_res);
  582. struct p2p_device * p2p_get_device(struct p2p_data *p2p, const u8 *addr);
  583. struct p2p_device * p2p_get_device_interface(struct p2p_data *p2p,
  584. const u8 *addr);
  585. void p2p_go_neg_failed(struct p2p_data *p2p, struct p2p_device *peer,
  586. int status);
  587. void p2p_go_complete(struct p2p_data *p2p, struct p2p_device *peer);
  588. int p2p_match_dev_type(struct p2p_data *p2p, struct wpabuf *wps);
  589. int dev_type_list_match(const u8 *dev_type, const u8 *req_dev_type[],
  590. size_t num_req_dev_type);
  591. struct wpabuf * p2p_build_probe_resp_ies(struct p2p_data *p2p);
  592. void p2p_build_ssid(struct p2p_data *p2p, u8 *ssid, size_t *ssid_len);
  593. int p2p_send_action(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
  594. const u8 *src, const u8 *bssid, const u8 *buf,
  595. size_t len, unsigned int wait_time);
  596. void p2p_stop_listen_for_freq(struct p2p_data *p2p, int freq);
  597. #endif /* P2P_I_H */