blob: 6b5dc3f3d3d569de3b22b4a7ef286592ee8263ab [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Control interface (shared code for all backends)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003 * Copyright (c) 2004-2012, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "common/version.h"
14#include "common/ieee802_11_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070015#include "common/ieee802_11_common.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016#include "common/wpa_ctrl.h"
17#include "eap_peer/eap.h"
18#include "eapol_supp/eapol_supp_sm.h"
19#include "rsn_supp/wpa.h"
20#include "rsn_supp/preauth.h"
21#include "rsn_supp/pmksa_cache.h"
22#include "l2_packet/l2_packet.h"
23#include "wps/wps.h"
24#include "config.h"
25#include "wpa_supplicant_i.h"
26#include "driver_i.h"
27#include "wps_supplicant.h"
28#include "ibss_rsn.h"
29#include "ap.h"
30#include "p2p_supplicant.h"
31#include "p2p/p2p.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070032#include "hs20_supplicant.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070033#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070034#include "notify.h"
35#include "bss.h"
36#include "scan.h"
37#include "ctrl_iface.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080038#include "interworking.h"
Dmitry Shmidte19501d2011-03-16 14:32:18 -070039#include "blacklist.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070040#include "autoscan.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080041#include "wnm_sta.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070042
43extern struct wpa_driver_ops *wpa_drivers[];
44
45static int wpa_supplicant_global_iface_list(struct wpa_global *global,
46 char *buf, int len);
47static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
48 char *buf, int len);
49
50
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080051static int pno_start(struct wpa_supplicant *wpa_s)
52{
53 int ret;
54 size_t i, num_ssid;
55 struct wpa_ssid *ssid;
56 struct wpa_driver_scan_params params;
57
58 if (wpa_s->pno)
59 return 0;
60
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080061 if (wpa_s->wpa_state == WPA_SCANNING) {
62 wpa_supplicant_cancel_sched_scan(wpa_s);
63 wpa_supplicant_cancel_scan(wpa_s);
64 }
65
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080066 os_memset(&params, 0, sizeof(params));
67
68 num_ssid = 0;
69 ssid = wpa_s->conf->ssid;
70 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -070071 if (!wpas_network_disabled(wpa_s, ssid))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080072 num_ssid++;
73 ssid = ssid->next;
74 }
75 if (num_ssid > WPAS_MAX_SCAN_SSIDS) {
76 wpa_printf(MSG_DEBUG, "PNO: Use only the first %u SSIDs from "
77 "%u", WPAS_MAX_SCAN_SSIDS, (unsigned int) num_ssid);
78 num_ssid = WPAS_MAX_SCAN_SSIDS;
79 }
80
81 if (num_ssid == 0) {
82 wpa_printf(MSG_DEBUG, "PNO: No configured SSIDs");
83 return -1;
84 }
85
86 params.filter_ssids = os_malloc(sizeof(struct wpa_driver_scan_filter) *
87 num_ssid);
88 if (params.filter_ssids == NULL)
89 return -1;
90 i = 0;
91 ssid = wpa_s->conf->ssid;
92 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -070093 if (!wpas_network_disabled(wpa_s, ssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080094 params.ssids[i].ssid = ssid->ssid;
95 params.ssids[i].ssid_len = ssid->ssid_len;
96 params.num_ssids++;
97 os_memcpy(params.filter_ssids[i].ssid, ssid->ssid,
98 ssid->ssid_len);
99 params.filter_ssids[i].ssid_len = ssid->ssid_len;
100 params.num_filter_ssids++;
101 i++;
102 if (i == num_ssid)
103 break;
104 }
105 ssid = ssid->next;
106 }
107
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700108 if (wpa_s->conf->filter_rssi)
109 params.filter_rssi = wpa_s->conf->filter_rssi;
110
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800111 ret = wpa_drv_sched_scan(wpa_s, &params, 10 * 1000);
112 os_free(params.filter_ssids);
113 if (ret == 0)
114 wpa_s->pno = 1;
115 return ret;
116}
117
118
119static int pno_stop(struct wpa_supplicant *wpa_s)
120{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800121 int ret = 0;
122
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800123 if (wpa_s->pno) {
124 wpa_s->pno = 0;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800125 ret = wpa_drv_stop_sched_scan(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800126 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800127
128 if (wpa_s->wpa_state == WPA_SCANNING)
129 wpa_supplicant_req_scan(wpa_s, 0, 0);
130
131 return ret;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800132}
133
134
Dmitry Shmidt04949592012-07-19 12:16:46 -0700135static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
136{
137 char *pos;
138 u8 addr[ETH_ALEN], *filter = NULL, *n;
139 size_t count = 0;
140
141 pos = val;
142 while (pos) {
143 if (*pos == '\0')
144 break;
145 if (hwaddr_aton(pos, addr)) {
146 os_free(filter);
147 return -1;
148 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700149 n = os_realloc_array(filter, count + 1, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700150 if (n == NULL) {
151 os_free(filter);
152 return -1;
153 }
154 filter = n;
155 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
156 count++;
157
158 pos = os_strchr(pos, ' ');
159 if (pos)
160 pos++;
161 }
162
163 wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
164 os_free(wpa_s->bssid_filter);
165 wpa_s->bssid_filter = filter;
166 wpa_s->bssid_filter_count = count;
167
168 return 0;
169}
170
171
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800172static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
173{
174 char *pos;
175 u8 addr[ETH_ALEN], *bssid = NULL, *n;
176 struct wpa_ssid_value *ssid = NULL, *ns;
177 size_t count = 0, ssid_count = 0;
178 struct wpa_ssid *c;
179
180 /*
181 * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | “”
182 * SSID_SPEC ::= ssid <SSID_HEX>
183 * BSSID_SPEC ::= bssid <BSSID_HEX>
184 */
185
186 pos = val;
187 while (pos) {
188 if (*pos == '\0')
189 break;
190 if (os_strncmp(pos, "bssid ", 6) == 0) {
191 int res;
192 pos += 6;
193 res = hwaddr_aton2(pos, addr);
194 if (res < 0) {
195 os_free(ssid);
196 os_free(bssid);
197 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
198 "BSSID value '%s'", pos);
199 return -1;
200 }
201 pos += res;
202 n = os_realloc_array(bssid, count + 1, ETH_ALEN);
203 if (n == NULL) {
204 os_free(ssid);
205 os_free(bssid);
206 return -1;
207 }
208 bssid = n;
209 os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
210 count++;
211 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
212 char *end;
213 pos += 5;
214
215 end = pos;
216 while (*end) {
217 if (*end == '\0' || *end == ' ')
218 break;
219 end++;
220 }
221
222 ns = os_realloc_array(ssid, ssid_count + 1,
223 sizeof(struct wpa_ssid_value));
224 if (ns == NULL) {
225 os_free(ssid);
226 os_free(bssid);
227 return -1;
228 }
229 ssid = ns;
230
231 if ((end - pos) & 0x01 || end - pos > 2 * 32 ||
232 hexstr2bin(pos, ssid[ssid_count].ssid,
233 (end - pos) / 2) < 0) {
234 os_free(ssid);
235 os_free(bssid);
236 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
237 "SSID value '%s'", pos);
238 return -1;
239 }
240 ssid[ssid_count].ssid_len = (end - pos) / 2;
241 wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
242 ssid[ssid_count].ssid,
243 ssid[ssid_count].ssid_len);
244 ssid_count++;
245 pos = end;
246 } else {
247 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
248 "'%s'", pos);
249 os_free(ssid);
250 os_free(bssid);
251 return -1;
252 }
253
254 pos = os_strchr(pos, ' ');
255 if (pos)
256 pos++;
257 }
258
259 wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
260 os_free(wpa_s->disallow_aps_bssid);
261 wpa_s->disallow_aps_bssid = bssid;
262 wpa_s->disallow_aps_bssid_count = count;
263
264 wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
265 os_free(wpa_s->disallow_aps_ssid);
266 wpa_s->disallow_aps_ssid = ssid;
267 wpa_s->disallow_aps_ssid_count = ssid_count;
268
269 if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
270 return 0;
271
272 c = wpa_s->current_ssid;
273 if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
274 return 0;
275
276 if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
277 !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
278 return 0;
279
280 wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
281 "because current AP was marked disallowed");
282
283#ifdef CONFIG_SME
284 wpa_s->sme.prev_bssid_set = 0;
285#endif /* CONFIG_SME */
286 wpa_s->reassociate = 1;
287 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
288 wpa_supplicant_req_scan(wpa_s, 0, 0);
289
290 return 0;
291}
292
293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700294static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
295 char *cmd)
296{
297 char *value;
298 int ret = 0;
299
300 value = os_strchr(cmd, ' ');
301 if (value == NULL)
302 return -1;
303 *value++ = '\0';
304
305 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
306 if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
307 eapol_sm_configure(wpa_s->eapol,
308 atoi(value), -1, -1, -1);
309 } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
310 eapol_sm_configure(wpa_s->eapol,
311 -1, atoi(value), -1, -1);
312 } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
313 eapol_sm_configure(wpa_s->eapol,
314 -1, -1, atoi(value), -1);
315 } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
316 eapol_sm_configure(wpa_s->eapol,
317 -1, -1, -1, atoi(value));
318 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
319 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
320 atoi(value)))
321 ret = -1;
322 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
323 0) {
324 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
325 atoi(value)))
326 ret = -1;
327 } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
328 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
329 ret = -1;
330 } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
331 wpa_s->wps_fragment_size = atoi(value);
332#ifdef CONFIG_WPS_TESTING
333 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
334 long int val;
335 val = strtol(value, NULL, 0);
336 if (val < 0 || val > 0xff) {
337 ret = -1;
338 wpa_printf(MSG_DEBUG, "WPS: Invalid "
339 "wps_version_number %ld", val);
340 } else {
341 wps_version_number = val;
342 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
343 "version %u.%u",
344 (wps_version_number & 0xf0) >> 4,
345 wps_version_number & 0x0f);
346 }
347 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
348 wps_testing_dummy_cred = atoi(value);
349 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
350 wps_testing_dummy_cred);
351#endif /* CONFIG_WPS_TESTING */
352 } else if (os_strcasecmp(cmd, "ampdu") == 0) {
353 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
354 ret = -1;
355#ifdef CONFIG_TDLS_TESTING
356 } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
357 extern unsigned int tdls_testing;
358 tdls_testing = strtol(value, NULL, 0);
359 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
360#endif /* CONFIG_TDLS_TESTING */
361#ifdef CONFIG_TDLS
362 } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
363 int disabled = atoi(value);
364 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
365 if (disabled) {
366 if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
367 ret = -1;
368 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
369 ret = -1;
370 wpa_tdls_enable(wpa_s->wpa, !disabled);
371#endif /* CONFIG_TDLS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800372 } else if (os_strcasecmp(cmd, "pno") == 0) {
373 if (atoi(value))
374 ret = pno_start(wpa_s);
375 else
376 ret = pno_stop(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700377 } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
378 int disabled = atoi(value);
379 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
380 ret = -1;
381 else if (disabled)
382 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
383 } else if (os_strcasecmp(cmd, "uapsd") == 0) {
384 if (os_strcmp(value, "disable") == 0)
385 wpa_s->set_sta_uapsd = 0;
386 else {
387 int be, bk, vi, vo;
388 char *pos;
389 /* format: BE,BK,VI,VO;max SP Length */
390 be = atoi(value);
391 pos = os_strchr(value, ',');
392 if (pos == NULL)
393 return -1;
394 pos++;
395 bk = atoi(pos);
396 pos = os_strchr(pos, ',');
397 if (pos == NULL)
398 return -1;
399 pos++;
400 vi = atoi(pos);
401 pos = os_strchr(pos, ',');
402 if (pos == NULL)
403 return -1;
404 pos++;
405 vo = atoi(pos);
406 /* ignore max SP Length for now */
407
408 wpa_s->set_sta_uapsd = 1;
409 wpa_s->sta_uapsd = 0;
410 if (be)
411 wpa_s->sta_uapsd |= BIT(0);
412 if (bk)
413 wpa_s->sta_uapsd |= BIT(1);
414 if (vi)
415 wpa_s->sta_uapsd |= BIT(2);
416 if (vo)
417 wpa_s->sta_uapsd |= BIT(3);
418 }
Jouni Malinen21d6bc82012-04-10 16:17:59 -0700419 } else if (os_strcasecmp(cmd, "ps") == 0) {
420 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700421#ifdef CONFIG_WIFI_DISPLAY
422 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
423 wifi_display_enable(wpa_s->global, !!atoi(value));
424#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700425 } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
426 ret = set_bssid_filter(wpa_s, value);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800427 } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
428 ret = set_disallow_aps(wpa_s, value);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800429 } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
430 wpa_s->no_keep_alive = !!atoi(value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700431 } else {
432 value[-1] = '=';
433 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
434 if (ret == 0)
435 wpa_supplicant_update_config(wpa_s);
436 }
437
438 return ret;
439}
440
441
442static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
443 char *cmd, char *buf, size_t buflen)
444{
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700445 int res = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700446
447 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
448
449 if (os_strcmp(cmd, "version") == 0) {
450 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700451 } else if (os_strcasecmp(cmd, "country") == 0) {
452 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
453 res = os_snprintf(buf, buflen, "%c%c",
454 wpa_s->conf->country[0],
455 wpa_s->conf->country[1]);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700456#ifdef CONFIG_WIFI_DISPLAY
457 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
458 res = os_snprintf(buf, buflen, "%d",
459 wpa_s->global->wifi_display);
460 if (res < 0 || (unsigned int) res >= buflen)
461 return -1;
462 return res;
463#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700464#ifdef CONFIG_TESTING_GET_GTK
465 } else if (os_strcmp(cmd, "gtk") == 0) {
466 if (wpa_s->last_gtk_len == 0)
467 return -1;
468 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
469 wpa_s->last_gtk_len);
470 return res;
471#endif /* CONFIG_TESTING_GET_GTK */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700472 }
473
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700474 if (res < 0 || (unsigned int) res >= buflen)
475 return -1;
476 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700477}
478
479
480#ifdef IEEE8021X_EAPOL
481static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
482 char *addr)
483{
484 u8 bssid[ETH_ALEN];
485 struct wpa_ssid *ssid = wpa_s->current_ssid;
486
487 if (hwaddr_aton(addr, bssid)) {
488 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
489 "'%s'", addr);
490 return -1;
491 }
492
493 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
494 rsn_preauth_deinit(wpa_s->wpa);
495 if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
496 return -1;
497
498 return 0;
499}
500#endif /* IEEE8021X_EAPOL */
501
502
503#ifdef CONFIG_PEERKEY
504/* MLME-STKSTART.request(peer) */
505static int wpa_supplicant_ctrl_iface_stkstart(
506 struct wpa_supplicant *wpa_s, char *addr)
507{
508 u8 peer[ETH_ALEN];
509
510 if (hwaddr_aton(addr, peer)) {
511 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
512 "address '%s'", addr);
513 return -1;
514 }
515
516 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
517 MAC2STR(peer));
518
519 return wpa_sm_stkstart(wpa_s->wpa, peer);
520}
521#endif /* CONFIG_PEERKEY */
522
523
524#ifdef CONFIG_TDLS
525
526static int wpa_supplicant_ctrl_iface_tdls_discover(
527 struct wpa_supplicant *wpa_s, char *addr)
528{
529 u8 peer[ETH_ALEN];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800530 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700531
532 if (hwaddr_aton(addr, peer)) {
533 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
534 "address '%s'", addr);
535 return -1;
536 }
537
538 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
539 MAC2STR(peer));
540
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800541 if (wpa_tdls_is_external_setup(wpa_s->wpa))
542 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
543 else
544 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
545
546 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700547}
548
549
550static int wpa_supplicant_ctrl_iface_tdls_setup(
551 struct wpa_supplicant *wpa_s, char *addr)
552{
553 u8 peer[ETH_ALEN];
554 int ret;
555
556 if (hwaddr_aton(addr, peer)) {
557 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
558 "address '%s'", addr);
559 return -1;
560 }
561
562 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
563 MAC2STR(peer));
564
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800565 wpa_tdls_remove(wpa_s->wpa, peer);
566
567 if (wpa_tdls_is_external_setup(wpa_s->wpa))
568 ret = wpa_tdls_start(wpa_s->wpa, peer);
569 else
570 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800571
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700572 return ret;
573}
574
575
576static int wpa_supplicant_ctrl_iface_tdls_teardown(
577 struct wpa_supplicant *wpa_s, char *addr)
578{
579 u8 peer[ETH_ALEN];
580
581 if (hwaddr_aton(addr, peer)) {
582 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
583 "address '%s'", addr);
584 return -1;
585 }
586
587 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
588 MAC2STR(peer));
589
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800590 return wpa_tdls_teardown_link(wpa_s->wpa, peer,
591 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700592}
593
594#endif /* CONFIG_TDLS */
595
596
597#ifdef CONFIG_IEEE80211R
598static int wpa_supplicant_ctrl_iface_ft_ds(
599 struct wpa_supplicant *wpa_s, char *addr)
600{
601 u8 target_ap[ETH_ALEN];
602 struct wpa_bss *bss;
603 const u8 *mdie;
604
605 if (hwaddr_aton(addr, target_ap)) {
606 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
607 "address '%s'", addr);
608 return -1;
609 }
610
611 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
612
613 bss = wpa_bss_get_bssid(wpa_s, target_ap);
614 if (bss)
615 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
616 else
617 mdie = NULL;
618
619 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
620}
621#endif /* CONFIG_IEEE80211R */
622
623
624#ifdef CONFIG_WPS
625static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
626 char *cmd)
627{
628 u8 bssid[ETH_ALEN], *_bssid = bssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700629#ifdef CONFIG_P2P
630 u8 p2p_dev_addr[ETH_ALEN];
631#endif /* CONFIG_P2P */
632#ifdef CONFIG_AP
633 u8 *_p2p_dev_addr = NULL;
634#endif /* CONFIG_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800635
Irfan Sheriffa7534b92012-09-06 18:30:39 -0700636 if (cmd == NULL || os_strcmp(cmd, "any") == 0 || cmd[0] == '\0') {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700637 _bssid = NULL;
638#ifdef CONFIG_P2P
639 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
640 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
641 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
642 "P2P Device Address '%s'",
643 cmd + 13);
644 return -1;
645 }
646 _p2p_dev_addr = p2p_dev_addr;
647#endif /* CONFIG_P2P */
648 } else if (hwaddr_aton(cmd, bssid)) {
649 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
650 cmd);
651 return -1;
652 }
653
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800654#ifdef CONFIG_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700655 if (wpa_s->ap_iface)
656 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
657#endif /* CONFIG_AP */
658
659 return wpas_wps_start_pbc(wpa_s, _bssid, 0);
660}
661
662
663static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
664 char *cmd, char *buf,
665 size_t buflen)
666{
667 u8 bssid[ETH_ALEN], *_bssid = bssid;
668 char *pin;
669 int ret;
670
671 pin = os_strchr(cmd, ' ');
672 if (pin)
673 *pin++ = '\0';
674
675 if (os_strcmp(cmd, "any") == 0)
676 _bssid = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800677 else if (os_strcmp(cmd, "get") == 0) {
678 ret = wps_generate_pin();
679 goto done;
680 } else if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700681 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
682 cmd);
683 return -1;
684 }
685
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800686#ifdef CONFIG_AP
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800687 if (wpa_s->ap_iface) {
688 int timeout = 0;
689 char *pos;
690
691 if (pin) {
692 pos = os_strchr(pin, ' ');
693 if (pos) {
694 *pos++ = '\0';
695 timeout = atoi(pos);
696 }
697 }
698
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700699 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800700 buf, buflen, timeout);
701 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700702#endif /* CONFIG_AP */
703
704 if (pin) {
705 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
706 DEV_PW_DEFAULT);
707 if (ret < 0)
708 return -1;
709 ret = os_snprintf(buf, buflen, "%s", pin);
710 if (ret < 0 || (size_t) ret >= buflen)
711 return -1;
712 return ret;
713 }
714
715 ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
716 if (ret < 0)
717 return -1;
718
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800719done:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700720 /* Return the generated PIN */
721 ret = os_snprintf(buf, buflen, "%08d", ret);
722 if (ret < 0 || (size_t) ret >= buflen)
723 return -1;
724 return ret;
725}
726
727
728static int wpa_supplicant_ctrl_iface_wps_check_pin(
729 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
730{
731 char pin[9];
732 size_t len;
733 char *pos;
734 int ret;
735
736 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
737 (u8 *) cmd, os_strlen(cmd));
738 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
739 if (*pos < '0' || *pos > '9')
740 continue;
741 pin[len++] = *pos;
742 if (len == 9) {
743 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
744 return -1;
745 }
746 }
747 if (len != 4 && len != 8) {
748 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
749 return -1;
750 }
751 pin[len] = '\0';
752
753 if (len == 8) {
754 unsigned int pin_val;
755 pin_val = atoi(pin);
756 if (!wps_pin_valid(pin_val)) {
757 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
758 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
759 if (ret < 0 || (size_t) ret >= buflen)
760 return -1;
761 return ret;
762 }
763 }
764
765 ret = os_snprintf(buf, buflen, "%s", pin);
766 if (ret < 0 || (size_t) ret >= buflen)
767 return -1;
768
769 return ret;
770}
771
772
Dmitry Shmidt04949592012-07-19 12:16:46 -0700773#ifdef CONFIG_WPS_NFC
774
775static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
776 char *cmd)
777{
778 u8 bssid[ETH_ALEN], *_bssid = bssid;
779
780 if (cmd == NULL || cmd[0] == '\0')
781 _bssid = NULL;
782 else if (hwaddr_aton(cmd, bssid))
783 return -1;
784
785 return wpas_wps_start_nfc(wpa_s, _bssid);
786}
787
788
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800789static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
790 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
791{
792 int ndef;
793 struct wpabuf *buf;
794 int res;
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700795 char *pos;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800796
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700797 pos = os_strchr(cmd, ' ');
798 if (pos)
799 *pos++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800800 if (os_strcmp(cmd, "WPS") == 0)
801 ndef = 0;
802 else if (os_strcmp(cmd, "NDEF") == 0)
803 ndef = 1;
804 else
805 return -1;
806
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700807 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800808 if (buf == NULL)
809 return -1;
810
811 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
812 wpabuf_len(buf));
813 reply[res++] = '\n';
814 reply[res] = '\0';
815
816 wpabuf_free(buf);
817
818 return res;
819}
820
821
Dmitry Shmidt04949592012-07-19 12:16:46 -0700822static int wpa_supplicant_ctrl_iface_wps_nfc_token(
823 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
824{
825 int ndef;
826 struct wpabuf *buf;
827 int res;
828
829 if (os_strcmp(cmd, "WPS") == 0)
830 ndef = 0;
831 else if (os_strcmp(cmd, "NDEF") == 0)
832 ndef = 1;
833 else
834 return -1;
835
836 buf = wpas_wps_nfc_token(wpa_s, ndef);
837 if (buf == NULL)
838 return -1;
839
840 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
841 wpabuf_len(buf));
842 reply[res++] = '\n';
843 reply[res] = '\0';
844
845 wpabuf_free(buf);
846
847 return res;
848}
849
850
851static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
852 struct wpa_supplicant *wpa_s, char *pos)
853{
854 size_t len;
855 struct wpabuf *buf;
856 int ret;
857
858 len = os_strlen(pos);
859 if (len & 0x01)
860 return -1;
861 len /= 2;
862
863 buf = wpabuf_alloc(len);
864 if (buf == NULL)
865 return -1;
866 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
867 wpabuf_free(buf);
868 return -1;
869 }
870
871 ret = wpas_wps_nfc_tag_read(wpa_s, buf);
872 wpabuf_free(buf);
873
874 return ret;
875}
876
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800877
878static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800879 char *reply, size_t max_len,
880 int cr)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800881{
882 struct wpabuf *buf;
883 int res;
884
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800885 buf = wpas_wps_nfc_handover_req(wpa_s, cr);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800886 if (buf == NULL)
887 return -1;
888
889 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
890 wpabuf_len(buf));
891 reply[res++] = '\n';
892 reply[res] = '\0';
893
894 wpabuf_free(buf);
895
896 return res;
897}
898
899
900static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
901 char *cmd, char *reply,
902 size_t max_len)
903{
904 char *pos;
905
906 pos = os_strchr(cmd, ' ');
907 if (pos == NULL)
908 return -1;
909 *pos++ = '\0';
910
911 if (os_strcmp(cmd, "NDEF") != 0)
912 return -1;
913
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800914 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
915 return wpas_ctrl_nfc_get_handover_req_wps(
916 wpa_s, reply, max_len, os_strcmp(pos, "WPS-CR") == 0);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800917 }
918
919 return -1;
920}
921
922
923static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800924 char *reply, size_t max_len,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800925 int ndef, int cr, char *uuid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800926{
927 struct wpabuf *buf;
928 int res;
929
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800930 buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800931 if (buf == NULL)
932 return -1;
933
934 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
935 wpabuf_len(buf));
936 reply[res++] = '\n';
937 reply[res] = '\0';
938
939 wpabuf_free(buf);
940
941 return res;
942}
943
944
945static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
946 char *cmd, char *reply,
947 size_t max_len)
948{
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800949 char *pos, *pos2;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800950 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800951
952 pos = os_strchr(cmd, ' ');
953 if (pos == NULL)
954 return -1;
955 *pos++ = '\0';
956
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800957 if (os_strcmp(cmd, "WPS") == 0)
958 ndef = 0;
959 else if (os_strcmp(cmd, "NDEF") == 0)
960 ndef = 1;
961 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800962 return -1;
963
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800964 pos2 = os_strchr(pos, ' ');
965 if (pos2)
966 *pos2++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800967 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
968 return wpas_ctrl_nfc_get_handover_sel_wps(
969 wpa_s, reply, max_len, ndef,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800970 os_strcmp(pos, "WPS-CR") == 0, pos2);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800971 }
972
973 return -1;
974}
975
976
977static int wpas_ctrl_nfc_rx_handover_req(struct wpa_supplicant *wpa_s,
978 char *cmd, char *reply,
979 size_t max_len)
980{
981 size_t len;
982 struct wpabuf *buf;
983 int ret;
984
985 len = os_strlen(cmd);
986 if (len & 0x01)
987 return -1;
988 len /= 2;
989
990 buf = wpabuf_alloc(len);
991 if (buf == NULL)
992 return -1;
993 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
994 wpabuf_free(buf);
995 return -1;
996 }
997
998 ret = wpas_wps_nfc_rx_handover_req(wpa_s, buf);
999 wpabuf_free(buf);
1000
1001 return ret;
1002}
1003
1004
1005static int wpas_ctrl_nfc_rx_handover_sel(struct wpa_supplicant *wpa_s,
1006 char *cmd)
1007{
1008 size_t len;
1009 struct wpabuf *buf;
1010 int ret;
1011
1012 len = os_strlen(cmd);
1013 if (len & 0x01)
1014 return -1;
1015 len /= 2;
1016
1017 buf = wpabuf_alloc(len);
1018 if (buf == NULL)
1019 return -1;
1020 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
1021 wpabuf_free(buf);
1022 return -1;
1023 }
1024
1025 ret = wpas_wps_nfc_rx_handover_sel(wpa_s, buf);
1026 wpabuf_free(buf);
1027
1028 return ret;
1029}
1030
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001031
1032static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1033 char *cmd)
1034{
1035 size_t len;
1036 struct wpabuf *req, *sel;
1037 int ret;
1038 char *pos, *role, *type, *pos2;
1039
1040 role = cmd;
1041 pos = os_strchr(role, ' ');
1042 if (pos == NULL)
1043 return -1;
1044 *pos++ = '\0';
1045
1046 type = pos;
1047 pos = os_strchr(type, ' ');
1048 if (pos == NULL)
1049 return -1;
1050 *pos++ = '\0';
1051
1052 pos2 = os_strchr(pos, ' ');
1053 if (pos2 == NULL)
1054 return -1;
1055 *pos2++ = '\0';
1056
1057 len = os_strlen(pos);
1058 if (len & 0x01)
1059 return -1;
1060 len /= 2;
1061
1062 req = wpabuf_alloc(len);
1063 if (req == NULL)
1064 return -1;
1065 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
1066 wpabuf_free(req);
1067 return -1;
1068 }
1069
1070 len = os_strlen(pos2);
1071 if (len & 0x01) {
1072 wpabuf_free(req);
1073 return -1;
1074 }
1075 len /= 2;
1076
1077 sel = wpabuf_alloc(len);
1078 if (sel == NULL) {
1079 wpabuf_free(req);
1080 return -1;
1081 }
1082 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
1083 wpabuf_free(req);
1084 wpabuf_free(sel);
1085 return -1;
1086 }
1087
1088 if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1089 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
1090 } else {
1091 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1092 "reported: role=%s type=%s", role, type);
1093 ret = -1;
1094 }
1095 wpabuf_free(req);
1096 wpabuf_free(sel);
1097
1098 return ret;
1099}
1100
Dmitry Shmidt04949592012-07-19 12:16:46 -07001101#endif /* CONFIG_WPS_NFC */
1102
1103
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001104static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1105 char *cmd)
1106{
1107 u8 bssid[ETH_ALEN];
1108 char *pin;
1109 char *new_ssid;
1110 char *new_auth;
1111 char *new_encr;
1112 char *new_key;
1113 struct wps_new_ap_settings ap;
1114
1115 pin = os_strchr(cmd, ' ');
1116 if (pin == NULL)
1117 return -1;
1118 *pin++ = '\0';
1119
1120 if (hwaddr_aton(cmd, bssid)) {
1121 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1122 cmd);
1123 return -1;
1124 }
1125
1126 new_ssid = os_strchr(pin, ' ');
1127 if (new_ssid == NULL)
1128 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1129 *new_ssid++ = '\0';
1130
1131 new_auth = os_strchr(new_ssid, ' ');
1132 if (new_auth == NULL)
1133 return -1;
1134 *new_auth++ = '\0';
1135
1136 new_encr = os_strchr(new_auth, ' ');
1137 if (new_encr == NULL)
1138 return -1;
1139 *new_encr++ = '\0';
1140
1141 new_key = os_strchr(new_encr, ' ');
1142 if (new_key == NULL)
1143 return -1;
1144 *new_key++ = '\0';
1145
1146 os_memset(&ap, 0, sizeof(ap));
1147 ap.ssid_hex = new_ssid;
1148 ap.auth = new_auth;
1149 ap.encr = new_encr;
1150 ap.key_hex = new_key;
1151 return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1152}
1153
1154
1155#ifdef CONFIG_AP
1156static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1157 char *cmd, char *buf,
1158 size_t buflen)
1159{
1160 int timeout = 300;
1161 char *pos;
1162 const char *pin_txt;
1163
1164 if (!wpa_s->ap_iface)
1165 return -1;
1166
1167 pos = os_strchr(cmd, ' ');
1168 if (pos)
1169 *pos++ = '\0';
1170
1171 if (os_strcmp(cmd, "disable") == 0) {
1172 wpas_wps_ap_pin_disable(wpa_s);
1173 return os_snprintf(buf, buflen, "OK\n");
1174 }
1175
1176 if (os_strcmp(cmd, "random") == 0) {
1177 if (pos)
1178 timeout = atoi(pos);
1179 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1180 if (pin_txt == NULL)
1181 return -1;
1182 return os_snprintf(buf, buflen, "%s", pin_txt);
1183 }
1184
1185 if (os_strcmp(cmd, "get") == 0) {
1186 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1187 if (pin_txt == NULL)
1188 return -1;
1189 return os_snprintf(buf, buflen, "%s", pin_txt);
1190 }
1191
1192 if (os_strcmp(cmd, "set") == 0) {
1193 char *pin;
1194 if (pos == NULL)
1195 return -1;
1196 pin = pos;
1197 pos = os_strchr(pos, ' ');
1198 if (pos) {
1199 *pos++ = '\0';
1200 timeout = atoi(pos);
1201 }
1202 if (os_strlen(pin) > buflen)
1203 return -1;
1204 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1205 return -1;
1206 return os_snprintf(buf, buflen, "%s", pin);
1207 }
1208
1209 return -1;
1210}
1211#endif /* CONFIG_AP */
1212
1213
1214#ifdef CONFIG_WPS_ER
1215static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1216 char *cmd)
1217{
1218 char *uuid = cmd, *pin, *pos;
1219 u8 addr_buf[ETH_ALEN], *addr = NULL;
1220 pin = os_strchr(uuid, ' ');
1221 if (pin == NULL)
1222 return -1;
1223 *pin++ = '\0';
1224 pos = os_strchr(pin, ' ');
1225 if (pos) {
1226 *pos++ = '\0';
1227 if (hwaddr_aton(pos, addr_buf) == 0)
1228 addr = addr_buf;
1229 }
1230 return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1231}
1232
1233
1234static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1235 char *cmd)
1236{
1237 char *uuid = cmd, *pin;
1238 pin = os_strchr(uuid, ' ');
1239 if (pin == NULL)
1240 return -1;
1241 *pin++ = '\0';
1242 return wpas_wps_er_learn(wpa_s, uuid, pin);
1243}
1244
1245
1246static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1247 struct wpa_supplicant *wpa_s, char *cmd)
1248{
1249 char *uuid = cmd, *id;
1250 id = os_strchr(uuid, ' ');
1251 if (id == NULL)
1252 return -1;
1253 *id++ = '\0';
1254 return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1255}
1256
1257
1258static int wpa_supplicant_ctrl_iface_wps_er_config(
1259 struct wpa_supplicant *wpa_s, char *cmd)
1260{
1261 char *pin;
1262 char *new_ssid;
1263 char *new_auth;
1264 char *new_encr;
1265 char *new_key;
1266 struct wps_new_ap_settings ap;
1267
1268 pin = os_strchr(cmd, ' ');
1269 if (pin == NULL)
1270 return -1;
1271 *pin++ = '\0';
1272
1273 new_ssid = os_strchr(pin, ' ');
1274 if (new_ssid == NULL)
1275 return -1;
1276 *new_ssid++ = '\0';
1277
1278 new_auth = os_strchr(new_ssid, ' ');
1279 if (new_auth == NULL)
1280 return -1;
1281 *new_auth++ = '\0';
1282
1283 new_encr = os_strchr(new_auth, ' ');
1284 if (new_encr == NULL)
1285 return -1;
1286 *new_encr++ = '\0';
1287
1288 new_key = os_strchr(new_encr, ' ');
1289 if (new_key == NULL)
1290 return -1;
1291 *new_key++ = '\0';
1292
1293 os_memset(&ap, 0, sizeof(ap));
1294 ap.ssid_hex = new_ssid;
1295 ap.auth = new_auth;
1296 ap.encr = new_encr;
1297 ap.key_hex = new_key;
1298 return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1299}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001300
1301
1302#ifdef CONFIG_WPS_NFC
1303static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1304 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1305{
1306 int ndef;
1307 struct wpabuf *buf;
1308 int res;
1309 char *uuid;
1310
1311 uuid = os_strchr(cmd, ' ');
1312 if (uuid == NULL)
1313 return -1;
1314 *uuid++ = '\0';
1315
1316 if (os_strcmp(cmd, "WPS") == 0)
1317 ndef = 0;
1318 else if (os_strcmp(cmd, "NDEF") == 0)
1319 ndef = 1;
1320 else
1321 return -1;
1322
1323 buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1324 if (buf == NULL)
1325 return -1;
1326
1327 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1328 wpabuf_len(buf));
1329 reply[res++] = '\n';
1330 reply[res] = '\0';
1331
1332 wpabuf_free(buf);
1333
1334 return res;
1335}
1336#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001337#endif /* CONFIG_WPS_ER */
1338
1339#endif /* CONFIG_WPS */
1340
1341
1342#ifdef CONFIG_IBSS_RSN
1343static int wpa_supplicant_ctrl_iface_ibss_rsn(
1344 struct wpa_supplicant *wpa_s, char *addr)
1345{
1346 u8 peer[ETH_ALEN];
1347
1348 if (hwaddr_aton(addr, peer)) {
1349 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1350 "address '%s'", addr);
1351 return -1;
1352 }
1353
1354 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1355 MAC2STR(peer));
1356
1357 return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1358}
1359#endif /* CONFIG_IBSS_RSN */
1360
1361
1362static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1363 char *rsp)
1364{
1365#ifdef IEEE8021X_EAPOL
1366 char *pos, *id_pos;
1367 int id;
1368 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001369
1370 pos = os_strchr(rsp, '-');
1371 if (pos == NULL)
1372 return -1;
1373 *pos++ = '\0';
1374 id_pos = pos;
1375 pos = os_strchr(pos, ':');
1376 if (pos == NULL)
1377 return -1;
1378 *pos++ = '\0';
1379 id = atoi(id_pos);
1380 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1381 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1382 (u8 *) pos, os_strlen(pos));
1383
1384 ssid = wpa_config_get_network(wpa_s->conf, id);
1385 if (ssid == NULL) {
1386 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1387 "to update", id);
1388 return -1;
1389 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001390
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001391 return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1392 pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001393#else /* IEEE8021X_EAPOL */
1394 wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1395 return -1;
1396#endif /* IEEE8021X_EAPOL */
1397}
1398
1399
1400static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1401 const char *params,
1402 char *buf, size_t buflen)
1403{
1404 char *pos, *end, tmp[30];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001405 int res, verbose, wps, ret;
Dmitry Shmidt44da0252011-08-23 12:30:30 -07001406
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001407 verbose = os_strcmp(params, "-VERBOSE") == 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001408 wps = os_strcmp(params, "-WPS") == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001409 pos = buf;
1410 end = buf + buflen;
1411 if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1412 struct wpa_ssid *ssid = wpa_s->current_ssid;
1413 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1414 MAC2STR(wpa_s->bssid));
1415 if (ret < 0 || ret >= end - pos)
1416 return pos - buf;
1417 pos += ret;
1418 if (ssid) {
1419 u8 *_ssid = ssid->ssid;
1420 size_t ssid_len = ssid->ssid_len;
1421 u8 ssid_buf[MAX_SSID_LEN];
1422 if (ssid_len == 0) {
1423 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1424 if (_res < 0)
1425 ssid_len = 0;
1426 else
1427 ssid_len = _res;
1428 _ssid = ssid_buf;
1429 }
1430 ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1431 wpa_ssid_txt(_ssid, ssid_len),
1432 ssid->id);
1433 if (ret < 0 || ret >= end - pos)
1434 return pos - buf;
1435 pos += ret;
1436
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001437 if (wps && ssid->passphrase &&
1438 wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1439 (ssid->mode == WPAS_MODE_AP ||
1440 ssid->mode == WPAS_MODE_P2P_GO)) {
1441 ret = os_snprintf(pos, end - pos,
1442 "passphrase=%s\n",
1443 ssid->passphrase);
1444 if (ret < 0 || ret >= end - pos)
1445 return pos - buf;
1446 pos += ret;
1447 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001448 if (ssid->id_str) {
1449 ret = os_snprintf(pos, end - pos,
1450 "id_str=%s\n",
1451 ssid->id_str);
1452 if (ret < 0 || ret >= end - pos)
1453 return pos - buf;
1454 pos += ret;
1455 }
1456
1457 switch (ssid->mode) {
1458 case WPAS_MODE_INFRA:
1459 ret = os_snprintf(pos, end - pos,
1460 "mode=station\n");
1461 break;
1462 case WPAS_MODE_IBSS:
1463 ret = os_snprintf(pos, end - pos,
1464 "mode=IBSS\n");
1465 break;
1466 case WPAS_MODE_AP:
1467 ret = os_snprintf(pos, end - pos,
1468 "mode=AP\n");
1469 break;
1470 case WPAS_MODE_P2P_GO:
1471 ret = os_snprintf(pos, end - pos,
1472 "mode=P2P GO\n");
1473 break;
1474 case WPAS_MODE_P2P_GROUP_FORMATION:
1475 ret = os_snprintf(pos, end - pos,
1476 "mode=P2P GO - group "
1477 "formation\n");
1478 break;
1479 default:
1480 ret = 0;
1481 break;
1482 }
1483 if (ret < 0 || ret >= end - pos)
1484 return pos - buf;
1485 pos += ret;
1486 }
1487
1488#ifdef CONFIG_AP
1489 if (wpa_s->ap_iface) {
1490 pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1491 end - pos,
1492 verbose);
1493 } else
1494#endif /* CONFIG_AP */
1495 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1496 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001497#ifdef CONFIG_SAE
1498 if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
1499 wpa_s->sme.sae.state == SAE_ACCEPTED && !wpa_s->ap_iface) {
1500 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1501 wpa_s->sme.sae.group);
1502 if (ret < 0 || ret >= end - pos)
1503 return pos - buf;
1504 pos += ret;
1505 }
1506#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001507 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1508 wpa_supplicant_state_txt(wpa_s->wpa_state));
1509 if (ret < 0 || ret >= end - pos)
1510 return pos - buf;
1511 pos += ret;
1512
1513 if (wpa_s->l2 &&
1514 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1515 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
1516 if (ret < 0 || ret >= end - pos)
1517 return pos - buf;
1518 pos += ret;
1519 }
1520
1521#ifdef CONFIG_P2P
1522 if (wpa_s->global->p2p) {
1523 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1524 "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
1525 if (ret < 0 || ret >= end - pos)
1526 return pos - buf;
1527 pos += ret;
1528 }
1529#endif /* CONFIG_P2P */
1530
1531 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1532 MAC2STR(wpa_s->own_addr));
1533 if (ret < 0 || ret >= end - pos)
1534 return pos - buf;
1535 pos += ret;
1536
Dmitry Shmidt04949592012-07-19 12:16:46 -07001537#ifdef CONFIG_HS20
1538 if (wpa_s->current_bss &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001539 wpa_bss_get_vendor_ie(wpa_s->current_bss, HS20_IE_VENDOR_TYPE) &&
1540 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1541 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001542 ret = os_snprintf(pos, end - pos, "hs20=1\n");
1543 if (ret < 0 || ret >= end - pos)
1544 return pos - buf;
1545 pos += ret;
1546 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001547
1548 if (wpa_s->current_ssid) {
1549 struct wpa_cred *cred;
1550 char *type;
1551
1552 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1553 if (wpa_s->current_ssid->parent_cred != cred)
1554 continue;
1555 if (!cred->domain)
1556 continue;
1557
1558 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1559 cred->domain);
1560 if (ret < 0 || ret >= end - pos)
1561 return pos - buf;
1562 pos += ret;
1563
1564 if (wpa_s->current_bss == NULL ||
1565 wpa_s->current_bss->anqp == NULL)
1566 res = -1;
1567 else
1568 res = interworking_home_sp_cred(
1569 wpa_s, cred,
1570 wpa_s->current_bss->anqp->domain_name);
1571 if (res > 0)
1572 type = "home";
1573 else if (res == 0)
1574 type = "roaming";
1575 else
1576 type = "unknown";
1577
1578 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
1579 if (ret < 0 || ret >= end - pos)
1580 return pos - buf;
1581 pos += ret;
1582
1583 break;
1584 }
1585 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001586#endif /* CONFIG_HS20 */
1587
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001588 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
1589 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1590 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
1591 verbose);
1592 if (res >= 0)
1593 pos += res;
1594 }
1595
1596 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
1597 if (res >= 0)
1598 pos += res;
1599
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001600#ifdef ANDROID
1601 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
Irfan Sherifff20a4432012-04-16 16:48:34 -07001602 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001603 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
Irfan Sherifff20a4432012-04-16 16:48:34 -07001604 wpa_s->wpa_state,
Irfan Sheriffe78e7672012-08-01 11:10:15 -07001605 MAC2STR(wpa_s->bssid),
andy2_kuo5b5fb022012-05-22 11:53:07 -07001606 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
1607 wpa_ssid_txt(wpa_s->current_ssid->ssid,
Irfan Sheriff10294772012-05-11 11:23:35 -07001608 wpa_s->current_ssid->ssid_len) : "");
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001609 if (wpa_s->wpa_state == WPA_COMPLETED) {
1610 struct wpa_ssid *ssid = wpa_s->current_ssid;
1611 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- connection to "
1612 MACSTR " completed %s [id=%d id_str=%s]",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001613 MAC2STR(wpa_s->bssid), "(auth)",
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001614 ssid ? ssid->id : -1,
1615 ssid && ssid->id_str ? ssid->id_str : "");
1616 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001617#endif /* ANDROID */
1618
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001619 return pos - buf;
1620}
1621
1622
1623static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
1624 char *cmd)
1625{
1626 char *pos;
1627 int id;
1628 struct wpa_ssid *ssid;
1629 u8 bssid[ETH_ALEN];
1630
1631 /* cmd: "<network id> <BSSID>" */
1632 pos = os_strchr(cmd, ' ');
1633 if (pos == NULL)
1634 return -1;
1635 *pos++ = '\0';
1636 id = atoi(cmd);
1637 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
1638 if (hwaddr_aton(pos, bssid)) {
1639 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
1640 return -1;
1641 }
1642
1643 ssid = wpa_config_get_network(wpa_s->conf, id);
1644 if (ssid == NULL) {
1645 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1646 "to update", id);
1647 return -1;
1648 }
1649
1650 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
1651 ssid->bssid_set = !is_zero_ether_addr(bssid);
1652
1653 return 0;
1654}
1655
1656
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001657static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001658 char *cmd, char *buf,
1659 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001660{
1661 u8 bssid[ETH_ALEN];
1662 struct wpa_blacklist *e;
1663 char *pos, *end;
1664 int ret;
1665
1666 /* cmd: "BLACKLIST [<BSSID>]" */
1667 if (*cmd == '\0') {
1668 pos = buf;
1669 end = buf + buflen;
1670 e = wpa_s->blacklist;
1671 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001672 ret = os_snprintf(pos, end - pos, MACSTR "\n",
1673 MAC2STR(e->bssid));
1674 if (ret < 0 || ret >= end - pos)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001675 return pos - buf;
1676 pos += ret;
1677 e = e->next;
1678 }
1679 return pos - buf;
1680 }
1681
1682 cmd++;
1683 if (os_strncmp(cmd, "clear", 5) == 0) {
1684 wpa_blacklist_clear(wpa_s);
1685 os_memcpy(buf, "OK\n", 3);
1686 return 3;
1687 }
1688
1689 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
1690 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001691 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001692 return -1;
1693 }
1694
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001695 /*
1696 * Add the BSSID twice, so its count will be 2, causing it to be
1697 * skipped when processing scan results.
1698 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001699 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001700 if (ret != 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001701 return -1;
1702 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001703 if (ret != 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001704 return -1;
1705 os_memcpy(buf, "OK\n", 3);
1706 return 3;
1707}
1708
1709
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001710extern int wpa_debug_level;
1711extern int wpa_debug_timestamp;
1712
1713static const char * debug_level_str(int level)
1714{
1715 switch (level) {
1716 case MSG_EXCESSIVE:
1717 return "EXCESSIVE";
1718 case MSG_MSGDUMP:
1719 return "MSGDUMP";
1720 case MSG_DEBUG:
1721 return "DEBUG";
1722 case MSG_INFO:
1723 return "INFO";
1724 case MSG_WARNING:
1725 return "WARNING";
1726 case MSG_ERROR:
1727 return "ERROR";
1728 default:
1729 return "?";
1730 }
1731}
1732
1733
1734static int str_to_debug_level(const char *s)
1735{
1736 if (os_strcasecmp(s, "EXCESSIVE") == 0)
1737 return MSG_EXCESSIVE;
1738 if (os_strcasecmp(s, "MSGDUMP") == 0)
1739 return MSG_MSGDUMP;
1740 if (os_strcasecmp(s, "DEBUG") == 0)
1741 return MSG_DEBUG;
1742 if (os_strcasecmp(s, "INFO") == 0)
1743 return MSG_INFO;
1744 if (os_strcasecmp(s, "WARNING") == 0)
1745 return MSG_WARNING;
1746 if (os_strcasecmp(s, "ERROR") == 0)
1747 return MSG_ERROR;
1748 return -1;
1749}
1750
1751
1752static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
1753 char *cmd, char *buf,
1754 size_t buflen)
1755{
1756 char *pos, *end, *stamp;
1757 int ret;
1758
1759 if (cmd == NULL) {
1760 return -1;
1761 }
1762
1763 /* cmd: "LOG_LEVEL [<level>]" */
1764 if (*cmd == '\0') {
1765 pos = buf;
1766 end = buf + buflen;
1767 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
1768 "Timestamp: %d\n",
1769 debug_level_str(wpa_debug_level),
1770 wpa_debug_timestamp);
1771 if (ret < 0 || ret >= end - pos)
1772 ret = 0;
1773
1774 return ret;
1775 }
1776
1777 while (*cmd == ' ')
1778 cmd++;
1779
1780 stamp = os_strchr(cmd, ' ');
1781 if (stamp) {
1782 *stamp++ = '\0';
1783 while (*stamp == ' ') {
1784 stamp++;
1785 }
1786 }
1787
1788 if (cmd && os_strlen(cmd)) {
1789 int level = str_to_debug_level(cmd);
1790 if (level < 0)
1791 return -1;
1792 wpa_debug_level = level;
1793 }
1794
1795 if (stamp && os_strlen(stamp))
1796 wpa_debug_timestamp = atoi(stamp);
1797
1798 os_memcpy(buf, "OK\n", 3);
1799 return 3;
1800}
1801
1802
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001803static int wpa_supplicant_ctrl_iface_list_networks(
1804 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
1805{
1806 char *pos, *end;
1807 struct wpa_ssid *ssid;
1808 int ret;
1809
1810 pos = buf;
1811 end = buf + buflen;
1812 ret = os_snprintf(pos, end - pos,
1813 "network id / ssid / bssid / flags\n");
1814 if (ret < 0 || ret >= end - pos)
1815 return pos - buf;
1816 pos += ret;
1817
1818 ssid = wpa_s->conf->ssid;
1819 while (ssid) {
1820 ret = os_snprintf(pos, end - pos, "%d\t%s",
1821 ssid->id,
1822 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1823 if (ret < 0 || ret >= end - pos)
1824 return pos - buf;
1825 pos += ret;
1826 if (ssid->bssid_set) {
1827 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
1828 MAC2STR(ssid->bssid));
1829 } else {
1830 ret = os_snprintf(pos, end - pos, "\tany");
1831 }
1832 if (ret < 0 || ret >= end - pos)
1833 return pos - buf;
1834 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001835 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001836 ssid == wpa_s->current_ssid ?
1837 "[CURRENT]" : "",
1838 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001839 ssid->disabled_until.sec ?
1840 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001841 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
1842 "");
1843 if (ret < 0 || ret >= end - pos)
1844 return pos - buf;
1845 pos += ret;
1846 ret = os_snprintf(pos, end - pos, "\n");
1847 if (ret < 0 || ret >= end - pos)
1848 return pos - buf;
1849 pos += ret;
1850
1851 ssid = ssid->next;
1852 }
1853
1854 return pos - buf;
1855}
1856
1857
1858static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
1859{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001860 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001861 ret = os_snprintf(pos, end - pos, "-");
1862 if (ret < 0 || ret >= end - pos)
1863 return pos;
1864 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001865 ret = wpa_write_ciphers(pos, end, cipher, "+");
1866 if (ret < 0)
1867 return pos;
1868 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001869 return pos;
1870}
1871
1872
1873static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
1874 const u8 *ie, size_t ie_len)
1875{
1876 struct wpa_ie_data data;
1877 int first, ret;
1878
1879 ret = os_snprintf(pos, end - pos, "[%s-", proto);
1880 if (ret < 0 || ret >= end - pos)
1881 return pos;
1882 pos += ret;
1883
1884 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
1885 ret = os_snprintf(pos, end - pos, "?]");
1886 if (ret < 0 || ret >= end - pos)
1887 return pos;
1888 pos += ret;
1889 return pos;
1890 }
1891
1892 first = 1;
1893 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
1894 ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
1895 if (ret < 0 || ret >= end - pos)
1896 return pos;
1897 pos += ret;
1898 first = 0;
1899 }
1900 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
1901 ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
1902 if (ret < 0 || ret >= end - pos)
1903 return pos;
1904 pos += ret;
1905 first = 0;
1906 }
1907 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
1908 ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
1909 if (ret < 0 || ret >= end - pos)
1910 return pos;
1911 pos += ret;
1912 first = 0;
1913 }
1914#ifdef CONFIG_IEEE80211R
1915 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
1916 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
1917 first ? "" : "+");
1918 if (ret < 0 || ret >= end - pos)
1919 return pos;
1920 pos += ret;
1921 first = 0;
1922 }
1923 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
1924 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
1925 first ? "" : "+");
1926 if (ret < 0 || ret >= end - pos)
1927 return pos;
1928 pos += ret;
1929 first = 0;
1930 }
1931#endif /* CONFIG_IEEE80211R */
1932#ifdef CONFIG_IEEE80211W
1933 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
1934 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
1935 first ? "" : "+");
1936 if (ret < 0 || ret >= end - pos)
1937 return pos;
1938 pos += ret;
1939 first = 0;
1940 }
1941 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
1942 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
1943 first ? "" : "+");
1944 if (ret < 0 || ret >= end - pos)
1945 return pos;
1946 pos += ret;
1947 first = 0;
1948 }
1949#endif /* CONFIG_IEEE80211W */
1950
1951 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
1952
1953 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
1954 ret = os_snprintf(pos, end - pos, "-preauth");
1955 if (ret < 0 || ret >= end - pos)
1956 return pos;
1957 pos += ret;
1958 }
1959
1960 ret = os_snprintf(pos, end - pos, "]");
1961 if (ret < 0 || ret >= end - pos)
1962 return pos;
1963 pos += ret;
1964
1965 return pos;
1966}
1967
1968
1969#ifdef CONFIG_WPS
1970static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
1971 char *pos, char *end,
1972 struct wpabuf *wps_ie)
1973{
1974 int ret;
1975 const char *txt;
1976
1977 if (wps_ie == NULL)
1978 return pos;
1979 if (wps_is_selected_pbc_registrar(wps_ie))
1980 txt = "[WPS-PBC]";
1981#ifdef CONFIG_WPS2
1982 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
1983 txt = "[WPS-AUTH]";
1984#endif /* CONFIG_WPS2 */
1985 else if (wps_is_selected_pin_registrar(wps_ie))
1986 txt = "[WPS-PIN]";
1987 else
1988 txt = "[WPS]";
1989
1990 ret = os_snprintf(pos, end - pos, "%s", txt);
1991 if (ret >= 0 && ret < end - pos)
1992 pos += ret;
1993 wpabuf_free(wps_ie);
1994 return pos;
1995}
1996#endif /* CONFIG_WPS */
1997
1998
1999static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2000 char *pos, char *end,
2001 const struct wpa_bss *bss)
2002{
2003#ifdef CONFIG_WPS
2004 struct wpabuf *wps_ie;
2005 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2006 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2007#else /* CONFIG_WPS */
2008 return pos;
2009#endif /* CONFIG_WPS */
2010}
2011
2012
2013/* Format one result on one text line into a buffer. */
2014static int wpa_supplicant_ctrl_iface_scan_result(
2015 struct wpa_supplicant *wpa_s,
2016 const struct wpa_bss *bss, char *buf, size_t buflen)
2017{
2018 char *pos, *end;
2019 int ret;
2020 const u8 *ie, *ie2, *p2p;
2021
2022 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
2023 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2024 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2025 0)
2026 return 0; /* Do not show P2P listen discovery results here */
2027
2028 pos = buf;
2029 end = buf + buflen;
2030
2031 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2032 MAC2STR(bss->bssid), bss->freq, bss->level);
2033 if (ret < 0 || ret >= end - pos)
2034 return -1;
2035 pos += ret;
2036 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2037 if (ie)
2038 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2039 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
2040 if (ie2)
2041 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
2042 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
2043 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
2044 ret = os_snprintf(pos, end - pos, "[WEP]");
2045 if (ret < 0 || ret >= end - pos)
2046 return -1;
2047 pos += ret;
2048 }
2049 if (bss->caps & IEEE80211_CAP_IBSS) {
2050 ret = os_snprintf(pos, end - pos, "[IBSS]");
2051 if (ret < 0 || ret >= end - pos)
2052 return -1;
2053 pos += ret;
2054 }
2055 if (bss->caps & IEEE80211_CAP_ESS) {
2056 ret = os_snprintf(pos, end - pos, "[ESS]");
2057 if (ret < 0 || ret >= end - pos)
2058 return -1;
2059 pos += ret;
2060 }
2061 if (p2p) {
2062 ret = os_snprintf(pos, end - pos, "[P2P]");
2063 if (ret < 0 || ret >= end - pos)
2064 return -1;
2065 pos += ret;
2066 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002067#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002068 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002069 ret = os_snprintf(pos, end - pos, "[HS20]");
2070 if (ret < 0 || ret >= end - pos)
2071 return -1;
2072 pos += ret;
2073 }
2074#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002075
2076 ret = os_snprintf(pos, end - pos, "\t%s",
2077 wpa_ssid_txt(bss->ssid, bss->ssid_len));
2078 if (ret < 0 || ret >= end - pos)
2079 return -1;
2080 pos += ret;
2081
2082 ret = os_snprintf(pos, end - pos, "\n");
2083 if (ret < 0 || ret >= end - pos)
2084 return -1;
2085 pos += ret;
2086
2087 return pos - buf;
2088}
2089
2090
2091static int wpa_supplicant_ctrl_iface_scan_results(
2092 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2093{
2094 char *pos, *end;
2095 struct wpa_bss *bss;
2096 int ret;
2097
2098 pos = buf;
2099 end = buf + buflen;
2100 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2101 "flags / ssid\n");
2102 if (ret < 0 || ret >= end - pos)
2103 return pos - buf;
2104 pos += ret;
2105
2106 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2107 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2108 end - pos);
2109 if (ret < 0 || ret >= end - pos)
2110 return pos - buf;
2111 pos += ret;
2112 }
2113
2114 return pos - buf;
2115}
2116
2117
2118static int wpa_supplicant_ctrl_iface_select_network(
2119 struct wpa_supplicant *wpa_s, char *cmd)
2120{
2121 int id;
2122 struct wpa_ssid *ssid;
2123
2124 /* cmd: "<network id>" or "any" */
2125 if (os_strcmp(cmd, "any") == 0) {
2126 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2127 ssid = NULL;
2128 } else {
2129 id = atoi(cmd);
2130 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2131
2132 ssid = wpa_config_get_network(wpa_s->conf, id);
2133 if (ssid == NULL) {
2134 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2135 "network id=%d", id);
2136 return -1;
2137 }
2138 if (ssid->disabled == 2) {
2139 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2140 "SELECT_NETWORK with persistent P2P group");
2141 return -1;
2142 }
2143 }
2144
2145 wpa_supplicant_select_network(wpa_s, ssid);
2146
2147 return 0;
2148}
2149
2150
2151static int wpa_supplicant_ctrl_iface_enable_network(
2152 struct wpa_supplicant *wpa_s, char *cmd)
2153{
2154 int id;
2155 struct wpa_ssid *ssid;
2156
2157 /* cmd: "<network id>" or "all" */
2158 if (os_strcmp(cmd, "all") == 0) {
2159 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2160 ssid = NULL;
2161 } else {
2162 id = atoi(cmd);
2163 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2164
2165 ssid = wpa_config_get_network(wpa_s->conf, id);
2166 if (ssid == NULL) {
2167 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2168 "network id=%d", id);
2169 return -1;
2170 }
2171 if (ssid->disabled == 2) {
2172 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2173 "ENABLE_NETWORK with persistent P2P group");
2174 return -1;
2175 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002176
2177 if (os_strstr(cmd, " no-connect")) {
2178 ssid->disabled = 0;
2179 return 0;
2180 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002181 }
2182 wpa_supplicant_enable_network(wpa_s, ssid);
2183
2184 return 0;
2185}
2186
2187
2188static int wpa_supplicant_ctrl_iface_disable_network(
2189 struct wpa_supplicant *wpa_s, char *cmd)
2190{
2191 int id;
2192 struct wpa_ssid *ssid;
2193
2194 /* cmd: "<network id>" or "all" */
2195 if (os_strcmp(cmd, "all") == 0) {
2196 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2197 ssid = NULL;
2198 } else {
2199 id = atoi(cmd);
2200 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2201
2202 ssid = wpa_config_get_network(wpa_s->conf, id);
2203 if (ssid == NULL) {
2204 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2205 "network id=%d", id);
2206 return -1;
2207 }
2208 if (ssid->disabled == 2) {
2209 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2210 "DISABLE_NETWORK with persistent P2P "
2211 "group");
2212 return -1;
2213 }
2214 }
2215 wpa_supplicant_disable_network(wpa_s, ssid);
2216
2217 return 0;
2218}
2219
2220
2221static int wpa_supplicant_ctrl_iface_add_network(
2222 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2223{
2224 struct wpa_ssid *ssid;
2225 int ret;
2226
2227 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2228
2229 ssid = wpa_config_add_network(wpa_s->conf);
2230 if (ssid == NULL)
2231 return -1;
2232
2233 wpas_notify_network_added(wpa_s, ssid);
2234
2235 ssid->disabled = 1;
2236 wpa_config_set_network_defaults(ssid);
2237
2238 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
2239 if (ret < 0 || (size_t) ret >= buflen)
2240 return -1;
2241 return ret;
2242}
2243
2244
2245static int wpa_supplicant_ctrl_iface_remove_network(
2246 struct wpa_supplicant *wpa_s, char *cmd)
2247{
2248 int id;
2249 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002250 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002251
2252 /* cmd: "<network id>" or "all" */
2253 if (os_strcmp(cmd, "all") == 0) {
2254 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002255 if (wpa_s->sched_scanning)
2256 wpa_supplicant_cancel_sched_scan(wpa_s);
2257
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002258 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002259 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002260#ifdef CONFIG_SME
2261 wpa_s->sme.prev_bssid_set = 0;
2262#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002263 wpa_sm_set_config(wpa_s->wpa, NULL);
2264 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002265 wpa_supplicant_deauthenticate(
2266 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002267 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002268 ssid = wpa_s->conf->ssid;
2269 while (ssid) {
2270 struct wpa_ssid *remove_ssid = ssid;
2271 id = ssid->id;
2272 ssid = ssid->next;
2273 wpas_notify_network_removed(wpa_s, remove_ssid);
2274 wpa_config_remove_network(wpa_s->conf, id);
2275 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002276 return 0;
2277 }
2278
2279 id = atoi(cmd);
2280 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2281
2282 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002283 if (ssid)
2284 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002285 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002286 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2287 "id=%d", id);
2288 return -1;
2289 }
2290
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002291 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002292#ifdef CONFIG_SME
2293 wpa_s->sme.prev_bssid_set = 0;
2294#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002295 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002296 * Invalidate the EAP session cache if the current or
2297 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002298 */
2299 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002300 }
2301
2302 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002303 wpa_sm_set_config(wpa_s->wpa, NULL);
2304 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002305
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002306 wpa_supplicant_deauthenticate(wpa_s,
2307 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002308 }
2309
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002310 was_disabled = ssid->disabled;
2311
Deepthi Gowria831d782012-09-03 11:55:38 +03002312 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2313 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2314 "network id=%d", id);
2315 return -1;
2316 }
2317
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002318 if (!was_disabled && wpa_s->sched_scanning) {
2319 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2320 "network from filters");
2321 wpa_supplicant_cancel_sched_scan(wpa_s);
2322 wpa_supplicant_req_scan(wpa_s, 0, 0);
2323 }
2324
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002325 return 0;
2326}
2327
2328
2329static int wpa_supplicant_ctrl_iface_set_network(
2330 struct wpa_supplicant *wpa_s, char *cmd)
2331{
2332 int id;
2333 struct wpa_ssid *ssid;
2334 char *name, *value;
2335
2336 /* cmd: "<network id> <variable name> <value>" */
2337 name = os_strchr(cmd, ' ');
2338 if (name == NULL)
2339 return -1;
2340 *name++ = '\0';
2341
2342 value = os_strchr(name, ' ');
2343 if (value == NULL)
2344 return -1;
2345 *value++ = '\0';
2346
2347 id = atoi(cmd);
2348 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
2349 id, name);
2350 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2351 (u8 *) value, os_strlen(value));
2352
2353 ssid = wpa_config_get_network(wpa_s->conf, id);
2354 if (ssid == NULL) {
2355 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2356 "id=%d", id);
2357 return -1;
2358 }
2359
2360 if (wpa_config_set(ssid, name, value, 0) < 0) {
2361 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2362 "variable '%s'", name);
2363 return -1;
2364 }
2365
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002366 if (os_strcmp(name, "bssid") != 0 &&
2367 os_strcmp(name, "priority") != 0)
2368 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002369
2370 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002371 /*
2372 * Invalidate the EAP session cache if anything in the current
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002373 * or previously used configuration changes.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002374 */
2375 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2376 }
2377
2378 if ((os_strcmp(name, "psk") == 0 &&
2379 value[0] == '"' && ssid->ssid_len) ||
2380 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2381 wpa_config_update_psk(ssid);
2382 else if (os_strcmp(name, "priority") == 0)
2383 wpa_config_update_prio_list(wpa_s->conf);
2384
2385 return 0;
2386}
2387
2388
2389static int wpa_supplicant_ctrl_iface_get_network(
2390 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
2391{
2392 int id;
2393 size_t res;
2394 struct wpa_ssid *ssid;
2395 char *name, *value;
2396
2397 /* cmd: "<network id> <variable name>" */
2398 name = os_strchr(cmd, ' ');
2399 if (name == NULL || buflen == 0)
2400 return -1;
2401 *name++ = '\0';
2402
2403 id = atoi(cmd);
2404 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
2405 id, name);
2406
2407 ssid = wpa_config_get_network(wpa_s->conf, id);
2408 if (ssid == NULL) {
2409 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2410 "id=%d", id);
2411 return -1;
2412 }
2413
2414 value = wpa_config_get_no_key(ssid, name);
2415 if (value == NULL) {
2416 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
2417 "variable '%s'", name);
2418 return -1;
2419 }
2420
2421 res = os_strlcpy(buf, value, buflen);
2422 if (res >= buflen) {
2423 os_free(value);
2424 return -1;
2425 }
2426
2427 os_free(value);
2428
2429 return res;
2430}
2431
2432
Dmitry Shmidt04949592012-07-19 12:16:46 -07002433static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
2434 char *buf, size_t buflen)
2435{
2436 char *pos, *end;
2437 struct wpa_cred *cred;
2438 int ret;
2439
2440 pos = buf;
2441 end = buf + buflen;
2442 ret = os_snprintf(pos, end - pos,
2443 "cred id / realm / username / domain / imsi\n");
2444 if (ret < 0 || ret >= end - pos)
2445 return pos - buf;
2446 pos += ret;
2447
2448 cred = wpa_s->conf->cred;
2449 while (cred) {
2450 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
2451 cred->id, cred->realm ? cred->realm : "",
2452 cred->username ? cred->username : "",
2453 cred->domain ? cred->domain : "",
2454 cred->imsi ? cred->imsi : "");
2455 if (ret < 0 || ret >= end - pos)
2456 return pos - buf;
2457 pos += ret;
2458
2459 cred = cred->next;
2460 }
2461
2462 return pos - buf;
2463}
2464
2465
2466static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
2467 char *buf, size_t buflen)
2468{
2469 struct wpa_cred *cred;
2470 int ret;
2471
2472 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
2473
2474 cred = wpa_config_add_cred(wpa_s->conf);
2475 if (cred == NULL)
2476 return -1;
2477
2478 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
2479 if (ret < 0 || (size_t) ret >= buflen)
2480 return -1;
2481 return ret;
2482}
2483
2484
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002485static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
2486 struct wpa_cred *cred)
2487{
2488 struct wpa_ssid *ssid;
2489 char str[20];
2490
2491 if (cred == NULL || wpa_config_remove_cred(wpa_s->conf, cred->id) < 0) {
2492 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
2493 return -1;
2494 }
2495
2496 /* Remove any network entry created based on the removed credential */
2497 ssid = wpa_s->conf->ssid;
2498 while (ssid) {
2499 if (ssid->parent_cred == cred) {
2500 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
2501 "used the removed credential", ssid->id);
2502 os_snprintf(str, sizeof(str), "%d", ssid->id);
2503 ssid = ssid->next;
2504 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
2505 } else
2506 ssid = ssid->next;
2507 }
2508
2509 return 0;
2510}
2511
2512
Dmitry Shmidt04949592012-07-19 12:16:46 -07002513static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
2514 char *cmd)
2515{
2516 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002517 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002518
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002519 /* cmd: "<cred id>", "all", or "sp_fqdn=<FQDN>" */
Dmitry Shmidt04949592012-07-19 12:16:46 -07002520 if (os_strcmp(cmd, "all") == 0) {
2521 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
2522 cred = wpa_s->conf->cred;
2523 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002524 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002525 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002526 wpas_ctrl_remove_cred(wpa_s, prev);
2527 }
2528 return 0;
2529 }
2530
2531 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
2532 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
2533 cmd + 8);
2534 cred = wpa_s->conf->cred;
2535 while (cred) {
2536 prev = cred;
2537 cred = cred->next;
2538 if (prev->domain &&
2539 os_strcmp(prev->domain, cmd + 8) == 0)
2540 wpas_ctrl_remove_cred(wpa_s, prev);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002541 }
2542 return 0;
2543 }
2544
2545 id = atoi(cmd);
2546 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
2547
2548 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002549 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002550}
2551
2552
2553static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
2554 char *cmd)
2555{
2556 int id;
2557 struct wpa_cred *cred;
2558 char *name, *value;
2559
2560 /* cmd: "<cred id> <variable name> <value>" */
2561 name = os_strchr(cmd, ' ');
2562 if (name == NULL)
2563 return -1;
2564 *name++ = '\0';
2565
2566 value = os_strchr(name, ' ');
2567 if (value == NULL)
2568 return -1;
2569 *value++ = '\0';
2570
2571 id = atoi(cmd);
2572 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
2573 id, name);
2574 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2575 (u8 *) value, os_strlen(value));
2576
2577 cred = wpa_config_get_cred(wpa_s->conf, id);
2578 if (cred == NULL) {
2579 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
2580 id);
2581 return -1;
2582 }
2583
2584 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
2585 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
2586 "variable '%s'", name);
2587 return -1;
2588 }
2589
2590 return 0;
2591}
2592
2593
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002594#ifndef CONFIG_NO_CONFIG_WRITE
2595static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
2596{
2597 int ret;
2598
2599 if (!wpa_s->conf->update_config) {
2600 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
2601 "to update configuration (update_config=0)");
2602 return -1;
2603 }
2604
2605 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
2606 if (ret) {
2607 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
2608 "update configuration");
2609 } else {
2610 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
2611 " updated");
2612 }
2613
2614 return ret;
2615}
2616#endif /* CONFIG_NO_CONFIG_WRITE */
2617
2618
2619static int ctrl_iface_get_capability_pairwise(int res, char *strict,
2620 struct wpa_driver_capa *capa,
2621 char *buf, size_t buflen)
2622{
2623 int ret, first = 1;
2624 char *pos, *end;
2625 size_t len;
2626
2627 pos = buf;
2628 end = pos + buflen;
2629
2630 if (res < 0) {
2631 if (strict)
2632 return 0;
2633 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
2634 if (len >= buflen)
2635 return -1;
2636 return len;
2637 }
2638
2639 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2640 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2641 if (ret < 0 || ret >= end - pos)
2642 return pos - buf;
2643 pos += ret;
2644 first = 0;
2645 }
2646
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002647 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2648 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2649 if (ret < 0 || ret >= end - pos)
2650 return pos - buf;
2651 pos += ret;
2652 first = 0;
2653 }
2654
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002655 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2656 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2657 if (ret < 0 || ret >= end - pos)
2658 return pos - buf;
2659 pos += ret;
2660 first = 0;
2661 }
2662
2663 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2664 ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
2665 if (ret < 0 || ret >= end - pos)
2666 return pos - buf;
2667 pos += ret;
2668 first = 0;
2669 }
2670
2671 return pos - buf;
2672}
2673
2674
2675static int ctrl_iface_get_capability_group(int res, char *strict,
2676 struct wpa_driver_capa *capa,
2677 char *buf, size_t buflen)
2678{
2679 int ret, first = 1;
2680 char *pos, *end;
2681 size_t len;
2682
2683 pos = buf;
2684 end = pos + buflen;
2685
2686 if (res < 0) {
2687 if (strict)
2688 return 0;
2689 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
2690 if (len >= buflen)
2691 return -1;
2692 return len;
2693 }
2694
2695 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2696 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2697 if (ret < 0 || ret >= end - pos)
2698 return pos - buf;
2699 pos += ret;
2700 first = 0;
2701 }
2702
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002703 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2704 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2705 if (ret < 0 || ret >= end - pos)
2706 return pos - buf;
2707 pos += ret;
2708 first = 0;
2709 }
2710
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002711 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2712 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2713 if (ret < 0 || ret >= end - pos)
2714 return pos - buf;
2715 pos += ret;
2716 first = 0;
2717 }
2718
2719 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
2720 ret = os_snprintf(pos, end - pos, "%sWEP104",
2721 first ? "" : " ");
2722 if (ret < 0 || ret >= end - pos)
2723 return pos - buf;
2724 pos += ret;
2725 first = 0;
2726 }
2727
2728 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
2729 ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
2730 if (ret < 0 || ret >= end - pos)
2731 return pos - buf;
2732 pos += ret;
2733 first = 0;
2734 }
2735
2736 return pos - buf;
2737}
2738
2739
2740static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
2741 struct wpa_driver_capa *capa,
2742 char *buf, size_t buflen)
2743{
2744 int ret;
2745 char *pos, *end;
2746 size_t len;
2747
2748 pos = buf;
2749 end = pos + buflen;
2750
2751 if (res < 0) {
2752 if (strict)
2753 return 0;
2754 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
2755 "NONE", buflen);
2756 if (len >= buflen)
2757 return -1;
2758 return len;
2759 }
2760
2761 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
2762 if (ret < 0 || ret >= end - pos)
2763 return pos - buf;
2764 pos += ret;
2765
2766 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2767 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
2768 ret = os_snprintf(pos, end - pos, " WPA-EAP");
2769 if (ret < 0 || ret >= end - pos)
2770 return pos - buf;
2771 pos += ret;
2772 }
2773
2774 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
2775 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2776 ret = os_snprintf(pos, end - pos, " WPA-PSK");
2777 if (ret < 0 || ret >= end - pos)
2778 return pos - buf;
2779 pos += ret;
2780 }
2781
2782 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2783 ret = os_snprintf(pos, end - pos, " WPA-NONE");
2784 if (ret < 0 || ret >= end - pos)
2785 return pos - buf;
2786 pos += ret;
2787 }
2788
2789 return pos - buf;
2790}
2791
2792
2793static int ctrl_iface_get_capability_proto(int res, char *strict,
2794 struct wpa_driver_capa *capa,
2795 char *buf, size_t buflen)
2796{
2797 int ret, first = 1;
2798 char *pos, *end;
2799 size_t len;
2800
2801 pos = buf;
2802 end = pos + buflen;
2803
2804 if (res < 0) {
2805 if (strict)
2806 return 0;
2807 len = os_strlcpy(buf, "RSN WPA", buflen);
2808 if (len >= buflen)
2809 return -1;
2810 return len;
2811 }
2812
2813 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
2814 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2815 ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
2816 if (ret < 0 || ret >= end - pos)
2817 return pos - buf;
2818 pos += ret;
2819 first = 0;
2820 }
2821
2822 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2823 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
2824 ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
2825 if (ret < 0 || ret >= end - pos)
2826 return pos - buf;
2827 pos += ret;
2828 first = 0;
2829 }
2830
2831 return pos - buf;
2832}
2833
2834
2835static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
2836 struct wpa_driver_capa *capa,
2837 char *buf, size_t buflen)
2838{
2839 int ret, first = 1;
2840 char *pos, *end;
2841 size_t len;
2842
2843 pos = buf;
2844 end = pos + buflen;
2845
2846 if (res < 0) {
2847 if (strict)
2848 return 0;
2849 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
2850 if (len >= buflen)
2851 return -1;
2852 return len;
2853 }
2854
2855 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
2856 ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
2857 if (ret < 0 || ret >= end - pos)
2858 return pos - buf;
2859 pos += ret;
2860 first = 0;
2861 }
2862
2863 if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
2864 ret = os_snprintf(pos, end - pos, "%sSHARED",
2865 first ? "" : " ");
2866 if (ret < 0 || ret >= end - pos)
2867 return pos - buf;
2868 pos += ret;
2869 first = 0;
2870 }
2871
2872 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
2873 ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
2874 if (ret < 0 || ret >= end - pos)
2875 return pos - buf;
2876 pos += ret;
2877 first = 0;
2878 }
2879
2880 return pos - buf;
2881}
2882
2883
Dmitry Shmidt700a1372013-03-15 14:14:44 -07002884static int ctrl_iface_get_capability_modes(int res, char *strict,
2885 struct wpa_driver_capa *capa,
2886 char *buf, size_t buflen)
2887{
2888 int ret, first = 1;
2889 char *pos, *end;
2890 size_t len;
2891
2892 pos = buf;
2893 end = pos + buflen;
2894
2895 if (res < 0) {
2896 if (strict)
2897 return 0;
2898 len = os_strlcpy(buf, "IBSS AP", buflen);
2899 if (len >= buflen)
2900 return -1;
2901 return len;
2902 }
2903
2904 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
2905 ret = os_snprintf(pos, end - pos, "%sIBSS", first ? "" : " ");
2906 if (ret < 0 || ret >= end - pos)
2907 return pos - buf;
2908 pos += ret;
2909 first = 0;
2910 }
2911
2912 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
2913 ret = os_snprintf(pos, end - pos, "%sAP", first ? "" : " ");
2914 if (ret < 0 || ret >= end - pos)
2915 return pos - buf;
2916 pos += ret;
2917 first = 0;
2918 }
2919
2920 return pos - buf;
2921}
2922
2923
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002924static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
2925 char *buf, size_t buflen)
2926{
2927 struct hostapd_channel_data *chnl;
2928 int ret, i, j;
2929 char *pos, *end, *hmode;
2930
2931 pos = buf;
2932 end = pos + buflen;
2933
2934 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2935 switch (wpa_s->hw.modes[j].mode) {
2936 case HOSTAPD_MODE_IEEE80211B:
2937 hmode = "B";
2938 break;
2939 case HOSTAPD_MODE_IEEE80211G:
2940 hmode = "G";
2941 break;
2942 case HOSTAPD_MODE_IEEE80211A:
2943 hmode = "A";
2944 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002945 case HOSTAPD_MODE_IEEE80211AD:
2946 hmode = "AD";
2947 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002948 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002949 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002950 }
2951 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
2952 if (ret < 0 || ret >= end - pos)
2953 return pos - buf;
2954 pos += ret;
2955 chnl = wpa_s->hw.modes[j].channels;
2956 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002957 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
2958 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002959 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
2960 if (ret < 0 || ret >= end - pos)
2961 return pos - buf;
2962 pos += ret;
2963 }
2964 ret = os_snprintf(pos, end - pos, "\n");
2965 if (ret < 0 || ret >= end - pos)
2966 return pos - buf;
2967 pos += ret;
2968 }
2969
2970 return pos - buf;
2971}
2972
2973
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07002974static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
2975 char *buf, size_t buflen)
2976{
2977 struct hostapd_channel_data *chnl;
2978 int ret, i, j;
2979 char *pos, *end, *hmode;
2980
2981 pos = buf;
2982 end = pos + buflen;
2983
2984 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2985 switch (wpa_s->hw.modes[j].mode) {
2986 case HOSTAPD_MODE_IEEE80211B:
2987 hmode = "B";
2988 break;
2989 case HOSTAPD_MODE_IEEE80211G:
2990 hmode = "G";
2991 break;
2992 case HOSTAPD_MODE_IEEE80211A:
2993 hmode = "A";
2994 break;
2995 case HOSTAPD_MODE_IEEE80211AD:
2996 hmode = "AD";
2997 break;
2998 default:
2999 continue;
3000 }
3001 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3002 hmode);
3003 if (ret < 0 || ret >= end - pos)
3004 return pos - buf;
3005 pos += ret;
3006 chnl = wpa_s->hw.modes[j].channels;
3007 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3008 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3009 continue;
3010 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s\n",
3011 chnl[i].chan, chnl[i].freq,
3012 chnl[i].flag & HOSTAPD_CHAN_NO_IBSS ?
3013 " (NO_IBSS)" : "");
3014 if (ret < 0 || ret >= end - pos)
3015 return pos - buf;
3016 pos += ret;
3017 }
3018 ret = os_snprintf(pos, end - pos, "\n");
3019 if (ret < 0 || ret >= end - pos)
3020 return pos - buf;
3021 pos += ret;
3022 }
3023
3024 return pos - buf;
3025}
3026
3027
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003028static int wpa_supplicant_ctrl_iface_get_capability(
3029 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3030 size_t buflen)
3031{
3032 struct wpa_driver_capa capa;
3033 int res;
3034 char *strict;
3035 char field[30];
3036 size_t len;
3037
3038 /* Determine whether or not strict checking was requested */
3039 len = os_strlcpy(field, _field, sizeof(field));
3040 if (len >= sizeof(field))
3041 return -1;
3042 strict = os_strchr(field, ' ');
3043 if (strict != NULL) {
3044 *strict++ = '\0';
3045 if (os_strcmp(strict, "strict") != 0)
3046 return -1;
3047 }
3048
3049 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3050 field, strict ? strict : "");
3051
3052 if (os_strcmp(field, "eap") == 0) {
3053 return eap_get_names(buf, buflen);
3054 }
3055
3056 res = wpa_drv_get_capa(wpa_s, &capa);
3057
3058 if (os_strcmp(field, "pairwise") == 0)
3059 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3060 buf, buflen);
3061
3062 if (os_strcmp(field, "group") == 0)
3063 return ctrl_iface_get_capability_group(res, strict, &capa,
3064 buf, buflen);
3065
3066 if (os_strcmp(field, "key_mgmt") == 0)
3067 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3068 buf, buflen);
3069
3070 if (os_strcmp(field, "proto") == 0)
3071 return ctrl_iface_get_capability_proto(res, strict, &capa,
3072 buf, buflen);
3073
3074 if (os_strcmp(field, "auth_alg") == 0)
3075 return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
3076 buf, buflen);
3077
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003078 if (os_strcmp(field, "modes") == 0)
3079 return ctrl_iface_get_capability_modes(res, strict, &capa,
3080 buf, buflen);
3081
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003082 if (os_strcmp(field, "channels") == 0)
3083 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3084
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003085 if (os_strcmp(field, "freq") == 0)
3086 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3087
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003088 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3089 field);
3090
3091 return -1;
3092}
3093
3094
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003095#ifdef CONFIG_INTERWORKING
3096static char * anqp_add_hex(char *pos, char *end, const char *title,
3097 struct wpabuf *data)
3098{
3099 char *start = pos;
3100 size_t i;
3101 int ret;
3102 const u8 *d;
3103
3104 if (data == NULL)
3105 return start;
3106
3107 ret = os_snprintf(pos, end - pos, "%s=", title);
3108 if (ret < 0 || ret >= end - pos)
3109 return start;
3110 pos += ret;
3111
3112 d = wpabuf_head_u8(data);
3113 for (i = 0; i < wpabuf_len(data); i++) {
3114 ret = os_snprintf(pos, end - pos, "%02x", *d++);
3115 if (ret < 0 || ret >= end - pos)
3116 return start;
3117 pos += ret;
3118 }
3119
3120 ret = os_snprintf(pos, end - pos, "\n");
3121 if (ret < 0 || ret >= end - pos)
3122 return start;
3123 pos += ret;
3124
3125 return pos;
3126}
3127#endif /* CONFIG_INTERWORKING */
3128
3129
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003130static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
3131 unsigned long mask, char *buf, size_t buflen)
3132{
3133 size_t i;
3134 int ret;
3135 char *pos, *end;
3136 const u8 *ie, *ie2;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003137
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003138 pos = buf;
3139 end = buf + buflen;
3140
3141 if (mask & WPA_BSS_MASK_ID) {
3142 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
3143 if (ret < 0 || ret >= end - pos)
3144 return 0;
3145 pos += ret;
3146 }
3147
3148 if (mask & WPA_BSS_MASK_BSSID) {
3149 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
3150 MAC2STR(bss->bssid));
3151 if (ret < 0 || ret >= end - pos)
3152 return 0;
3153 pos += ret;
3154 }
3155
3156 if (mask & WPA_BSS_MASK_FREQ) {
3157 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
3158 if (ret < 0 || ret >= end - pos)
3159 return 0;
3160 pos += ret;
3161 }
3162
3163 if (mask & WPA_BSS_MASK_BEACON_INT) {
3164 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
3165 bss->beacon_int);
3166 if (ret < 0 || ret >= end - pos)
3167 return 0;
3168 pos += ret;
3169 }
3170
3171 if (mask & WPA_BSS_MASK_CAPABILITIES) {
3172 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
3173 bss->caps);
3174 if (ret < 0 || ret >= end - pos)
3175 return 0;
3176 pos += ret;
3177 }
3178
3179 if (mask & WPA_BSS_MASK_QUAL) {
3180 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
3181 if (ret < 0 || ret >= end - pos)
3182 return 0;
3183 pos += ret;
3184 }
3185
3186 if (mask & WPA_BSS_MASK_NOISE) {
3187 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
3188 if (ret < 0 || ret >= end - pos)
3189 return 0;
3190 pos += ret;
3191 }
3192
3193 if (mask & WPA_BSS_MASK_LEVEL) {
3194 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
3195 if (ret < 0 || ret >= end - pos)
3196 return 0;
3197 pos += ret;
3198 }
3199
3200 if (mask & WPA_BSS_MASK_TSF) {
3201 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
3202 (unsigned long long) bss->tsf);
3203 if (ret < 0 || ret >= end - pos)
3204 return 0;
3205 pos += ret;
3206 }
3207
3208 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003209 struct os_time now;
3210
3211 os_get_time(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003212 ret = os_snprintf(pos, end - pos, "age=%d\n",
3213 (int) (now.sec - bss->last_update.sec));
3214 if (ret < 0 || ret >= end - pos)
3215 return 0;
3216 pos += ret;
3217 }
3218
3219 if (mask & WPA_BSS_MASK_IE) {
3220 ret = os_snprintf(pos, end - pos, "ie=");
3221 if (ret < 0 || ret >= end - pos)
3222 return 0;
3223 pos += ret;
3224
3225 ie = (const u8 *) (bss + 1);
3226 for (i = 0; i < bss->ie_len; i++) {
3227 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
3228 if (ret < 0 || ret >= end - pos)
3229 return 0;
3230 pos += ret;
3231 }
3232
3233 ret = os_snprintf(pos, end - pos, "\n");
3234 if (ret < 0 || ret >= end - pos)
3235 return 0;
3236 pos += ret;
3237 }
3238
3239 if (mask & WPA_BSS_MASK_FLAGS) {
3240 ret = os_snprintf(pos, end - pos, "flags=");
3241 if (ret < 0 || ret >= end - pos)
3242 return 0;
3243 pos += ret;
3244
3245 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
3246 if (ie)
3247 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
3248 2 + ie[1]);
3249 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
3250 if (ie2)
3251 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
3252 2 + ie2[1]);
3253 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
3254 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
3255 ret = os_snprintf(pos, end - pos, "[WEP]");
3256 if (ret < 0 || ret >= end - pos)
3257 return 0;
3258 pos += ret;
3259 }
3260 if (bss->caps & IEEE80211_CAP_IBSS) {
3261 ret = os_snprintf(pos, end - pos, "[IBSS]");
3262 if (ret < 0 || ret >= end - pos)
3263 return 0;
3264 pos += ret;
3265 }
3266 if (bss->caps & IEEE80211_CAP_ESS) {
3267 ret = os_snprintf(pos, end - pos, "[ESS]");
3268 if (ret < 0 || ret >= end - pos)
3269 return 0;
3270 pos += ret;
3271 }
3272 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE)) {
3273 ret = os_snprintf(pos, end - pos, "[P2P]");
3274 if (ret < 0 || ret >= end - pos)
3275 return 0;
3276 pos += ret;
3277 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003278#ifdef CONFIG_HS20
3279 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
3280 ret = os_snprintf(pos, end - pos, "[HS20]");
3281 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003282 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003283 pos += ret;
3284 }
3285#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003286
3287 ret = os_snprintf(pos, end - pos, "\n");
3288 if (ret < 0 || ret >= end - pos)
3289 return 0;
3290 pos += ret;
3291 }
3292
3293 if (mask & WPA_BSS_MASK_SSID) {
3294 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
3295 wpa_ssid_txt(bss->ssid, bss->ssid_len));
3296 if (ret < 0 || ret >= end - pos)
3297 return 0;
3298 pos += ret;
3299 }
3300
3301#ifdef CONFIG_WPS
3302 if (mask & WPA_BSS_MASK_WPS_SCAN) {
3303 ie = (const u8 *) (bss + 1);
3304 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
3305 if (ret < 0 || ret >= end - pos)
3306 return 0;
3307 pos += ret;
3308 }
3309#endif /* CONFIG_WPS */
3310
3311#ifdef CONFIG_P2P
3312 if (mask & WPA_BSS_MASK_P2P_SCAN) {
3313 ie = (const u8 *) (bss + 1);
3314 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
3315 if (ret < 0 || ret >= end - pos)
3316 return 0;
3317 pos += ret;
3318 }
3319#endif /* CONFIG_P2P */
3320
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003321#ifdef CONFIG_WIFI_DISPLAY
3322 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
3323 struct wpabuf *wfd;
3324 ie = (const u8 *) (bss + 1);
3325 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
3326 WFD_IE_VENDOR_TYPE);
3327 if (wfd) {
3328 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
3329 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003330 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003331 pos += ret;
3332
3333 pos += wpa_snprintf_hex(pos, end - pos,
3334 wpabuf_head(wfd),
3335 wpabuf_len(wfd));
3336 wpabuf_free(wfd);
3337
3338 ret = os_snprintf(pos, end - pos, "\n");
3339 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003340 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003341 pos += ret;
3342 }
3343 }
3344#endif /* CONFIG_WIFI_DISPLAY */
3345
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003346#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003347 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
3348 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003349 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003350 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003351 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003352 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003353 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003354 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003355 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003356 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003357 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003358 anqp->nai_realm);
3359 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003360 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003361 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003362#ifdef CONFIG_HS20
3363 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003364 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003365 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003366 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003367 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003368 anqp->hs20_connection_capability);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003369#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003370 }
3371#endif /* CONFIG_INTERWORKING */
3372
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003373 if (mask & WPA_BSS_MASK_DELIM) {
3374 ret = os_snprintf(pos, end - pos, "====\n");
3375 if (ret < 0 || ret >= end - pos)
3376 return 0;
3377 pos += ret;
3378 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07003379
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003380 return pos - buf;
3381}
3382
Dmitry Shmidt04949592012-07-19 12:16:46 -07003383
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003384static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
3385 const char *cmd, char *buf,
3386 size_t buflen)
3387{
3388 u8 bssid[ETH_ALEN];
3389 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003390 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003391 struct wpa_bss *bsslast = NULL;
3392 struct dl_list *next;
3393 int ret = 0;
3394 int len;
3395 char *ctmp;
3396 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003397
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003398 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
3399 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
3400 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003401 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003402 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
3403 list_id);
3404 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003405 unsigned int id1, id2;
3406
3407 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
3408 wpa_printf(MSG_INFO, "Wrong BSS range "
3409 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003410 return 0;
3411 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003412
Dmitry Shmidtf8623282013-02-20 14:34:59 -08003413 if (*(cmd + 6) == '-')
3414 id1 = 0;
3415 else
3416 id1 = atoi(cmd + 6);
3417 ctmp++;
3418 if (*ctmp >= '0' && *ctmp <= '9')
3419 id2 = atoi(ctmp);
3420 else
3421 id2 = (unsigned int) -1;
3422 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
3423 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003424 bsslast = dl_list_last(&wpa_s->bss_id,
3425 struct wpa_bss,
3426 list_id);
3427 else {
3428 bsslast = wpa_bss_get_id(wpa_s, id2);
3429 if (bsslast == NULL && bss && id2 > id1) {
3430 struct wpa_bss *tmp = bss;
3431 for (;;) {
3432 next = tmp->list_id.next;
3433 if (next == &wpa_s->bss_id)
3434 break;
3435 tmp = dl_list_entry(
3436 next, struct wpa_bss,
3437 list_id);
3438 if (tmp->id > id2)
3439 break;
3440 bsslast = tmp;
3441 }
3442 }
3443 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003444 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003445 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003446 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003447 else if (os_strncmp(cmd, "LAST", 4) == 0)
3448 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003449 else if (os_strncmp(cmd, "ID-", 3) == 0) {
3450 i = atoi(cmd + 3);
3451 bss = wpa_bss_get_id(wpa_s, i);
3452 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
3453 i = atoi(cmd + 5);
3454 bss = wpa_bss_get_id(wpa_s, i);
3455 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003456 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003457 if (next == &wpa_s->bss_id)
3458 bss = NULL;
3459 else
3460 bss = dl_list_entry(next, struct wpa_bss,
3461 list_id);
3462 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003463#ifdef CONFIG_P2P
3464 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
3465 if (hwaddr_aton(cmd + 13, bssid) == 0)
3466 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
3467 else
3468 bss = NULL;
3469#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003470 } else if (hwaddr_aton(cmd, bssid) == 0)
3471 bss = wpa_bss_get_bssid(wpa_s, bssid);
3472 else {
3473 struct wpa_bss *tmp;
3474 i = atoi(cmd);
3475 bss = NULL;
3476 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
3477 {
3478 if (i-- == 0) {
3479 bss = tmp;
3480 break;
3481 }
3482 }
3483 }
3484
Dmitry Shmidt04949592012-07-19 12:16:46 -07003485 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
3486 mask = strtoul(ctmp + 5, NULL, 0x10);
3487 if (mask == 0)
3488 mask = WPA_BSS_MASK_ALL;
3489 }
3490
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003491 if (bss == NULL)
3492 return 0;
3493
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003494 if (bsslast == NULL)
3495 bsslast = bss;
3496 do {
3497 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
3498 ret += len;
3499 buf += len;
3500 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003501 if (bss == bsslast) {
3502 if ((mask & WPA_BSS_MASK_DELIM) && len &&
3503 (bss == dl_list_last(&wpa_s->bss_id,
3504 struct wpa_bss, list_id)))
3505 os_snprintf(buf - 5, 5, "####\n");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003506 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003507 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003508 next = bss->list_id.next;
3509 if (next == &wpa_s->bss_id)
3510 break;
3511 bss = dl_list_entry(next, struct wpa_bss, list_id);
3512 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003513
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003514 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003515}
3516
3517
3518static int wpa_supplicant_ctrl_iface_ap_scan(
3519 struct wpa_supplicant *wpa_s, char *cmd)
3520{
3521 int ap_scan = atoi(cmd);
3522 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
3523}
3524
3525
3526static int wpa_supplicant_ctrl_iface_scan_interval(
3527 struct wpa_supplicant *wpa_s, char *cmd)
3528{
3529 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003530 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003531}
3532
3533
3534static int wpa_supplicant_ctrl_iface_bss_expire_age(
3535 struct wpa_supplicant *wpa_s, char *cmd)
3536{
3537 int expire_age = atoi(cmd);
3538 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
3539}
3540
3541
3542static int wpa_supplicant_ctrl_iface_bss_expire_count(
3543 struct wpa_supplicant *wpa_s, char *cmd)
3544{
3545 int expire_count = atoi(cmd);
3546 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
3547}
3548
3549
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07003550static int wpa_supplicant_ctrl_iface_bss_flush(
3551 struct wpa_supplicant *wpa_s, char *cmd)
3552{
3553 int flush_age = atoi(cmd);
3554
3555 if (flush_age == 0)
3556 wpa_bss_flush(wpa_s);
3557 else
3558 wpa_bss_flush_by_age(wpa_s, flush_age);
3559 return 0;
3560}
3561
3562
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003563static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
3564{
3565 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
3566 /* MLME-DELETEKEYS.request */
3567 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
3568 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
3569 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
3570 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
3571#ifdef CONFIG_IEEE80211W
3572 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
3573 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
3574#endif /* CONFIG_IEEE80211W */
3575
3576 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
3577 0);
3578 /* MLME-SETPROTECTION.request(None) */
3579 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
3580 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
3581 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
3582 wpa_sm_drop_sa(wpa_s->wpa);
3583}
3584
3585
3586static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
3587 char *addr)
3588{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003589#ifdef CONFIG_NO_SCAN_PROCESSING
3590 return -1;
3591#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003592 u8 bssid[ETH_ALEN];
3593 struct wpa_bss *bss;
3594 struct wpa_ssid *ssid = wpa_s->current_ssid;
3595
3596 if (hwaddr_aton(addr, bssid)) {
3597 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
3598 "address '%s'", addr);
3599 return -1;
3600 }
3601
3602 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
3603
Dmitry Shmidt444d5672013-04-01 13:08:44 -07003604 if (!ssid) {
3605 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
3606 "configuration known for the target AP");
3607 return -1;
3608 }
3609
3610 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003611 if (!bss) {
3612 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
3613 "from BSS table");
3614 return -1;
3615 }
3616
3617 /*
3618 * TODO: Find best network configuration block from configuration to
3619 * allow roaming to other networks
3620 */
3621
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003622 wpa_s->reassociate = 1;
3623 wpa_supplicant_connect(wpa_s, bss, ssid);
3624
3625 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003626#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003627}
3628
3629
3630#ifdef CONFIG_P2P
3631static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
3632{
3633 unsigned int timeout = atoi(cmd);
3634 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003635 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
3636 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003637 unsigned int search_delay;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003638
3639 if (os_strstr(cmd, "type=social"))
3640 type = P2P_FIND_ONLY_SOCIAL;
3641 else if (os_strstr(cmd, "type=progressive"))
3642 type = P2P_FIND_PROGRESSIVE;
3643
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003644 pos = os_strstr(cmd, "dev_id=");
3645 if (pos) {
3646 pos += 7;
3647 if (hwaddr_aton(pos, dev_id))
3648 return -1;
3649 _dev_id = dev_id;
3650 }
3651
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003652 pos = os_strstr(cmd, "delay=");
3653 if (pos) {
3654 pos += 6;
3655 search_delay = atoi(pos);
3656 } else
3657 search_delay = wpas_p2p_search_delay(wpa_s);
3658
3659 return wpas_p2p_find(wpa_s, timeout, type, 0, NULL, _dev_id,
3660 search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003661}
3662
3663
3664static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
3665 char *buf, size_t buflen)
3666{
3667 u8 addr[ETH_ALEN];
3668 char *pos, *pos2;
3669 char *pin = NULL;
3670 enum p2p_wps_method wps_method;
3671 int new_pin;
3672 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003673 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003674 int join;
3675 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003676 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003677 int go_intent = -1;
3678 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003679 int pd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003680 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003681
Dmitry Shmidt04949592012-07-19 12:16:46 -07003682 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad]
3683 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003684 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
3685 * [ht40] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003686
3687 if (hwaddr_aton(cmd, addr))
3688 return -1;
3689
3690 pos = cmd + 17;
3691 if (*pos != ' ')
3692 return -1;
3693 pos++;
3694
3695 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003696 pos2 = os_strstr(pos, " persistent=");
3697 if (pos2) {
3698 struct wpa_ssid *ssid;
3699 persistent_id = atoi(pos2 + 12);
3700 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
3701 if (ssid == NULL || ssid->disabled != 2 ||
3702 ssid->mode != WPAS_MODE_P2P_GO) {
3703 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3704 "SSID id=%d for persistent P2P group (GO)",
3705 persistent_id);
3706 return -1;
3707 }
3708 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003709 join = os_strstr(pos, " join") != NULL;
3710 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003711 automatic = os_strstr(pos, " auto") != NULL;
3712 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003713 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003714
3715 pos2 = os_strstr(pos, " go_intent=");
3716 if (pos2) {
3717 pos2 += 11;
3718 go_intent = atoi(pos2);
3719 if (go_intent < 0 || go_intent > 15)
3720 return -1;
3721 }
3722
3723 pos2 = os_strstr(pos, " freq=");
3724 if (pos2) {
3725 pos2 += 6;
3726 freq = atoi(pos2);
3727 if (freq <= 0)
3728 return -1;
3729 }
3730
3731 if (os_strncmp(pos, "pin", 3) == 0) {
3732 /* Request random PIN (to be displayed) and enable the PIN */
3733 wps_method = WPS_PIN_DISPLAY;
3734 } else if (os_strncmp(pos, "pbc", 3) == 0) {
3735 wps_method = WPS_PBC;
3736 } else {
3737 pin = pos;
3738 pos = os_strchr(pin, ' ');
3739 wps_method = WPS_PIN_KEYPAD;
3740 if (pos) {
3741 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003742 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003743 wps_method = WPS_PIN_DISPLAY;
3744 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003745 if (!wps_pin_str_valid(pin)) {
3746 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
3747 return 17;
3748 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003749 }
3750
3751 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003752 persistent_group, automatic, join,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003753 auth, go_intent, freq, persistent_id, pd,
3754 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003755 if (new_pin == -2) {
3756 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
3757 return 25;
3758 }
3759 if (new_pin == -3) {
3760 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
3761 return 25;
3762 }
3763 if (new_pin < 0)
3764 return -1;
3765 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
3766 ret = os_snprintf(buf, buflen, "%08d", new_pin);
3767 if (ret < 0 || (size_t) ret >= buflen)
3768 return -1;
3769 return ret;
3770 }
3771
3772 os_memcpy(buf, "OK\n", 3);
3773 return 3;
3774}
3775
3776
3777static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
3778{
3779 unsigned int timeout = atoi(cmd);
3780 return wpas_p2p_listen(wpa_s, timeout);
3781}
3782
3783
3784static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
3785{
3786 u8 addr[ETH_ALEN];
3787 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003788 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003789
Dmitry Shmidt04949592012-07-19 12:16:46 -07003790 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003791
3792 if (hwaddr_aton(cmd, addr))
3793 return -1;
3794
3795 pos = cmd + 17;
3796 if (*pos != ' ')
3797 return -1;
3798 pos++;
3799
Dmitry Shmidt04949592012-07-19 12:16:46 -07003800 if (os_strstr(pos, " join") != NULL)
3801 use = WPAS_P2P_PD_FOR_JOIN;
3802 else if (os_strstr(pos, " auto") != NULL)
3803 use = WPAS_P2P_PD_AUTO;
3804
3805 return wpas_p2p_prov_disc(wpa_s, addr, pos, use);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003806}
3807
3808
3809static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
3810 size_t buflen)
3811{
3812 struct wpa_ssid *ssid = wpa_s->current_ssid;
3813
3814 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3815 ssid->passphrase == NULL)
3816 return -1;
3817
3818 os_strlcpy(buf, ssid->passphrase, buflen);
3819 return os_strlen(buf);
3820}
3821
3822
3823static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
3824 char *buf, size_t buflen)
3825{
3826 u64 ref;
3827 int res;
3828 u8 dst_buf[ETH_ALEN], *dst;
3829 struct wpabuf *tlvs;
3830 char *pos;
3831 size_t len;
3832
3833 if (hwaddr_aton(cmd, dst_buf))
3834 return -1;
3835 dst = dst_buf;
3836 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
3837 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
3838 dst = NULL;
3839 pos = cmd + 17;
3840 if (*pos != ' ')
3841 return -1;
3842 pos++;
3843
3844 if (os_strncmp(pos, "upnp ", 5) == 0) {
3845 u8 version;
3846 pos += 5;
3847 if (hexstr2bin(pos, &version, 1) < 0)
3848 return -1;
3849 pos += 2;
3850 if (*pos != ' ')
3851 return -1;
3852 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003853 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003854#ifdef CONFIG_WIFI_DISPLAY
3855 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
3856 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
3857#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003858 } else {
3859 len = os_strlen(pos);
3860 if (len & 1)
3861 return -1;
3862 len /= 2;
3863 tlvs = wpabuf_alloc(len);
3864 if (tlvs == NULL)
3865 return -1;
3866 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
3867 wpabuf_free(tlvs);
3868 return -1;
3869 }
3870
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003871 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003872 wpabuf_free(tlvs);
3873 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003874 if (ref == 0)
3875 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003876 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
3877 if (res < 0 || (unsigned) res >= buflen)
3878 return -1;
3879 return res;
3880}
3881
3882
3883static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
3884 char *cmd)
3885{
3886 long long unsigned val;
3887 u64 req;
3888 if (sscanf(cmd, "%llx", &val) != 1)
3889 return -1;
3890 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003891 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003892}
3893
3894
3895static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
3896{
3897 int freq;
3898 u8 dst[ETH_ALEN];
3899 u8 dialog_token;
3900 struct wpabuf *resp_tlvs;
3901 char *pos, *pos2;
3902 size_t len;
3903
3904 pos = os_strchr(cmd, ' ');
3905 if (pos == NULL)
3906 return -1;
3907 *pos++ = '\0';
3908 freq = atoi(cmd);
3909 if (freq == 0)
3910 return -1;
3911
3912 if (hwaddr_aton(pos, dst))
3913 return -1;
3914 pos += 17;
3915 if (*pos != ' ')
3916 return -1;
3917 pos++;
3918
3919 pos2 = os_strchr(pos, ' ');
3920 if (pos2 == NULL)
3921 return -1;
3922 *pos2++ = '\0';
3923 dialog_token = atoi(pos);
3924
3925 len = os_strlen(pos2);
3926 if (len & 1)
3927 return -1;
3928 len /= 2;
3929 resp_tlvs = wpabuf_alloc(len);
3930 if (resp_tlvs == NULL)
3931 return -1;
3932 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
3933 wpabuf_free(resp_tlvs);
3934 return -1;
3935 }
3936
3937 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
3938 wpabuf_free(resp_tlvs);
3939 return 0;
3940}
3941
3942
3943static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
3944 char *cmd)
3945{
Dmitry Shmidt04949592012-07-19 12:16:46 -07003946 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
3947 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003948 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
3949 return 0;
3950}
3951
3952
3953static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
3954 char *cmd)
3955{
3956 char *pos;
3957 size_t len;
3958 struct wpabuf *query, *resp;
3959
3960 pos = os_strchr(cmd, ' ');
3961 if (pos == NULL)
3962 return -1;
3963 *pos++ = '\0';
3964
3965 len = os_strlen(cmd);
3966 if (len & 1)
3967 return -1;
3968 len /= 2;
3969 query = wpabuf_alloc(len);
3970 if (query == NULL)
3971 return -1;
3972 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
3973 wpabuf_free(query);
3974 return -1;
3975 }
3976
3977 len = os_strlen(pos);
3978 if (len & 1) {
3979 wpabuf_free(query);
3980 return -1;
3981 }
3982 len /= 2;
3983 resp = wpabuf_alloc(len);
3984 if (resp == NULL) {
3985 wpabuf_free(query);
3986 return -1;
3987 }
3988 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
3989 wpabuf_free(query);
3990 wpabuf_free(resp);
3991 return -1;
3992 }
3993
3994 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
3995 wpabuf_free(query);
3996 wpabuf_free(resp);
3997 return -1;
3998 }
3999 return 0;
4000}
4001
4002
4003static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4004{
4005 char *pos;
4006 u8 version;
4007
4008 pos = os_strchr(cmd, ' ');
4009 if (pos == NULL)
4010 return -1;
4011 *pos++ = '\0';
4012
4013 if (hexstr2bin(cmd, &version, 1) < 0)
4014 return -1;
4015
4016 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
4017}
4018
4019
4020static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
4021{
4022 char *pos;
4023
4024 pos = os_strchr(cmd, ' ');
4025 if (pos == NULL)
4026 return -1;
4027 *pos++ = '\0';
4028
4029 if (os_strcmp(cmd, "bonjour") == 0)
4030 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
4031 if (os_strcmp(cmd, "upnp") == 0)
4032 return p2p_ctrl_service_add_upnp(wpa_s, pos);
4033 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4034 return -1;
4035}
4036
4037
4038static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
4039 char *cmd)
4040{
4041 size_t len;
4042 struct wpabuf *query;
4043 int ret;
4044
4045 len = os_strlen(cmd);
4046 if (len & 1)
4047 return -1;
4048 len /= 2;
4049 query = wpabuf_alloc(len);
4050 if (query == NULL)
4051 return -1;
4052 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
4053 wpabuf_free(query);
4054 return -1;
4055 }
4056
4057 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
4058 wpabuf_free(query);
4059 return ret;
4060}
4061
4062
4063static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4064{
4065 char *pos;
4066 u8 version;
4067
4068 pos = os_strchr(cmd, ' ');
4069 if (pos == NULL)
4070 return -1;
4071 *pos++ = '\0';
4072
4073 if (hexstr2bin(cmd, &version, 1) < 0)
4074 return -1;
4075
4076 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
4077}
4078
4079
4080static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
4081{
4082 char *pos;
4083
4084 pos = os_strchr(cmd, ' ');
4085 if (pos == NULL)
4086 return -1;
4087 *pos++ = '\0';
4088
4089 if (os_strcmp(cmd, "bonjour") == 0)
4090 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
4091 if (os_strcmp(cmd, "upnp") == 0)
4092 return p2p_ctrl_service_del_upnp(wpa_s, pos);
4093 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4094 return -1;
4095}
4096
4097
4098static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
4099{
4100 u8 addr[ETH_ALEN];
4101
4102 /* <addr> */
4103
4104 if (hwaddr_aton(cmd, addr))
4105 return -1;
4106
4107 return wpas_p2p_reject(wpa_s, addr);
4108}
4109
4110
4111static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
4112{
4113 char *pos;
4114 int id;
4115 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004116 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004117 int freq = 0, pref_freq = 0;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004118 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004119
4120 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004121 pos = os_strstr(cmd, " peer=");
4122 if (pos) {
4123 pos += 6;
4124 if (hwaddr_aton(pos, peer))
4125 return -1;
4126 _peer = peer;
4127 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004128 ssid = wpa_config_get_network(wpa_s->conf, id);
4129 if (ssid == NULL || ssid->disabled != 2) {
4130 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4131 "for persistent P2P group",
4132 id);
4133 return -1;
4134 }
4135
Jouni Malinen31be0a42012-08-31 21:20:51 +03004136 pos = os_strstr(cmd, " freq=");
4137 if (pos) {
4138 pos += 6;
4139 freq = atoi(pos);
4140 if (freq <= 0)
4141 return -1;
4142 }
4143
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004144 pos = os_strstr(cmd, " pref=");
4145 if (pos) {
4146 pos += 6;
4147 pref_freq = atoi(pos);
4148 if (pref_freq <= 0)
4149 return -1;
4150 }
4151
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004152 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004153
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004154 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, ht40, pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004155}
4156
4157
4158static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
4159{
4160 char *pos;
4161 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
4162
4163 pos = os_strstr(cmd, " peer=");
4164 if (!pos)
4165 return -1;
4166
4167 *pos = '\0';
4168 pos += 6;
4169 if (hwaddr_aton(pos, peer)) {
4170 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
4171 return -1;
4172 }
4173
4174 pos = os_strstr(pos, " go_dev_addr=");
4175 if (pos) {
4176 pos += 13;
4177 if (hwaddr_aton(pos, go_dev_addr)) {
4178 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
4179 pos);
4180 return -1;
4181 }
4182 go_dev = go_dev_addr;
4183 }
4184
4185 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
4186}
4187
4188
4189static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
4190{
4191 if (os_strncmp(cmd, "persistent=", 11) == 0)
4192 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
4193 if (os_strncmp(cmd, "group=", 6) == 0)
4194 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
4195
4196 return -1;
4197}
4198
4199
4200static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004201 char *cmd, int freq, int ht40)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004202{
4203 int id;
4204 struct wpa_ssid *ssid;
4205
4206 id = atoi(cmd);
4207 ssid = wpa_config_get_network(wpa_s->conf, id);
4208 if (ssid == NULL || ssid->disabled != 2) {
4209 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4210 "for persistent P2P group",
4211 id);
4212 return -1;
4213 }
4214
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004215 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq, ht40, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004216}
4217
4218
4219static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
4220{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004221 int freq = 0, ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004222 char *pos;
4223
4224 pos = os_strstr(cmd, "freq=");
4225 if (pos)
4226 freq = atoi(pos + 5);
4227
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004228 ht40 = (os_strstr(cmd, "ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004229
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004230 if (os_strncmp(cmd, "persistent=", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004231 return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq,
4232 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004233 if (os_strcmp(cmd, "persistent") == 0 ||
4234 os_strncmp(cmd, "persistent ", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004235 return wpas_p2p_group_add(wpa_s, 1, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004236 if (os_strncmp(cmd, "freq=", 5) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004237 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
4238 if (ht40)
4239 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004240
4241 wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
4242 cmd);
4243 return -1;
4244}
4245
4246
4247static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
4248 char *buf, size_t buflen)
4249{
4250 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004251 int next, res;
4252 const struct p2p_peer_info *info;
4253 char *pos, *end;
4254 char devtype[WPS_DEV_TYPE_BUFSIZE];
4255 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004256 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004257
4258 if (!wpa_s->global->p2p)
4259 return -1;
4260
4261 if (os_strcmp(cmd, "FIRST") == 0) {
4262 addr_ptr = NULL;
4263 next = 0;
4264 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4265 if (hwaddr_aton(cmd + 5, addr) < 0)
4266 return -1;
4267 addr_ptr = addr;
4268 next = 1;
4269 } else {
4270 if (hwaddr_aton(cmd, addr) < 0)
4271 return -1;
4272 addr_ptr = addr;
4273 next = 0;
4274 }
4275
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004276 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
4277 if (info == NULL)
4278 return -1;
4279
4280 pos = buf;
4281 end = buf + buflen;
4282
4283 res = os_snprintf(pos, end - pos, MACSTR "\n"
4284 "pri_dev_type=%s\n"
4285 "device_name=%s\n"
4286 "manufacturer=%s\n"
4287 "model_name=%s\n"
4288 "model_number=%s\n"
4289 "serial_number=%s\n"
4290 "config_methods=0x%x\n"
4291 "dev_capab=0x%x\n"
4292 "group_capab=0x%x\n"
4293 "level=%d\n",
4294 MAC2STR(info->p2p_device_addr),
4295 wps_dev_type_bin2str(info->pri_dev_type,
4296 devtype, sizeof(devtype)),
4297 info->device_name,
4298 info->manufacturer,
4299 info->model_name,
4300 info->model_number,
4301 info->serial_number,
4302 info->config_methods,
4303 info->dev_capab,
4304 info->group_capab,
4305 info->level);
4306 if (res < 0 || res >= end - pos)
4307 return pos - buf;
4308 pos += res;
4309
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004310 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
4311 {
4312 const u8 *t;
4313 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
4314 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
4315 wps_dev_type_bin2str(t, devtype,
4316 sizeof(devtype)));
4317 if (res < 0 || res >= end - pos)
4318 return pos - buf;
4319 pos += res;
4320 }
4321
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004322 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004323 if (ssid) {
4324 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
4325 if (res < 0 || res >= end - pos)
4326 return pos - buf;
4327 pos += res;
4328 }
4329
4330 res = p2p_get_peer_info_txt(info, pos, end - pos);
4331 if (res < 0)
4332 return pos - buf;
4333 pos += res;
4334
4335 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004336}
4337
4338
Dmitry Shmidt04949592012-07-19 12:16:46 -07004339static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
4340 const char *param)
4341{
4342 struct wpa_freq_range *freq = NULL, *n;
4343 unsigned int count = 0, i;
4344 const char *pos, *pos2, *pos3;
4345
4346 if (wpa_s->global->p2p == NULL)
4347 return -1;
4348
4349 /*
4350 * param includes comma separated frequency range.
4351 * For example: 2412-2432,2462,5000-6000
4352 */
4353 pos = param;
4354 while (pos && pos[0]) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004355 n = os_realloc_array(freq, count + 1,
4356 sizeof(struct wpa_freq_range));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004357 if (n == NULL) {
4358 os_free(freq);
4359 return -1;
4360 }
4361 freq = n;
4362 freq[count].min = atoi(pos);
4363 pos2 = os_strchr(pos, '-');
4364 pos3 = os_strchr(pos, ',');
4365 if (pos2 && (!pos3 || pos2 < pos3)) {
4366 pos2++;
4367 freq[count].max = atoi(pos2);
4368 } else
4369 freq[count].max = freq[count].min;
4370 pos = pos3;
4371 if (pos)
4372 pos++;
4373 count++;
4374 }
4375
4376 for (i = 0; i < count; i++) {
4377 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
4378 freq[i].min, freq[i].max);
4379 }
4380
4381 os_free(wpa_s->global->p2p_disallow_freq);
4382 wpa_s->global->p2p_disallow_freq = freq;
4383 wpa_s->global->num_p2p_disallow_freq = count;
4384 wpas_p2p_update_channel_list(wpa_s);
4385 return 0;
4386}
4387
4388
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004389static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
4390{
4391 char *param;
4392
4393 if (wpa_s->global->p2p == NULL)
4394 return -1;
4395
4396 param = os_strchr(cmd, ' ');
4397 if (param == NULL)
4398 return -1;
4399 *param++ = '\0';
4400
4401 if (os_strcmp(cmd, "discoverability") == 0) {
4402 p2p_set_client_discoverability(wpa_s->global->p2p,
4403 atoi(param));
4404 return 0;
4405 }
4406
4407 if (os_strcmp(cmd, "managed") == 0) {
4408 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
4409 return 0;
4410 }
4411
4412 if (os_strcmp(cmd, "listen_channel") == 0) {
4413 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
4414 atoi(param));
4415 }
4416
4417 if (os_strcmp(cmd, "ssid_postfix") == 0) {
4418 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
4419 os_strlen(param));
4420 }
4421
4422 if (os_strcmp(cmd, "noa") == 0) {
4423 char *pos;
4424 int count, start, duration;
4425 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
4426 count = atoi(param);
4427 pos = os_strchr(param, ',');
4428 if (pos == NULL)
4429 return -1;
4430 pos++;
4431 start = atoi(pos);
4432 pos = os_strchr(pos, ',');
4433 if (pos == NULL)
4434 return -1;
4435 pos++;
4436 duration = atoi(pos);
4437 if (count < 0 || count > 255 || start < 0 || duration < 0)
4438 return -1;
4439 if (count == 0 && duration > 0)
4440 return -1;
4441 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
4442 "start=%d duration=%d", count, start, duration);
4443 return wpas_p2p_set_noa(wpa_s, count, start, duration);
4444 }
4445
4446 if (os_strcmp(cmd, "ps") == 0)
4447 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
4448
4449 if (os_strcmp(cmd, "oppps") == 0)
4450 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
4451
4452 if (os_strcmp(cmd, "ctwindow") == 0)
4453 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
4454
4455 if (os_strcmp(cmd, "disabled") == 0) {
4456 wpa_s->global->p2p_disabled = atoi(param);
4457 wpa_printf(MSG_DEBUG, "P2P functionality %s",
4458 wpa_s->global->p2p_disabled ?
4459 "disabled" : "enabled");
4460 if (wpa_s->global->p2p_disabled) {
4461 wpas_p2p_stop_find(wpa_s);
4462 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4463 p2p_flush(wpa_s->global->p2p);
4464 }
4465 return 0;
4466 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004467
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004468 if (os_strcmp(cmd, "conc_pref") == 0) {
4469 if (os_strcmp(param, "sta") == 0)
4470 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
4471 else if (os_strcmp(param, "p2p") == 0)
4472 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004473 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004474 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004475 return -1;
4476 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004477 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07004478 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004479 return 0;
4480 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004481
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004482 if (os_strcmp(cmd, "force_long_sd") == 0) {
4483 wpa_s->force_long_sd = atoi(param);
4484 return 0;
4485 }
4486
4487 if (os_strcmp(cmd, "peer_filter") == 0) {
4488 u8 addr[ETH_ALEN];
4489 if (hwaddr_aton(param, addr))
4490 return -1;
4491 p2p_set_peer_filter(wpa_s->global->p2p, addr);
4492 return 0;
4493 }
4494
4495 if (os_strcmp(cmd, "cross_connect") == 0)
4496 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
4497
4498 if (os_strcmp(cmd, "go_apsd") == 0) {
4499 if (os_strcmp(param, "disable") == 0)
4500 wpa_s->set_ap_uapsd = 0;
4501 else {
4502 wpa_s->set_ap_uapsd = 1;
4503 wpa_s->ap_uapsd = atoi(param);
4504 }
4505 return 0;
4506 }
4507
4508 if (os_strcmp(cmd, "client_apsd") == 0) {
4509 if (os_strcmp(param, "disable") == 0)
4510 wpa_s->set_sta_uapsd = 0;
4511 else {
4512 int be, bk, vi, vo;
4513 char *pos;
4514 /* format: BE,BK,VI,VO;max SP Length */
4515 be = atoi(param);
4516 pos = os_strchr(param, ',');
4517 if (pos == NULL)
4518 return -1;
4519 pos++;
4520 bk = atoi(pos);
4521 pos = os_strchr(pos, ',');
4522 if (pos == NULL)
4523 return -1;
4524 pos++;
4525 vi = atoi(pos);
4526 pos = os_strchr(pos, ',');
4527 if (pos == NULL)
4528 return -1;
4529 pos++;
4530 vo = atoi(pos);
4531 /* ignore max SP Length for now */
4532
4533 wpa_s->set_sta_uapsd = 1;
4534 wpa_s->sta_uapsd = 0;
4535 if (be)
4536 wpa_s->sta_uapsd |= BIT(0);
4537 if (bk)
4538 wpa_s->sta_uapsd |= BIT(1);
4539 if (vi)
4540 wpa_s->sta_uapsd |= BIT(2);
4541 if (vo)
4542 wpa_s->sta_uapsd |= BIT(3);
4543 }
4544 return 0;
4545 }
4546
Dmitry Shmidt04949592012-07-19 12:16:46 -07004547 if (os_strcmp(cmd, "disallow_freq") == 0)
4548 return p2p_ctrl_disallow_freq(wpa_s, param);
4549
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004550 if (os_strcmp(cmd, "disc_int") == 0) {
4551 int min_disc_int, max_disc_int, max_disc_tu;
4552 char *pos;
4553
4554 pos = param;
4555
4556 min_disc_int = atoi(pos);
4557 pos = os_strchr(pos, ' ');
4558 if (pos == NULL)
4559 return -1;
4560 *pos++ = '\0';
4561
4562 max_disc_int = atoi(pos);
4563 pos = os_strchr(pos, ' ');
4564 if (pos == NULL)
4565 return -1;
4566 *pos++ = '\0';
4567
4568 max_disc_tu = atoi(pos);
4569
4570 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
4571 max_disc_int, max_disc_tu);
4572 }
4573
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004574 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
4575 cmd);
4576
4577 return -1;
4578}
4579
4580
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004581static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
4582{
4583 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4584 wpa_s->force_long_sd = 0;
4585 if (wpa_s->global->p2p)
4586 p2p_flush(wpa_s->global->p2p);
4587}
4588
4589
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004590static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
4591{
4592 char *pos, *pos2;
4593 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
4594
4595 if (cmd[0]) {
4596 pos = os_strchr(cmd, ' ');
4597 if (pos == NULL)
4598 return -1;
4599 *pos++ = '\0';
4600 dur1 = atoi(cmd);
4601
4602 pos2 = os_strchr(pos, ' ');
4603 if (pos2)
4604 *pos2++ = '\0';
4605 int1 = atoi(pos);
4606 } else
4607 pos2 = NULL;
4608
4609 if (pos2) {
4610 pos = os_strchr(pos2, ' ');
4611 if (pos == NULL)
4612 return -1;
4613 *pos++ = '\0';
4614 dur2 = atoi(pos2);
4615 int2 = atoi(pos);
4616 }
4617
4618 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
4619}
4620
4621
4622static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
4623{
4624 char *pos;
4625 unsigned int period = 0, interval = 0;
4626
4627 if (cmd[0]) {
4628 pos = os_strchr(cmd, ' ');
4629 if (pos == NULL)
4630 return -1;
4631 *pos++ = '\0';
4632 period = atoi(cmd);
4633 interval = atoi(pos);
4634 }
4635
4636 return wpas_p2p_ext_listen(wpa_s, period, interval);
4637}
4638
4639#endif /* CONFIG_P2P */
4640
4641
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004642#ifdef CONFIG_INTERWORKING
4643static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst)
4644{
4645 u8 bssid[ETH_ALEN];
4646 struct wpa_bss *bss;
4647
4648 if (hwaddr_aton(dst, bssid)) {
4649 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
4650 return -1;
4651 }
4652
4653 bss = wpa_bss_get_bssid(wpa_s, bssid);
4654 if (bss == NULL) {
4655 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
4656 MAC2STR(bssid));
4657 return -1;
4658 }
4659
4660 return interworking_connect(wpa_s, bss);
4661}
4662
4663
4664static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
4665{
4666 u8 dst_addr[ETH_ALEN];
4667 int used;
4668 char *pos;
4669#define MAX_ANQP_INFO_ID 100
4670 u16 id[MAX_ANQP_INFO_ID];
4671 size_t num_id = 0;
4672
4673 used = hwaddr_aton2(dst, dst_addr);
4674 if (used < 0)
4675 return -1;
4676 pos = dst + used;
4677 while (num_id < MAX_ANQP_INFO_ID) {
4678 id[num_id] = atoi(pos);
4679 if (id[num_id])
4680 num_id++;
4681 pos = os_strchr(pos + 1, ',');
4682 if (pos == NULL)
4683 break;
4684 pos++;
4685 }
4686
4687 if (num_id == 0)
4688 return -1;
4689
4690 return anqp_send_req(wpa_s, dst_addr, id, num_id);
4691}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004692
4693
4694static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
4695{
4696 u8 dst_addr[ETH_ALEN];
4697 struct wpabuf *advproto, *query = NULL;
4698 int used, ret = -1;
4699 char *pos, *end;
4700 size_t len;
4701
4702 used = hwaddr_aton2(cmd, dst_addr);
4703 if (used < 0)
4704 return -1;
4705
4706 pos = cmd + used;
4707 while (*pos == ' ')
4708 pos++;
4709
4710 /* Advertisement Protocol ID */
4711 end = os_strchr(pos, ' ');
4712 if (end)
4713 len = end - pos;
4714 else
4715 len = os_strlen(pos);
4716 if (len & 0x01)
4717 return -1;
4718 len /= 2;
4719 if (len == 0)
4720 return -1;
4721 advproto = wpabuf_alloc(len);
4722 if (advproto == NULL)
4723 return -1;
4724 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
4725 goto fail;
4726
4727 if (end) {
4728 /* Optional Query Request */
4729 pos = end + 1;
4730 while (*pos == ' ')
4731 pos++;
4732
4733 len = os_strlen(pos);
4734 if (len) {
4735 if (len & 0x01)
4736 goto fail;
4737 len /= 2;
4738 if (len == 0)
4739 goto fail;
4740 query = wpabuf_alloc(len);
4741 if (query == NULL)
4742 goto fail;
4743 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
4744 goto fail;
4745 }
4746 }
4747
4748 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
4749
4750fail:
4751 wpabuf_free(advproto);
4752 wpabuf_free(query);
4753
4754 return ret;
4755}
4756
4757
4758static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
4759 size_t buflen)
4760{
4761 u8 addr[ETH_ALEN];
4762 int dialog_token;
4763 int used;
4764 char *pos;
4765 size_t resp_len, start, requested_len;
4766
4767 if (!wpa_s->last_gas_resp)
4768 return -1;
4769
4770 used = hwaddr_aton2(cmd, addr);
4771 if (used < 0)
4772 return -1;
4773
4774 pos = cmd + used;
4775 while (*pos == ' ')
4776 pos++;
4777 dialog_token = atoi(pos);
4778
4779 if (os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) != 0 ||
4780 dialog_token != wpa_s->last_gas_dialog_token)
4781 return -1;
4782
4783 resp_len = wpabuf_len(wpa_s->last_gas_resp);
4784 start = 0;
4785 requested_len = resp_len;
4786
4787 pos = os_strchr(pos, ' ');
4788 if (pos) {
4789 start = atoi(pos);
4790 if (start > resp_len)
4791 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4792 pos = os_strchr(pos, ',');
4793 if (pos == NULL)
4794 return -1;
4795 pos++;
4796 requested_len = atoi(pos);
4797 if (start + requested_len > resp_len)
4798 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4799 }
4800
4801 if (requested_len * 2 + 1 > buflen)
4802 return os_snprintf(buf, buflen, "FAIL-Too long response");
4803
4804 return wpa_snprintf_hex(buf, buflen,
4805 wpabuf_head_u8(wpa_s->last_gas_resp) + start,
4806 requested_len);
4807}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004808#endif /* CONFIG_INTERWORKING */
4809
4810
Dmitry Shmidt04949592012-07-19 12:16:46 -07004811#ifdef CONFIG_HS20
4812
4813static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
4814{
4815 u8 dst_addr[ETH_ALEN];
4816 int used;
4817 char *pos;
4818 u32 subtypes = 0;
4819
4820 used = hwaddr_aton2(dst, dst_addr);
4821 if (used < 0)
4822 return -1;
4823 pos = dst + used;
4824 for (;;) {
4825 int num = atoi(pos);
4826 if (num <= 0 || num > 31)
4827 return -1;
4828 subtypes |= BIT(num);
4829 pos = os_strchr(pos + 1, ',');
4830 if (pos == NULL)
4831 break;
4832 pos++;
4833 }
4834
4835 if (subtypes == 0)
4836 return -1;
4837
4838 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0);
4839}
4840
4841
4842static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4843 const u8 *addr, const char *realm)
4844{
4845 u8 *buf;
4846 size_t rlen, len;
4847 int ret;
4848
4849 rlen = os_strlen(realm);
4850 len = 3 + rlen;
4851 buf = os_malloc(len);
4852 if (buf == NULL)
4853 return -1;
4854 buf[0] = 1; /* NAI Home Realm Count */
4855 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
4856 buf[2] = rlen;
4857 os_memcpy(buf + 3, realm, rlen);
4858
4859 ret = hs20_anqp_send_req(wpa_s, addr,
4860 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4861 buf, len);
4862
4863 os_free(buf);
4864
4865 return ret;
4866}
4867
4868
4869static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4870 char *dst)
4871{
4872 struct wpa_cred *cred = wpa_s->conf->cred;
4873 u8 dst_addr[ETH_ALEN];
4874 int used;
4875 u8 *buf;
4876 size_t len;
4877 int ret;
4878
4879 used = hwaddr_aton2(dst, dst_addr);
4880 if (used < 0)
4881 return -1;
4882
4883 while (dst[used] == ' ')
4884 used++;
4885 if (os_strncmp(dst + used, "realm=", 6) == 0)
4886 return hs20_nai_home_realm_list(wpa_s, dst_addr,
4887 dst + used + 6);
4888
4889 len = os_strlen(dst + used);
4890
4891 if (len == 0 && cred && cred->realm)
4892 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
4893
4894 if (len % 1)
4895 return -1;
4896 len /= 2;
4897 buf = os_malloc(len);
4898 if (buf == NULL)
4899 return -1;
4900 if (hexstr2bin(dst + used, buf, len) < 0) {
4901 os_free(buf);
4902 return -1;
4903 }
4904
4905 ret = hs20_anqp_send_req(wpa_s, dst_addr,
4906 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4907 buf, len);
4908 os_free(buf);
4909
4910 return ret;
4911}
4912
4913#endif /* CONFIG_HS20 */
4914
4915
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004916static int wpa_supplicant_ctrl_iface_sta_autoconnect(
4917 struct wpa_supplicant *wpa_s, char *cmd)
4918{
4919 wpa_s->auto_reconnect_disabled = atoi(cmd) == 0 ? 1 : 0;
4920 return 0;
4921}
4922
4923
Dmitry Shmidt04949592012-07-19 12:16:46 -07004924#ifdef CONFIG_AUTOSCAN
4925
4926static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
4927 char *cmd)
4928{
4929 enum wpa_states state = wpa_s->wpa_state;
4930 char *new_params = NULL;
4931
4932 if (os_strlen(cmd) > 0) {
4933 new_params = os_strdup(cmd);
4934 if (new_params == NULL)
4935 return -1;
4936 }
4937
4938 os_free(wpa_s->conf->autoscan);
4939 wpa_s->conf->autoscan = new_params;
4940
4941 if (wpa_s->conf->autoscan == NULL)
4942 autoscan_deinit(wpa_s);
4943 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
4944 autoscan_init(wpa_s, 1);
4945 else if (state == WPA_SCANNING)
4946 wpa_supplicant_reinit_autoscan(wpa_s);
4947
4948 return 0;
4949}
4950
4951#endif /* CONFIG_AUTOSCAN */
4952
4953
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004954#ifdef CONFIG_WNM
4955
4956static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
4957{
4958 int enter;
4959 int intval = 0;
4960 char *pos;
4961 int ret;
4962 struct wpabuf *tfs_req = NULL;
4963
4964 if (os_strncmp(cmd, "enter", 5) == 0)
4965 enter = 1;
4966 else if (os_strncmp(cmd, "exit", 4) == 0)
4967 enter = 0;
4968 else
4969 return -1;
4970
4971 pos = os_strstr(cmd, " interval=");
4972 if (pos)
4973 intval = atoi(pos + 10);
4974
4975 pos = os_strstr(cmd, " tfs_req=");
4976 if (pos) {
4977 char *end;
4978 size_t len;
4979 pos += 9;
4980 end = os_strchr(pos, ' ');
4981 if (end)
4982 len = end - pos;
4983 else
4984 len = os_strlen(pos);
4985 if (len & 1)
4986 return -1;
4987 len /= 2;
4988 tfs_req = wpabuf_alloc(len);
4989 if (tfs_req == NULL)
4990 return -1;
4991 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
4992 wpabuf_free(tfs_req);
4993 return -1;
4994 }
4995 }
4996
4997 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
4998 WNM_SLEEP_MODE_EXIT, intval,
4999 tfs_req);
5000 wpabuf_free(tfs_req);
5001
5002 return ret;
5003}
5004
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005005
5006static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
5007{
5008 int query_reason;
5009
5010 query_reason = atoi(cmd);
5011
5012 wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
5013 query_reason);
5014
5015 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
5016}
5017
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005018#endif /* CONFIG_WNM */
5019
5020
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005021static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
5022 size_t buflen)
5023{
5024 struct wpa_signal_info si;
5025 int ret;
5026
5027 ret = wpa_drv_signal_poll(wpa_s, &si);
5028 if (ret)
5029 return -1;
5030
5031 ret = os_snprintf(buf, buflen, "RSSI=%d\nLINKSPEED=%d\n"
5032 "NOISE=%d\nFREQUENCY=%u\n",
5033 si.current_signal, si.current_txrate / 1000,
5034 si.current_noise, si.frequency);
5035 if (ret < 0 || (unsigned int) ret > buflen)
5036 return -1;
5037 return ret;
5038}
5039
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005040
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005041static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
5042 size_t buflen)
5043{
5044 struct hostap_sta_driver_data sta;
5045 int ret;
5046
5047 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
5048 if (ret)
5049 return -1;
5050
5051 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005052 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
5053 if (ret < 0 || (size_t) ret > buflen)
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005054 return -1;
5055 return ret;
5056}
5057
5058
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005059#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005060static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
5061 char *buf, size_t buflen)
5062{
5063 int ret;
5064
5065 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
5066 if (ret == 0)
5067 ret = sprintf(buf, "%s\n", "OK");
5068 return ret;
5069}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005070#endif
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005071
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07005072
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005073static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
5074{
5075 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
5076
5077#ifdef CONFIG_P2P
5078 wpas_p2p_stop_find(wpa_s);
5079 p2p_ctrl_flush(wpa_s);
5080 wpas_p2p_group_remove(wpa_s, "*");
5081#endif /* CONFIG_P2P */
5082
5083#ifdef CONFIG_WPS_TESTING
5084 wps_version_number = 0x20;
5085 wps_testing_dummy_cred = 0;
5086#endif /* CONFIG_WPS_TESTING */
5087#ifdef CONFIG_WPS
5088 wpas_wps_cancel(wpa_s);
5089#endif /* CONFIG_WPS */
5090
5091#ifdef CONFIG_TDLS_TESTING
5092 extern unsigned int tdls_testing;
5093 tdls_testing = 0;
5094#endif /* CONFIG_TDLS_TESTING */
5095#ifdef CONFIG_TDLS
5096 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
5097 wpa_tdls_enable(wpa_s->wpa, 1);
5098#endif /* CONFIG_TDLS */
5099
5100 wpa_s->no_keep_alive = 0;
5101
5102 os_free(wpa_s->disallow_aps_bssid);
5103 wpa_s->disallow_aps_bssid = NULL;
5104 wpa_s->disallow_aps_bssid_count = 0;
5105 os_free(wpa_s->disallow_aps_ssid);
5106 wpa_s->disallow_aps_ssid = NULL;
5107 wpa_s->disallow_aps_ssid_count = 0;
5108
5109 wpa_s->set_sta_uapsd = 0;
5110 wpa_s->sta_uapsd = 0;
5111
5112 wpa_drv_radio_disable(wpa_s, 0);
5113
5114 wpa_bss_flush(wpa_s);
5115 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07005116 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005117 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
5118 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
5119}
5120
5121
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005122char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
5123 char *buf, size_t *resp_len)
5124{
5125 char *reply;
5126 const int reply_size = 4096;
5127 int ctrl_rsp = 0;
5128 int reply_len;
5129
5130 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005131 os_strncmp(buf, "SET_NETWORK ", 12) == 0 ||
5132 os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005133 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005134 os_strncmp(buf, "NFC_RX_HANDOVER_SEL", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005135 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
5136 (const u8 *) buf, os_strlen(buf));
5137 } else {
5138 int level = MSG_DEBUG;
5139 if (os_strcmp(buf, "PING") == 0)
5140 level = MSG_EXCESSIVE;
5141 wpa_hexdump_ascii(level, "RX ctrl_iface",
5142 (const u8 *) buf, os_strlen(buf));
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005143 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005144 }
5145
5146 reply = os_malloc(reply_size);
5147 if (reply == NULL) {
5148 *resp_len = 1;
5149 return NULL;
5150 }
5151
5152 os_memcpy(reply, "OK\n", 3);
5153 reply_len = 3;
5154
5155 if (os_strcmp(buf, "PING") == 0) {
5156 os_memcpy(reply, "PONG\n", 5);
5157 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005158 } else if (os_strcmp(buf, "IFNAME") == 0) {
5159 reply_len = os_strlen(wpa_s->ifname);
5160 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005161 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
5162 if (wpa_debug_reopen_file() < 0)
5163 reply_len = -1;
5164 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
5165 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
5166 } else if (os_strcmp(buf, "MIB") == 0) {
5167 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
5168 if (reply_len >= 0) {
5169 int res;
5170 res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
5171 reply_size - reply_len);
5172 if (res < 0)
5173 reply_len = -1;
5174 else
5175 reply_len += res;
5176 }
5177 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
5178 reply_len = wpa_supplicant_ctrl_iface_status(
5179 wpa_s, buf + 6, reply, reply_size);
5180 } else if (os_strcmp(buf, "PMKSA") == 0) {
5181 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
5182 reply_size);
5183 } else if (os_strncmp(buf, "SET ", 4) == 0) {
5184 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
5185 reply_len = -1;
5186 } else if (os_strncmp(buf, "GET ", 4) == 0) {
5187 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
5188 reply, reply_size);
5189 } else if (os_strcmp(buf, "LOGON") == 0) {
5190 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
5191 } else if (os_strcmp(buf, "LOGOFF") == 0) {
5192 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
5193 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
5194 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5195 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005196 else
5197 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005198 } else if (os_strcmp(buf, "RECONNECT") == 0) {
5199 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5200 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005201 else if (wpa_s->disconnected)
5202 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005203#ifdef IEEE8021X_EAPOL
5204 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
5205 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
5206 reply_len = -1;
5207#endif /* IEEE8021X_EAPOL */
5208#ifdef CONFIG_PEERKEY
5209 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
5210 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
5211 reply_len = -1;
5212#endif /* CONFIG_PEERKEY */
5213#ifdef CONFIG_IEEE80211R
5214 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
5215 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
5216 reply_len = -1;
5217#endif /* CONFIG_IEEE80211R */
5218#ifdef CONFIG_WPS
5219 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
5220 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
5221 if (res == -2) {
5222 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5223 reply_len = 17;
5224 } else if (res)
5225 reply_len = -1;
5226 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
5227 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
5228 if (res == -2) {
5229 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5230 reply_len = 17;
5231 } else if (res)
5232 reply_len = -1;
5233 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
5234 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
5235 reply,
5236 reply_size);
5237 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
5238 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
5239 wpa_s, buf + 14, reply, reply_size);
5240 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
5241 if (wpas_wps_cancel(wpa_s))
5242 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005243#ifdef CONFIG_WPS_NFC
5244 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
5245 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
5246 reply_len = -1;
5247 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
5248 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
5249 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005250 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
5251 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
5252 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005253 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
5254 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
5255 wpa_s, buf + 14, reply, reply_size);
5256 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
5257 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
5258 buf + 17))
5259 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005260 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
5261 reply_len = wpas_ctrl_nfc_get_handover_req(
5262 wpa_s, buf + 21, reply, reply_size);
5263 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
5264 reply_len = wpas_ctrl_nfc_get_handover_sel(
5265 wpa_s, buf + 21, reply, reply_size);
5266 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_REQ ", 20) == 0) {
5267 reply_len = wpas_ctrl_nfc_rx_handover_req(
5268 wpa_s, buf + 20, reply, reply_size);
5269 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_SEL ", 20) == 0) {
5270 if (wpas_ctrl_nfc_rx_handover_sel(wpa_s, buf + 20))
5271 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005272 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
5273 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
5274 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005275#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005276 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
5277 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
5278 reply_len = -1;
5279#ifdef CONFIG_AP
5280 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
5281 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
5282 wpa_s, buf + 11, reply, reply_size);
5283#endif /* CONFIG_AP */
5284#ifdef CONFIG_WPS_ER
5285 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
5286 if (wpas_wps_er_start(wpa_s, NULL))
5287 reply_len = -1;
5288 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
5289 if (wpas_wps_er_start(wpa_s, buf + 13))
5290 reply_len = -1;
5291 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
5292 if (wpas_wps_er_stop(wpa_s))
5293 reply_len = -1;
5294 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
5295 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
5296 reply_len = -1;
5297 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
5298 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
5299 if (ret == -2) {
5300 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5301 reply_len = 17;
5302 } else if (ret == -3) {
5303 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
5304 reply_len = 18;
5305 } else if (ret == -4) {
5306 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
5307 reply_len = 20;
5308 } else if (ret)
5309 reply_len = -1;
5310 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
5311 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
5312 reply_len = -1;
5313 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
5314 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
5315 buf + 18))
5316 reply_len = -1;
5317 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
5318 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
5319 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005320#ifdef CONFIG_WPS_NFC
5321 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
5322 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
5323 wpa_s, buf + 24, reply, reply_size);
5324#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005325#endif /* CONFIG_WPS_ER */
5326#endif /* CONFIG_WPS */
5327#ifdef CONFIG_IBSS_RSN
5328 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
5329 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
5330 reply_len = -1;
5331#endif /* CONFIG_IBSS_RSN */
5332#ifdef CONFIG_P2P
5333 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
5334 if (p2p_ctrl_find(wpa_s, buf + 9))
5335 reply_len = -1;
5336 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
5337 if (p2p_ctrl_find(wpa_s, ""))
5338 reply_len = -1;
5339 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
5340 wpas_p2p_stop_find(wpa_s);
5341 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
5342 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
5343 reply_size);
5344 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
5345 if (p2p_ctrl_listen(wpa_s, buf + 11))
5346 reply_len = -1;
5347 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
5348 if (p2p_ctrl_listen(wpa_s, ""))
5349 reply_len = -1;
5350 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
5351 if (wpas_p2p_group_remove(wpa_s, buf + 17))
5352 reply_len = -1;
5353 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005354 if (wpas_p2p_group_add(wpa_s, 0, 0, 0))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005355 reply_len = -1;
5356 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
5357 if (p2p_ctrl_group_add(wpa_s, buf + 14))
5358 reply_len = -1;
5359 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
5360 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
5361 reply_len = -1;
5362 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
5363 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
5364 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
5365 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
5366 reply_size);
5367 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
5368 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
5369 reply_len = -1;
5370 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
5371 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
5372 reply_len = -1;
5373 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
Dmitry Shmidtb5e8f062012-08-08 10:56:33 -07005374#ifdef ANDROID_P2P
5375 wpas_p2p_sd_service_update(wpa_s, SRV_UPDATE);
5376#else
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005377 wpas_p2p_sd_service_update(wpa_s);
Dmitry Shmidtb5e8f062012-08-08 10:56:33 -07005378#endif
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005379 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
5380 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
5381 reply_len = -1;
5382 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
5383 wpas_p2p_service_flush(wpa_s);
5384 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
5385 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
5386 reply_len = -1;
5387 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
5388 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
5389 reply_len = -1;
5390 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
5391 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
5392 reply_len = -1;
5393 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
5394 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
5395 reply_len = -1;
5396 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
5397 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
5398 reply_size);
5399 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
5400 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
5401 reply_len = -1;
5402 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005403 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005404 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
5405 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
5406 reply_len = -1;
5407 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
5408 if (wpas_p2p_cancel(wpa_s))
5409 reply_len = -1;
5410 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
5411 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
5412 reply_len = -1;
5413 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
5414 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
5415 reply_len = -1;
5416 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
5417 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
5418 reply_len = -1;
5419 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
5420 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
5421 reply_len = -1;
5422#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005423#ifdef CONFIG_WIFI_DISPLAY
5424 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
5425 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
5426 reply_len = -1;
5427 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
5428 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
5429 reply, reply_size);
5430#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005431#ifdef CONFIG_INTERWORKING
5432 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
5433 if (interworking_fetch_anqp(wpa_s) < 0)
5434 reply_len = -1;
5435 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
5436 interworking_stop_fetch_anqp(wpa_s);
5437 } else if (os_strncmp(buf, "INTERWORKING_SELECT", 19) == 0) {
5438 if (interworking_select(wpa_s, os_strstr(buf + 19, "auto") !=
5439 NULL) < 0)
5440 reply_len = -1;
5441 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
5442 if (ctrl_interworking_connect(wpa_s, buf + 21) < 0)
5443 reply_len = -1;
5444 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
5445 if (get_anqp(wpa_s, buf + 9) < 0)
5446 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005447 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
5448 if (gas_request(wpa_s, buf + 12) < 0)
5449 reply_len = -1;
5450 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
5451 reply_len = gas_response_get(wpa_s, buf + 17, reply,
5452 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005453#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07005454#ifdef CONFIG_HS20
5455 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
5456 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
5457 reply_len = -1;
5458 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
5459 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
5460 reply_len = -1;
5461#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005462 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
5463 {
5464 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
5465 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
5466 reply_len = -1;
5467 else
5468 ctrl_rsp = 1;
5469 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
5470 if (wpa_supplicant_reload_configuration(wpa_s))
5471 reply_len = -1;
5472 } else if (os_strcmp(buf, "TERMINATE") == 0) {
5473 wpa_supplicant_terminate_proc(wpa_s->global);
5474 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
5475 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
5476 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07005477 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005478 reply_len = wpa_supplicant_ctrl_iface_blacklist(
5479 wpa_s, buf + 9, reply, reply_size);
5480 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
5481 reply_len = wpa_supplicant_ctrl_iface_log_level(
5482 wpa_s, buf + 9, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005483 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
5484 reply_len = wpa_supplicant_ctrl_iface_list_networks(
5485 wpa_s, reply, reply_size);
5486 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005487#ifdef CONFIG_SME
5488 wpa_s->sme.prev_bssid_set = 0;
5489#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005490 wpa_s->reassociate = 0;
5491 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005492 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005493 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005494 wpa_supplicant_deauthenticate(wpa_s,
5495 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005496 } else if (os_strcmp(buf, "SCAN") == 0 ||
5497 os_strncmp(buf, "SCAN ", 5) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005498 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5499 reply_len = -1;
5500 else {
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005501 if (os_strlen(buf) > 4 &&
5502 os_strncasecmp(buf + 5, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08005503 wpa_s->scan_res_handler = scan_only_handler;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005504 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005505 ((wpa_s->wpa_state <= WPA_SCANNING) ||
5506 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005507 wpa_s->normal_scans = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005508 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005509 wpa_supplicant_req_scan(wpa_s, 0, 0);
5510 } else if (wpa_s->sched_scanning) {
5511 wpa_printf(MSG_DEBUG, "Stop ongoing "
5512 "sched_scan to allow requested "
5513 "full scan to proceed");
5514 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005515 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005516 wpa_supplicant_req_scan(wpa_s, 0, 0);
5517 } else {
5518 wpa_printf(MSG_DEBUG, "Ongoing scan action - "
5519 "reject new request");
5520 reply_len = os_snprintf(reply, reply_size,
5521 "FAIL-BUSY\n");
5522 }
5523 }
5524 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
5525 reply_len = wpa_supplicant_ctrl_iface_scan_results(
5526 wpa_s, reply, reply_size);
5527 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
5528 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
5529 reply_len = -1;
5530 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
5531 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
5532 reply_len = -1;
5533 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
5534 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
5535 reply_len = -1;
5536 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
5537 reply_len = wpa_supplicant_ctrl_iface_add_network(
5538 wpa_s, reply, reply_size);
5539 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
5540 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
5541 reply_len = -1;
5542 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
5543 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
5544 reply_len = -1;
5545 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
5546 reply_len = wpa_supplicant_ctrl_iface_get_network(
5547 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005548 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
5549 reply_len = wpa_supplicant_ctrl_iface_list_creds(
5550 wpa_s, reply, reply_size);
5551 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
5552 reply_len = wpa_supplicant_ctrl_iface_add_cred(
5553 wpa_s, reply, reply_size);
5554 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
5555 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
5556 reply_len = -1;
5557 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
5558 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
5559 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005560#ifndef CONFIG_NO_CONFIG_WRITE
5561 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
5562 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
5563 reply_len = -1;
5564#endif /* CONFIG_NO_CONFIG_WRITE */
5565 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
5566 reply_len = wpa_supplicant_ctrl_iface_get_capability(
5567 wpa_s, buf + 15, reply, reply_size);
5568 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
5569 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
5570 reply_len = -1;
5571 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
5572 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
5573 reply_len = -1;
5574 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
5575 reply_len = wpa_supplicant_global_iface_list(
5576 wpa_s->global, reply, reply_size);
5577 } else if (os_strcmp(buf, "INTERFACES") == 0) {
5578 reply_len = wpa_supplicant_global_iface_interfaces(
5579 wpa_s->global, reply, reply_size);
5580 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
5581 reply_len = wpa_supplicant_ctrl_iface_bss(
5582 wpa_s, buf + 4, reply, reply_size);
5583#ifdef CONFIG_AP
5584 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
5585 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
5586 } else if (os_strncmp(buf, "STA ", 4) == 0) {
5587 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
5588 reply_size);
5589 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
5590 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
5591 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005592 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
5593 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
5594 reply_len = -1;
5595 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
5596 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
5597 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005598#endif /* CONFIG_AP */
5599 } else if (os_strcmp(buf, "SUSPEND") == 0) {
5600 wpas_notify_suspend(wpa_s->global);
5601 } else if (os_strcmp(buf, "RESUME") == 0) {
5602 wpas_notify_resume(wpa_s->global);
5603 } else if (os_strcmp(buf, "DROP_SA") == 0) {
5604 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
5605 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
5606 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
5607 reply_len = -1;
5608 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
5609 if (wpa_supplicant_ctrl_iface_sta_autoconnect(wpa_s, buf + 16))
5610 reply_len = -1;
5611 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
5612 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
5613 reply_len = -1;
5614 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
5615 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
5616 buf + 17))
5617 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07005618 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
5619 if (wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10))
5620 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005621#ifdef CONFIG_TDLS
5622 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
5623 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
5624 reply_len = -1;
5625 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
5626 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
5627 reply_len = -1;
5628 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
5629 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
5630 reply_len = -1;
5631#endif /* CONFIG_TDLS */
5632 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
5633 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
5634 reply_size);
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005635 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
5636 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
5637 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005638#ifdef CONFIG_AUTOSCAN
5639 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
5640 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
5641 reply_len = -1;
5642#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005643#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005644 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
5645 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
5646 reply_size);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005647#endif
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005648 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005649 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005650 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005651#ifdef CONFIG_WNM
5652 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
5653 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
5654 reply_len = -1;
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005655 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 10) == 0) {
5656 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 10))
5657 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005658#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005659 } else if (os_strcmp(buf, "FLUSH") == 0) {
5660 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005661 } else {
5662 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
5663 reply_len = 16;
5664 }
5665
5666 if (reply_len < 0) {
5667 os_memcpy(reply, "FAIL\n", 5);
5668 reply_len = 5;
5669 }
5670
5671 if (ctrl_rsp)
5672 eapol_sm_notify_ctrl_response(wpa_s->eapol);
5673
5674 *resp_len = reply_len;
5675 return reply;
5676}
5677
5678
5679static int wpa_supplicant_global_iface_add(struct wpa_global *global,
5680 char *cmd)
5681{
5682 struct wpa_interface iface;
5683 char *pos;
5684
5685 /*
5686 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
5687 * TAB<bridge_ifname>
5688 */
5689 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
5690
5691 os_memset(&iface, 0, sizeof(iface));
5692
5693 do {
5694 iface.ifname = pos = cmd;
5695 pos = os_strchr(pos, '\t');
5696 if (pos)
5697 *pos++ = '\0';
5698 if (iface.ifname[0] == '\0')
5699 return -1;
5700 if (pos == NULL)
5701 break;
5702
5703 iface.confname = pos;
5704 pos = os_strchr(pos, '\t');
5705 if (pos)
5706 *pos++ = '\0';
5707 if (iface.confname[0] == '\0')
5708 iface.confname = NULL;
5709 if (pos == NULL)
5710 break;
5711
5712 iface.driver = pos;
5713 pos = os_strchr(pos, '\t');
5714 if (pos)
5715 *pos++ = '\0';
5716 if (iface.driver[0] == '\0')
5717 iface.driver = NULL;
5718 if (pos == NULL)
5719 break;
5720
5721 iface.ctrl_interface = pos;
5722 pos = os_strchr(pos, '\t');
5723 if (pos)
5724 *pos++ = '\0';
5725 if (iface.ctrl_interface[0] == '\0')
5726 iface.ctrl_interface = NULL;
5727 if (pos == NULL)
5728 break;
5729
5730 iface.driver_param = pos;
5731 pos = os_strchr(pos, '\t');
5732 if (pos)
5733 *pos++ = '\0';
5734 if (iface.driver_param[0] == '\0')
5735 iface.driver_param = NULL;
5736 if (pos == NULL)
5737 break;
5738
5739 iface.bridge_ifname = pos;
5740 pos = os_strchr(pos, '\t');
5741 if (pos)
5742 *pos++ = '\0';
5743 if (iface.bridge_ifname[0] == '\0')
5744 iface.bridge_ifname = NULL;
5745 if (pos == NULL)
5746 break;
5747 } while (0);
5748
5749 if (wpa_supplicant_get_iface(global, iface.ifname))
5750 return -1;
5751
5752 return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
5753}
5754
5755
5756static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
5757 char *cmd)
5758{
5759 struct wpa_supplicant *wpa_s;
5760
5761 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
5762
5763 wpa_s = wpa_supplicant_get_iface(global, cmd);
5764 if (wpa_s == NULL)
5765 return -1;
Dmitry Shmidte15c7b52011-08-03 15:04:35 -07005766 return wpa_supplicant_remove_iface(global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005767}
5768
5769
5770static void wpa_free_iface_info(struct wpa_interface_info *iface)
5771{
5772 struct wpa_interface_info *prev;
5773
5774 while (iface) {
5775 prev = iface;
5776 iface = iface->next;
5777
5778 os_free(prev->ifname);
5779 os_free(prev->desc);
5780 os_free(prev);
5781 }
5782}
5783
5784
5785static int wpa_supplicant_global_iface_list(struct wpa_global *global,
5786 char *buf, int len)
5787{
5788 int i, res;
5789 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
5790 char *pos, *end;
5791
5792 for (i = 0; wpa_drivers[i]; i++) {
5793 struct wpa_driver_ops *drv = wpa_drivers[i];
5794 if (drv->get_interfaces == NULL)
5795 continue;
5796 tmp = drv->get_interfaces(global->drv_priv[i]);
5797 if (tmp == NULL)
5798 continue;
5799
5800 if (last == NULL)
5801 iface = last = tmp;
5802 else
5803 last->next = tmp;
5804 while (last->next)
5805 last = last->next;
5806 }
5807
5808 pos = buf;
5809 end = buf + len;
5810 for (tmp = iface; tmp; tmp = tmp->next) {
5811 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
5812 tmp->drv_name, tmp->ifname,
5813 tmp->desc ? tmp->desc : "");
5814 if (res < 0 || res >= end - pos) {
5815 *pos = '\0';
5816 break;
5817 }
5818 pos += res;
5819 }
5820
5821 wpa_free_iface_info(iface);
5822
5823 return pos - buf;
5824}
5825
5826
5827static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
5828 char *buf, int len)
5829{
5830 int res;
5831 char *pos, *end;
5832 struct wpa_supplicant *wpa_s;
5833
5834 wpa_s = global->ifaces;
5835 pos = buf;
5836 end = buf + len;
5837
5838 while (wpa_s) {
5839 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
5840 if (res < 0 || res >= end - pos) {
5841 *pos = '\0';
5842 break;
5843 }
5844 pos += res;
5845 wpa_s = wpa_s->next;
5846 }
5847 return pos - buf;
5848}
5849
5850
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005851static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
5852 const char *ifname,
5853 char *cmd, size_t *resp_len)
5854{
5855 struct wpa_supplicant *wpa_s;
5856
5857 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5858 if (os_strcmp(ifname, wpa_s->ifname) == 0)
5859 break;
5860 }
5861
5862 if (wpa_s == NULL) {
5863 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
5864 if (resp)
5865 *resp_len = os_strlen(resp);
5866 else
5867 *resp_len = 1;
5868 return resp;
5869 }
5870
5871 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
5872}
5873
5874
5875static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
5876 char *buf, size_t *resp_len)
5877{
5878#ifdef CONFIG_P2P
5879 static const char * cmd[] = {
5880 "P2P_FIND",
5881 "P2P_STOP_FIND",
5882 "P2P_LISTEN",
5883 "P2P_GROUP_ADD",
5884 "P2P_GET_PASSPHRASE",
5885 "P2P_SERVICE_UPDATE",
5886 "P2P_SERVICE_FLUSH",
5887 "P2P_FLUSH",
5888 "P2P_CANCEL",
5889 "P2P_PRESENCE_REQ",
5890 "P2P_EXT_LISTEN",
5891 NULL
5892 };
5893 static const char * prefix[] = {
5894 "P2P_FIND ",
5895 "P2P_CONNECT ",
5896 "P2P_LISTEN ",
5897 "P2P_GROUP_REMOVE ",
5898 "P2P_GROUP_ADD ",
5899 "P2P_PROV_DISC ",
5900 "P2P_SERV_DISC_REQ ",
5901 "P2P_SERV_DISC_CANCEL_REQ ",
5902 "P2P_SERV_DISC_RESP ",
5903 "P2P_SERV_DISC_EXTERNAL ",
5904 "P2P_SERVICE_ADD ",
5905 "P2P_SERVICE_DEL ",
5906 "P2P_REJECT ",
5907 "P2P_INVITE ",
5908 "P2P_PEER ",
5909 "P2P_SET ",
5910 "P2P_UNAUTHORIZE ",
5911 "P2P_PRESENCE_REQ ",
5912 "P2P_EXT_LISTEN ",
5913 NULL
5914 };
5915 int found = 0;
5916 int i;
5917
5918 if (global->p2p_init_wpa_s == NULL)
5919 return NULL;
5920
5921 for (i = 0; !found && cmd[i]; i++) {
5922 if (os_strcmp(buf, cmd[i]) == 0)
5923 found = 1;
5924 }
5925
5926 for (i = 0; !found && prefix[i]; i++) {
5927 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
5928 found = 1;
5929 }
5930
5931 if (found)
5932 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
5933 buf, resp_len);
5934#endif /* CONFIG_P2P */
5935 return NULL;
5936}
5937
5938
5939static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
5940 char *buf, size_t *resp_len)
5941{
5942#ifdef CONFIG_WIFI_DISPLAY
5943 if (global->p2p_init_wpa_s == NULL)
5944 return NULL;
5945 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
5946 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
5947 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
5948 buf, resp_len);
5949#endif /* CONFIG_WIFI_DISPLAY */
5950 return NULL;
5951}
5952
5953
5954static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
5955 char *buf, size_t *resp_len)
5956{
5957 char *ret;
5958
5959 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
5960 if (ret)
5961 return ret;
5962
5963 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
5964 if (ret)
5965 return ret;
5966
5967 return NULL;
5968}
5969
5970
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005971char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
5972 char *buf, size_t *resp_len)
5973{
5974 char *reply;
5975 const int reply_size = 2048;
5976 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005977 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005978
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005979 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
5980 char *pos = os_strchr(buf + 7, ' ');
5981 if (pos) {
5982 *pos++ = '\0';
5983 return wpas_global_ctrl_iface_ifname(global,
5984 buf + 7, pos,
5985 resp_len);
5986 }
5987 }
5988
5989 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
5990 if (reply)
5991 return reply;
5992
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005993 if (os_strcmp(buf, "PING") == 0)
5994 level = MSG_EXCESSIVE;
5995 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005996 (const u8 *) buf, os_strlen(buf));
5997
5998 reply = os_malloc(reply_size);
5999 if (reply == NULL) {
6000 *resp_len = 1;
6001 return NULL;
6002 }
6003
6004 os_memcpy(reply, "OK\n", 3);
6005 reply_len = 3;
6006
6007 if (os_strcmp(buf, "PING") == 0) {
6008 os_memcpy(reply, "PONG\n", 5);
6009 reply_len = 5;
6010 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
6011 if (wpa_supplicant_global_iface_add(global, buf + 14))
6012 reply_len = -1;
6013 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
6014 if (wpa_supplicant_global_iface_remove(global, buf + 17))
6015 reply_len = -1;
6016 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
6017 reply_len = wpa_supplicant_global_iface_list(
6018 global, reply, reply_size);
6019 } else if (os_strcmp(buf, "INTERFACES") == 0) {
6020 reply_len = wpa_supplicant_global_iface_interfaces(
6021 global, reply, reply_size);
6022 } else if (os_strcmp(buf, "TERMINATE") == 0) {
6023 wpa_supplicant_terminate_proc(global);
6024 } else if (os_strcmp(buf, "SUSPEND") == 0) {
6025 wpas_notify_suspend(global);
6026 } else if (os_strcmp(buf, "RESUME") == 0) {
6027 wpas_notify_resume(global);
6028 } else {
6029 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
6030 reply_len = 16;
6031 }
6032
6033 if (reply_len < 0) {
6034 os_memcpy(reply, "FAIL\n", 5);
6035 reply_len = 5;
6036 }
6037
6038 *resp_len = reply_len;
6039 return reply;
6040}