wps.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. /*
  2. * Wi-Fi Protected Setup
  3. * Copyright (c) 2007-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef WPS_H
  15. #define WPS_H
  16. #include "wps_defs.h"
  17. /**
  18. * enum wsc_op_code - EAP-WSC OP-Code values
  19. */
  20. enum wsc_op_code {
  21. WSC_UPnP = 0 /* No OP Code in UPnP transport */,
  22. WSC_Start = 0x01,
  23. WSC_ACK = 0x02,
  24. WSC_NACK = 0x03,
  25. WSC_MSG = 0x04,
  26. WSC_Done = 0x05,
  27. WSC_FRAG_ACK = 0x06
  28. };
  29. struct wps_registrar;
  30. struct upnp_wps_device_sm;
  31. struct wps_er;
  32. /**
  33. * struct wps_credential - WPS Credential
  34. * @ssid: SSID
  35. * @ssid_len: Length of SSID
  36. * @auth_type: Authentication Type (WPS_AUTH_OPEN, .. flags)
  37. * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags)
  38. * @key_idx: Key index
  39. * @key: Key
  40. * @key_len: Key length in octets
  41. * @mac_addr: MAC address of the Credential receiver
  42. * @cred_attr: Unparsed Credential attribute data (used only in cred_cb());
  43. * this may be %NULL, if not used
  44. * @cred_attr_len: Length of cred_attr in octets
  45. */
  46. struct wps_credential {
  47. u8 ssid[32];
  48. size_t ssid_len;
  49. u16 auth_type;
  50. u16 encr_type;
  51. u8 key_idx;
  52. u8 key[64];
  53. size_t key_len;
  54. u8 mac_addr[ETH_ALEN];
  55. const u8 *cred_attr;
  56. size_t cred_attr_len;
  57. };
  58. #define WPS_DEV_TYPE_LEN 8
  59. #define WPS_DEV_TYPE_BUFSIZE 21
  60. /**
  61. * struct wps_device_data - WPS Device Data
  62. * @mac_addr: Device MAC address
  63. * @device_name: Device Name (0..32 octets encoded in UTF-8)
  64. * @manufacturer: Manufacturer (0..64 octets encoded in UTF-8)
  65. * @model_name: Model Name (0..32 octets encoded in UTF-8)
  66. * @model_number: Model Number (0..32 octets encoded in UTF-8)
  67. * @serial_number: Serial Number (0..32 octets encoded in UTF-8)
  68. * @pri_dev_type: Primary Device Type
  69. * @os_version: OS Version
  70. * @rf_bands: RF bands (WPS_RF_24GHZ, WPS_RF_50GHZ flags)
  71. * @p2p: Whether the device is a P2P device
  72. */
  73. struct wps_device_data {
  74. u8 mac_addr[ETH_ALEN];
  75. char *device_name;
  76. char *manufacturer;
  77. char *model_name;
  78. char *model_number;
  79. char *serial_number;
  80. u8 pri_dev_type[WPS_DEV_TYPE_LEN];
  81. u32 os_version;
  82. u8 rf_bands;
  83. int p2p;
  84. };
  85. struct oob_conf_data {
  86. enum {
  87. OOB_METHOD_UNKNOWN = 0,
  88. OOB_METHOD_DEV_PWD_E,
  89. OOB_METHOD_DEV_PWD_R,
  90. OOB_METHOD_CRED,
  91. } oob_method;
  92. struct wpabuf *dev_password;
  93. struct wpabuf *pubkey_hash;
  94. };
  95. /**
  96. * struct wps_config - WPS configuration for a single registration protocol run
  97. */
  98. struct wps_config {
  99. /**
  100. * wps - Pointer to long term WPS context
  101. */
  102. struct wps_context *wps;
  103. /**
  104. * registrar - Whether this end is a Registrar
  105. */
  106. int registrar;
  107. /**
  108. * pin - Enrollee Device Password (%NULL for Registrar or PBC)
  109. */
  110. const u8 *pin;
  111. /**
  112. * pin_len - Length on pin in octets
  113. */
  114. size_t pin_len;
  115. /**
  116. * pbc - Whether this is protocol run uses PBC
  117. */
  118. int pbc;
  119. /**
  120. * assoc_wps_ie: (Re)AssocReq WPS IE (in AP; %NULL if not AP)
  121. */
  122. const struct wpabuf *assoc_wps_ie;
  123. /**
  124. * new_ap_settings - New AP settings (%NULL if not used)
  125. *
  126. * This parameter provides new AP settings when using a wireless
  127. * stations as a Registrar to configure the AP. %NULL means that AP
  128. * will not be reconfigured, i.e., the station will only learn the
  129. * current AP settings by using AP PIN.
  130. */
  131. const struct wps_credential *new_ap_settings;
  132. /**
  133. * peer_addr: MAC address of the peer in AP; %NULL if not AP
  134. */
  135. const u8 *peer_addr;
  136. /**
  137. * use_psk_key - Use PSK format key in Credential
  138. *
  139. * Force PSK format to be used instead of ASCII passphrase when
  140. * building Credential for an Enrollee. The PSK value is set in
  141. * struct wpa_context::psk.
  142. */
  143. int use_psk_key;
  144. /**
  145. * dev_pw_id - Device Password ID for Enrollee when PIN is used
  146. */
  147. u16 dev_pw_id;
  148. };
  149. struct wps_data * wps_init(const struct wps_config *cfg);
  150. void wps_deinit(struct wps_data *data);
  151. /**
  152. * enum wps_process_res - WPS message processing result
  153. */
  154. enum wps_process_res {
  155. /**
  156. * WPS_DONE - Processing done
  157. */
  158. WPS_DONE,
  159. /**
  160. * WPS_CONTINUE - Processing continues
  161. */
  162. WPS_CONTINUE,
  163. /**
  164. * WPS_FAILURE - Processing failed
  165. */
  166. WPS_FAILURE,
  167. /**
  168. * WPS_PENDING - Processing continues, but waiting for an external
  169. * event (e.g., UPnP message from an external Registrar)
  170. */
  171. WPS_PENDING
  172. };
  173. enum wps_process_res wps_process_msg(struct wps_data *wps,
  174. enum wsc_op_code op_code,
  175. const struct wpabuf *msg);
  176. struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code);
  177. int wps_is_selected_pbc_registrar(const struct wpabuf *msg);
  178. int wps_is_selected_pin_registrar(const struct wpabuf *msg);
  179. int wps_ap_priority_compar(const struct wpabuf *wps_a,
  180. const struct wpabuf *wps_b);
  181. int wps_is_addr_authorized(const struct wpabuf *msg, const u8 *addr,
  182. int ver1_compat);
  183. const u8 * wps_get_uuid_e(const struct wpabuf *msg);
  184. struct wpabuf * wps_build_assoc_req_ie(enum wps_request_type req_type);
  185. struct wpabuf * wps_build_assoc_resp_ie(void);
  186. struct wpabuf * wps_build_probe_req_ie(int pbc, struct wps_device_data *dev,
  187. const u8 *uuid,
  188. enum wps_request_type req_type);
  189. /**
  190. * struct wps_registrar_config - WPS Registrar configuration
  191. */
  192. struct wps_registrar_config {
  193. /**
  194. * new_psk_cb - Callback for new PSK
  195. * @ctx: Higher layer context data (cb_ctx)
  196. * @mac_addr: MAC address of the Enrollee
  197. * @psk: The new PSK
  198. * @psk_len: The length of psk in octets
  199. * Returns: 0 on success, -1 on failure
  200. *
  201. * This callback is called when a new per-device PSK is provisioned.
  202. */
  203. int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
  204. size_t psk_len);
  205. /**
  206. * set_ie_cb - Callback for WPS IE changes
  207. * @ctx: Higher layer context data (cb_ctx)
  208. * @beacon_ie: WPS IE for Beacon
  209. * @probe_resp_ie: WPS IE for Probe Response
  210. * Returns: 0 on success, -1 on failure
  211. *
  212. * This callback is called whenever the WPS IE in Beacon or Probe
  213. * Response frames needs to be changed (AP only). Callee is responsible
  214. * for freeing the buffers.
  215. */
  216. int (*set_ie_cb)(void *ctx, struct wpabuf *beacon_ie,
  217. struct wpabuf *probe_resp_ie);
  218. /**
  219. * pin_needed_cb - Callback for requesting a PIN
  220. * @ctx: Higher layer context data (cb_ctx)
  221. * @uuid_e: UUID-E of the unknown Enrollee
  222. * @dev: Device Data from the unknown Enrollee
  223. *
  224. * This callback is called whenever an unknown Enrollee requests to use
  225. * PIN method and a matching PIN (Device Password) is not found in
  226. * Registrar data.
  227. */
  228. void (*pin_needed_cb)(void *ctx, const u8 *uuid_e,
  229. const struct wps_device_data *dev);
  230. /**
  231. * reg_success_cb - Callback for reporting successful registration
  232. * @ctx: Higher layer context data (cb_ctx)
  233. * @mac_addr: MAC address of the Enrollee
  234. * @uuid_e: UUID-E of the Enrollee
  235. *
  236. * This callback is called whenever an Enrollee completes registration
  237. * successfully.
  238. */
  239. void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
  240. const u8 *uuid_e);
  241. /**
  242. * set_sel_reg_cb - Callback for reporting selected registrar changes
  243. * @ctx: Higher layer context data (cb_ctx)
  244. * @sel_reg: Whether the Registrar is selected
  245. * @dev_passwd_id: Device Password ID to indicate with method or
  246. * specific password the Registrar intends to use
  247. * @sel_reg_config_methods: Bit field of active config methods
  248. *
  249. * This callback is called whenever the Selected Registrar state
  250. * changes (e.g., a new PIN becomes available or PBC is invoked). This
  251. * callback is only used by External Registrar implementation;
  252. * set_ie_cb() is used by AP implementation in similar caes, but it
  253. * provides the full WPS IE data instead of just the minimal Registrar
  254. * state information.
  255. */
  256. void (*set_sel_reg_cb)(void *ctx, int sel_reg, u16 dev_passwd_id,
  257. u16 sel_reg_config_methods);
  258. /**
  259. * enrollee_seen_cb - Callback for reporting Enrollee based on ProbeReq
  260. * @ctx: Higher layer context data (cb_ctx)
  261. * @addr: MAC address of the Enrollee
  262. * @uuid_e: UUID of the Enrollee
  263. * @pri_dev_type: Primary device type
  264. * @config_methods: Config Methods
  265. * @dev_password_id: Device Password ID
  266. * @request_type: Request Type
  267. * @dev_name: Device Name (if available)
  268. */
  269. void (*enrollee_seen_cb)(void *ctx, const u8 *addr, const u8 *uuid_e,
  270. const u8 *pri_dev_type, u16 config_methods,
  271. u16 dev_password_id, u8 request_type,
  272. const char *dev_name);
  273. /**
  274. * cb_ctx: Higher layer context data for Registrar callbacks
  275. */
  276. void *cb_ctx;
  277. /**
  278. * skip_cred_build: Do not build credential
  279. *
  280. * This option can be used to disable internal code that builds
  281. * Credential attribute into M8 based on the current network
  282. * configuration and Enrollee capabilities. The extra_cred data will
  283. * then be used as the Credential(s).
  284. */
  285. int skip_cred_build;
  286. /**
  287. * extra_cred: Additional Credential attribute(s)
  288. *
  289. * This optional data (set to %NULL to disable) can be used to add
  290. * Credential attribute(s) for other networks into M8. If
  291. * skip_cred_build is set, this will also override the automatically
  292. * generated Credential attribute.
  293. */
  294. const u8 *extra_cred;
  295. /**
  296. * extra_cred_len: Length of extra_cred in octets
  297. */
  298. size_t extra_cred_len;
  299. /**
  300. * disable_auto_conf - Disable auto-configuration on first registration
  301. *
  302. * By default, the AP that is started in not configured state will
  303. * generate a random PSK and move to configured state when the first
  304. * registration protocol run is completed successfully. This option can
  305. * be used to disable this functionality and leave it up to an external
  306. * program to take care of configuration. This requires the extra_cred
  307. * to be set with a suitable Credential and skip_cred_build being used.
  308. */
  309. int disable_auto_conf;
  310. /**
  311. * static_wep_only - Whether the BSS supports only static WEP
  312. */
  313. int static_wep_only;
  314. };
  315. /**
  316. * enum wps_event - WPS event types
  317. */
  318. enum wps_event {
  319. /**
  320. * WPS_EV_M2D - M2D received (Registrar did not know us)
  321. */
  322. WPS_EV_M2D,
  323. /**
  324. * WPS_EV_FAIL - Registration failed
  325. */
  326. WPS_EV_FAIL,
  327. /**
  328. * WPS_EV_SUCCESS - Registration succeeded
  329. */
  330. WPS_EV_SUCCESS,
  331. /**
  332. * WPS_EV_PWD_AUTH_FAIL - Password authentication failed
  333. */
  334. WPS_EV_PWD_AUTH_FAIL,
  335. /**
  336. * WPS_EV_PBC_OVERLAP - PBC session overlap detected
  337. */
  338. WPS_EV_PBC_OVERLAP,
  339. /**
  340. * WPS_EV_PBC_TIMEOUT - PBC walktime expired before protocol run start
  341. */
  342. WPS_EV_PBC_TIMEOUT,
  343. /**
  344. * WPS_EV_ER_AP_ADD - ER: AP added
  345. */
  346. WPS_EV_ER_AP_ADD,
  347. /**
  348. * WPS_EV_ER_AP_REMOVE - ER: AP removed
  349. */
  350. WPS_EV_ER_AP_REMOVE,
  351. /**
  352. * WPS_EV_ER_ENROLLEE_ADD - ER: Enrollee added
  353. */
  354. WPS_EV_ER_ENROLLEE_ADD,
  355. /**
  356. * WPS_EV_ER_ENROLLEE_REMOVE - ER: Enrollee removed
  357. */
  358. WPS_EV_ER_ENROLLEE_REMOVE,
  359. /**
  360. * WPS_EV_ER_AP_SETTINGS - ER: AP Settings learned
  361. */
  362. WPS_EV_ER_AP_SETTINGS
  363. };
  364. /**
  365. * union wps_event_data - WPS event data
  366. */
  367. union wps_event_data {
  368. /**
  369. * struct wps_event_m2d - M2D event data
  370. */
  371. struct wps_event_m2d {
  372. u16 config_methods;
  373. const u8 *manufacturer;
  374. size_t manufacturer_len;
  375. const u8 *model_name;
  376. size_t model_name_len;
  377. const u8 *model_number;
  378. size_t model_number_len;
  379. const u8 *serial_number;
  380. size_t serial_number_len;
  381. const u8 *dev_name;
  382. size_t dev_name_len;
  383. const u8 *primary_dev_type; /* 8 octets */
  384. u16 config_error;
  385. u16 dev_password_id;
  386. } m2d;
  387. /**
  388. * struct wps_event_fail - Registration failure information
  389. * @msg: enum wps_msg_type
  390. */
  391. struct wps_event_fail {
  392. int msg;
  393. } fail;
  394. struct wps_event_pwd_auth_fail {
  395. int enrollee;
  396. int part;
  397. } pwd_auth_fail;
  398. struct wps_event_er_ap {
  399. const u8 *uuid;
  400. const u8 *mac_addr;
  401. const char *friendly_name;
  402. const char *manufacturer;
  403. const char *manufacturer_url;
  404. const char *model_description;
  405. const char *model_name;
  406. const char *model_number;
  407. const char *model_url;
  408. const char *serial_number;
  409. const char *upc;
  410. const u8 *pri_dev_type;
  411. u8 wps_state;
  412. } ap;
  413. struct wps_event_er_enrollee {
  414. const u8 *uuid;
  415. const u8 *mac_addr;
  416. int m1_received;
  417. u16 config_methods;
  418. u16 dev_passwd_id;
  419. const u8 *pri_dev_type;
  420. const char *dev_name;
  421. const char *manufacturer;
  422. const char *model_name;
  423. const char *model_number;
  424. const char *serial_number;
  425. } enrollee;
  426. struct wps_event_er_ap_settings {
  427. const u8 *uuid;
  428. const struct wps_credential *cred;
  429. } ap_settings;
  430. };
  431. /**
  432. * struct upnp_pending_message - Pending PutWLANResponse messages
  433. * @next: Pointer to next pending message or %NULL
  434. * @addr: NewWLANEventMAC
  435. * @msg: NewMessage
  436. * @type: Message Type
  437. */
  438. struct upnp_pending_message {
  439. struct upnp_pending_message *next;
  440. u8 addr[ETH_ALEN];
  441. struct wpabuf *msg;
  442. enum wps_msg_type type;
  443. };
  444. /**
  445. * struct wps_context - Long term WPS context data
  446. *
  447. * This data is stored at the higher layer Authenticator or Supplicant data
  448. * structures and it is maintained over multiple registration protocol runs.
  449. */
  450. struct wps_context {
  451. /**
  452. * ap - Whether the local end is an access point
  453. */
  454. int ap;
  455. /**
  456. * registrar - Pointer to WPS registrar data from wps_registrar_init()
  457. */
  458. struct wps_registrar *registrar;
  459. /**
  460. * wps_state - Current WPS state
  461. */
  462. enum wps_state wps_state;
  463. /**
  464. * ap_setup_locked - Whether AP setup is locked (only used at AP)
  465. */
  466. int ap_setup_locked;
  467. /**
  468. * uuid - Own UUID
  469. */
  470. u8 uuid[16];
  471. /**
  472. * ssid - SSID
  473. *
  474. * This SSID is used by the Registrar to fill in information for
  475. * Credentials. In addition, AP uses it when acting as an Enrollee to
  476. * notify Registrar of the current configuration.
  477. */
  478. u8 ssid[32];
  479. /**
  480. * ssid_len - Length of ssid in octets
  481. */
  482. size_t ssid_len;
  483. /**
  484. * dev - Own WPS device data
  485. */
  486. struct wps_device_data dev;
  487. /**
  488. * oob_conf - OOB Config data
  489. */
  490. struct oob_conf_data oob_conf;
  491. /**
  492. * oob_dev_pw_id - OOB Device password id
  493. */
  494. u16 oob_dev_pw_id;
  495. /**
  496. * dh_ctx - Context data for Diffie-Hellman operation
  497. */
  498. void *dh_ctx;
  499. /**
  500. * dh_privkey - Diffie-Hellman private key
  501. */
  502. struct wpabuf *dh_privkey;
  503. /**
  504. * dh_pubkey_oob - Diffie-Hellman public key
  505. */
  506. struct wpabuf *dh_pubkey;
  507. /**
  508. * config_methods - Enabled configuration methods
  509. *
  510. * Bit field of WPS_CONFIG_*
  511. */
  512. u16 config_methods;
  513. /**
  514. * encr_types - Enabled encryption types (bit field of WPS_ENCR_*)
  515. */
  516. u16 encr_types;
  517. /**
  518. * auth_types - Authentication types (bit field of WPS_AUTH_*)
  519. */
  520. u16 auth_types;
  521. /**
  522. * network_key - The current Network Key (PSK) or %NULL to generate new
  523. *
  524. * If %NULL, Registrar will generate per-device PSK. In addition, AP
  525. * uses this when acting as an Enrollee to notify Registrar of the
  526. * current configuration.
  527. *
  528. * When using WPA/WPA2-Person, this key can be either the ASCII
  529. * passphrase (8..63 characters) or the 32-octet PSK (64 hex
  530. * characters). When this is set to the ASCII passphrase, the PSK can
  531. * be provided in the psk buffer and used per-Enrollee to control which
  532. * key type is included in the Credential (e.g., to reduce calculation
  533. * need on low-powered devices by provisioning PSK while still allowing
  534. * other devices to get the passphrase).
  535. */
  536. u8 *network_key;
  537. /**
  538. * network_key_len - Length of network_key in octets
  539. */
  540. size_t network_key_len;
  541. /**
  542. * psk - The current network PSK
  543. *
  544. * This optional value can be used to provide the current PSK if
  545. * network_key is set to the ASCII passphrase.
  546. */
  547. u8 psk[32];
  548. /**
  549. * psk_set - Whether psk value is set
  550. */
  551. int psk_set;
  552. /**
  553. * ap_settings - AP Settings override for M7 (only used at AP)
  554. *
  555. * If %NULL, AP Settings attributes will be generated based on the
  556. * current network configuration.
  557. */
  558. u8 *ap_settings;
  559. /**
  560. * ap_settings_len - Length of ap_settings in octets
  561. */
  562. size_t ap_settings_len;
  563. /**
  564. * friendly_name - Friendly Name (required for UPnP)
  565. */
  566. char *friendly_name;
  567. /**
  568. * manufacturer_url - Manufacturer URL (optional for UPnP)
  569. */
  570. char *manufacturer_url;
  571. /**
  572. * model_description - Model Description (recommended for UPnP)
  573. */
  574. char *model_description;
  575. /**
  576. * model_url - Model URL (optional for UPnP)
  577. */
  578. char *model_url;
  579. /**
  580. * upc - Universal Product Code (optional for UPnP)
  581. */
  582. char *upc;
  583. /**
  584. * cred_cb - Callback to notify that new Credentials were received
  585. * @ctx: Higher layer context data (cb_ctx)
  586. * @cred: The received Credential
  587. * Return: 0 on success, -1 on failure
  588. */
  589. int (*cred_cb)(void *ctx, const struct wps_credential *cred);
  590. /**
  591. * event_cb - Event callback (state information about progress)
  592. * @ctx: Higher layer context data (cb_ctx)
  593. * @event: Event type
  594. * @data: Event data
  595. */
  596. void (*event_cb)(void *ctx, enum wps_event event,
  597. union wps_event_data *data);
  598. /**
  599. * cb_ctx: Higher layer context data for callbacks
  600. */
  601. void *cb_ctx;
  602. struct upnp_wps_device_sm *wps_upnp;
  603. /* Pending messages from UPnP PutWLANResponse */
  604. struct upnp_pending_message *upnp_msgs;
  605. };
  606. struct oob_device_data {
  607. char *device_name;
  608. char *device_path;
  609. void * (*init_func)(struct wps_context *, struct oob_device_data *,
  610. int);
  611. struct wpabuf * (*read_func)(void *);
  612. int (*write_func)(void *, struct wpabuf *);
  613. void (*deinit_func)(void *);
  614. };
  615. struct oob_nfc_device_data {
  616. int (*init_func)(char *);
  617. void * (*read_func)(size_t *);
  618. int (*write_func)(void *, size_t);
  619. void (*deinit_func)(void);
  620. };
  621. struct wps_registrar *
  622. wps_registrar_init(struct wps_context *wps,
  623. const struct wps_registrar_config *cfg);
  624. void wps_registrar_deinit(struct wps_registrar *reg);
  625. int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
  626. const u8 *uuid, const u8 *pin, size_t pin_len,
  627. int timeout);
  628. int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
  629. int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
  630. int wps_registrar_button_pushed(struct wps_registrar *reg);
  631. void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
  632. const struct wpabuf *wps_data,
  633. int p2p_wildcard);
  634. int wps_registrar_update_ie(struct wps_registrar *reg);
  635. int wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr,
  636. char *buf, size_t buflen);
  637. unsigned int wps_pin_checksum(unsigned int pin);
  638. unsigned int wps_pin_valid(unsigned int pin);
  639. unsigned int wps_generate_pin(void);
  640. void wps_free_pending_msgs(struct upnp_pending_message *msgs);
  641. struct oob_device_data * wps_get_oob_device(char *device_type);
  642. struct oob_nfc_device_data * wps_get_oob_nfc_device(char *device_name);
  643. int wps_get_oob_method(char *method);
  644. int wps_process_oob(struct wps_context *wps, struct oob_device_data *oob_dev,
  645. int registrar);
  646. int wps_attr_text(struct wpabuf *data, char *buf, char *end);
  647. struct wps_er * wps_er_init(struct wps_context *wps, const char *ifname,
  648. const char *filter);
  649. void wps_er_refresh(struct wps_er *er);
  650. void wps_er_deinit(struct wps_er *er, void (*cb)(void *ctx), void *ctx);
  651. void wps_er_set_sel_reg(struct wps_er *er, int sel_reg, u16 dev_passwd_id,
  652. u16 sel_reg_config_methods);
  653. int wps_er_pbc(struct wps_er *er, const u8 *uuid);
  654. int wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *pin,
  655. size_t pin_len);
  656. int wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *pin,
  657. size_t pin_len, const struct wps_credential *cred);
  658. int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN]);
  659. char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
  660. size_t buf_len);
  661. void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
  662. u16 wps_config_methods_str2bin(const char *str);
  663. #ifdef CONFIG_WPS_STRICT
  664. int wps_validate_beacon(const struct wpabuf *wps_ie);
  665. int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe);
  666. int wps_validate_probe_req(const struct wpabuf *wps_ie);
  667. int wps_validate_assoc_req(const struct wpabuf *wps_ie);
  668. int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
  669. int wps_validate_m1(const struct wpabuf *tlvs);
  670. int wps_validate_m2(const struct wpabuf *tlvs);
  671. int wps_validate_m2d(const struct wpabuf *tlvs);
  672. int wps_validate_m3(const struct wpabuf *tlvs);
  673. int wps_validate_m4(const struct wpabuf *tlvs);
  674. int wps_validate_m4_encr(const struct wpabuf *tlvs);
  675. int wps_validate_m5(const struct wpabuf *tlvs);
  676. int wps_validate_m5_encr(const struct wpabuf *tlvs);
  677. int wps_validate_m6(const struct wpabuf *tlvs);
  678. int wps_validate_m6_encr(const struct wpabuf *tlvs);
  679. int wps_validate_m7(const struct wpabuf *tlvs);
  680. int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap);
  681. int wps_validate_m8(const struct wpabuf *tlvs);
  682. int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap);
  683. int wps_validate_wsc_ack(const struct wpabuf *tlvs);
  684. int wps_validate_wsc_nack(const struct wpabuf *tlvs);
  685. int wps_validate_wsc_done(const struct wpabuf *tlvs);
  686. int wps_validate_upnp_set_selected_registrar(const struct wpabuf *tlvs);
  687. #else /* CONFIG_WPS_STRICT */
  688. static inline int wps_validate_beacon(const struct wpabuf *wps_ie){
  689. return 0;
  690. }
  691. static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie,
  692. int probe)
  693. {
  694. return 0;
  695. }
  696. static inline int wps_validate_probe_req(const struct wpabuf *wps_ie)
  697. {
  698. return 0;
  699. }
  700. static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie)
  701. {
  702. return 0;
  703. }
  704. static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
  705. {
  706. return 0;
  707. }
  708. static inline int wps_validate_m1(const struct wpabuf *tlvs)
  709. {
  710. return 0;
  711. }
  712. static inline int wps_validate_m2(const struct wpabuf *tlvs)
  713. {
  714. return 0;
  715. }
  716. static inline int wps_validate_m2d(const struct wpabuf *tlvs)
  717. {
  718. return 0;
  719. }
  720. static inline int wps_validate_m3(const struct wpabuf *tlvs)
  721. {
  722. return 0;
  723. }
  724. static inline int wps_validate_m4(const struct wpabuf *tlvs)
  725. {
  726. return 0;
  727. }
  728. static inline int wps_validate_m4_encr(const struct wpabuf *tlvs)
  729. {
  730. return 0;
  731. }
  732. static inline int wps_validate_m5(const struct wpabuf *tlvs)
  733. {
  734. return 0;
  735. }
  736. static inline int wps_validate_m5_encr(const struct wpabuf *tlvs)
  737. {
  738. return 0;
  739. }
  740. static inline int wps_validate_m6(const struct wpabuf *tlvs)
  741. {
  742. return 0;
  743. }
  744. static inline int wps_validate_m6_encr(const struct wpabuf *tlvs)
  745. {
  746. return 0;
  747. }
  748. static inline int wps_validate_m7(const struct wpabuf *tlvs)
  749. {
  750. return 0;
  751. }
  752. static inline int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap)
  753. {
  754. return 0;
  755. }
  756. static inline int wps_validate_m8(const struct wpabuf *tlvs)
  757. {
  758. return 0;
  759. }
  760. static inline int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap)
  761. {
  762. return 0;
  763. }
  764. static inline int wps_validate_wsc_ack(const struct wpabuf *tlvs)
  765. {
  766. return 0;
  767. }
  768. static inline int wps_validate_wsc_nack(const struct wpabuf *tlvs)
  769. {
  770. return 0;
  771. }
  772. static inline int wps_validate_wsc_done(const struct wpabuf *tlvs)
  773. {
  774. return 0;
  775. }
  776. static inline int wps_validate_upnp_set_selected_registrar(
  777. const struct wpabuf *tlvs)
  778. {
  779. return 0;
  780. }
  781. #endif /* CONFIG_WPS_STRICT */
  782. #endif /* WPS_H */