WPS: Added wpa_supplicant ctrl_iface commands to start WPS processing
[wpasupplicant] / wpa_supplicant / wps_supplicant.c
1 /*
2  * wpa_supplicant / WPS integration
3  * Copyright (c) 2008, 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
15 #include "includes.h"
16
17 #include "common.h"
18 #include "ieee802_11_defs.h"
19 #include "wpa_common.h"
20 #include "config.h"
21 #include "eap_peer/eap.h"
22 #include "wpa_supplicant_i.h"
23 #include "eloop.h"
24 #include "eap_common/eap_wsc_common.h"
25 #include "wps/wps.h"
26 #include "wps/wps_defs.h"
27 #include "wps_supplicant.h"
28
29
30 static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
31
32
33 int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
34 {
35         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
36
37         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
38             !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
39                 wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
40                            "try to associate with the received credential");
41                 wpa_supplicant_deauthenticate(wpa_s,
42                                               WLAN_REASON_DEAUTH_LEAVING);
43                 wpa_s->reassociate = 1;
44                 wpa_supplicant_req_scan(wpa_s, 0, 0);
45                 return 1;
46         }
47
48         return 0;
49 }
50
51
52 static int wpa_supplicant_wps_cred(void *ctx,
53                                    const struct wps_credential *cred)
54 {
55         struct wpa_supplicant *wpa_s = ctx;
56         struct wpa_ssid *ssid = wpa_s->current_ssid;
57
58         wpa_msg(wpa_s, MSG_INFO, "WPS: New credential received");
59
60         if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
61                 wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
62                            "on the received credential");
63                 os_free(ssid->eap.identity);
64                 ssid->eap.identity = NULL;
65                 ssid->eap.identity_len = 0;
66                 os_free(ssid->eap.phase1);
67                 ssid->eap.phase1 = NULL;
68                 os_free(ssid->eap.eap_methods);
69                 ssid->eap.eap_methods = NULL;
70         } else {
71                 wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
72                            "received credential");
73                 ssid = wpa_config_add_network(wpa_s->conf);
74                 if (ssid == NULL)
75                         return -1;
76         }
77
78         wpa_config_set_network_defaults(ssid);
79
80         os_free(ssid->ssid);
81         ssid->ssid = os_malloc(cred->ssid_len);
82         if (ssid->ssid) {
83                 os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
84                 ssid->ssid_len = cred->ssid_len;
85         }
86
87         switch (cred->encr_type) {
88         case WPS_ENCR_NONE:
89                 ssid->pairwise_cipher = ssid->group_cipher = WPA_CIPHER_NONE;
90                 break;
91         case WPS_ENCR_WEP:
92                 ssid->pairwise_cipher = ssid->group_cipher =
93                         WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104;
94                 if (cred->key_len > 0 && cred->key_len <= MAX_WEP_KEY_LEN &&
95                     cred->key_idx < NUM_WEP_KEYS) {
96                         os_memcpy(ssid->wep_key[cred->key_idx], cred->key,
97                                   cred->key_len);
98                         ssid->wep_key_len[cred->key_idx] = cred->key_len;
99                         ssid->wep_tx_keyidx = cred->key_idx;
100                 }
101                 break;
102         case WPS_ENCR_TKIP:
103                 ssid->pairwise_cipher = WPA_CIPHER_TKIP;
104                 ssid->group_cipher = WPA_CIPHER_TKIP;
105                 break;
106         case WPS_ENCR_AES:
107                 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
108                 ssid->group_cipher = WPA_CIPHER_CCMP | WPA_CIPHER_TKIP;
109                 break;
110         }
111
112         switch (cred->auth_type) {
113         case WPS_AUTH_OPEN:
114                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
115                 ssid->key_mgmt = WPA_KEY_MGMT_NONE;
116                 ssid->proto = 0;
117                 break;
118         case WPS_AUTH_SHARED:
119                 ssid->auth_alg = WPA_AUTH_ALG_SHARED;
120                 ssid->key_mgmt = WPA_KEY_MGMT_NONE;
121                 ssid->proto = 0;
122                 break;
123         case WPS_AUTH_WPAPSK:
124                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
125                 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
126                 ssid->proto = WPA_PROTO_WPA;
127                 break;
128         case WPS_AUTH_WPA:
129                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
130                 ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
131                 ssid->proto = WPA_PROTO_WPA;
132                 break;
133         case WPS_AUTH_WPA2:
134                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
135                 ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
136                 ssid->proto = WPA_PROTO_RSN;
137                 break;
138         case WPS_AUTH_WPA2PSK:
139                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
140                 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
141                 ssid->proto = WPA_PROTO_RSN;
142                 break;
143         }
144
145         if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
146                 if (cred->key_len == 2 * PMK_LEN) {
147                         if (hexstr2bin((const char *) cred->key, ssid->psk,
148                                        PMK_LEN)) {
149                                 wpa_printf(MSG_ERROR, "WPS: Invalid Network "
150                                            "Key");
151                                 return -1;
152                         }
153                         ssid->psk_set = 1;
154                 } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
155                         os_free(ssid->passphrase);
156                         ssid->passphrase = os_malloc(cred->key_len + 1);
157                         if (ssid->passphrase == NULL)
158                                 return -1;
159                         os_memcpy(ssid->passphrase, cred->key, cred->key_len);
160                         ssid->passphrase[cred->key_len] = '\0';
161                         wpa_config_update_psk(ssid);
162                 } else {
163                         wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
164                                    "length %lu",
165                                    (unsigned long) cred->key_len);
166                         return -1;
167                 }
168         }
169
170 #ifndef CONFIG_NO_CONFIG_WRITE
171         if (wpa_s->conf->update_config &&
172             wpa_config_write(wpa_s->confname, wpa_s->conf)) {
173                 wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
174                 return -1;
175         }
176 #endif /* CONFIG_NO_CONFIG_WRITE */
177
178         return 0;
179 }
180
181
182 u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
183 {
184         if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
185             eap_is_wps_pin_enrollee(&ssid->eap))
186                 return WPS_REQ_ENROLLEE;
187         else
188                 return WPS_REQ_REGISTRAR;
189 }
190
191
192 static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
193 {
194         int id;
195         struct wpa_ssid *ssid;
196
197         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
198
199         /* Remove any existing WPS network from configuration */
200         ssid = wpa_s->conf->ssid;
201         while (ssid) {
202                 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
203                         id = ssid->id;
204                 else
205                         id = -1;
206                 ssid = ssid->next;
207                 if (id >= 0)
208                         wpa_config_remove_network(wpa_s->conf, id);
209         }
210 }
211
212
213 static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
214 {
215         struct wpa_supplicant *wpa_s = eloop_ctx;
216         wpa_printf(MSG_DEBUG, "WPS: Requested operation timed out");
217         wpas_clear_wps(wpa_s);
218 }
219
220
221 static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
222                                               int registrar, const u8 *bssid)
223 {
224         struct wpa_ssid *ssid;
225
226         ssid = wpa_config_add_network(wpa_s->conf);
227         if (ssid == NULL)
228                 return NULL;
229         wpa_config_set_network_defaults(ssid);
230         if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
231             wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
232             wpa_config_set(ssid, "identity", registrar ?
233                            "\"" WSC_ID_REGISTRAR "\"" :
234                            "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
235                 wpa_config_remove_network(wpa_s->conf, ssid->id);
236                 return NULL;
237         }
238
239         if (bssid) {
240                 size_t i;
241                 struct wpa_scan_res *res;
242
243                 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
244
245                 /* Try to get SSID from scan results */
246                 if (wpa_s->scan_res == NULL &&
247                     wpa_supplicant_get_scan_results(wpa_s) < 0)
248                         return ssid; /* Could not find any scan results */
249
250                 for (i = 0; i < wpa_s->scan_res->num; i++) {
251                         const u8 *ie;
252
253                         res = wpa_s->scan_res->res[i];
254                         if (os_memcmp(bssid, res->bssid, ETH_ALEN) != 0)
255                                 continue;
256
257                         ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
258                         if (ie == NULL)
259                                 break;
260                         os_free(ssid->ssid);
261                         ssid->ssid = os_malloc(ie[1]);
262                         if (ssid->ssid == NULL)
263                                 break;
264                         os_memcpy(ssid->ssid, ie + 2, ie[1]);
265                         ssid->ssid_len = ie[1];
266                         break;
267                 }
268         }
269
270         return ssid;
271 }
272
273
274 static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
275                              struct wpa_ssid *selected)
276 {
277         struct wpa_ssid *ssid;
278
279         /* Mark all other networks disabled and trigger reassociation */
280         ssid = wpa_s->conf->ssid;
281         while (ssid) {
282                 ssid->disabled = ssid != selected;
283                 ssid = ssid->next;
284         }
285         wpa_s->disconnected = 0;
286         wpa_s->reassociate = 1;
287         wpa_supplicant_req_scan(wpa_s, 0, 0);
288 }
289
290
291 int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
292 {
293         struct wpa_ssid *ssid;
294         wpas_clear_wps(wpa_s);
295         ssid = wpas_wps_add_network(wpa_s, 0, bssid);
296         if (ssid == NULL)
297                 return -1;
298         wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
299         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
300                                wpa_s, NULL);
301         wpas_wps_reassoc(wpa_s, ssid);
302         return 0;
303 }
304
305
306 int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
307                        const char *pin)
308 {
309         struct wpa_ssid *ssid;
310         char val[30];
311         unsigned int rpin = 0;
312
313         wpas_clear_wps(wpa_s);
314         ssid = wpas_wps_add_network(wpa_s, 0, bssid);
315         if (ssid == NULL)
316                 return -1;
317         if (pin)
318                 os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
319         else {
320                 rpin = wps_generate_pin();
321                 os_snprintf(val, sizeof(val), "\"pin=%08d\"", rpin);
322         }
323         wpa_config_set(ssid, "phase1", val, 0);
324         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
325                                wpa_s, NULL);
326         wpas_wps_reassoc(wpa_s, ssid);
327         return rpin;
328 }
329
330
331 int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
332                        const char *pin)
333 {
334         struct wpa_ssid *ssid;
335         char val[30];
336
337         if (!pin)
338                 return -1;
339         wpas_clear_wps(wpa_s);
340         ssid = wpas_wps_add_network(wpa_s, 1, bssid);
341         if (ssid == NULL)
342                 return -1;
343         os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
344         wpa_config_set(ssid, "phase1", val, 0);
345         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
346                                wpa_s, NULL);
347         wpas_wps_reassoc(wpa_s, ssid);
348         return 0;
349 }
350
351
352 int wpas_wps_init(struct wpa_supplicant *wpa_s)
353 {
354         struct wps_context *wps;
355
356         wps = os_zalloc(sizeof(*wps));
357         if (wps == NULL)
358                 return -1;
359
360         wps->cred_cb = wpa_supplicant_wps_cred;
361         wps->cb_ctx = wpa_s;
362
363         /* TODO: make the device data configurable */
364         wps->dev.device_name = "dev name";
365         wps->dev.manufacturer = "manuf";
366         wps->dev.model_name = "model name";
367         wps->dev.model_number = "model number";
368         wps->dev.serial_number = "12345";
369         wps->dev.categ = WPS_DEV_COMPUTER;
370         wps->dev.oui = WPS_DEV_OUI_WFA;
371         wps->dev.sub_categ = WPS_DEV_COMPUTER_PC;
372         wps->dev.os_version = 0;
373         wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
374         os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
375         os_memcpy(wps->uuid, wpa_s->conf->uuid, 16);
376
377         wpa_s->wps = wps;
378
379         return 0;
380 }
381
382
383 void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
384 {
385         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
386
387         if (wpa_s->wps == NULL)
388                 return;
389
390         os_free(wpa_s->wps->network_key);
391         os_free(wpa_s->wps);
392         wpa_s->wps = NULL;
393 }