wps.h 25 KB

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