README-WPS 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. wpa_supplicant and Wi-Fi Protected Setup (WPS)
  2. ==============================================
  3. This document describes how the WPS implementation in wpa_supplicant
  4. can be configured and how an external component on the client (e.g.,
  5. management GUI) is used to enable WPS enrollment and registrar
  6. registration.
  7. Introduction to WPS
  8. -------------------
  9. Wi-Fi Protected Setup (WPS) is a mechanism for easy configuration of a
  10. wireless network. It allows automated generation of random keys (WPA
  11. passphrase/PSK) and configuration of an access point and client
  12. devices. WPS includes number of methods for setting up connections
  13. with PIN method and push-button configuration (PBC) being the most
  14. commonly deployed options.
  15. While WPS can enable more home networks to use encryption in the
  16. wireless network, it should be noted that the use of the PIN and
  17. especially PBC mechanisms for authenticating the initial key setup is
  18. not very secure. As such, use of WPS may not be suitable for
  19. environments that require secure network access without chance for
  20. allowing outsiders to gain access during the setup phase.
  21. WPS uses following terms to describe the entities participating in the
  22. network setup:
  23. - access point: the WLAN access point
  24. - Registrar: a device that control a network and can authorize
  25. addition of new devices); this may be either in the AP ("internal
  26. Registrar") or in an external device, e.g., a laptop, ("external
  27. Registrar")
  28. - Enrollee: a device that is being authorized to use the network
  29. It should also be noted that the AP and a client device may change
  30. roles (i.e., AP acts as an Enrollee and client device as a Registrar)
  31. when WPS is used to configure the access point.
  32. More information about WPS is available from Wi-Fi Alliance:
  33. http://www.wi-fi.org/wifi-protected-setup
  34. wpa_supplicant implementation
  35. -----------------------------
  36. wpa_supplicant includes an optional WPS component that can be used as
  37. an Enrollee to enroll new network credential or as a Registrar to
  38. configure an AP.
  39. wpa_supplicant configuration
  40. ----------------------------
  41. WPS is an optional component that needs to be enabled in
  42. wpa_supplicant build configuration (.config). Here is an example
  43. configuration that includes WPS support and Linux nl80211 -based
  44. driver interface:
  45. CONFIG_DRIVER_NL80211=y
  46. CONFIG_WPS=y
  47. If you want to enable WPS external registrar (ER) functionality, you
  48. will also need to add following line:
  49. CONFIG_WPS_ER=y
  50. Following parameter can be used to enable support for NFC config method:
  51. CONFIG_WPS_NFC=y
  52. WPS needs the Universally Unique IDentifier (UUID; see RFC 4122) for
  53. the device. This is configured in the runtime configuration for
  54. wpa_supplicant (if not set, UUID will be generated based on local MAC
  55. address):
  56. # example UUID for WPS
  57. uuid=12345678-9abc-def0-1234-56789abcdef0
  58. The network configuration blocks needed for WPS are added
  59. automatically based on control interface commands, so they do not need
  60. to be added explicitly in the configuration file.
  61. WPS registration will generate new network blocks for the acquired
  62. credentials. If these are to be stored for future use (after
  63. restarting wpa_supplicant), wpa_supplicant will need to be configured
  64. to allow configuration file updates:
  65. update_config=1
  66. External operations
  67. -------------------
  68. WPS requires either a device PIN code (usually, 8-digit number) or a
  69. pushbutton event (for PBC) to allow a new WPS Enrollee to join the
  70. network. wpa_supplicant uses the control interface as an input channel
  71. for these events.
  72. The PIN value used in the commands must be processed by an UI to
  73. remove non-digit characters and potentially, to verify the checksum
  74. digit. "wpa_cli wps_check_pin <PIN>" can be used to do such processing.
  75. It returns FAIL if the PIN is invalid, or FAIL-CHECKSUM if the checksum
  76. digit is incorrect, or the processed PIN (non-digit characters removed)
  77. if the PIN is valid.
  78. If the client device has a display, a random PIN has to be generated
  79. for each WPS registration session. wpa_supplicant can do this with a
  80. control interface request, e.g., by calling wpa_cli:
  81. wpa_cli wps_pin any
  82. This will return the generated 8-digit PIN which will then need to be
  83. entered at the Registrar to complete WPS registration. At that point,
  84. the client will be enrolled with credentials needed to connect to the
  85. AP to access the network.
  86. If the client device does not have a display that could show the
  87. random PIN, a hardcoded PIN that is printed on a label can be
  88. used. wpa_supplicant is notified this with a control interface
  89. request, e.g., by calling wpa_cli:
  90. wpa_cli wps_pin any 12345670
  91. This starts the WPS negotiation in the same way as above with the
  92. generated PIN.
  93. When the wps_pin command is issued for an AP (including P2P GO) mode
  94. interface, an optional timeout parameter can be used to specify
  95. expiration timeout for the PIN in seconds. For example:
  96. wpa_cli wps_pin any 12345670 300
  97. If a random PIN is needed for a user interface, "wpa_cli wps_pin get"
  98. can be used to generate a new PIN without starting WPS negotiation.
  99. This random PIN can then be passed as an argument to another wps_pin
  100. call when the actual operation should be started.
  101. If the client design wants to support optional WPS PBC mode, this can
  102. be enabled by either a physical button in the client device or a
  103. virtual button in the user interface. The PBC operation requires that
  104. a button is also pressed at the AP/Registrar at about the same time (2
  105. minute window). wpa_supplicant is notified of the local button event
  106. over the control interface, e.g., by calling wpa_cli:
  107. wpa_cli wps_pbc
  108. At this point, the AP/Registrar has two minutes to complete WPS
  109. negotiation which will generate a new WPA PSK in the same way as the
  110. PIN method described above.
  111. If the client wants to operate in the Registrar role to learn the
  112. current AP configuration and optionally, to configure an AP,
  113. wpa_supplicant is notified over the control interface, e.g., with
  114. wpa_cli:
  115. wpa_cli wps_reg <AP BSSID> <AP PIN>
  116. (example: wpa_cli wps_reg 02:34:56:78:9a:bc 12345670)
  117. This is used to fetch the current AP settings instead of actually
  118. changing them. The main difference with the wps_pin command is that
  119. wps_reg uses the AP PIN (e.g., from a label on the AP) instead of a
  120. PIN generated at the client.
  121. In order to change the AP configuration, the new configuration
  122. parameters are given to the wps_reg command:
  123. wpa_cli wps_reg <AP BSSID> <AP PIN> <new SSID> <auth> <encr> <new key>
  124. examples:
  125. wpa_cli wps_reg 02:34:56:78:9a:bc 12345670 testing WPA2PSK CCMP 12345678
  126. wpa_cli wps_reg 02:34:56:78:9a:bc 12345670 clear OPEN NONE ""
  127. <auth> must be one of the following: OPEN WPAPSK WPA2PSK
  128. <encr> must be one of the following: NONE WEP TKIP CCMP
  129. Scanning
  130. --------
  131. Scan results ('wpa_cli scan_results' or 'wpa_cli bss <idx>') include a
  132. flags field that is used to indicate whether the BSS support WPS. If
  133. the AP support WPS, but has not recently activated a Registrar, [WPS]
  134. flag will be included. If PIN method has been recently selected,
  135. [WPS-PIN] is shown instead. Similarly, [WPS-PBC] is shown if PBC mode
  136. is in progress. GUI programs can use these as triggers for suggesting
  137. a guided WPS configuration to the user. In addition, control interface
  138. monitor events WPS-AP-AVAILABLE{,-PBC,-PIN} can be used to find out if
  139. there are WPS enabled APs in scan results without having to go through
  140. all the details in the GUI. These notification could be used, e.g., to
  141. suggest possible WPS connection to the user.
  142. wpa_gui
  143. -------
  144. wpa_gui-qt4 directory contains a sample GUI that shows an example of
  145. how WPS support can be integrated into the GUI. Its main window has a
  146. WPS tab that guides user through WPS registration with automatic AP
  147. selection. In addition, it shows how WPS can be started manually by
  148. selecting an AP from scan results.
  149. Credential processing
  150. ---------------------
  151. By default, wpa_supplicant processes received credentials and updates
  152. its configuration internally. However, it is possible to
  153. control these operations from external programs, if desired.
  154. This internal processing can be disabled with wps_cred_processing=1
  155. option. When this is used, an external program is responsible for
  156. processing the credential attributes and updating wpa_supplicant
  157. configuration based on them.
  158. Following control interface messages are sent out for external programs:
  159. WPS-CRED-RECEIVED <hexdump of Credential attribute(s)>
  160. For example:
  161. <2>WPS-CRED-RECEIVED 100e006f10260001011045000c6a6b6d2d7770732d74657374100300020020100f000200081027004030653462303435366332363666653064333961643135353461316634626637313234333761636664623766333939653534663166316230323061643434386235102000060266a0ee1727
  162. wpa_supplicant as WPS External Registrar (ER)
  163. ---------------------------------------------
  164. wpa_supplicant can be used as a WPS ER to configure an AP or enroll
  165. new Enrollee to join the network. This functionality uses UPnP and
  166. requires that a working IP connectivity is available with the AP (this
  167. can be either over a wired or wireless connection).
  168. Separate wpa_supplicant process can be started for WPS ER
  169. operations. A special "none" driver can be used in such a case to
  170. indicate that no local network interface is actually controlled. For
  171. example, following command could be used to start the ER:
  172. wpa_supplicant -Dnone -c er.conf -ieth0
  173. Sample er.conf:
  174. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=admin
  175. device_name=WPS External Registrar
  176. wpa_cli commands for ER functionality:
  177. wps_er_start [IP address]
  178. - start WPS ER functionality
  179. - the optional IP address parameter can be used to filter operations only
  180. to include a single AP
  181. - if run again while ER is active, the stored information (discovered APs
  182. and Enrollees) are shown again
  183. wps_er_stop
  184. - stop WPS ER functionality
  185. wps_er_learn <UUID|BSSID> <AP PIN>
  186. - learn AP configuration
  187. wps_er_set_config <UUID|BSSID> <network id>
  188. - use AP configuration from a locally configured network (e.g., from
  189. wps_reg command); this does not change the AP's configuration, but
  190. only prepares a configuration to be used when enrolling a new device
  191. to the AP
  192. wps_er_config <UUID|BSSID> <AP PIN> <new SSID> <auth> <encr> <new key>
  193. - examples:
  194. wps_er_config 87654321-9abc-def0-1234-56789abc0002 12345670 testing WPA2PSK CCMP 12345678
  195. wpa_er_config 87654321-9abc-def0-1234-56789abc0002 12345670 clear OPEN NONE ""
  196. <auth> must be one of the following: OPEN WPAPSK WPA2PSK
  197. <encr> must be one of the following: NONE WEP TKIP CCMP
  198. wps_er_pbc <Enrollee UUID|MAC address>
  199. - accept an Enrollee PBC using External Registrar
  200. wps_er_pin <Enrollee UUID|"any"|MAC address> <PIN> [Enrollee MAC address]
  201. - add an Enrollee PIN to External Registrar
  202. - if Enrollee UUID is not known, "any" can be used to add a wildcard PIN
  203. - if the MAC address of the enrollee is known, it should be configured
  204. to allow the AP to advertise list of authorized enrollees
  205. WPS ER events:
  206. WPS_EVENT_ER_AP_ADD
  207. - WPS ER discovered an AP
  208. WPS-ER-AP-ADD 87654321-9abc-def0-1234-56789abc0002 02:11:22:33:44:55 pri_dev_type=6-0050F204-1 wps_state=1 |Very friendly name|Company|Long description of the model|WAP|http://w1.fi/|http://w1.fi/hostapd/
  209. WPS_EVENT_ER_AP_REMOVE
  210. - WPS ER removed an AP entry
  211. WPS-ER-AP-REMOVE 87654321-9abc-def0-1234-56789abc0002
  212. WPS_EVENT_ER_ENROLLEE_ADD
  213. - WPS ER discovered a new Enrollee
  214. WPS-ER-ENROLLEE-ADD 2b7093f1-d6fb-5108-adbb-bea66bb87333 02:66:a0:ee:17:27 M1=1 config_methods=0x14d dev_passwd_id=0 pri_dev_type=1-0050F204-1 |Wireless Client|Company|cmodel|123|12345|
  215. WPS_EVENT_ER_ENROLLEE_REMOVE
  216. - WPS ER removed an Enrollee entry
  217. WPS-ER-ENROLLEE-REMOVE 2b7093f1-d6fb-5108-adbb-bea66bb87333 02:66:a0:ee:17:27
  218. WPS-ER-AP-SETTINGS
  219. - WPS ER learned AP settings
  220. WPS-ER-AP-SETTINGS uuid=fd91b4ec-e3fa-5891-a57d-8c59efeed1d2 ssid=test-wps auth_type=0x0020 encr_type=0x0008 key=12345678
  221. WPS with NFC
  222. ------------
  223. WPS can be used with NFC-based configuration method. An NFC tag
  224. containing a password token from the Enrollee can be used to
  225. authenticate the connection instead of the PIN. In addition, an NFC tag
  226. with a configuration token can be used to transfer AP settings without
  227. going through the WPS protocol.
  228. When the station acts as an Enrollee, a local NFC tag with a password
  229. token can be used by touching the NFC interface of a Registrar.
  230. "wps_nfc [BSSID]" command starts WPS protocol run with the local end as
  231. the Enrollee using the NFC password token that is either pre-configured
  232. in the configuration file (wps_nfc_dev_pw_id, wps_nfc_dh_pubkey,
  233. wps_nfc_dh_privkey, wps_nfc_dev_pw) or generated dynamically with
  234. "wps_nfc_token <WPS|NDEF>" command. The included nfc_pw_token tool
  235. (build with "make nfc_pw_token") can be used to generate NFC password
  236. tokens during manufacturing (each station needs to have its own random
  237. keys).
  238. The "wps_nfc_config_token <WPS/NDEF>" command can be used to build an
  239. NFC configuration token when wpa_supplicant is controlling an AP
  240. interface (AP or P2P GO). The output value from this command is a
  241. hexdump of the current AP configuration (WPS parameter requests this to
  242. include only the WPS attributes; NDEF parameter requests additional NDEF
  243. encapsulation to be included). This data needs to be written to an NFC
  244. tag with an external program. Once written, the NFC configuration token
  245. can be used to touch an NFC interface on a station to provision the
  246. credentials needed to access the network.
  247. The "wps_nfc_config_token <WPS/NDEF> <network id>" command can be used
  248. to build an NFC configuration token based on a locally configured
  249. network.
  250. If the station includes NFC interface and reads an NFC tag with a MIME
  251. media type "application/vnd.wfa.wsc", the NDEF message payload (with or
  252. without NDEF encapsulation) can be delivered to wpa_supplicant using the
  253. following wpa_cli command:
  254. wps_nfc_tag_read <hexdump of payload>
  255. If the NFC tag contains a configuration token, the network is added to
  256. wpa_supplicant configuration. If the NFC tag contains a password token,
  257. the token is added to the WPS Registrar component. This information can
  258. then be used with wps_reg command (when the NFC password token was from
  259. an AP) using a special value "nfc-pw" in place of the PIN parameter. If
  260. the ER functionality has been started (wps_er_start), the NFC password
  261. token is used to enable enrollment of a new station (that was the source
  262. of the NFC password token).
  263. "nfc_get_handover_req <NDEF> <WPS-CR>" command can be used to build the
  264. WPS carrier record for a Handover Request Message for connection
  265. handover. The first argument selects the format of the output data and
  266. the second argument selects which type of connection handover is
  267. requested (WPS-CR = Wi-Fi handover as specified in WSC 2.0).
  268. "nfc_get_handover_sel <NDEF> <WPS> [UUID|BSSID]" command can be used to
  269. build the contents of a Handover Select Message for connection handover
  270. when this does not depend on the contents of the Handover Request
  271. Message. The first argument selects the format of the output data and
  272. the second argument selects which type of connection handover is
  273. requested (WPS = Wi-Fi handover as specified in WSC 2.0). If the options
  274. UUID|BSSID argument is included, this is a request to build the handover
  275. message for the specified AP when wpa_supplicant is operating as a WPS
  276. ER.
  277. "nfc_report_handover <INIT/RESP> WPS <carrier from handover request>
  278. <carrier from handover select>" can be used as an alternative way for
  279. reporting completed NFC connection handover. The first parameter
  280. indicates whether the local device initiated or responded to the
  281. connection handover and the carrier records are the selected carrier
  282. from the handover request and select messages as a hexdump.
  283. The "wps_er_nfc_config_token <WPS/NDEF> <UUID|BSSID>" command can be
  284. used to build an NFC configuration token for the specified AP when
  285. wpa_supplicant is operating as a WPS ER. The output value from this
  286. command is a hexdump of the selected AP configuration (WPS parameter
  287. requests this to include only the WPS attributes; NDEF parameter
  288. requests additional NDEF encapsulation to be included). This data needs
  289. to be written to an NFC tag with an external program. Once written, the
  290. NFC configuration token can be used to touch an NFC interface on a
  291. station to provision the credentials needed to access the network.