blob: 8736b0761cb9505da20bb232cf8c72819b352d68 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Control interface (shared code for all backends)
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003 * Copyright (c) 2004-2013, 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];
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700580 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700581
582 if (hwaddr_aton(addr, peer)) {
583 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
584 "address '%s'", addr);
585 return -1;
586 }
587
588 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
589 MAC2STR(peer));
590
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700591 if (wpa_tdls_is_external_setup(wpa_s->wpa))
592 ret = wpa_tdls_teardown_link(
593 wpa_s->wpa, peer,
594 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
595 else
596 ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
597
598 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700599}
600
601#endif /* CONFIG_TDLS */
602
603
604#ifdef CONFIG_IEEE80211R
605static int wpa_supplicant_ctrl_iface_ft_ds(
606 struct wpa_supplicant *wpa_s, char *addr)
607{
608 u8 target_ap[ETH_ALEN];
609 struct wpa_bss *bss;
610 const u8 *mdie;
611
612 if (hwaddr_aton(addr, target_ap)) {
613 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
614 "address '%s'", addr);
615 return -1;
616 }
617
618 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
619
620 bss = wpa_bss_get_bssid(wpa_s, target_ap);
621 if (bss)
622 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
623 else
624 mdie = NULL;
625
626 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
627}
628#endif /* CONFIG_IEEE80211R */
629
630
631#ifdef CONFIG_WPS
632static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
633 char *cmd)
634{
635 u8 bssid[ETH_ALEN], *_bssid = bssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700636#ifdef CONFIG_P2P
637 u8 p2p_dev_addr[ETH_ALEN];
638#endif /* CONFIG_P2P */
639#ifdef CONFIG_AP
640 u8 *_p2p_dev_addr = NULL;
641#endif /* CONFIG_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800642
Irfan Sheriffa7534b92012-09-06 18:30:39 -0700643 if (cmd == NULL || os_strcmp(cmd, "any") == 0 || cmd[0] == '\0') {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700644 _bssid = NULL;
645#ifdef CONFIG_P2P
646 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
647 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
648 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
649 "P2P Device Address '%s'",
650 cmd + 13);
651 return -1;
652 }
653 _p2p_dev_addr = p2p_dev_addr;
654#endif /* CONFIG_P2P */
655 } else if (hwaddr_aton(cmd, bssid)) {
656 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
657 cmd);
658 return -1;
659 }
660
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800661#ifdef CONFIG_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700662 if (wpa_s->ap_iface)
663 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
664#endif /* CONFIG_AP */
665
666 return wpas_wps_start_pbc(wpa_s, _bssid, 0);
667}
668
669
670static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
671 char *cmd, char *buf,
672 size_t buflen)
673{
674 u8 bssid[ETH_ALEN], *_bssid = bssid;
675 char *pin;
676 int ret;
677
678 pin = os_strchr(cmd, ' ');
679 if (pin)
680 *pin++ = '\0';
681
682 if (os_strcmp(cmd, "any") == 0)
683 _bssid = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800684 else if (os_strcmp(cmd, "get") == 0) {
685 ret = wps_generate_pin();
686 goto done;
687 } else if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700688 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
689 cmd);
690 return -1;
691 }
692
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800693#ifdef CONFIG_AP
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800694 if (wpa_s->ap_iface) {
695 int timeout = 0;
696 char *pos;
697
698 if (pin) {
699 pos = os_strchr(pin, ' ');
700 if (pos) {
701 *pos++ = '\0';
702 timeout = atoi(pos);
703 }
704 }
705
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700706 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800707 buf, buflen, timeout);
708 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700709#endif /* CONFIG_AP */
710
711 if (pin) {
712 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
713 DEV_PW_DEFAULT);
714 if (ret < 0)
715 return -1;
716 ret = os_snprintf(buf, buflen, "%s", pin);
717 if (ret < 0 || (size_t) ret >= buflen)
718 return -1;
719 return ret;
720 }
721
722 ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
723 if (ret < 0)
724 return -1;
725
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800726done:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700727 /* Return the generated PIN */
728 ret = os_snprintf(buf, buflen, "%08d", ret);
729 if (ret < 0 || (size_t) ret >= buflen)
730 return -1;
731 return ret;
732}
733
734
735static int wpa_supplicant_ctrl_iface_wps_check_pin(
736 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
737{
738 char pin[9];
739 size_t len;
740 char *pos;
741 int ret;
742
743 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
744 (u8 *) cmd, os_strlen(cmd));
745 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
746 if (*pos < '0' || *pos > '9')
747 continue;
748 pin[len++] = *pos;
749 if (len == 9) {
750 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
751 return -1;
752 }
753 }
754 if (len != 4 && len != 8) {
755 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
756 return -1;
757 }
758 pin[len] = '\0';
759
760 if (len == 8) {
761 unsigned int pin_val;
762 pin_val = atoi(pin);
763 if (!wps_pin_valid(pin_val)) {
764 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
765 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
766 if (ret < 0 || (size_t) ret >= buflen)
767 return -1;
768 return ret;
769 }
770 }
771
772 ret = os_snprintf(buf, buflen, "%s", pin);
773 if (ret < 0 || (size_t) ret >= buflen)
774 return -1;
775
776 return ret;
777}
778
779
Dmitry Shmidt04949592012-07-19 12:16:46 -0700780#ifdef CONFIG_WPS_NFC
781
782static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
783 char *cmd)
784{
785 u8 bssid[ETH_ALEN], *_bssid = bssid;
786
787 if (cmd == NULL || cmd[0] == '\0')
788 _bssid = NULL;
789 else if (hwaddr_aton(cmd, bssid))
790 return -1;
791
792 return wpas_wps_start_nfc(wpa_s, _bssid);
793}
794
795
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800796static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
797 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
798{
799 int ndef;
800 struct wpabuf *buf;
801 int res;
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700802 char *pos;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800803
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700804 pos = os_strchr(cmd, ' ');
805 if (pos)
806 *pos++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800807 if (os_strcmp(cmd, "WPS") == 0)
808 ndef = 0;
809 else if (os_strcmp(cmd, "NDEF") == 0)
810 ndef = 1;
811 else
812 return -1;
813
Dmitry Shmidt1e78e762013-04-02 11:05:36 -0700814 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800815 if (buf == NULL)
816 return -1;
817
818 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
819 wpabuf_len(buf));
820 reply[res++] = '\n';
821 reply[res] = '\0';
822
823 wpabuf_free(buf);
824
825 return res;
826}
827
828
Dmitry Shmidt04949592012-07-19 12:16:46 -0700829static int wpa_supplicant_ctrl_iface_wps_nfc_token(
830 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
831{
832 int ndef;
833 struct wpabuf *buf;
834 int res;
835
836 if (os_strcmp(cmd, "WPS") == 0)
837 ndef = 0;
838 else if (os_strcmp(cmd, "NDEF") == 0)
839 ndef = 1;
840 else
841 return -1;
842
843 buf = wpas_wps_nfc_token(wpa_s, ndef);
844 if (buf == NULL)
845 return -1;
846
847 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
848 wpabuf_len(buf));
849 reply[res++] = '\n';
850 reply[res] = '\0';
851
852 wpabuf_free(buf);
853
854 return res;
855}
856
857
858static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
859 struct wpa_supplicant *wpa_s, char *pos)
860{
861 size_t len;
862 struct wpabuf *buf;
863 int ret;
864
865 len = os_strlen(pos);
866 if (len & 0x01)
867 return -1;
868 len /= 2;
869
870 buf = wpabuf_alloc(len);
871 if (buf == NULL)
872 return -1;
873 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
874 wpabuf_free(buf);
875 return -1;
876 }
877
878 ret = wpas_wps_nfc_tag_read(wpa_s, buf);
879 wpabuf_free(buf);
880
881 return ret;
882}
883
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800884
885static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800886 char *reply, size_t max_len,
887 int cr)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800888{
889 struct wpabuf *buf;
890 int res;
891
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800892 buf = wpas_wps_nfc_handover_req(wpa_s, cr);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800893 if (buf == NULL)
894 return -1;
895
896 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
897 wpabuf_len(buf));
898 reply[res++] = '\n';
899 reply[res] = '\0';
900
901 wpabuf_free(buf);
902
903 return res;
904}
905
906
907static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
908 char *cmd, char *reply,
909 size_t max_len)
910{
911 char *pos;
912
913 pos = os_strchr(cmd, ' ');
914 if (pos == NULL)
915 return -1;
916 *pos++ = '\0';
917
918 if (os_strcmp(cmd, "NDEF") != 0)
919 return -1;
920
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800921 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
922 return wpas_ctrl_nfc_get_handover_req_wps(
923 wpa_s, reply, max_len, os_strcmp(pos, "WPS-CR") == 0);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800924 }
925
926 return -1;
927}
928
929
930static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800931 char *reply, size_t max_len,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800932 int ndef, int cr, char *uuid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800933{
934 struct wpabuf *buf;
935 int res;
936
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800937 buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800938 if (buf == NULL)
939 return -1;
940
941 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
942 wpabuf_len(buf));
943 reply[res++] = '\n';
944 reply[res] = '\0';
945
946 wpabuf_free(buf);
947
948 return res;
949}
950
951
952static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
953 char *cmd, char *reply,
954 size_t max_len)
955{
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800956 char *pos, *pos2;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800957 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800958
959 pos = os_strchr(cmd, ' ');
960 if (pos == NULL)
961 return -1;
962 *pos++ = '\0';
963
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800964 if (os_strcmp(cmd, "WPS") == 0)
965 ndef = 0;
966 else if (os_strcmp(cmd, "NDEF") == 0)
967 ndef = 1;
968 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800969 return -1;
970
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800971 pos2 = os_strchr(pos, ' ');
972 if (pos2)
973 *pos2++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800974 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
975 return wpas_ctrl_nfc_get_handover_sel_wps(
976 wpa_s, reply, max_len, ndef,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -0800977 os_strcmp(pos, "WPS-CR") == 0, pos2);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800978 }
979
980 return -1;
981}
982
983
984static int wpas_ctrl_nfc_rx_handover_req(struct wpa_supplicant *wpa_s,
985 char *cmd, char *reply,
986 size_t max_len)
987{
988 size_t len;
989 struct wpabuf *buf;
990 int ret;
991
992 len = os_strlen(cmd);
993 if (len & 0x01)
994 return -1;
995 len /= 2;
996
997 buf = wpabuf_alloc(len);
998 if (buf == NULL)
999 return -1;
1000 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
1001 wpabuf_free(buf);
1002 return -1;
1003 }
1004
1005 ret = wpas_wps_nfc_rx_handover_req(wpa_s, buf);
1006 wpabuf_free(buf);
1007
1008 return ret;
1009}
1010
1011
1012static int wpas_ctrl_nfc_rx_handover_sel(struct wpa_supplicant *wpa_s,
1013 char *cmd)
1014{
1015 size_t len;
1016 struct wpabuf *buf;
1017 int ret;
1018
1019 len = os_strlen(cmd);
1020 if (len & 0x01)
1021 return -1;
1022 len /= 2;
1023
1024 buf = wpabuf_alloc(len);
1025 if (buf == NULL)
1026 return -1;
1027 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
1028 wpabuf_free(buf);
1029 return -1;
1030 }
1031
1032 ret = wpas_wps_nfc_rx_handover_sel(wpa_s, buf);
1033 wpabuf_free(buf);
1034
1035 return ret;
1036}
1037
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001038
1039static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1040 char *cmd)
1041{
1042 size_t len;
1043 struct wpabuf *req, *sel;
1044 int ret;
1045 char *pos, *role, *type, *pos2;
1046
1047 role = cmd;
1048 pos = os_strchr(role, ' ');
1049 if (pos == NULL)
1050 return -1;
1051 *pos++ = '\0';
1052
1053 type = pos;
1054 pos = os_strchr(type, ' ');
1055 if (pos == NULL)
1056 return -1;
1057 *pos++ = '\0';
1058
1059 pos2 = os_strchr(pos, ' ');
1060 if (pos2 == NULL)
1061 return -1;
1062 *pos2++ = '\0';
1063
1064 len = os_strlen(pos);
1065 if (len & 0x01)
1066 return -1;
1067 len /= 2;
1068
1069 req = wpabuf_alloc(len);
1070 if (req == NULL)
1071 return -1;
1072 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
1073 wpabuf_free(req);
1074 return -1;
1075 }
1076
1077 len = os_strlen(pos2);
1078 if (len & 0x01) {
1079 wpabuf_free(req);
1080 return -1;
1081 }
1082 len /= 2;
1083
1084 sel = wpabuf_alloc(len);
1085 if (sel == NULL) {
1086 wpabuf_free(req);
1087 return -1;
1088 }
1089 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
1090 wpabuf_free(req);
1091 wpabuf_free(sel);
1092 return -1;
1093 }
1094
1095 if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1096 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
1097 } else {
1098 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1099 "reported: role=%s type=%s", role, type);
1100 ret = -1;
1101 }
1102 wpabuf_free(req);
1103 wpabuf_free(sel);
1104
1105 return ret;
1106}
1107
Dmitry Shmidt04949592012-07-19 12:16:46 -07001108#endif /* CONFIG_WPS_NFC */
1109
1110
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001111static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1112 char *cmd)
1113{
1114 u8 bssid[ETH_ALEN];
1115 char *pin;
1116 char *new_ssid;
1117 char *new_auth;
1118 char *new_encr;
1119 char *new_key;
1120 struct wps_new_ap_settings ap;
1121
1122 pin = os_strchr(cmd, ' ');
1123 if (pin == NULL)
1124 return -1;
1125 *pin++ = '\0';
1126
1127 if (hwaddr_aton(cmd, bssid)) {
1128 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1129 cmd);
1130 return -1;
1131 }
1132
1133 new_ssid = os_strchr(pin, ' ');
1134 if (new_ssid == NULL)
1135 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1136 *new_ssid++ = '\0';
1137
1138 new_auth = os_strchr(new_ssid, ' ');
1139 if (new_auth == NULL)
1140 return -1;
1141 *new_auth++ = '\0';
1142
1143 new_encr = os_strchr(new_auth, ' ');
1144 if (new_encr == NULL)
1145 return -1;
1146 *new_encr++ = '\0';
1147
1148 new_key = os_strchr(new_encr, ' ');
1149 if (new_key == NULL)
1150 return -1;
1151 *new_key++ = '\0';
1152
1153 os_memset(&ap, 0, sizeof(ap));
1154 ap.ssid_hex = new_ssid;
1155 ap.auth = new_auth;
1156 ap.encr = new_encr;
1157 ap.key_hex = new_key;
1158 return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1159}
1160
1161
1162#ifdef CONFIG_AP
1163static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1164 char *cmd, char *buf,
1165 size_t buflen)
1166{
1167 int timeout = 300;
1168 char *pos;
1169 const char *pin_txt;
1170
1171 if (!wpa_s->ap_iface)
1172 return -1;
1173
1174 pos = os_strchr(cmd, ' ');
1175 if (pos)
1176 *pos++ = '\0';
1177
1178 if (os_strcmp(cmd, "disable") == 0) {
1179 wpas_wps_ap_pin_disable(wpa_s);
1180 return os_snprintf(buf, buflen, "OK\n");
1181 }
1182
1183 if (os_strcmp(cmd, "random") == 0) {
1184 if (pos)
1185 timeout = atoi(pos);
1186 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1187 if (pin_txt == NULL)
1188 return -1;
1189 return os_snprintf(buf, buflen, "%s", pin_txt);
1190 }
1191
1192 if (os_strcmp(cmd, "get") == 0) {
1193 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1194 if (pin_txt == NULL)
1195 return -1;
1196 return os_snprintf(buf, buflen, "%s", pin_txt);
1197 }
1198
1199 if (os_strcmp(cmd, "set") == 0) {
1200 char *pin;
1201 if (pos == NULL)
1202 return -1;
1203 pin = pos;
1204 pos = os_strchr(pos, ' ');
1205 if (pos) {
1206 *pos++ = '\0';
1207 timeout = atoi(pos);
1208 }
1209 if (os_strlen(pin) > buflen)
1210 return -1;
1211 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1212 return -1;
1213 return os_snprintf(buf, buflen, "%s", pin);
1214 }
1215
1216 return -1;
1217}
1218#endif /* CONFIG_AP */
1219
1220
1221#ifdef CONFIG_WPS_ER
1222static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1223 char *cmd)
1224{
1225 char *uuid = cmd, *pin, *pos;
1226 u8 addr_buf[ETH_ALEN], *addr = NULL;
1227 pin = os_strchr(uuid, ' ');
1228 if (pin == NULL)
1229 return -1;
1230 *pin++ = '\0';
1231 pos = os_strchr(pin, ' ');
1232 if (pos) {
1233 *pos++ = '\0';
1234 if (hwaddr_aton(pos, addr_buf) == 0)
1235 addr = addr_buf;
1236 }
1237 return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1238}
1239
1240
1241static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1242 char *cmd)
1243{
1244 char *uuid = cmd, *pin;
1245 pin = os_strchr(uuid, ' ');
1246 if (pin == NULL)
1247 return -1;
1248 *pin++ = '\0';
1249 return wpas_wps_er_learn(wpa_s, uuid, pin);
1250}
1251
1252
1253static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1254 struct wpa_supplicant *wpa_s, char *cmd)
1255{
1256 char *uuid = cmd, *id;
1257 id = os_strchr(uuid, ' ');
1258 if (id == NULL)
1259 return -1;
1260 *id++ = '\0';
1261 return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1262}
1263
1264
1265static int wpa_supplicant_ctrl_iface_wps_er_config(
1266 struct wpa_supplicant *wpa_s, char *cmd)
1267{
1268 char *pin;
1269 char *new_ssid;
1270 char *new_auth;
1271 char *new_encr;
1272 char *new_key;
1273 struct wps_new_ap_settings ap;
1274
1275 pin = os_strchr(cmd, ' ');
1276 if (pin == NULL)
1277 return -1;
1278 *pin++ = '\0';
1279
1280 new_ssid = os_strchr(pin, ' ');
1281 if (new_ssid == NULL)
1282 return -1;
1283 *new_ssid++ = '\0';
1284
1285 new_auth = os_strchr(new_ssid, ' ');
1286 if (new_auth == NULL)
1287 return -1;
1288 *new_auth++ = '\0';
1289
1290 new_encr = os_strchr(new_auth, ' ');
1291 if (new_encr == NULL)
1292 return -1;
1293 *new_encr++ = '\0';
1294
1295 new_key = os_strchr(new_encr, ' ');
1296 if (new_key == NULL)
1297 return -1;
1298 *new_key++ = '\0';
1299
1300 os_memset(&ap, 0, sizeof(ap));
1301 ap.ssid_hex = new_ssid;
1302 ap.auth = new_auth;
1303 ap.encr = new_encr;
1304 ap.key_hex = new_key;
1305 return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1306}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001307
1308
1309#ifdef CONFIG_WPS_NFC
1310static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1311 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1312{
1313 int ndef;
1314 struct wpabuf *buf;
1315 int res;
1316 char *uuid;
1317
1318 uuid = os_strchr(cmd, ' ');
1319 if (uuid == NULL)
1320 return -1;
1321 *uuid++ = '\0';
1322
1323 if (os_strcmp(cmd, "WPS") == 0)
1324 ndef = 0;
1325 else if (os_strcmp(cmd, "NDEF") == 0)
1326 ndef = 1;
1327 else
1328 return -1;
1329
1330 buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1331 if (buf == NULL)
1332 return -1;
1333
1334 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1335 wpabuf_len(buf));
1336 reply[res++] = '\n';
1337 reply[res] = '\0';
1338
1339 wpabuf_free(buf);
1340
1341 return res;
1342}
1343#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001344#endif /* CONFIG_WPS_ER */
1345
1346#endif /* CONFIG_WPS */
1347
1348
1349#ifdef CONFIG_IBSS_RSN
1350static int wpa_supplicant_ctrl_iface_ibss_rsn(
1351 struct wpa_supplicant *wpa_s, char *addr)
1352{
1353 u8 peer[ETH_ALEN];
1354
1355 if (hwaddr_aton(addr, peer)) {
1356 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1357 "address '%s'", addr);
1358 return -1;
1359 }
1360
1361 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1362 MAC2STR(peer));
1363
1364 return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1365}
1366#endif /* CONFIG_IBSS_RSN */
1367
1368
1369static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1370 char *rsp)
1371{
1372#ifdef IEEE8021X_EAPOL
1373 char *pos, *id_pos;
1374 int id;
1375 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001376
1377 pos = os_strchr(rsp, '-');
1378 if (pos == NULL)
1379 return -1;
1380 *pos++ = '\0';
1381 id_pos = pos;
1382 pos = os_strchr(pos, ':');
1383 if (pos == NULL)
1384 return -1;
1385 *pos++ = '\0';
1386 id = atoi(id_pos);
1387 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1388 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1389 (u8 *) pos, os_strlen(pos));
1390
1391 ssid = wpa_config_get_network(wpa_s->conf, id);
1392 if (ssid == NULL) {
1393 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1394 "to update", id);
1395 return -1;
1396 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001397
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001398 return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1399 pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001400#else /* IEEE8021X_EAPOL */
1401 wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1402 return -1;
1403#endif /* IEEE8021X_EAPOL */
1404}
1405
1406
1407static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1408 const char *params,
1409 char *buf, size_t buflen)
1410{
1411 char *pos, *end, tmp[30];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001412 int res, verbose, wps, ret;
Dmitry Shmidt44da0252011-08-23 12:30:30 -07001413
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001414 verbose = os_strcmp(params, "-VERBOSE") == 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001415 wps = os_strcmp(params, "-WPS") == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001416 pos = buf;
1417 end = buf + buflen;
1418 if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1419 struct wpa_ssid *ssid = wpa_s->current_ssid;
1420 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1421 MAC2STR(wpa_s->bssid));
1422 if (ret < 0 || ret >= end - pos)
1423 return pos - buf;
1424 pos += ret;
1425 if (ssid) {
1426 u8 *_ssid = ssid->ssid;
1427 size_t ssid_len = ssid->ssid_len;
1428 u8 ssid_buf[MAX_SSID_LEN];
1429 if (ssid_len == 0) {
1430 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1431 if (_res < 0)
1432 ssid_len = 0;
1433 else
1434 ssid_len = _res;
1435 _ssid = ssid_buf;
1436 }
1437 ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1438 wpa_ssid_txt(_ssid, ssid_len),
1439 ssid->id);
1440 if (ret < 0 || ret >= end - pos)
1441 return pos - buf;
1442 pos += ret;
1443
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001444 if (wps && ssid->passphrase &&
1445 wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1446 (ssid->mode == WPAS_MODE_AP ||
1447 ssid->mode == WPAS_MODE_P2P_GO)) {
1448 ret = os_snprintf(pos, end - pos,
1449 "passphrase=%s\n",
1450 ssid->passphrase);
1451 if (ret < 0 || ret >= end - pos)
1452 return pos - buf;
1453 pos += ret;
1454 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001455 if (ssid->id_str) {
1456 ret = os_snprintf(pos, end - pos,
1457 "id_str=%s\n",
1458 ssid->id_str);
1459 if (ret < 0 || ret >= end - pos)
1460 return pos - buf;
1461 pos += ret;
1462 }
1463
1464 switch (ssid->mode) {
1465 case WPAS_MODE_INFRA:
1466 ret = os_snprintf(pos, end - pos,
1467 "mode=station\n");
1468 break;
1469 case WPAS_MODE_IBSS:
1470 ret = os_snprintf(pos, end - pos,
1471 "mode=IBSS\n");
1472 break;
1473 case WPAS_MODE_AP:
1474 ret = os_snprintf(pos, end - pos,
1475 "mode=AP\n");
1476 break;
1477 case WPAS_MODE_P2P_GO:
1478 ret = os_snprintf(pos, end - pos,
1479 "mode=P2P GO\n");
1480 break;
1481 case WPAS_MODE_P2P_GROUP_FORMATION:
1482 ret = os_snprintf(pos, end - pos,
1483 "mode=P2P GO - group "
1484 "formation\n");
1485 break;
1486 default:
1487 ret = 0;
1488 break;
1489 }
1490 if (ret < 0 || ret >= end - pos)
1491 return pos - buf;
1492 pos += ret;
1493 }
1494
1495#ifdef CONFIG_AP
1496 if (wpa_s->ap_iface) {
1497 pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1498 end - pos,
1499 verbose);
1500 } else
1501#endif /* CONFIG_AP */
1502 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1503 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001504#ifdef CONFIG_SAE
1505 if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001506#ifdef CONFIG_AP
1507 !wpa_s->ap_iface &&
1508#endif /* CONFIG_AP */
1509 wpa_s->sme.sae.state == SAE_ACCEPTED) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001510 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1511 wpa_s->sme.sae.group);
1512 if (ret < 0 || ret >= end - pos)
1513 return pos - buf;
1514 pos += ret;
1515 }
1516#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001517 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1518 wpa_supplicant_state_txt(wpa_s->wpa_state));
1519 if (ret < 0 || ret >= end - pos)
1520 return pos - buf;
1521 pos += ret;
1522
1523 if (wpa_s->l2 &&
1524 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1525 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
1526 if (ret < 0 || ret >= end - pos)
1527 return pos - buf;
1528 pos += ret;
1529 }
1530
1531#ifdef CONFIG_P2P
1532 if (wpa_s->global->p2p) {
1533 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1534 "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
1535 if (ret < 0 || ret >= end - pos)
1536 return pos - buf;
1537 pos += ret;
1538 }
1539#endif /* CONFIG_P2P */
1540
1541 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1542 MAC2STR(wpa_s->own_addr));
1543 if (ret < 0 || ret >= end - pos)
1544 return pos - buf;
1545 pos += ret;
1546
Dmitry Shmidt04949592012-07-19 12:16:46 -07001547#ifdef CONFIG_HS20
1548 if (wpa_s->current_bss &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001549 wpa_bss_get_vendor_ie(wpa_s->current_bss, HS20_IE_VENDOR_TYPE) &&
1550 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1551 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001552 ret = os_snprintf(pos, end - pos, "hs20=1\n");
1553 if (ret < 0 || ret >= end - pos)
1554 return pos - buf;
1555 pos += ret;
1556 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001557
1558 if (wpa_s->current_ssid) {
1559 struct wpa_cred *cred;
1560 char *type;
1561
1562 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1563 if (wpa_s->current_ssid->parent_cred != cred)
1564 continue;
1565 if (!cred->domain)
1566 continue;
1567
1568 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1569 cred->domain);
1570 if (ret < 0 || ret >= end - pos)
1571 return pos - buf;
1572 pos += ret;
1573
1574 if (wpa_s->current_bss == NULL ||
1575 wpa_s->current_bss->anqp == NULL)
1576 res = -1;
1577 else
1578 res = interworking_home_sp_cred(
1579 wpa_s, cred,
1580 wpa_s->current_bss->anqp->domain_name);
1581 if (res > 0)
1582 type = "home";
1583 else if (res == 0)
1584 type = "roaming";
1585 else
1586 type = "unknown";
1587
1588 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
1589 if (ret < 0 || ret >= end - pos)
1590 return pos - buf;
1591 pos += ret;
1592
1593 break;
1594 }
1595 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001596#endif /* CONFIG_HS20 */
1597
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001598 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
1599 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1600 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
1601 verbose);
1602 if (res >= 0)
1603 pos += res;
1604 }
1605
1606 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
1607 if (res >= 0)
1608 pos += res;
1609
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001610#ifdef ANDROID
1611 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
Irfan Sherifff20a4432012-04-16 16:48:34 -07001612 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001613 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
Irfan Sherifff20a4432012-04-16 16:48:34 -07001614 wpa_s->wpa_state,
Irfan Sheriffe78e7672012-08-01 11:10:15 -07001615 MAC2STR(wpa_s->bssid),
andy2_kuo5b5fb022012-05-22 11:53:07 -07001616 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
1617 wpa_ssid_txt(wpa_s->current_ssid->ssid,
Irfan Sheriff10294772012-05-11 11:23:35 -07001618 wpa_s->current_ssid->ssid_len) : "");
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001619 if (wpa_s->wpa_state == WPA_COMPLETED) {
1620 struct wpa_ssid *ssid = wpa_s->current_ssid;
1621 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- connection to "
1622 MACSTR " completed %s [id=%d id_str=%s]",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001623 MAC2STR(wpa_s->bssid), "(auth)",
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001624 ssid ? ssid->id : -1,
1625 ssid && ssid->id_str ? ssid->id_str : "");
1626 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001627#endif /* ANDROID */
1628
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001629 return pos - buf;
1630}
1631
1632
1633static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
1634 char *cmd)
1635{
1636 char *pos;
1637 int id;
1638 struct wpa_ssid *ssid;
1639 u8 bssid[ETH_ALEN];
1640
1641 /* cmd: "<network id> <BSSID>" */
1642 pos = os_strchr(cmd, ' ');
1643 if (pos == NULL)
1644 return -1;
1645 *pos++ = '\0';
1646 id = atoi(cmd);
1647 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
1648 if (hwaddr_aton(pos, bssid)) {
1649 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
1650 return -1;
1651 }
1652
1653 ssid = wpa_config_get_network(wpa_s->conf, id);
1654 if (ssid == NULL) {
1655 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1656 "to update", id);
1657 return -1;
1658 }
1659
1660 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
1661 ssid->bssid_set = !is_zero_ether_addr(bssid);
1662
1663 return 0;
1664}
1665
1666
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001667static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001668 char *cmd, char *buf,
1669 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001670{
1671 u8 bssid[ETH_ALEN];
1672 struct wpa_blacklist *e;
1673 char *pos, *end;
1674 int ret;
1675
1676 /* cmd: "BLACKLIST [<BSSID>]" */
1677 if (*cmd == '\0') {
1678 pos = buf;
1679 end = buf + buflen;
1680 e = wpa_s->blacklist;
1681 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001682 ret = os_snprintf(pos, end - pos, MACSTR "\n",
1683 MAC2STR(e->bssid));
1684 if (ret < 0 || ret >= end - pos)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001685 return pos - buf;
1686 pos += ret;
1687 e = e->next;
1688 }
1689 return pos - buf;
1690 }
1691
1692 cmd++;
1693 if (os_strncmp(cmd, "clear", 5) == 0) {
1694 wpa_blacklist_clear(wpa_s);
1695 os_memcpy(buf, "OK\n", 3);
1696 return 3;
1697 }
1698
1699 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
1700 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001701 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001702 return -1;
1703 }
1704
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001705 /*
1706 * Add the BSSID twice, so its count will be 2, causing it to be
1707 * skipped when processing scan results.
1708 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001709 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001710 if (ret != 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001711 return -1;
1712 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001713 if (ret != 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001714 return -1;
1715 os_memcpy(buf, "OK\n", 3);
1716 return 3;
1717}
1718
1719
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001720extern int wpa_debug_level;
1721extern int wpa_debug_timestamp;
1722
1723static const char * debug_level_str(int level)
1724{
1725 switch (level) {
1726 case MSG_EXCESSIVE:
1727 return "EXCESSIVE";
1728 case MSG_MSGDUMP:
1729 return "MSGDUMP";
1730 case MSG_DEBUG:
1731 return "DEBUG";
1732 case MSG_INFO:
1733 return "INFO";
1734 case MSG_WARNING:
1735 return "WARNING";
1736 case MSG_ERROR:
1737 return "ERROR";
1738 default:
1739 return "?";
1740 }
1741}
1742
1743
1744static int str_to_debug_level(const char *s)
1745{
1746 if (os_strcasecmp(s, "EXCESSIVE") == 0)
1747 return MSG_EXCESSIVE;
1748 if (os_strcasecmp(s, "MSGDUMP") == 0)
1749 return MSG_MSGDUMP;
1750 if (os_strcasecmp(s, "DEBUG") == 0)
1751 return MSG_DEBUG;
1752 if (os_strcasecmp(s, "INFO") == 0)
1753 return MSG_INFO;
1754 if (os_strcasecmp(s, "WARNING") == 0)
1755 return MSG_WARNING;
1756 if (os_strcasecmp(s, "ERROR") == 0)
1757 return MSG_ERROR;
1758 return -1;
1759}
1760
1761
1762static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
1763 char *cmd, char *buf,
1764 size_t buflen)
1765{
1766 char *pos, *end, *stamp;
1767 int ret;
1768
1769 if (cmd == NULL) {
1770 return -1;
1771 }
1772
1773 /* cmd: "LOG_LEVEL [<level>]" */
1774 if (*cmd == '\0') {
1775 pos = buf;
1776 end = buf + buflen;
1777 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
1778 "Timestamp: %d\n",
1779 debug_level_str(wpa_debug_level),
1780 wpa_debug_timestamp);
1781 if (ret < 0 || ret >= end - pos)
1782 ret = 0;
1783
1784 return ret;
1785 }
1786
1787 while (*cmd == ' ')
1788 cmd++;
1789
1790 stamp = os_strchr(cmd, ' ');
1791 if (stamp) {
1792 *stamp++ = '\0';
1793 while (*stamp == ' ') {
1794 stamp++;
1795 }
1796 }
1797
1798 if (cmd && os_strlen(cmd)) {
1799 int level = str_to_debug_level(cmd);
1800 if (level < 0)
1801 return -1;
1802 wpa_debug_level = level;
1803 }
1804
1805 if (stamp && os_strlen(stamp))
1806 wpa_debug_timestamp = atoi(stamp);
1807
1808 os_memcpy(buf, "OK\n", 3);
1809 return 3;
1810}
1811
1812
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001813static int wpa_supplicant_ctrl_iface_list_networks(
1814 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
1815{
1816 char *pos, *end;
1817 struct wpa_ssid *ssid;
1818 int ret;
1819
1820 pos = buf;
1821 end = buf + buflen;
1822 ret = os_snprintf(pos, end - pos,
1823 "network id / ssid / bssid / flags\n");
1824 if (ret < 0 || ret >= end - pos)
1825 return pos - buf;
1826 pos += ret;
1827
1828 ssid = wpa_s->conf->ssid;
1829 while (ssid) {
1830 ret = os_snprintf(pos, end - pos, "%d\t%s",
1831 ssid->id,
1832 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1833 if (ret < 0 || ret >= end - pos)
1834 return pos - buf;
1835 pos += ret;
1836 if (ssid->bssid_set) {
1837 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
1838 MAC2STR(ssid->bssid));
1839 } else {
1840 ret = os_snprintf(pos, end - pos, "\tany");
1841 }
1842 if (ret < 0 || ret >= end - pos)
1843 return pos - buf;
1844 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001845 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001846 ssid == wpa_s->current_ssid ?
1847 "[CURRENT]" : "",
1848 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001849 ssid->disabled_until.sec ?
1850 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001851 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
1852 "");
1853 if (ret < 0 || ret >= end - pos)
1854 return pos - buf;
1855 pos += ret;
1856 ret = os_snprintf(pos, end - pos, "\n");
1857 if (ret < 0 || ret >= end - pos)
1858 return pos - buf;
1859 pos += ret;
1860
1861 ssid = ssid->next;
1862 }
1863
1864 return pos - buf;
1865}
1866
1867
1868static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
1869{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001870 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001871 ret = os_snprintf(pos, end - pos, "-");
1872 if (ret < 0 || ret >= end - pos)
1873 return pos;
1874 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001875 ret = wpa_write_ciphers(pos, end, cipher, "+");
1876 if (ret < 0)
1877 return pos;
1878 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001879 return pos;
1880}
1881
1882
1883static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
1884 const u8 *ie, size_t ie_len)
1885{
1886 struct wpa_ie_data data;
1887 int first, ret;
1888
1889 ret = os_snprintf(pos, end - pos, "[%s-", proto);
1890 if (ret < 0 || ret >= end - pos)
1891 return pos;
1892 pos += ret;
1893
1894 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
1895 ret = os_snprintf(pos, end - pos, "?]");
1896 if (ret < 0 || ret >= end - pos)
1897 return pos;
1898 pos += ret;
1899 return pos;
1900 }
1901
1902 first = 1;
1903 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
1904 ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
1905 if (ret < 0 || ret >= end - pos)
1906 return pos;
1907 pos += ret;
1908 first = 0;
1909 }
1910 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
1911 ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
1912 if (ret < 0 || ret >= end - pos)
1913 return pos;
1914 pos += ret;
1915 first = 0;
1916 }
1917 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
1918 ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
1919 if (ret < 0 || ret >= end - pos)
1920 return pos;
1921 pos += ret;
1922 first = 0;
1923 }
1924#ifdef CONFIG_IEEE80211R
1925 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
1926 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
1927 first ? "" : "+");
1928 if (ret < 0 || ret >= end - pos)
1929 return pos;
1930 pos += ret;
1931 first = 0;
1932 }
1933 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
1934 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
1935 first ? "" : "+");
1936 if (ret < 0 || ret >= end - pos)
1937 return pos;
1938 pos += ret;
1939 first = 0;
1940 }
1941#endif /* CONFIG_IEEE80211R */
1942#ifdef CONFIG_IEEE80211W
1943 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
1944 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
1945 first ? "" : "+");
1946 if (ret < 0 || ret >= end - pos)
1947 return pos;
1948 pos += ret;
1949 first = 0;
1950 }
1951 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
1952 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
1953 first ? "" : "+");
1954 if (ret < 0 || ret >= end - pos)
1955 return pos;
1956 pos += ret;
1957 first = 0;
1958 }
1959#endif /* CONFIG_IEEE80211W */
1960
1961 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
1962
1963 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
1964 ret = os_snprintf(pos, end - pos, "-preauth");
1965 if (ret < 0 || ret >= end - pos)
1966 return pos;
1967 pos += ret;
1968 }
1969
1970 ret = os_snprintf(pos, end - pos, "]");
1971 if (ret < 0 || ret >= end - pos)
1972 return pos;
1973 pos += ret;
1974
1975 return pos;
1976}
1977
1978
1979#ifdef CONFIG_WPS
1980static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
1981 char *pos, char *end,
1982 struct wpabuf *wps_ie)
1983{
1984 int ret;
1985 const char *txt;
1986
1987 if (wps_ie == NULL)
1988 return pos;
1989 if (wps_is_selected_pbc_registrar(wps_ie))
1990 txt = "[WPS-PBC]";
1991#ifdef CONFIG_WPS2
1992 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
1993 txt = "[WPS-AUTH]";
1994#endif /* CONFIG_WPS2 */
1995 else if (wps_is_selected_pin_registrar(wps_ie))
1996 txt = "[WPS-PIN]";
1997 else
1998 txt = "[WPS]";
1999
2000 ret = os_snprintf(pos, end - pos, "%s", txt);
2001 if (ret >= 0 && ret < end - pos)
2002 pos += ret;
2003 wpabuf_free(wps_ie);
2004 return pos;
2005}
2006#endif /* CONFIG_WPS */
2007
2008
2009static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2010 char *pos, char *end,
2011 const struct wpa_bss *bss)
2012{
2013#ifdef CONFIG_WPS
2014 struct wpabuf *wps_ie;
2015 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2016 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2017#else /* CONFIG_WPS */
2018 return pos;
2019#endif /* CONFIG_WPS */
2020}
2021
2022
2023/* Format one result on one text line into a buffer. */
2024static int wpa_supplicant_ctrl_iface_scan_result(
2025 struct wpa_supplicant *wpa_s,
2026 const struct wpa_bss *bss, char *buf, size_t buflen)
2027{
2028 char *pos, *end;
2029 int ret;
2030 const u8 *ie, *ie2, *p2p;
2031
2032 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
2033 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2034 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2035 0)
2036 return 0; /* Do not show P2P listen discovery results here */
2037
2038 pos = buf;
2039 end = buf + buflen;
2040
2041 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2042 MAC2STR(bss->bssid), bss->freq, bss->level);
2043 if (ret < 0 || ret >= end - pos)
2044 return -1;
2045 pos += ret;
2046 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2047 if (ie)
2048 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2049 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
2050 if (ie2)
2051 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
2052 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
2053 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
2054 ret = os_snprintf(pos, end - pos, "[WEP]");
2055 if (ret < 0 || ret >= end - pos)
2056 return -1;
2057 pos += ret;
2058 }
2059 if (bss->caps & IEEE80211_CAP_IBSS) {
2060 ret = os_snprintf(pos, end - pos, "[IBSS]");
2061 if (ret < 0 || ret >= end - pos)
2062 return -1;
2063 pos += ret;
2064 }
2065 if (bss->caps & IEEE80211_CAP_ESS) {
2066 ret = os_snprintf(pos, end - pos, "[ESS]");
2067 if (ret < 0 || ret >= end - pos)
2068 return -1;
2069 pos += ret;
2070 }
2071 if (p2p) {
2072 ret = os_snprintf(pos, end - pos, "[P2P]");
2073 if (ret < 0 || ret >= end - pos)
2074 return -1;
2075 pos += ret;
2076 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002077#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002078 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002079 ret = os_snprintf(pos, end - pos, "[HS20]");
2080 if (ret < 0 || ret >= end - pos)
2081 return -1;
2082 pos += ret;
2083 }
2084#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002085
2086 ret = os_snprintf(pos, end - pos, "\t%s",
2087 wpa_ssid_txt(bss->ssid, bss->ssid_len));
2088 if (ret < 0 || ret >= end - pos)
2089 return -1;
2090 pos += ret;
2091
2092 ret = os_snprintf(pos, end - pos, "\n");
2093 if (ret < 0 || ret >= end - pos)
2094 return -1;
2095 pos += ret;
2096
2097 return pos - buf;
2098}
2099
2100
2101static int wpa_supplicant_ctrl_iface_scan_results(
2102 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2103{
2104 char *pos, *end;
2105 struct wpa_bss *bss;
2106 int ret;
2107
2108 pos = buf;
2109 end = buf + buflen;
2110 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2111 "flags / ssid\n");
2112 if (ret < 0 || ret >= end - pos)
2113 return pos - buf;
2114 pos += ret;
2115
2116 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2117 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2118 end - pos);
2119 if (ret < 0 || ret >= end - pos)
2120 return pos - buf;
2121 pos += ret;
2122 }
2123
2124 return pos - buf;
2125}
2126
2127
2128static int wpa_supplicant_ctrl_iface_select_network(
2129 struct wpa_supplicant *wpa_s, char *cmd)
2130{
2131 int id;
2132 struct wpa_ssid *ssid;
2133
2134 /* cmd: "<network id>" or "any" */
2135 if (os_strcmp(cmd, "any") == 0) {
2136 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2137 ssid = NULL;
2138 } else {
2139 id = atoi(cmd);
2140 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2141
2142 ssid = wpa_config_get_network(wpa_s->conf, id);
2143 if (ssid == NULL) {
2144 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2145 "network id=%d", id);
2146 return -1;
2147 }
2148 if (ssid->disabled == 2) {
2149 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2150 "SELECT_NETWORK with persistent P2P group");
2151 return -1;
2152 }
2153 }
2154
2155 wpa_supplicant_select_network(wpa_s, ssid);
2156
2157 return 0;
2158}
2159
2160
2161static int wpa_supplicant_ctrl_iface_enable_network(
2162 struct wpa_supplicant *wpa_s, char *cmd)
2163{
2164 int id;
2165 struct wpa_ssid *ssid;
2166
2167 /* cmd: "<network id>" or "all" */
2168 if (os_strcmp(cmd, "all") == 0) {
2169 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2170 ssid = NULL;
2171 } else {
2172 id = atoi(cmd);
2173 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2174
2175 ssid = wpa_config_get_network(wpa_s->conf, id);
2176 if (ssid == NULL) {
2177 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2178 "network id=%d", id);
2179 return -1;
2180 }
2181 if (ssid->disabled == 2) {
2182 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2183 "ENABLE_NETWORK with persistent P2P group");
2184 return -1;
2185 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002186
2187 if (os_strstr(cmd, " no-connect")) {
2188 ssid->disabled = 0;
2189 return 0;
2190 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002191 }
2192 wpa_supplicant_enable_network(wpa_s, ssid);
2193
2194 return 0;
2195}
2196
2197
2198static int wpa_supplicant_ctrl_iface_disable_network(
2199 struct wpa_supplicant *wpa_s, char *cmd)
2200{
2201 int id;
2202 struct wpa_ssid *ssid;
2203
2204 /* cmd: "<network id>" or "all" */
2205 if (os_strcmp(cmd, "all") == 0) {
2206 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2207 ssid = NULL;
2208 } else {
2209 id = atoi(cmd);
2210 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2211
2212 ssid = wpa_config_get_network(wpa_s->conf, id);
2213 if (ssid == NULL) {
2214 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2215 "network id=%d", id);
2216 return -1;
2217 }
2218 if (ssid->disabled == 2) {
2219 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2220 "DISABLE_NETWORK with persistent P2P "
2221 "group");
2222 return -1;
2223 }
2224 }
2225 wpa_supplicant_disable_network(wpa_s, ssid);
2226
2227 return 0;
2228}
2229
2230
2231static int wpa_supplicant_ctrl_iface_add_network(
2232 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2233{
2234 struct wpa_ssid *ssid;
2235 int ret;
2236
2237 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2238
2239 ssid = wpa_config_add_network(wpa_s->conf);
2240 if (ssid == NULL)
2241 return -1;
2242
2243 wpas_notify_network_added(wpa_s, ssid);
2244
2245 ssid->disabled = 1;
2246 wpa_config_set_network_defaults(ssid);
2247
2248 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
2249 if (ret < 0 || (size_t) ret >= buflen)
2250 return -1;
2251 return ret;
2252}
2253
2254
2255static int wpa_supplicant_ctrl_iface_remove_network(
2256 struct wpa_supplicant *wpa_s, char *cmd)
2257{
2258 int id;
2259 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002260 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002261
2262 /* cmd: "<network id>" or "all" */
2263 if (os_strcmp(cmd, "all") == 0) {
2264 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002265 if (wpa_s->sched_scanning)
2266 wpa_supplicant_cancel_sched_scan(wpa_s);
2267
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002268 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002269 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002270#ifdef CONFIG_SME
2271 wpa_s->sme.prev_bssid_set = 0;
2272#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002273 wpa_sm_set_config(wpa_s->wpa, NULL);
2274 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002275 wpa_supplicant_deauthenticate(
2276 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002277 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002278 ssid = wpa_s->conf->ssid;
2279 while (ssid) {
2280 struct wpa_ssid *remove_ssid = ssid;
2281 id = ssid->id;
2282 ssid = ssid->next;
2283 wpas_notify_network_removed(wpa_s, remove_ssid);
2284 wpa_config_remove_network(wpa_s->conf, id);
2285 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002286 return 0;
2287 }
2288
2289 id = atoi(cmd);
2290 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2291
2292 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002293 if (ssid)
2294 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002295 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002296 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2297 "id=%d", id);
2298 return -1;
2299 }
2300
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002301 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002302#ifdef CONFIG_SME
2303 wpa_s->sme.prev_bssid_set = 0;
2304#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002305 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002306 * Invalidate the EAP session cache if the current or
2307 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002308 */
2309 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002310 }
2311
2312 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002313 wpa_sm_set_config(wpa_s->wpa, NULL);
2314 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002315
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002316 wpa_supplicant_deauthenticate(wpa_s,
2317 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002318 }
2319
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002320 was_disabled = ssid->disabled;
2321
Deepthi Gowria831d782012-09-03 11:55:38 +03002322 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2323 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2324 "network id=%d", id);
2325 return -1;
2326 }
2327
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002328 if (!was_disabled && wpa_s->sched_scanning) {
2329 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2330 "network from filters");
2331 wpa_supplicant_cancel_sched_scan(wpa_s);
2332 wpa_supplicant_req_scan(wpa_s, 0, 0);
2333 }
2334
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002335 return 0;
2336}
2337
2338
2339static int wpa_supplicant_ctrl_iface_set_network(
2340 struct wpa_supplicant *wpa_s, char *cmd)
2341{
2342 int id;
2343 struct wpa_ssid *ssid;
2344 char *name, *value;
2345
2346 /* cmd: "<network id> <variable name> <value>" */
2347 name = os_strchr(cmd, ' ');
2348 if (name == NULL)
2349 return -1;
2350 *name++ = '\0';
2351
2352 value = os_strchr(name, ' ');
2353 if (value == NULL)
2354 return -1;
2355 *value++ = '\0';
2356
2357 id = atoi(cmd);
2358 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
2359 id, name);
2360 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2361 (u8 *) value, os_strlen(value));
2362
2363 ssid = wpa_config_get_network(wpa_s->conf, id);
2364 if (ssid == NULL) {
2365 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2366 "id=%d", id);
2367 return -1;
2368 }
2369
2370 if (wpa_config_set(ssid, name, value, 0) < 0) {
2371 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2372 "variable '%s'", name);
2373 return -1;
2374 }
2375
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002376 if (os_strcmp(name, "bssid") != 0 &&
2377 os_strcmp(name, "priority") != 0)
2378 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002379
2380 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002381 /*
2382 * Invalidate the EAP session cache if anything in the current
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002383 * or previously used configuration changes.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002384 */
2385 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2386 }
2387
2388 if ((os_strcmp(name, "psk") == 0 &&
2389 value[0] == '"' && ssid->ssid_len) ||
2390 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2391 wpa_config_update_psk(ssid);
2392 else if (os_strcmp(name, "priority") == 0)
2393 wpa_config_update_prio_list(wpa_s->conf);
2394
2395 return 0;
2396}
2397
2398
2399static int wpa_supplicant_ctrl_iface_get_network(
2400 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
2401{
2402 int id;
2403 size_t res;
2404 struct wpa_ssid *ssid;
2405 char *name, *value;
2406
2407 /* cmd: "<network id> <variable name>" */
2408 name = os_strchr(cmd, ' ');
2409 if (name == NULL || buflen == 0)
2410 return -1;
2411 *name++ = '\0';
2412
2413 id = atoi(cmd);
2414 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
2415 id, name);
2416
2417 ssid = wpa_config_get_network(wpa_s->conf, id);
2418 if (ssid == NULL) {
2419 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2420 "id=%d", id);
2421 return -1;
2422 }
2423
2424 value = wpa_config_get_no_key(ssid, name);
2425 if (value == NULL) {
2426 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
2427 "variable '%s'", name);
2428 return -1;
2429 }
2430
2431 res = os_strlcpy(buf, value, buflen);
2432 if (res >= buflen) {
2433 os_free(value);
2434 return -1;
2435 }
2436
2437 os_free(value);
2438
2439 return res;
2440}
2441
2442
Dmitry Shmidt04949592012-07-19 12:16:46 -07002443static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
2444 char *buf, size_t buflen)
2445{
2446 char *pos, *end;
2447 struct wpa_cred *cred;
2448 int ret;
2449
2450 pos = buf;
2451 end = buf + buflen;
2452 ret = os_snprintf(pos, end - pos,
2453 "cred id / realm / username / domain / imsi\n");
2454 if (ret < 0 || ret >= end - pos)
2455 return pos - buf;
2456 pos += ret;
2457
2458 cred = wpa_s->conf->cred;
2459 while (cred) {
2460 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
2461 cred->id, cred->realm ? cred->realm : "",
2462 cred->username ? cred->username : "",
2463 cred->domain ? cred->domain : "",
2464 cred->imsi ? cred->imsi : "");
2465 if (ret < 0 || ret >= end - pos)
2466 return pos - buf;
2467 pos += ret;
2468
2469 cred = cred->next;
2470 }
2471
2472 return pos - buf;
2473}
2474
2475
2476static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
2477 char *buf, size_t buflen)
2478{
2479 struct wpa_cred *cred;
2480 int ret;
2481
2482 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
2483
2484 cred = wpa_config_add_cred(wpa_s->conf);
2485 if (cred == NULL)
2486 return -1;
2487
2488 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
2489 if (ret < 0 || (size_t) ret >= buflen)
2490 return -1;
2491 return ret;
2492}
2493
2494
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002495static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
2496 struct wpa_cred *cred)
2497{
2498 struct wpa_ssid *ssid;
2499 char str[20];
2500
2501 if (cred == NULL || wpa_config_remove_cred(wpa_s->conf, cred->id) < 0) {
2502 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
2503 return -1;
2504 }
2505
2506 /* Remove any network entry created based on the removed credential */
2507 ssid = wpa_s->conf->ssid;
2508 while (ssid) {
2509 if (ssid->parent_cred == cred) {
2510 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
2511 "used the removed credential", ssid->id);
2512 os_snprintf(str, sizeof(str), "%d", ssid->id);
2513 ssid = ssid->next;
2514 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
2515 } else
2516 ssid = ssid->next;
2517 }
2518
2519 return 0;
2520}
2521
2522
Dmitry Shmidt04949592012-07-19 12:16:46 -07002523static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
2524 char *cmd)
2525{
2526 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002527 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002528
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002529 /* cmd: "<cred id>", "all", or "sp_fqdn=<FQDN>" */
Dmitry Shmidt04949592012-07-19 12:16:46 -07002530 if (os_strcmp(cmd, "all") == 0) {
2531 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
2532 cred = wpa_s->conf->cred;
2533 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002534 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002535 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002536 wpas_ctrl_remove_cred(wpa_s, prev);
2537 }
2538 return 0;
2539 }
2540
2541 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
2542 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
2543 cmd + 8);
2544 cred = wpa_s->conf->cred;
2545 while (cred) {
2546 prev = cred;
2547 cred = cred->next;
2548 if (prev->domain &&
2549 os_strcmp(prev->domain, cmd + 8) == 0)
2550 wpas_ctrl_remove_cred(wpa_s, prev);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002551 }
2552 return 0;
2553 }
2554
2555 id = atoi(cmd);
2556 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
2557
2558 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002559 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002560}
2561
2562
2563static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
2564 char *cmd)
2565{
2566 int id;
2567 struct wpa_cred *cred;
2568 char *name, *value;
2569
2570 /* cmd: "<cred id> <variable name> <value>" */
2571 name = os_strchr(cmd, ' ');
2572 if (name == NULL)
2573 return -1;
2574 *name++ = '\0';
2575
2576 value = os_strchr(name, ' ');
2577 if (value == NULL)
2578 return -1;
2579 *value++ = '\0';
2580
2581 id = atoi(cmd);
2582 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
2583 id, name);
2584 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2585 (u8 *) value, os_strlen(value));
2586
2587 cred = wpa_config_get_cred(wpa_s->conf, id);
2588 if (cred == NULL) {
2589 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
2590 id);
2591 return -1;
2592 }
2593
2594 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
2595 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
2596 "variable '%s'", name);
2597 return -1;
2598 }
2599
2600 return 0;
2601}
2602
2603
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002604#ifndef CONFIG_NO_CONFIG_WRITE
2605static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
2606{
2607 int ret;
2608
2609 if (!wpa_s->conf->update_config) {
2610 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
2611 "to update configuration (update_config=0)");
2612 return -1;
2613 }
2614
2615 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
2616 if (ret) {
2617 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
2618 "update configuration");
2619 } else {
2620 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
2621 " updated");
2622 }
2623
2624 return ret;
2625}
2626#endif /* CONFIG_NO_CONFIG_WRITE */
2627
2628
2629static int ctrl_iface_get_capability_pairwise(int res, char *strict,
2630 struct wpa_driver_capa *capa,
2631 char *buf, size_t buflen)
2632{
2633 int ret, first = 1;
2634 char *pos, *end;
2635 size_t len;
2636
2637 pos = buf;
2638 end = pos + buflen;
2639
2640 if (res < 0) {
2641 if (strict)
2642 return 0;
2643 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
2644 if (len >= buflen)
2645 return -1;
2646 return len;
2647 }
2648
2649 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2650 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2651 if (ret < 0 || ret >= end - pos)
2652 return pos - buf;
2653 pos += ret;
2654 first = 0;
2655 }
2656
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002657 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2658 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2659 if (ret < 0 || ret >= end - pos)
2660 return pos - buf;
2661 pos += ret;
2662 first = 0;
2663 }
2664
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002665 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2666 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2667 if (ret < 0 || ret >= end - pos)
2668 return pos - buf;
2669 pos += ret;
2670 first = 0;
2671 }
2672
2673 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2674 ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
2675 if (ret < 0 || ret >= end - pos)
2676 return pos - buf;
2677 pos += ret;
2678 first = 0;
2679 }
2680
2681 return pos - buf;
2682}
2683
2684
2685static int ctrl_iface_get_capability_group(int res, char *strict,
2686 struct wpa_driver_capa *capa,
2687 char *buf, size_t buflen)
2688{
2689 int ret, first = 1;
2690 char *pos, *end;
2691 size_t len;
2692
2693 pos = buf;
2694 end = pos + buflen;
2695
2696 if (res < 0) {
2697 if (strict)
2698 return 0;
2699 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
2700 if (len >= buflen)
2701 return -1;
2702 return len;
2703 }
2704
2705 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2706 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2707 if (ret < 0 || ret >= end - pos)
2708 return pos - buf;
2709 pos += ret;
2710 first = 0;
2711 }
2712
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002713 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2714 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2715 if (ret < 0 || ret >= end - pos)
2716 return pos - buf;
2717 pos += ret;
2718 first = 0;
2719 }
2720
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002721 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2722 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2723 if (ret < 0 || ret >= end - pos)
2724 return pos - buf;
2725 pos += ret;
2726 first = 0;
2727 }
2728
2729 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
2730 ret = os_snprintf(pos, end - pos, "%sWEP104",
2731 first ? "" : " ");
2732 if (ret < 0 || ret >= end - pos)
2733 return pos - buf;
2734 pos += ret;
2735 first = 0;
2736 }
2737
2738 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
2739 ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
2740 if (ret < 0 || ret >= end - pos)
2741 return pos - buf;
2742 pos += ret;
2743 first = 0;
2744 }
2745
2746 return pos - buf;
2747}
2748
2749
2750static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
2751 struct wpa_driver_capa *capa,
2752 char *buf, size_t buflen)
2753{
2754 int ret;
2755 char *pos, *end;
2756 size_t len;
2757
2758 pos = buf;
2759 end = pos + buflen;
2760
2761 if (res < 0) {
2762 if (strict)
2763 return 0;
2764 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
2765 "NONE", buflen);
2766 if (len >= buflen)
2767 return -1;
2768 return len;
2769 }
2770
2771 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
2772 if (ret < 0 || ret >= end - pos)
2773 return pos - buf;
2774 pos += ret;
2775
2776 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2777 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
2778 ret = os_snprintf(pos, end - pos, " WPA-EAP");
2779 if (ret < 0 || ret >= end - pos)
2780 return pos - buf;
2781 pos += ret;
2782 }
2783
2784 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
2785 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2786 ret = os_snprintf(pos, end - pos, " WPA-PSK");
2787 if (ret < 0 || ret >= end - pos)
2788 return pos - buf;
2789 pos += ret;
2790 }
2791
2792 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2793 ret = os_snprintf(pos, end - pos, " WPA-NONE");
2794 if (ret < 0 || ret >= end - pos)
2795 return pos - buf;
2796 pos += ret;
2797 }
2798
2799 return pos - buf;
2800}
2801
2802
2803static int ctrl_iface_get_capability_proto(int res, char *strict,
2804 struct wpa_driver_capa *capa,
2805 char *buf, size_t buflen)
2806{
2807 int ret, first = 1;
2808 char *pos, *end;
2809 size_t len;
2810
2811 pos = buf;
2812 end = pos + buflen;
2813
2814 if (res < 0) {
2815 if (strict)
2816 return 0;
2817 len = os_strlcpy(buf, "RSN WPA", buflen);
2818 if (len >= buflen)
2819 return -1;
2820 return len;
2821 }
2822
2823 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
2824 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2825 ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
2826 if (ret < 0 || ret >= end - pos)
2827 return pos - buf;
2828 pos += ret;
2829 first = 0;
2830 }
2831
2832 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2833 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
2834 ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
2835 if (ret < 0 || ret >= end - pos)
2836 return pos - buf;
2837 pos += ret;
2838 first = 0;
2839 }
2840
2841 return pos - buf;
2842}
2843
2844
2845static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
2846 struct wpa_driver_capa *capa,
2847 char *buf, size_t buflen)
2848{
2849 int ret, first = 1;
2850 char *pos, *end;
2851 size_t len;
2852
2853 pos = buf;
2854 end = pos + buflen;
2855
2856 if (res < 0) {
2857 if (strict)
2858 return 0;
2859 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
2860 if (len >= buflen)
2861 return -1;
2862 return len;
2863 }
2864
2865 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
2866 ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
2867 if (ret < 0 || ret >= end - pos)
2868 return pos - buf;
2869 pos += ret;
2870 first = 0;
2871 }
2872
2873 if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
2874 ret = os_snprintf(pos, end - pos, "%sSHARED",
2875 first ? "" : " ");
2876 if (ret < 0 || ret >= end - pos)
2877 return pos - buf;
2878 pos += ret;
2879 first = 0;
2880 }
2881
2882 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
2883 ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
2884 if (ret < 0 || ret >= end - pos)
2885 return pos - buf;
2886 pos += ret;
2887 first = 0;
2888 }
2889
2890 return pos - buf;
2891}
2892
2893
Dmitry Shmidt700a1372013-03-15 14:14:44 -07002894static int ctrl_iface_get_capability_modes(int res, char *strict,
2895 struct wpa_driver_capa *capa,
2896 char *buf, size_t buflen)
2897{
2898 int ret, first = 1;
2899 char *pos, *end;
2900 size_t len;
2901
2902 pos = buf;
2903 end = pos + buflen;
2904
2905 if (res < 0) {
2906 if (strict)
2907 return 0;
2908 len = os_strlcpy(buf, "IBSS AP", buflen);
2909 if (len >= buflen)
2910 return -1;
2911 return len;
2912 }
2913
2914 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
2915 ret = os_snprintf(pos, end - pos, "%sIBSS", first ? "" : " ");
2916 if (ret < 0 || ret >= end - pos)
2917 return pos - buf;
2918 pos += ret;
2919 first = 0;
2920 }
2921
2922 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
2923 ret = os_snprintf(pos, end - pos, "%sAP", first ? "" : " ");
2924 if (ret < 0 || ret >= end - pos)
2925 return pos - buf;
2926 pos += ret;
2927 first = 0;
2928 }
2929
2930 return pos - buf;
2931}
2932
2933
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002934static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
2935 char *buf, size_t buflen)
2936{
2937 struct hostapd_channel_data *chnl;
2938 int ret, i, j;
2939 char *pos, *end, *hmode;
2940
2941 pos = buf;
2942 end = pos + buflen;
2943
2944 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2945 switch (wpa_s->hw.modes[j].mode) {
2946 case HOSTAPD_MODE_IEEE80211B:
2947 hmode = "B";
2948 break;
2949 case HOSTAPD_MODE_IEEE80211G:
2950 hmode = "G";
2951 break;
2952 case HOSTAPD_MODE_IEEE80211A:
2953 hmode = "A";
2954 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002955 case HOSTAPD_MODE_IEEE80211AD:
2956 hmode = "AD";
2957 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002958 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002959 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002960 }
2961 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
2962 if (ret < 0 || ret >= end - pos)
2963 return pos - buf;
2964 pos += ret;
2965 chnl = wpa_s->hw.modes[j].channels;
2966 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002967 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
2968 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002969 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
2970 if (ret < 0 || ret >= end - pos)
2971 return pos - buf;
2972 pos += ret;
2973 }
2974 ret = os_snprintf(pos, end - pos, "\n");
2975 if (ret < 0 || ret >= end - pos)
2976 return pos - buf;
2977 pos += ret;
2978 }
2979
2980 return pos - buf;
2981}
2982
2983
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07002984static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
2985 char *buf, size_t buflen)
2986{
2987 struct hostapd_channel_data *chnl;
2988 int ret, i, j;
2989 char *pos, *end, *hmode;
2990
2991 pos = buf;
2992 end = pos + buflen;
2993
2994 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2995 switch (wpa_s->hw.modes[j].mode) {
2996 case HOSTAPD_MODE_IEEE80211B:
2997 hmode = "B";
2998 break;
2999 case HOSTAPD_MODE_IEEE80211G:
3000 hmode = "G";
3001 break;
3002 case HOSTAPD_MODE_IEEE80211A:
3003 hmode = "A";
3004 break;
3005 case HOSTAPD_MODE_IEEE80211AD:
3006 hmode = "AD";
3007 break;
3008 default:
3009 continue;
3010 }
3011 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3012 hmode);
3013 if (ret < 0 || ret >= end - pos)
3014 return pos - buf;
3015 pos += ret;
3016 chnl = wpa_s->hw.modes[j].channels;
3017 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3018 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3019 continue;
3020 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s\n",
3021 chnl[i].chan, chnl[i].freq,
3022 chnl[i].flag & HOSTAPD_CHAN_NO_IBSS ?
3023 " (NO_IBSS)" : "");
3024 if (ret < 0 || ret >= end - pos)
3025 return pos - buf;
3026 pos += ret;
3027 }
3028 ret = os_snprintf(pos, end - pos, "\n");
3029 if (ret < 0 || ret >= end - pos)
3030 return pos - buf;
3031 pos += ret;
3032 }
3033
3034 return pos - buf;
3035}
3036
3037
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003038static int wpa_supplicant_ctrl_iface_get_capability(
3039 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3040 size_t buflen)
3041{
3042 struct wpa_driver_capa capa;
3043 int res;
3044 char *strict;
3045 char field[30];
3046 size_t len;
3047
3048 /* Determine whether or not strict checking was requested */
3049 len = os_strlcpy(field, _field, sizeof(field));
3050 if (len >= sizeof(field))
3051 return -1;
3052 strict = os_strchr(field, ' ');
3053 if (strict != NULL) {
3054 *strict++ = '\0';
3055 if (os_strcmp(strict, "strict") != 0)
3056 return -1;
3057 }
3058
3059 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3060 field, strict ? strict : "");
3061
3062 if (os_strcmp(field, "eap") == 0) {
3063 return eap_get_names(buf, buflen);
3064 }
3065
3066 res = wpa_drv_get_capa(wpa_s, &capa);
3067
3068 if (os_strcmp(field, "pairwise") == 0)
3069 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3070 buf, buflen);
3071
3072 if (os_strcmp(field, "group") == 0)
3073 return ctrl_iface_get_capability_group(res, strict, &capa,
3074 buf, buflen);
3075
3076 if (os_strcmp(field, "key_mgmt") == 0)
3077 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3078 buf, buflen);
3079
3080 if (os_strcmp(field, "proto") == 0)
3081 return ctrl_iface_get_capability_proto(res, strict, &capa,
3082 buf, buflen);
3083
3084 if (os_strcmp(field, "auth_alg") == 0)
3085 return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
3086 buf, buflen);
3087
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003088 if (os_strcmp(field, "modes") == 0)
3089 return ctrl_iface_get_capability_modes(res, strict, &capa,
3090 buf, buflen);
3091
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003092 if (os_strcmp(field, "channels") == 0)
3093 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3094
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003095 if (os_strcmp(field, "freq") == 0)
3096 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3097
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003098 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3099 field);
3100
3101 return -1;
3102}
3103
3104
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003105#ifdef CONFIG_INTERWORKING
3106static char * anqp_add_hex(char *pos, char *end, const char *title,
3107 struct wpabuf *data)
3108{
3109 char *start = pos;
3110 size_t i;
3111 int ret;
3112 const u8 *d;
3113
3114 if (data == NULL)
3115 return start;
3116
3117 ret = os_snprintf(pos, end - pos, "%s=", title);
3118 if (ret < 0 || ret >= end - pos)
3119 return start;
3120 pos += ret;
3121
3122 d = wpabuf_head_u8(data);
3123 for (i = 0; i < wpabuf_len(data); i++) {
3124 ret = os_snprintf(pos, end - pos, "%02x", *d++);
3125 if (ret < 0 || ret >= end - pos)
3126 return start;
3127 pos += ret;
3128 }
3129
3130 ret = os_snprintf(pos, end - pos, "\n");
3131 if (ret < 0 || ret >= end - pos)
3132 return start;
3133 pos += ret;
3134
3135 return pos;
3136}
3137#endif /* CONFIG_INTERWORKING */
3138
3139
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003140static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
3141 unsigned long mask, char *buf, size_t buflen)
3142{
3143 size_t i;
3144 int ret;
3145 char *pos, *end;
3146 const u8 *ie, *ie2;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003147
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003148 pos = buf;
3149 end = buf + buflen;
3150
3151 if (mask & WPA_BSS_MASK_ID) {
3152 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
3153 if (ret < 0 || ret >= end - pos)
3154 return 0;
3155 pos += ret;
3156 }
3157
3158 if (mask & WPA_BSS_MASK_BSSID) {
3159 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
3160 MAC2STR(bss->bssid));
3161 if (ret < 0 || ret >= end - pos)
3162 return 0;
3163 pos += ret;
3164 }
3165
3166 if (mask & WPA_BSS_MASK_FREQ) {
3167 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
3168 if (ret < 0 || ret >= end - pos)
3169 return 0;
3170 pos += ret;
3171 }
3172
3173 if (mask & WPA_BSS_MASK_BEACON_INT) {
3174 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
3175 bss->beacon_int);
3176 if (ret < 0 || ret >= end - pos)
3177 return 0;
3178 pos += ret;
3179 }
3180
3181 if (mask & WPA_BSS_MASK_CAPABILITIES) {
3182 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
3183 bss->caps);
3184 if (ret < 0 || ret >= end - pos)
3185 return 0;
3186 pos += ret;
3187 }
3188
3189 if (mask & WPA_BSS_MASK_QUAL) {
3190 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
3191 if (ret < 0 || ret >= end - pos)
3192 return 0;
3193 pos += ret;
3194 }
3195
3196 if (mask & WPA_BSS_MASK_NOISE) {
3197 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
3198 if (ret < 0 || ret >= end - pos)
3199 return 0;
3200 pos += ret;
3201 }
3202
3203 if (mask & WPA_BSS_MASK_LEVEL) {
3204 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
3205 if (ret < 0 || ret >= end - pos)
3206 return 0;
3207 pos += ret;
3208 }
3209
3210 if (mask & WPA_BSS_MASK_TSF) {
3211 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
3212 (unsigned long long) bss->tsf);
3213 if (ret < 0 || ret >= end - pos)
3214 return 0;
3215 pos += ret;
3216 }
3217
3218 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003219 struct os_time now;
3220
3221 os_get_time(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003222 ret = os_snprintf(pos, end - pos, "age=%d\n",
3223 (int) (now.sec - bss->last_update.sec));
3224 if (ret < 0 || ret >= end - pos)
3225 return 0;
3226 pos += ret;
3227 }
3228
3229 if (mask & WPA_BSS_MASK_IE) {
3230 ret = os_snprintf(pos, end - pos, "ie=");
3231 if (ret < 0 || ret >= end - pos)
3232 return 0;
3233 pos += ret;
3234
3235 ie = (const u8 *) (bss + 1);
3236 for (i = 0; i < bss->ie_len; i++) {
3237 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
3238 if (ret < 0 || ret >= end - pos)
3239 return 0;
3240 pos += ret;
3241 }
3242
3243 ret = os_snprintf(pos, end - pos, "\n");
3244 if (ret < 0 || ret >= end - pos)
3245 return 0;
3246 pos += ret;
3247 }
3248
3249 if (mask & WPA_BSS_MASK_FLAGS) {
3250 ret = os_snprintf(pos, end - pos, "flags=");
3251 if (ret < 0 || ret >= end - pos)
3252 return 0;
3253 pos += ret;
3254
3255 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
3256 if (ie)
3257 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
3258 2 + ie[1]);
3259 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
3260 if (ie2)
3261 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
3262 2 + ie2[1]);
3263 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
3264 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
3265 ret = os_snprintf(pos, end - pos, "[WEP]");
3266 if (ret < 0 || ret >= end - pos)
3267 return 0;
3268 pos += ret;
3269 }
3270 if (bss->caps & IEEE80211_CAP_IBSS) {
3271 ret = os_snprintf(pos, end - pos, "[IBSS]");
3272 if (ret < 0 || ret >= end - pos)
3273 return 0;
3274 pos += ret;
3275 }
3276 if (bss->caps & IEEE80211_CAP_ESS) {
3277 ret = os_snprintf(pos, end - pos, "[ESS]");
3278 if (ret < 0 || ret >= end - pos)
3279 return 0;
3280 pos += ret;
3281 }
3282 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE)) {
3283 ret = os_snprintf(pos, end - pos, "[P2P]");
3284 if (ret < 0 || ret >= end - pos)
3285 return 0;
3286 pos += ret;
3287 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003288#ifdef CONFIG_HS20
3289 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
3290 ret = os_snprintf(pos, end - pos, "[HS20]");
3291 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003292 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003293 pos += ret;
3294 }
3295#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003296
3297 ret = os_snprintf(pos, end - pos, "\n");
3298 if (ret < 0 || ret >= end - pos)
3299 return 0;
3300 pos += ret;
3301 }
3302
3303 if (mask & WPA_BSS_MASK_SSID) {
3304 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
3305 wpa_ssid_txt(bss->ssid, bss->ssid_len));
3306 if (ret < 0 || ret >= end - pos)
3307 return 0;
3308 pos += ret;
3309 }
3310
3311#ifdef CONFIG_WPS
3312 if (mask & WPA_BSS_MASK_WPS_SCAN) {
3313 ie = (const u8 *) (bss + 1);
3314 ret = wpas_wps_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_WPS */
3320
3321#ifdef CONFIG_P2P
3322 if (mask & WPA_BSS_MASK_P2P_SCAN) {
3323 ie = (const u8 *) (bss + 1);
3324 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
3325 if (ret < 0 || ret >= end - pos)
3326 return 0;
3327 pos += ret;
3328 }
3329#endif /* CONFIG_P2P */
3330
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003331#ifdef CONFIG_WIFI_DISPLAY
3332 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
3333 struct wpabuf *wfd;
3334 ie = (const u8 *) (bss + 1);
3335 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
3336 WFD_IE_VENDOR_TYPE);
3337 if (wfd) {
3338 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
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 pos += wpa_snprintf_hex(pos, end - pos,
3344 wpabuf_head(wfd),
3345 wpabuf_len(wfd));
3346 wpabuf_free(wfd);
3347
3348 ret = os_snprintf(pos, end - pos, "\n");
3349 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003350 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003351 pos += ret;
3352 }
3353 }
3354#endif /* CONFIG_WIFI_DISPLAY */
3355
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003356#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003357 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
3358 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003359 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003360 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003361 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003362 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003363 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003364 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003365 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003366 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003367 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003368 anqp->nai_realm);
3369 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003370 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003371 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003372#ifdef CONFIG_HS20
3373 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003374 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003375 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003376 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003377 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003378 anqp->hs20_connection_capability);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003379#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003380 }
3381#endif /* CONFIG_INTERWORKING */
3382
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003383 if (mask & WPA_BSS_MASK_DELIM) {
3384 ret = os_snprintf(pos, end - pos, "====\n");
3385 if (ret < 0 || ret >= end - pos)
3386 return 0;
3387 pos += ret;
3388 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07003389
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003390 return pos - buf;
3391}
3392
Dmitry Shmidt04949592012-07-19 12:16:46 -07003393
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003394static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
3395 const char *cmd, char *buf,
3396 size_t buflen)
3397{
3398 u8 bssid[ETH_ALEN];
3399 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003400 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003401 struct wpa_bss *bsslast = NULL;
3402 struct dl_list *next;
3403 int ret = 0;
3404 int len;
3405 char *ctmp;
3406 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003407
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003408 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
3409 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
3410 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003411 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003412 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
3413 list_id);
3414 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003415 unsigned int id1, id2;
3416
3417 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
3418 wpa_printf(MSG_INFO, "Wrong BSS range "
3419 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003420 return 0;
3421 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003422
Dmitry Shmidtf8623282013-02-20 14:34:59 -08003423 if (*(cmd + 6) == '-')
3424 id1 = 0;
3425 else
3426 id1 = atoi(cmd + 6);
3427 ctmp++;
3428 if (*ctmp >= '0' && *ctmp <= '9')
3429 id2 = atoi(ctmp);
3430 else
3431 id2 = (unsigned int) -1;
3432 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
3433 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003434 bsslast = dl_list_last(&wpa_s->bss_id,
3435 struct wpa_bss,
3436 list_id);
3437 else {
3438 bsslast = wpa_bss_get_id(wpa_s, id2);
3439 if (bsslast == NULL && bss && id2 > id1) {
3440 struct wpa_bss *tmp = bss;
3441 for (;;) {
3442 next = tmp->list_id.next;
3443 if (next == &wpa_s->bss_id)
3444 break;
3445 tmp = dl_list_entry(
3446 next, struct wpa_bss,
3447 list_id);
3448 if (tmp->id > id2)
3449 break;
3450 bsslast = tmp;
3451 }
3452 }
3453 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003454 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003455 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003456 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003457 else if (os_strncmp(cmd, "LAST", 4) == 0)
3458 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003459 else if (os_strncmp(cmd, "ID-", 3) == 0) {
3460 i = atoi(cmd + 3);
3461 bss = wpa_bss_get_id(wpa_s, i);
3462 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
3463 i = atoi(cmd + 5);
3464 bss = wpa_bss_get_id(wpa_s, i);
3465 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003466 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003467 if (next == &wpa_s->bss_id)
3468 bss = NULL;
3469 else
3470 bss = dl_list_entry(next, struct wpa_bss,
3471 list_id);
3472 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003473#ifdef CONFIG_P2P
3474 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
3475 if (hwaddr_aton(cmd + 13, bssid) == 0)
3476 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
3477 else
3478 bss = NULL;
3479#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003480 } else if (hwaddr_aton(cmd, bssid) == 0)
3481 bss = wpa_bss_get_bssid(wpa_s, bssid);
3482 else {
3483 struct wpa_bss *tmp;
3484 i = atoi(cmd);
3485 bss = NULL;
3486 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
3487 {
3488 if (i-- == 0) {
3489 bss = tmp;
3490 break;
3491 }
3492 }
3493 }
3494
Dmitry Shmidt04949592012-07-19 12:16:46 -07003495 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
3496 mask = strtoul(ctmp + 5, NULL, 0x10);
3497 if (mask == 0)
3498 mask = WPA_BSS_MASK_ALL;
3499 }
3500
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003501 if (bss == NULL)
3502 return 0;
3503
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003504 if (bsslast == NULL)
3505 bsslast = bss;
3506 do {
3507 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
3508 ret += len;
3509 buf += len;
3510 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003511 if (bss == bsslast) {
3512 if ((mask & WPA_BSS_MASK_DELIM) && len &&
3513 (bss == dl_list_last(&wpa_s->bss_id,
3514 struct wpa_bss, list_id)))
3515 os_snprintf(buf - 5, 5, "####\n");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003516 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003517 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003518 next = bss->list_id.next;
3519 if (next == &wpa_s->bss_id)
3520 break;
3521 bss = dl_list_entry(next, struct wpa_bss, list_id);
3522 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003523
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003524 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003525}
3526
3527
3528static int wpa_supplicant_ctrl_iface_ap_scan(
3529 struct wpa_supplicant *wpa_s, char *cmd)
3530{
3531 int ap_scan = atoi(cmd);
3532 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
3533}
3534
3535
3536static int wpa_supplicant_ctrl_iface_scan_interval(
3537 struct wpa_supplicant *wpa_s, char *cmd)
3538{
3539 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003540 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003541}
3542
3543
3544static int wpa_supplicant_ctrl_iface_bss_expire_age(
3545 struct wpa_supplicant *wpa_s, char *cmd)
3546{
3547 int expire_age = atoi(cmd);
3548 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
3549}
3550
3551
3552static int wpa_supplicant_ctrl_iface_bss_expire_count(
3553 struct wpa_supplicant *wpa_s, char *cmd)
3554{
3555 int expire_count = atoi(cmd);
3556 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
3557}
3558
3559
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07003560static int wpa_supplicant_ctrl_iface_bss_flush(
3561 struct wpa_supplicant *wpa_s, char *cmd)
3562{
3563 int flush_age = atoi(cmd);
3564
3565 if (flush_age == 0)
3566 wpa_bss_flush(wpa_s);
3567 else
3568 wpa_bss_flush_by_age(wpa_s, flush_age);
3569 return 0;
3570}
3571
3572
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003573static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
3574{
3575 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
3576 /* MLME-DELETEKEYS.request */
3577 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
3578 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
3579 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
3580 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
3581#ifdef CONFIG_IEEE80211W
3582 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
3583 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
3584#endif /* CONFIG_IEEE80211W */
3585
3586 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
3587 0);
3588 /* MLME-SETPROTECTION.request(None) */
3589 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
3590 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
3591 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
3592 wpa_sm_drop_sa(wpa_s->wpa);
3593}
3594
3595
3596static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
3597 char *addr)
3598{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003599#ifdef CONFIG_NO_SCAN_PROCESSING
3600 return -1;
3601#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003602 u8 bssid[ETH_ALEN];
3603 struct wpa_bss *bss;
3604 struct wpa_ssid *ssid = wpa_s->current_ssid;
3605
3606 if (hwaddr_aton(addr, bssid)) {
3607 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
3608 "address '%s'", addr);
3609 return -1;
3610 }
3611
3612 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
3613
Dmitry Shmidt444d5672013-04-01 13:08:44 -07003614 if (!ssid) {
3615 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
3616 "configuration known for the target AP");
3617 return -1;
3618 }
3619
3620 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003621 if (!bss) {
3622 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
3623 "from BSS table");
3624 return -1;
3625 }
3626
3627 /*
3628 * TODO: Find best network configuration block from configuration to
3629 * allow roaming to other networks
3630 */
3631
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003632 wpa_s->reassociate = 1;
3633 wpa_supplicant_connect(wpa_s, bss, ssid);
3634
3635 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003636#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003637}
3638
3639
3640#ifdef CONFIG_P2P
3641static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
3642{
3643 unsigned int timeout = atoi(cmd);
3644 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003645 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
3646 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003647 unsigned int search_delay;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003648
3649 if (os_strstr(cmd, "type=social"))
3650 type = P2P_FIND_ONLY_SOCIAL;
3651 else if (os_strstr(cmd, "type=progressive"))
3652 type = P2P_FIND_PROGRESSIVE;
3653
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003654 pos = os_strstr(cmd, "dev_id=");
3655 if (pos) {
3656 pos += 7;
3657 if (hwaddr_aton(pos, dev_id))
3658 return -1;
3659 _dev_id = dev_id;
3660 }
3661
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003662 pos = os_strstr(cmd, "delay=");
3663 if (pos) {
3664 pos += 6;
3665 search_delay = atoi(pos);
3666 } else
3667 search_delay = wpas_p2p_search_delay(wpa_s);
3668
3669 return wpas_p2p_find(wpa_s, timeout, type, 0, NULL, _dev_id,
3670 search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003671}
3672
3673
3674static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
3675 char *buf, size_t buflen)
3676{
3677 u8 addr[ETH_ALEN];
3678 char *pos, *pos2;
3679 char *pin = NULL;
3680 enum p2p_wps_method wps_method;
3681 int new_pin;
3682 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003683 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003684 int join;
3685 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003686 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003687 int go_intent = -1;
3688 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003689 int pd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003690 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003691
Dmitry Shmidt04949592012-07-19 12:16:46 -07003692 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad]
3693 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003694 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
3695 * [ht40] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003696
3697 if (hwaddr_aton(cmd, addr))
3698 return -1;
3699
3700 pos = cmd + 17;
3701 if (*pos != ' ')
3702 return -1;
3703 pos++;
3704
3705 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003706 pos2 = os_strstr(pos, " persistent=");
3707 if (pos2) {
3708 struct wpa_ssid *ssid;
3709 persistent_id = atoi(pos2 + 12);
3710 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
3711 if (ssid == NULL || ssid->disabled != 2 ||
3712 ssid->mode != WPAS_MODE_P2P_GO) {
3713 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3714 "SSID id=%d for persistent P2P group (GO)",
3715 persistent_id);
3716 return -1;
3717 }
3718 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003719 join = os_strstr(pos, " join") != NULL;
3720 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003721 automatic = os_strstr(pos, " auto") != NULL;
3722 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003723 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003724
3725 pos2 = os_strstr(pos, " go_intent=");
3726 if (pos2) {
3727 pos2 += 11;
3728 go_intent = atoi(pos2);
3729 if (go_intent < 0 || go_intent > 15)
3730 return -1;
3731 }
3732
3733 pos2 = os_strstr(pos, " freq=");
3734 if (pos2) {
3735 pos2 += 6;
3736 freq = atoi(pos2);
3737 if (freq <= 0)
3738 return -1;
3739 }
3740
3741 if (os_strncmp(pos, "pin", 3) == 0) {
3742 /* Request random PIN (to be displayed) and enable the PIN */
3743 wps_method = WPS_PIN_DISPLAY;
3744 } else if (os_strncmp(pos, "pbc", 3) == 0) {
3745 wps_method = WPS_PBC;
3746 } else {
3747 pin = pos;
3748 pos = os_strchr(pin, ' ');
3749 wps_method = WPS_PIN_KEYPAD;
3750 if (pos) {
3751 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003752 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003753 wps_method = WPS_PIN_DISPLAY;
3754 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003755 if (!wps_pin_str_valid(pin)) {
3756 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
3757 return 17;
3758 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003759 }
3760
3761 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003762 persistent_group, automatic, join,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003763 auth, go_intent, freq, persistent_id, pd,
3764 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003765 if (new_pin == -2) {
3766 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
3767 return 25;
3768 }
3769 if (new_pin == -3) {
3770 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
3771 return 25;
3772 }
3773 if (new_pin < 0)
3774 return -1;
3775 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
3776 ret = os_snprintf(buf, buflen, "%08d", new_pin);
3777 if (ret < 0 || (size_t) ret >= buflen)
3778 return -1;
3779 return ret;
3780 }
3781
3782 os_memcpy(buf, "OK\n", 3);
3783 return 3;
3784}
3785
3786
3787static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
3788{
3789 unsigned int timeout = atoi(cmd);
3790 return wpas_p2p_listen(wpa_s, timeout);
3791}
3792
3793
3794static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
3795{
3796 u8 addr[ETH_ALEN];
3797 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003798 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003799
Dmitry Shmidt04949592012-07-19 12:16:46 -07003800 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003801
3802 if (hwaddr_aton(cmd, addr))
3803 return -1;
3804
3805 pos = cmd + 17;
3806 if (*pos != ' ')
3807 return -1;
3808 pos++;
3809
Dmitry Shmidt04949592012-07-19 12:16:46 -07003810 if (os_strstr(pos, " join") != NULL)
3811 use = WPAS_P2P_PD_FOR_JOIN;
3812 else if (os_strstr(pos, " auto") != NULL)
3813 use = WPAS_P2P_PD_AUTO;
3814
3815 return wpas_p2p_prov_disc(wpa_s, addr, pos, use);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003816}
3817
3818
3819static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
3820 size_t buflen)
3821{
3822 struct wpa_ssid *ssid = wpa_s->current_ssid;
3823
3824 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3825 ssid->passphrase == NULL)
3826 return -1;
3827
3828 os_strlcpy(buf, ssid->passphrase, buflen);
3829 return os_strlen(buf);
3830}
3831
3832
3833static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
3834 char *buf, size_t buflen)
3835{
3836 u64 ref;
3837 int res;
3838 u8 dst_buf[ETH_ALEN], *dst;
3839 struct wpabuf *tlvs;
3840 char *pos;
3841 size_t len;
3842
3843 if (hwaddr_aton(cmd, dst_buf))
3844 return -1;
3845 dst = dst_buf;
3846 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
3847 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
3848 dst = NULL;
3849 pos = cmd + 17;
3850 if (*pos != ' ')
3851 return -1;
3852 pos++;
3853
3854 if (os_strncmp(pos, "upnp ", 5) == 0) {
3855 u8 version;
3856 pos += 5;
3857 if (hexstr2bin(pos, &version, 1) < 0)
3858 return -1;
3859 pos += 2;
3860 if (*pos != ' ')
3861 return -1;
3862 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003863 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003864#ifdef CONFIG_WIFI_DISPLAY
3865 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
3866 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
3867#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003868 } else {
3869 len = os_strlen(pos);
3870 if (len & 1)
3871 return -1;
3872 len /= 2;
3873 tlvs = wpabuf_alloc(len);
3874 if (tlvs == NULL)
3875 return -1;
3876 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
3877 wpabuf_free(tlvs);
3878 return -1;
3879 }
3880
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003881 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003882 wpabuf_free(tlvs);
3883 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003884 if (ref == 0)
3885 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003886 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
3887 if (res < 0 || (unsigned) res >= buflen)
3888 return -1;
3889 return res;
3890}
3891
3892
3893static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
3894 char *cmd)
3895{
3896 long long unsigned val;
3897 u64 req;
3898 if (sscanf(cmd, "%llx", &val) != 1)
3899 return -1;
3900 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003901 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003902}
3903
3904
3905static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
3906{
3907 int freq;
3908 u8 dst[ETH_ALEN];
3909 u8 dialog_token;
3910 struct wpabuf *resp_tlvs;
3911 char *pos, *pos2;
3912 size_t len;
3913
3914 pos = os_strchr(cmd, ' ');
3915 if (pos == NULL)
3916 return -1;
3917 *pos++ = '\0';
3918 freq = atoi(cmd);
3919 if (freq == 0)
3920 return -1;
3921
3922 if (hwaddr_aton(pos, dst))
3923 return -1;
3924 pos += 17;
3925 if (*pos != ' ')
3926 return -1;
3927 pos++;
3928
3929 pos2 = os_strchr(pos, ' ');
3930 if (pos2 == NULL)
3931 return -1;
3932 *pos2++ = '\0';
3933 dialog_token = atoi(pos);
3934
3935 len = os_strlen(pos2);
3936 if (len & 1)
3937 return -1;
3938 len /= 2;
3939 resp_tlvs = wpabuf_alloc(len);
3940 if (resp_tlvs == NULL)
3941 return -1;
3942 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
3943 wpabuf_free(resp_tlvs);
3944 return -1;
3945 }
3946
3947 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
3948 wpabuf_free(resp_tlvs);
3949 return 0;
3950}
3951
3952
3953static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
3954 char *cmd)
3955{
Dmitry Shmidt04949592012-07-19 12:16:46 -07003956 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
3957 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003958 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
3959 return 0;
3960}
3961
3962
3963static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
3964 char *cmd)
3965{
3966 char *pos;
3967 size_t len;
3968 struct wpabuf *query, *resp;
3969
3970 pos = os_strchr(cmd, ' ');
3971 if (pos == NULL)
3972 return -1;
3973 *pos++ = '\0';
3974
3975 len = os_strlen(cmd);
3976 if (len & 1)
3977 return -1;
3978 len /= 2;
3979 query = wpabuf_alloc(len);
3980 if (query == NULL)
3981 return -1;
3982 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
3983 wpabuf_free(query);
3984 return -1;
3985 }
3986
3987 len = os_strlen(pos);
3988 if (len & 1) {
3989 wpabuf_free(query);
3990 return -1;
3991 }
3992 len /= 2;
3993 resp = wpabuf_alloc(len);
3994 if (resp == NULL) {
3995 wpabuf_free(query);
3996 return -1;
3997 }
3998 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
3999 wpabuf_free(query);
4000 wpabuf_free(resp);
4001 return -1;
4002 }
4003
4004 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
4005 wpabuf_free(query);
4006 wpabuf_free(resp);
4007 return -1;
4008 }
4009 return 0;
4010}
4011
4012
4013static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4014{
4015 char *pos;
4016 u8 version;
4017
4018 pos = os_strchr(cmd, ' ');
4019 if (pos == NULL)
4020 return -1;
4021 *pos++ = '\0';
4022
4023 if (hexstr2bin(cmd, &version, 1) < 0)
4024 return -1;
4025
4026 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
4027}
4028
4029
4030static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
4031{
4032 char *pos;
4033
4034 pos = os_strchr(cmd, ' ');
4035 if (pos == NULL)
4036 return -1;
4037 *pos++ = '\0';
4038
4039 if (os_strcmp(cmd, "bonjour") == 0)
4040 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
4041 if (os_strcmp(cmd, "upnp") == 0)
4042 return p2p_ctrl_service_add_upnp(wpa_s, pos);
4043 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4044 return -1;
4045}
4046
4047
4048static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
4049 char *cmd)
4050{
4051 size_t len;
4052 struct wpabuf *query;
4053 int ret;
4054
4055 len = os_strlen(cmd);
4056 if (len & 1)
4057 return -1;
4058 len /= 2;
4059 query = wpabuf_alloc(len);
4060 if (query == NULL)
4061 return -1;
4062 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
4063 wpabuf_free(query);
4064 return -1;
4065 }
4066
4067 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
4068 wpabuf_free(query);
4069 return ret;
4070}
4071
4072
4073static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4074{
4075 char *pos;
4076 u8 version;
4077
4078 pos = os_strchr(cmd, ' ');
4079 if (pos == NULL)
4080 return -1;
4081 *pos++ = '\0';
4082
4083 if (hexstr2bin(cmd, &version, 1) < 0)
4084 return -1;
4085
4086 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
4087}
4088
4089
4090static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
4091{
4092 char *pos;
4093
4094 pos = os_strchr(cmd, ' ');
4095 if (pos == NULL)
4096 return -1;
4097 *pos++ = '\0';
4098
4099 if (os_strcmp(cmd, "bonjour") == 0)
4100 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
4101 if (os_strcmp(cmd, "upnp") == 0)
4102 return p2p_ctrl_service_del_upnp(wpa_s, pos);
4103 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4104 return -1;
4105}
4106
4107
4108static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
4109{
4110 u8 addr[ETH_ALEN];
4111
4112 /* <addr> */
4113
4114 if (hwaddr_aton(cmd, addr))
4115 return -1;
4116
4117 return wpas_p2p_reject(wpa_s, addr);
4118}
4119
4120
4121static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
4122{
4123 char *pos;
4124 int id;
4125 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004126 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004127 int freq = 0, pref_freq = 0;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004128 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004129
4130 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004131 pos = os_strstr(cmd, " peer=");
4132 if (pos) {
4133 pos += 6;
4134 if (hwaddr_aton(pos, peer))
4135 return -1;
4136 _peer = peer;
4137 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004138 ssid = wpa_config_get_network(wpa_s->conf, id);
4139 if (ssid == NULL || ssid->disabled != 2) {
4140 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4141 "for persistent P2P group",
4142 id);
4143 return -1;
4144 }
4145
Jouni Malinen31be0a42012-08-31 21:20:51 +03004146 pos = os_strstr(cmd, " freq=");
4147 if (pos) {
4148 pos += 6;
4149 freq = atoi(pos);
4150 if (freq <= 0)
4151 return -1;
4152 }
4153
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004154 pos = os_strstr(cmd, " pref=");
4155 if (pos) {
4156 pos += 6;
4157 pref_freq = atoi(pos);
4158 if (pref_freq <= 0)
4159 return -1;
4160 }
4161
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004162 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004163
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004164 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, ht40, pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004165}
4166
4167
4168static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
4169{
4170 char *pos;
4171 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
4172
4173 pos = os_strstr(cmd, " peer=");
4174 if (!pos)
4175 return -1;
4176
4177 *pos = '\0';
4178 pos += 6;
4179 if (hwaddr_aton(pos, peer)) {
4180 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
4181 return -1;
4182 }
4183
4184 pos = os_strstr(pos, " go_dev_addr=");
4185 if (pos) {
4186 pos += 13;
4187 if (hwaddr_aton(pos, go_dev_addr)) {
4188 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
4189 pos);
4190 return -1;
4191 }
4192 go_dev = go_dev_addr;
4193 }
4194
4195 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
4196}
4197
4198
4199static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
4200{
4201 if (os_strncmp(cmd, "persistent=", 11) == 0)
4202 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
4203 if (os_strncmp(cmd, "group=", 6) == 0)
4204 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
4205
4206 return -1;
4207}
4208
4209
4210static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004211 char *cmd, int freq, int ht40)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004212{
4213 int id;
4214 struct wpa_ssid *ssid;
4215
4216 id = atoi(cmd);
4217 ssid = wpa_config_get_network(wpa_s->conf, id);
4218 if (ssid == NULL || ssid->disabled != 2) {
4219 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4220 "for persistent P2P group",
4221 id);
4222 return -1;
4223 }
4224
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004225 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq, ht40, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004226}
4227
4228
4229static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
4230{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004231 int freq = 0, ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004232 char *pos;
4233
4234 pos = os_strstr(cmd, "freq=");
4235 if (pos)
4236 freq = atoi(pos + 5);
4237
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004238 ht40 = (os_strstr(cmd, "ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004239
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004240 if (os_strncmp(cmd, "persistent=", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004241 return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq,
4242 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004243 if (os_strcmp(cmd, "persistent") == 0 ||
4244 os_strncmp(cmd, "persistent ", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004245 return wpas_p2p_group_add(wpa_s, 1, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004246 if (os_strncmp(cmd, "freq=", 5) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004247 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
4248 if (ht40)
4249 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004250
4251 wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
4252 cmd);
4253 return -1;
4254}
4255
4256
4257static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
4258 char *buf, size_t buflen)
4259{
4260 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004261 int next, res;
4262 const struct p2p_peer_info *info;
4263 char *pos, *end;
4264 char devtype[WPS_DEV_TYPE_BUFSIZE];
4265 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004266 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004267
4268 if (!wpa_s->global->p2p)
4269 return -1;
4270
4271 if (os_strcmp(cmd, "FIRST") == 0) {
4272 addr_ptr = NULL;
4273 next = 0;
4274 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4275 if (hwaddr_aton(cmd + 5, addr) < 0)
4276 return -1;
4277 addr_ptr = addr;
4278 next = 1;
4279 } else {
4280 if (hwaddr_aton(cmd, addr) < 0)
4281 return -1;
4282 addr_ptr = addr;
4283 next = 0;
4284 }
4285
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004286 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
4287 if (info == NULL)
4288 return -1;
4289
4290 pos = buf;
4291 end = buf + buflen;
4292
4293 res = os_snprintf(pos, end - pos, MACSTR "\n"
4294 "pri_dev_type=%s\n"
4295 "device_name=%s\n"
4296 "manufacturer=%s\n"
4297 "model_name=%s\n"
4298 "model_number=%s\n"
4299 "serial_number=%s\n"
4300 "config_methods=0x%x\n"
4301 "dev_capab=0x%x\n"
4302 "group_capab=0x%x\n"
4303 "level=%d\n",
4304 MAC2STR(info->p2p_device_addr),
4305 wps_dev_type_bin2str(info->pri_dev_type,
4306 devtype, sizeof(devtype)),
4307 info->device_name,
4308 info->manufacturer,
4309 info->model_name,
4310 info->model_number,
4311 info->serial_number,
4312 info->config_methods,
4313 info->dev_capab,
4314 info->group_capab,
4315 info->level);
4316 if (res < 0 || res >= end - pos)
4317 return pos - buf;
4318 pos += res;
4319
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004320 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
4321 {
4322 const u8 *t;
4323 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
4324 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
4325 wps_dev_type_bin2str(t, devtype,
4326 sizeof(devtype)));
4327 if (res < 0 || res >= end - pos)
4328 return pos - buf;
4329 pos += res;
4330 }
4331
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004332 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004333 if (ssid) {
4334 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
4335 if (res < 0 || res >= end - pos)
4336 return pos - buf;
4337 pos += res;
4338 }
4339
4340 res = p2p_get_peer_info_txt(info, pos, end - pos);
4341 if (res < 0)
4342 return pos - buf;
4343 pos += res;
4344
4345 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004346}
4347
4348
Dmitry Shmidt04949592012-07-19 12:16:46 -07004349static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
4350 const char *param)
4351{
4352 struct wpa_freq_range *freq = NULL, *n;
4353 unsigned int count = 0, i;
4354 const char *pos, *pos2, *pos3;
4355
4356 if (wpa_s->global->p2p == NULL)
4357 return -1;
4358
4359 /*
4360 * param includes comma separated frequency range.
4361 * For example: 2412-2432,2462,5000-6000
4362 */
4363 pos = param;
4364 while (pos && pos[0]) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004365 n = os_realloc_array(freq, count + 1,
4366 sizeof(struct wpa_freq_range));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004367 if (n == NULL) {
4368 os_free(freq);
4369 return -1;
4370 }
4371 freq = n;
4372 freq[count].min = atoi(pos);
4373 pos2 = os_strchr(pos, '-');
4374 pos3 = os_strchr(pos, ',');
4375 if (pos2 && (!pos3 || pos2 < pos3)) {
4376 pos2++;
4377 freq[count].max = atoi(pos2);
4378 } else
4379 freq[count].max = freq[count].min;
4380 pos = pos3;
4381 if (pos)
4382 pos++;
4383 count++;
4384 }
4385
4386 for (i = 0; i < count; i++) {
4387 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
4388 freq[i].min, freq[i].max);
4389 }
4390
4391 os_free(wpa_s->global->p2p_disallow_freq);
4392 wpa_s->global->p2p_disallow_freq = freq;
4393 wpa_s->global->num_p2p_disallow_freq = count;
4394 wpas_p2p_update_channel_list(wpa_s);
4395 return 0;
4396}
4397
4398
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004399static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
4400{
4401 char *param;
4402
4403 if (wpa_s->global->p2p == NULL)
4404 return -1;
4405
4406 param = os_strchr(cmd, ' ');
4407 if (param == NULL)
4408 return -1;
4409 *param++ = '\0';
4410
4411 if (os_strcmp(cmd, "discoverability") == 0) {
4412 p2p_set_client_discoverability(wpa_s->global->p2p,
4413 atoi(param));
4414 return 0;
4415 }
4416
4417 if (os_strcmp(cmd, "managed") == 0) {
4418 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
4419 return 0;
4420 }
4421
4422 if (os_strcmp(cmd, "listen_channel") == 0) {
4423 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
4424 atoi(param));
4425 }
4426
4427 if (os_strcmp(cmd, "ssid_postfix") == 0) {
4428 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
4429 os_strlen(param));
4430 }
4431
4432 if (os_strcmp(cmd, "noa") == 0) {
4433 char *pos;
4434 int count, start, duration;
4435 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
4436 count = atoi(param);
4437 pos = os_strchr(param, ',');
4438 if (pos == NULL)
4439 return -1;
4440 pos++;
4441 start = atoi(pos);
4442 pos = os_strchr(pos, ',');
4443 if (pos == NULL)
4444 return -1;
4445 pos++;
4446 duration = atoi(pos);
4447 if (count < 0 || count > 255 || start < 0 || duration < 0)
4448 return -1;
4449 if (count == 0 && duration > 0)
4450 return -1;
4451 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
4452 "start=%d duration=%d", count, start, duration);
4453 return wpas_p2p_set_noa(wpa_s, count, start, duration);
4454 }
4455
4456 if (os_strcmp(cmd, "ps") == 0)
4457 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
4458
4459 if (os_strcmp(cmd, "oppps") == 0)
4460 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
4461
4462 if (os_strcmp(cmd, "ctwindow") == 0)
4463 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
4464
4465 if (os_strcmp(cmd, "disabled") == 0) {
4466 wpa_s->global->p2p_disabled = atoi(param);
4467 wpa_printf(MSG_DEBUG, "P2P functionality %s",
4468 wpa_s->global->p2p_disabled ?
4469 "disabled" : "enabled");
4470 if (wpa_s->global->p2p_disabled) {
4471 wpas_p2p_stop_find(wpa_s);
4472 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4473 p2p_flush(wpa_s->global->p2p);
4474 }
4475 return 0;
4476 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004477
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004478 if (os_strcmp(cmd, "conc_pref") == 0) {
4479 if (os_strcmp(param, "sta") == 0)
4480 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
4481 else if (os_strcmp(param, "p2p") == 0)
4482 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004483 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004484 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004485 return -1;
4486 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004487 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07004488 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004489 return 0;
4490 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004491
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004492 if (os_strcmp(cmd, "force_long_sd") == 0) {
4493 wpa_s->force_long_sd = atoi(param);
4494 return 0;
4495 }
4496
4497 if (os_strcmp(cmd, "peer_filter") == 0) {
4498 u8 addr[ETH_ALEN];
4499 if (hwaddr_aton(param, addr))
4500 return -1;
4501 p2p_set_peer_filter(wpa_s->global->p2p, addr);
4502 return 0;
4503 }
4504
4505 if (os_strcmp(cmd, "cross_connect") == 0)
4506 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
4507
4508 if (os_strcmp(cmd, "go_apsd") == 0) {
4509 if (os_strcmp(param, "disable") == 0)
4510 wpa_s->set_ap_uapsd = 0;
4511 else {
4512 wpa_s->set_ap_uapsd = 1;
4513 wpa_s->ap_uapsd = atoi(param);
4514 }
4515 return 0;
4516 }
4517
4518 if (os_strcmp(cmd, "client_apsd") == 0) {
4519 if (os_strcmp(param, "disable") == 0)
4520 wpa_s->set_sta_uapsd = 0;
4521 else {
4522 int be, bk, vi, vo;
4523 char *pos;
4524 /* format: BE,BK,VI,VO;max SP Length */
4525 be = atoi(param);
4526 pos = os_strchr(param, ',');
4527 if (pos == NULL)
4528 return -1;
4529 pos++;
4530 bk = atoi(pos);
4531 pos = os_strchr(pos, ',');
4532 if (pos == NULL)
4533 return -1;
4534 pos++;
4535 vi = atoi(pos);
4536 pos = os_strchr(pos, ',');
4537 if (pos == NULL)
4538 return -1;
4539 pos++;
4540 vo = atoi(pos);
4541 /* ignore max SP Length for now */
4542
4543 wpa_s->set_sta_uapsd = 1;
4544 wpa_s->sta_uapsd = 0;
4545 if (be)
4546 wpa_s->sta_uapsd |= BIT(0);
4547 if (bk)
4548 wpa_s->sta_uapsd |= BIT(1);
4549 if (vi)
4550 wpa_s->sta_uapsd |= BIT(2);
4551 if (vo)
4552 wpa_s->sta_uapsd |= BIT(3);
4553 }
4554 return 0;
4555 }
4556
Dmitry Shmidt04949592012-07-19 12:16:46 -07004557 if (os_strcmp(cmd, "disallow_freq") == 0)
4558 return p2p_ctrl_disallow_freq(wpa_s, param);
4559
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004560 if (os_strcmp(cmd, "disc_int") == 0) {
4561 int min_disc_int, max_disc_int, max_disc_tu;
4562 char *pos;
4563
4564 pos = param;
4565
4566 min_disc_int = atoi(pos);
4567 pos = os_strchr(pos, ' ');
4568 if (pos == NULL)
4569 return -1;
4570 *pos++ = '\0';
4571
4572 max_disc_int = atoi(pos);
4573 pos = os_strchr(pos, ' ');
4574 if (pos == NULL)
4575 return -1;
4576 *pos++ = '\0';
4577
4578 max_disc_tu = atoi(pos);
4579
4580 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
4581 max_disc_int, max_disc_tu);
4582 }
4583
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07004584 if (os_strcmp(cmd, "per_sta_psk") == 0) {
4585 wpa_s->global->p2p_per_sta_psk = !!atoi(param);
4586 return 0;
4587 }
4588
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004589 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
4590 cmd);
4591
4592 return -1;
4593}
4594
4595
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004596static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
4597{
4598 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4599 wpa_s->force_long_sd = 0;
4600 if (wpa_s->global->p2p)
4601 p2p_flush(wpa_s->global->p2p);
4602}
4603
4604
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004605static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
4606{
4607 char *pos, *pos2;
4608 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
4609
4610 if (cmd[0]) {
4611 pos = os_strchr(cmd, ' ');
4612 if (pos == NULL)
4613 return -1;
4614 *pos++ = '\0';
4615 dur1 = atoi(cmd);
4616
4617 pos2 = os_strchr(pos, ' ');
4618 if (pos2)
4619 *pos2++ = '\0';
4620 int1 = atoi(pos);
4621 } else
4622 pos2 = NULL;
4623
4624 if (pos2) {
4625 pos = os_strchr(pos2, ' ');
4626 if (pos == NULL)
4627 return -1;
4628 *pos++ = '\0';
4629 dur2 = atoi(pos2);
4630 int2 = atoi(pos);
4631 }
4632
4633 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
4634}
4635
4636
4637static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
4638{
4639 char *pos;
4640 unsigned int period = 0, interval = 0;
4641
4642 if (cmd[0]) {
4643 pos = os_strchr(cmd, ' ');
4644 if (pos == NULL)
4645 return -1;
4646 *pos++ = '\0';
4647 period = atoi(cmd);
4648 interval = atoi(pos);
4649 }
4650
4651 return wpas_p2p_ext_listen(wpa_s, period, interval);
4652}
4653
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07004654
4655static int p2p_ctrl_remove_client(struct wpa_supplicant *wpa_s, const char *cmd)
4656{
4657 const char *pos;
4658 u8 peer[ETH_ALEN];
4659 int iface_addr = 0;
4660
4661 pos = cmd;
4662 if (os_strncmp(pos, "iface=", 6) == 0) {
4663 iface_addr = 1;
4664 pos += 6;
4665 }
4666 if (hwaddr_aton(pos, peer))
4667 return -1;
4668
4669 wpas_p2p_remove_client(wpa_s, peer, iface_addr);
4670 return 0;
4671}
4672
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004673#endif /* CONFIG_P2P */
4674
4675
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004676#ifdef CONFIG_INTERWORKING
4677static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst)
4678{
4679 u8 bssid[ETH_ALEN];
4680 struct wpa_bss *bss;
4681
4682 if (hwaddr_aton(dst, bssid)) {
4683 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
4684 return -1;
4685 }
4686
4687 bss = wpa_bss_get_bssid(wpa_s, bssid);
4688 if (bss == NULL) {
4689 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
4690 MAC2STR(bssid));
4691 return -1;
4692 }
4693
4694 return interworking_connect(wpa_s, bss);
4695}
4696
4697
4698static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
4699{
4700 u8 dst_addr[ETH_ALEN];
4701 int used;
4702 char *pos;
4703#define MAX_ANQP_INFO_ID 100
4704 u16 id[MAX_ANQP_INFO_ID];
4705 size_t num_id = 0;
4706
4707 used = hwaddr_aton2(dst, dst_addr);
4708 if (used < 0)
4709 return -1;
4710 pos = dst + used;
4711 while (num_id < MAX_ANQP_INFO_ID) {
4712 id[num_id] = atoi(pos);
4713 if (id[num_id])
4714 num_id++;
4715 pos = os_strchr(pos + 1, ',');
4716 if (pos == NULL)
4717 break;
4718 pos++;
4719 }
4720
4721 if (num_id == 0)
4722 return -1;
4723
4724 return anqp_send_req(wpa_s, dst_addr, id, num_id);
4725}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004726
4727
4728static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
4729{
4730 u8 dst_addr[ETH_ALEN];
4731 struct wpabuf *advproto, *query = NULL;
4732 int used, ret = -1;
4733 char *pos, *end;
4734 size_t len;
4735
4736 used = hwaddr_aton2(cmd, dst_addr);
4737 if (used < 0)
4738 return -1;
4739
4740 pos = cmd + used;
4741 while (*pos == ' ')
4742 pos++;
4743
4744 /* Advertisement Protocol ID */
4745 end = os_strchr(pos, ' ');
4746 if (end)
4747 len = end - pos;
4748 else
4749 len = os_strlen(pos);
4750 if (len & 0x01)
4751 return -1;
4752 len /= 2;
4753 if (len == 0)
4754 return -1;
4755 advproto = wpabuf_alloc(len);
4756 if (advproto == NULL)
4757 return -1;
4758 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
4759 goto fail;
4760
4761 if (end) {
4762 /* Optional Query Request */
4763 pos = end + 1;
4764 while (*pos == ' ')
4765 pos++;
4766
4767 len = os_strlen(pos);
4768 if (len) {
4769 if (len & 0x01)
4770 goto fail;
4771 len /= 2;
4772 if (len == 0)
4773 goto fail;
4774 query = wpabuf_alloc(len);
4775 if (query == NULL)
4776 goto fail;
4777 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
4778 goto fail;
4779 }
4780 }
4781
4782 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
4783
4784fail:
4785 wpabuf_free(advproto);
4786 wpabuf_free(query);
4787
4788 return ret;
4789}
4790
4791
4792static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
4793 size_t buflen)
4794{
4795 u8 addr[ETH_ALEN];
4796 int dialog_token;
4797 int used;
4798 char *pos;
4799 size_t resp_len, start, requested_len;
4800
4801 if (!wpa_s->last_gas_resp)
4802 return -1;
4803
4804 used = hwaddr_aton2(cmd, addr);
4805 if (used < 0)
4806 return -1;
4807
4808 pos = cmd + used;
4809 while (*pos == ' ')
4810 pos++;
4811 dialog_token = atoi(pos);
4812
4813 if (os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) != 0 ||
4814 dialog_token != wpa_s->last_gas_dialog_token)
4815 return -1;
4816
4817 resp_len = wpabuf_len(wpa_s->last_gas_resp);
4818 start = 0;
4819 requested_len = resp_len;
4820
4821 pos = os_strchr(pos, ' ');
4822 if (pos) {
4823 start = atoi(pos);
4824 if (start > resp_len)
4825 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4826 pos = os_strchr(pos, ',');
4827 if (pos == NULL)
4828 return -1;
4829 pos++;
4830 requested_len = atoi(pos);
4831 if (start + requested_len > resp_len)
4832 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4833 }
4834
4835 if (requested_len * 2 + 1 > buflen)
4836 return os_snprintf(buf, buflen, "FAIL-Too long response");
4837
4838 return wpa_snprintf_hex(buf, buflen,
4839 wpabuf_head_u8(wpa_s->last_gas_resp) + start,
4840 requested_len);
4841}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004842#endif /* CONFIG_INTERWORKING */
4843
4844
Dmitry Shmidt04949592012-07-19 12:16:46 -07004845#ifdef CONFIG_HS20
4846
4847static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
4848{
4849 u8 dst_addr[ETH_ALEN];
4850 int used;
4851 char *pos;
4852 u32 subtypes = 0;
4853
4854 used = hwaddr_aton2(dst, dst_addr);
4855 if (used < 0)
4856 return -1;
4857 pos = dst + used;
4858 for (;;) {
4859 int num = atoi(pos);
4860 if (num <= 0 || num > 31)
4861 return -1;
4862 subtypes |= BIT(num);
4863 pos = os_strchr(pos + 1, ',');
4864 if (pos == NULL)
4865 break;
4866 pos++;
4867 }
4868
4869 if (subtypes == 0)
4870 return -1;
4871
4872 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0);
4873}
4874
4875
4876static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4877 const u8 *addr, const char *realm)
4878{
4879 u8 *buf;
4880 size_t rlen, len;
4881 int ret;
4882
4883 rlen = os_strlen(realm);
4884 len = 3 + rlen;
4885 buf = os_malloc(len);
4886 if (buf == NULL)
4887 return -1;
4888 buf[0] = 1; /* NAI Home Realm Count */
4889 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
4890 buf[2] = rlen;
4891 os_memcpy(buf + 3, realm, rlen);
4892
4893 ret = hs20_anqp_send_req(wpa_s, addr,
4894 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4895 buf, len);
4896
4897 os_free(buf);
4898
4899 return ret;
4900}
4901
4902
4903static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4904 char *dst)
4905{
4906 struct wpa_cred *cred = wpa_s->conf->cred;
4907 u8 dst_addr[ETH_ALEN];
4908 int used;
4909 u8 *buf;
4910 size_t len;
4911 int ret;
4912
4913 used = hwaddr_aton2(dst, dst_addr);
4914 if (used < 0)
4915 return -1;
4916
4917 while (dst[used] == ' ')
4918 used++;
4919 if (os_strncmp(dst + used, "realm=", 6) == 0)
4920 return hs20_nai_home_realm_list(wpa_s, dst_addr,
4921 dst + used + 6);
4922
4923 len = os_strlen(dst + used);
4924
4925 if (len == 0 && cred && cred->realm)
4926 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
4927
4928 if (len % 1)
4929 return -1;
4930 len /= 2;
4931 buf = os_malloc(len);
4932 if (buf == NULL)
4933 return -1;
4934 if (hexstr2bin(dst + used, buf, len) < 0) {
4935 os_free(buf);
4936 return -1;
4937 }
4938
4939 ret = hs20_anqp_send_req(wpa_s, dst_addr,
4940 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4941 buf, len);
4942 os_free(buf);
4943
4944 return ret;
4945}
4946
4947#endif /* CONFIG_HS20 */
4948
4949
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004950static int wpa_supplicant_ctrl_iface_sta_autoconnect(
4951 struct wpa_supplicant *wpa_s, char *cmd)
4952{
4953 wpa_s->auto_reconnect_disabled = atoi(cmd) == 0 ? 1 : 0;
4954 return 0;
4955}
4956
4957
Dmitry Shmidt04949592012-07-19 12:16:46 -07004958#ifdef CONFIG_AUTOSCAN
4959
4960static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
4961 char *cmd)
4962{
4963 enum wpa_states state = wpa_s->wpa_state;
4964 char *new_params = NULL;
4965
4966 if (os_strlen(cmd) > 0) {
4967 new_params = os_strdup(cmd);
4968 if (new_params == NULL)
4969 return -1;
4970 }
4971
4972 os_free(wpa_s->conf->autoscan);
4973 wpa_s->conf->autoscan = new_params;
4974
4975 if (wpa_s->conf->autoscan == NULL)
4976 autoscan_deinit(wpa_s);
4977 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
4978 autoscan_init(wpa_s, 1);
4979 else if (state == WPA_SCANNING)
4980 wpa_supplicant_reinit_autoscan(wpa_s);
4981
4982 return 0;
4983}
4984
4985#endif /* CONFIG_AUTOSCAN */
4986
4987
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004988#ifdef CONFIG_WNM
4989
4990static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
4991{
4992 int enter;
4993 int intval = 0;
4994 char *pos;
4995 int ret;
4996 struct wpabuf *tfs_req = NULL;
4997
4998 if (os_strncmp(cmd, "enter", 5) == 0)
4999 enter = 1;
5000 else if (os_strncmp(cmd, "exit", 4) == 0)
5001 enter = 0;
5002 else
5003 return -1;
5004
5005 pos = os_strstr(cmd, " interval=");
5006 if (pos)
5007 intval = atoi(pos + 10);
5008
5009 pos = os_strstr(cmd, " tfs_req=");
5010 if (pos) {
5011 char *end;
5012 size_t len;
5013 pos += 9;
5014 end = os_strchr(pos, ' ');
5015 if (end)
5016 len = end - pos;
5017 else
5018 len = os_strlen(pos);
5019 if (len & 1)
5020 return -1;
5021 len /= 2;
5022 tfs_req = wpabuf_alloc(len);
5023 if (tfs_req == NULL)
5024 return -1;
5025 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
5026 wpabuf_free(tfs_req);
5027 return -1;
5028 }
5029 }
5030
5031 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
5032 WNM_SLEEP_MODE_EXIT, intval,
5033 tfs_req);
5034 wpabuf_free(tfs_req);
5035
5036 return ret;
5037}
5038
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005039
5040static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
5041{
5042 int query_reason;
5043
5044 query_reason = atoi(cmd);
5045
5046 wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
5047 query_reason);
5048
5049 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
5050}
5051
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005052#endif /* CONFIG_WNM */
5053
5054
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005055/* Get string representation of channel width */
5056static const char * channel_width_name(enum chan_width width)
5057{
5058 switch (width) {
5059 case CHAN_WIDTH_20_NOHT:
5060 return "20 MHz (no HT)";
5061 case CHAN_WIDTH_20:
5062 return "20 MHz";
5063 case CHAN_WIDTH_40:
5064 return "40 MHz";
5065 case CHAN_WIDTH_80:
5066 return "80 MHz";
5067 case CHAN_WIDTH_80P80:
5068 return "80+80 MHz";
5069 case CHAN_WIDTH_160:
5070 return "160 MHz";
5071 default:
5072 return "unknown";
5073 }
5074}
5075
5076
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005077static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
5078 size_t buflen)
5079{
5080 struct wpa_signal_info si;
5081 int ret;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005082 char *pos, *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005083
5084 ret = wpa_drv_signal_poll(wpa_s, &si);
5085 if (ret)
5086 return -1;
5087
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005088 pos = buf;
5089 end = buf + buflen;
5090
5091 ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005092 "NOISE=%d\nFREQUENCY=%u\n",
5093 si.current_signal, si.current_txrate / 1000,
5094 si.current_noise, si.frequency);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005095 if (ret < 0 || ret > end - pos)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005096 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005097 pos += ret;
5098
5099 if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
5100 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
5101 channel_width_name(si.chanwidth));
5102 if (ret < 0 || ret > end - pos)
5103 return -1;
5104 pos += ret;
5105 }
5106
5107 if (si.center_frq1 > 0 && si.center_frq2 > 0) {
5108 ret = os_snprintf(pos, end - pos,
5109 "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
5110 si.center_frq1, si.center_frq2);
5111 if (ret < 0 || ret > end - pos)
5112 return -1;
5113 pos += ret;
5114 }
5115
5116 if (si.avg_signal) {
5117 ret = os_snprintf(pos, end - pos,
5118 "AVG_RSSI=%d\n", si.avg_signal);
5119 if (ret < 0 || ret >= end - pos)
5120 return -1;
5121 pos += ret;
5122 }
5123
5124 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005125}
5126
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005127
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005128static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
5129 size_t buflen)
5130{
5131 struct hostap_sta_driver_data sta;
5132 int ret;
5133
5134 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
5135 if (ret)
5136 return -1;
5137
5138 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005139 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
5140 if (ret < 0 || (size_t) ret > buflen)
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005141 return -1;
5142 return ret;
5143}
5144
5145
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005146#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005147static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
5148 char *buf, size_t buflen)
5149{
5150 int ret;
5151
5152 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
5153 if (ret == 0)
5154 ret = sprintf(buf, "%s\n", "OK");
5155 return ret;
5156}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005157#endif
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005158
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07005159
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005160static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
5161{
5162 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
5163
5164#ifdef CONFIG_P2P
5165 wpas_p2p_stop_find(wpa_s);
5166 p2p_ctrl_flush(wpa_s);
5167 wpas_p2p_group_remove(wpa_s, "*");
5168#endif /* CONFIG_P2P */
5169
5170#ifdef CONFIG_WPS_TESTING
5171 wps_version_number = 0x20;
5172 wps_testing_dummy_cred = 0;
5173#endif /* CONFIG_WPS_TESTING */
5174#ifdef CONFIG_WPS
5175 wpas_wps_cancel(wpa_s);
5176#endif /* CONFIG_WPS */
5177
5178#ifdef CONFIG_TDLS_TESTING
5179 extern unsigned int tdls_testing;
5180 tdls_testing = 0;
5181#endif /* CONFIG_TDLS_TESTING */
5182#ifdef CONFIG_TDLS
5183 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
5184 wpa_tdls_enable(wpa_s->wpa, 1);
5185#endif /* CONFIG_TDLS */
5186
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005187 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
5188 wpa_supplicant_stop_countermeasures(wpa_s, NULL);
5189
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005190 wpa_s->no_keep_alive = 0;
5191
5192 os_free(wpa_s->disallow_aps_bssid);
5193 wpa_s->disallow_aps_bssid = NULL;
5194 wpa_s->disallow_aps_bssid_count = 0;
5195 os_free(wpa_s->disallow_aps_ssid);
5196 wpa_s->disallow_aps_ssid = NULL;
5197 wpa_s->disallow_aps_ssid_count = 0;
5198
5199 wpa_s->set_sta_uapsd = 0;
5200 wpa_s->sta_uapsd = 0;
5201
5202 wpa_drv_radio_disable(wpa_s, 0);
5203
5204 wpa_bss_flush(wpa_s);
5205 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07005206 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005207 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
5208 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
5209}
5210
5211
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005212char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
5213 char *buf, size_t *resp_len)
5214{
5215 char *reply;
5216 const int reply_size = 4096;
5217 int ctrl_rsp = 0;
5218 int reply_len;
5219
5220 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005221 os_strncmp(buf, "SET_NETWORK ", 12) == 0 ||
5222 os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005223 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005224 os_strncmp(buf, "NFC_RX_HANDOVER_SEL", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005225 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
5226 (const u8 *) buf, os_strlen(buf));
5227 } else {
5228 int level = MSG_DEBUG;
5229 if (os_strcmp(buf, "PING") == 0)
5230 level = MSG_EXCESSIVE;
5231 wpa_hexdump_ascii(level, "RX ctrl_iface",
5232 (const u8 *) buf, os_strlen(buf));
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005233 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005234 }
5235
5236 reply = os_malloc(reply_size);
5237 if (reply == NULL) {
5238 *resp_len = 1;
5239 return NULL;
5240 }
5241
5242 os_memcpy(reply, "OK\n", 3);
5243 reply_len = 3;
5244
5245 if (os_strcmp(buf, "PING") == 0) {
5246 os_memcpy(reply, "PONG\n", 5);
5247 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005248 } else if (os_strcmp(buf, "IFNAME") == 0) {
5249 reply_len = os_strlen(wpa_s->ifname);
5250 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005251 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
5252 if (wpa_debug_reopen_file() < 0)
5253 reply_len = -1;
5254 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
5255 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
5256 } else if (os_strcmp(buf, "MIB") == 0) {
5257 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
5258 if (reply_len >= 0) {
5259 int res;
5260 res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
5261 reply_size - reply_len);
5262 if (res < 0)
5263 reply_len = -1;
5264 else
5265 reply_len += res;
5266 }
5267 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
5268 reply_len = wpa_supplicant_ctrl_iface_status(
5269 wpa_s, buf + 6, reply, reply_size);
5270 } else if (os_strcmp(buf, "PMKSA") == 0) {
5271 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
5272 reply_size);
5273 } else if (os_strncmp(buf, "SET ", 4) == 0) {
5274 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
5275 reply_len = -1;
5276 } else if (os_strncmp(buf, "GET ", 4) == 0) {
5277 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
5278 reply, reply_size);
5279 } else if (os_strcmp(buf, "LOGON") == 0) {
5280 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
5281 } else if (os_strcmp(buf, "LOGOFF") == 0) {
5282 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
5283 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
5284 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5285 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005286 else
5287 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005288 } else if (os_strcmp(buf, "RECONNECT") == 0) {
5289 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5290 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005291 else if (wpa_s->disconnected)
5292 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005293#ifdef IEEE8021X_EAPOL
5294 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
5295 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
5296 reply_len = -1;
5297#endif /* IEEE8021X_EAPOL */
5298#ifdef CONFIG_PEERKEY
5299 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
5300 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
5301 reply_len = -1;
5302#endif /* CONFIG_PEERKEY */
5303#ifdef CONFIG_IEEE80211R
5304 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
5305 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
5306 reply_len = -1;
5307#endif /* CONFIG_IEEE80211R */
5308#ifdef CONFIG_WPS
5309 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
5310 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
5311 if (res == -2) {
5312 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5313 reply_len = 17;
5314 } else if (res)
5315 reply_len = -1;
5316 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
5317 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
5318 if (res == -2) {
5319 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5320 reply_len = 17;
5321 } else if (res)
5322 reply_len = -1;
5323 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
5324 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
5325 reply,
5326 reply_size);
5327 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
5328 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
5329 wpa_s, buf + 14, reply, reply_size);
5330 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
5331 if (wpas_wps_cancel(wpa_s))
5332 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005333#ifdef CONFIG_WPS_NFC
5334 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
5335 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
5336 reply_len = -1;
5337 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
5338 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
5339 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005340 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
5341 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
5342 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005343 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
5344 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
5345 wpa_s, buf + 14, reply, reply_size);
5346 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
5347 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
5348 buf + 17))
5349 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005350 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
5351 reply_len = wpas_ctrl_nfc_get_handover_req(
5352 wpa_s, buf + 21, reply, reply_size);
5353 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
5354 reply_len = wpas_ctrl_nfc_get_handover_sel(
5355 wpa_s, buf + 21, reply, reply_size);
5356 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_REQ ", 20) == 0) {
5357 reply_len = wpas_ctrl_nfc_rx_handover_req(
5358 wpa_s, buf + 20, reply, reply_size);
5359 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_SEL ", 20) == 0) {
5360 if (wpas_ctrl_nfc_rx_handover_sel(wpa_s, buf + 20))
5361 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005362 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
5363 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
5364 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005365#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005366 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
5367 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
5368 reply_len = -1;
5369#ifdef CONFIG_AP
5370 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
5371 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
5372 wpa_s, buf + 11, reply, reply_size);
5373#endif /* CONFIG_AP */
5374#ifdef CONFIG_WPS_ER
5375 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
5376 if (wpas_wps_er_start(wpa_s, NULL))
5377 reply_len = -1;
5378 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
5379 if (wpas_wps_er_start(wpa_s, buf + 13))
5380 reply_len = -1;
5381 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
5382 if (wpas_wps_er_stop(wpa_s))
5383 reply_len = -1;
5384 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
5385 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
5386 reply_len = -1;
5387 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
5388 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
5389 if (ret == -2) {
5390 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5391 reply_len = 17;
5392 } else if (ret == -3) {
5393 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
5394 reply_len = 18;
5395 } else if (ret == -4) {
5396 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
5397 reply_len = 20;
5398 } else if (ret)
5399 reply_len = -1;
5400 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
5401 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
5402 reply_len = -1;
5403 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
5404 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
5405 buf + 18))
5406 reply_len = -1;
5407 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
5408 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
5409 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005410#ifdef CONFIG_WPS_NFC
5411 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
5412 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
5413 wpa_s, buf + 24, reply, reply_size);
5414#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005415#endif /* CONFIG_WPS_ER */
5416#endif /* CONFIG_WPS */
5417#ifdef CONFIG_IBSS_RSN
5418 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
5419 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
5420 reply_len = -1;
5421#endif /* CONFIG_IBSS_RSN */
5422#ifdef CONFIG_P2P
5423 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
5424 if (p2p_ctrl_find(wpa_s, buf + 9))
5425 reply_len = -1;
5426 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
5427 if (p2p_ctrl_find(wpa_s, ""))
5428 reply_len = -1;
5429 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
5430 wpas_p2p_stop_find(wpa_s);
5431 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
5432 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
5433 reply_size);
5434 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
5435 if (p2p_ctrl_listen(wpa_s, buf + 11))
5436 reply_len = -1;
5437 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
5438 if (p2p_ctrl_listen(wpa_s, ""))
5439 reply_len = -1;
5440 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
5441 if (wpas_p2p_group_remove(wpa_s, buf + 17))
5442 reply_len = -1;
5443 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005444 if (wpas_p2p_group_add(wpa_s, 0, 0, 0))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005445 reply_len = -1;
5446 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
5447 if (p2p_ctrl_group_add(wpa_s, buf + 14))
5448 reply_len = -1;
5449 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
5450 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
5451 reply_len = -1;
5452 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
5453 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
5454 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
5455 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
5456 reply_size);
5457 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
5458 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
5459 reply_len = -1;
5460 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
5461 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
5462 reply_len = -1;
5463 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
5464 wpas_p2p_sd_service_update(wpa_s);
5465 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
5466 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
5467 reply_len = -1;
5468 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
5469 wpas_p2p_service_flush(wpa_s);
5470 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
5471 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
5472 reply_len = -1;
5473 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
5474 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
5475 reply_len = -1;
5476 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
5477 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
5478 reply_len = -1;
5479 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
5480 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
5481 reply_len = -1;
5482 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
5483 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
5484 reply_size);
5485 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
5486 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
5487 reply_len = -1;
5488 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005489 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005490 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
5491 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
5492 reply_len = -1;
5493 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
5494 if (wpas_p2p_cancel(wpa_s))
5495 reply_len = -1;
5496 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
5497 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
5498 reply_len = -1;
5499 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
5500 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
5501 reply_len = -1;
5502 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
5503 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
5504 reply_len = -1;
5505 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
5506 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
5507 reply_len = -1;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005508 } else if (os_strncmp(buf, "P2P_REMOVE_CLIENT ", 18) == 0) {
5509 if (p2p_ctrl_remove_client(wpa_s, buf + 18) < 0)
5510 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005511#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005512#ifdef CONFIG_WIFI_DISPLAY
5513 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
5514 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
5515 reply_len = -1;
5516 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
5517 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
5518 reply, reply_size);
5519#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005520#ifdef CONFIG_INTERWORKING
5521 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
5522 if (interworking_fetch_anqp(wpa_s) < 0)
5523 reply_len = -1;
5524 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
5525 interworking_stop_fetch_anqp(wpa_s);
5526 } else if (os_strncmp(buf, "INTERWORKING_SELECT", 19) == 0) {
5527 if (interworking_select(wpa_s, os_strstr(buf + 19, "auto") !=
5528 NULL) < 0)
5529 reply_len = -1;
5530 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
5531 if (ctrl_interworking_connect(wpa_s, buf + 21) < 0)
5532 reply_len = -1;
5533 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
5534 if (get_anqp(wpa_s, buf + 9) < 0)
5535 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005536 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
5537 if (gas_request(wpa_s, buf + 12) < 0)
5538 reply_len = -1;
5539 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
5540 reply_len = gas_response_get(wpa_s, buf + 17, reply,
5541 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005542#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07005543#ifdef CONFIG_HS20
5544 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
5545 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
5546 reply_len = -1;
5547 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
5548 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
5549 reply_len = -1;
5550#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005551 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
5552 {
5553 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
5554 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
5555 reply_len = -1;
5556 else
5557 ctrl_rsp = 1;
5558 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
5559 if (wpa_supplicant_reload_configuration(wpa_s))
5560 reply_len = -1;
5561 } else if (os_strcmp(buf, "TERMINATE") == 0) {
5562 wpa_supplicant_terminate_proc(wpa_s->global);
5563 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
5564 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
5565 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07005566 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005567 reply_len = wpa_supplicant_ctrl_iface_blacklist(
5568 wpa_s, buf + 9, reply, reply_size);
5569 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
5570 reply_len = wpa_supplicant_ctrl_iface_log_level(
5571 wpa_s, buf + 9, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005572 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
5573 reply_len = wpa_supplicant_ctrl_iface_list_networks(
5574 wpa_s, reply, reply_size);
5575 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005576#ifdef CONFIG_SME
5577 wpa_s->sme.prev_bssid_set = 0;
5578#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005579 wpa_s->reassociate = 0;
5580 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005581 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005582 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005583 wpa_supplicant_deauthenticate(wpa_s,
5584 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005585 } else if (os_strcmp(buf, "SCAN") == 0 ||
5586 os_strncmp(buf, "SCAN ", 5) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005587 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5588 reply_len = -1;
5589 else {
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005590 if (os_strlen(buf) > 4 &&
5591 os_strncasecmp(buf + 5, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08005592 wpa_s->scan_res_handler = scan_only_handler;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005593 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005594 ((wpa_s->wpa_state <= WPA_SCANNING) ||
5595 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005596 wpa_s->normal_scans = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005597 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005598 wpa_supplicant_req_scan(wpa_s, 0, 0);
5599 } else if (wpa_s->sched_scanning) {
5600 wpa_printf(MSG_DEBUG, "Stop ongoing "
5601 "sched_scan to allow requested "
5602 "full scan to proceed");
5603 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005604 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005605 wpa_supplicant_req_scan(wpa_s, 0, 0);
5606 } else {
5607 wpa_printf(MSG_DEBUG, "Ongoing scan action - "
5608 "reject new request");
5609 reply_len = os_snprintf(reply, reply_size,
5610 "FAIL-BUSY\n");
5611 }
5612 }
5613 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
5614 reply_len = wpa_supplicant_ctrl_iface_scan_results(
5615 wpa_s, reply, reply_size);
5616 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
5617 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
5618 reply_len = -1;
5619 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
5620 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
5621 reply_len = -1;
5622 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
5623 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
5624 reply_len = -1;
5625 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
5626 reply_len = wpa_supplicant_ctrl_iface_add_network(
5627 wpa_s, reply, reply_size);
5628 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
5629 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
5630 reply_len = -1;
5631 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
5632 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
5633 reply_len = -1;
5634 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
5635 reply_len = wpa_supplicant_ctrl_iface_get_network(
5636 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005637 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
5638 reply_len = wpa_supplicant_ctrl_iface_list_creds(
5639 wpa_s, reply, reply_size);
5640 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
5641 reply_len = wpa_supplicant_ctrl_iface_add_cred(
5642 wpa_s, reply, reply_size);
5643 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
5644 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
5645 reply_len = -1;
5646 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
5647 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
5648 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005649#ifndef CONFIG_NO_CONFIG_WRITE
5650 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
5651 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
5652 reply_len = -1;
5653#endif /* CONFIG_NO_CONFIG_WRITE */
5654 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
5655 reply_len = wpa_supplicant_ctrl_iface_get_capability(
5656 wpa_s, buf + 15, reply, reply_size);
5657 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
5658 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
5659 reply_len = -1;
5660 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
5661 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
5662 reply_len = -1;
5663 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
5664 reply_len = wpa_supplicant_global_iface_list(
5665 wpa_s->global, reply, reply_size);
5666 } else if (os_strcmp(buf, "INTERFACES") == 0) {
5667 reply_len = wpa_supplicant_global_iface_interfaces(
5668 wpa_s->global, reply, reply_size);
5669 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
5670 reply_len = wpa_supplicant_ctrl_iface_bss(
5671 wpa_s, buf + 4, reply, reply_size);
5672#ifdef CONFIG_AP
5673 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
5674 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
5675 } else if (os_strncmp(buf, "STA ", 4) == 0) {
5676 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
5677 reply_size);
5678 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
5679 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
5680 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005681 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
5682 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
5683 reply_len = -1;
5684 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
5685 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
5686 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005687#endif /* CONFIG_AP */
5688 } else if (os_strcmp(buf, "SUSPEND") == 0) {
5689 wpas_notify_suspend(wpa_s->global);
5690 } else if (os_strcmp(buf, "RESUME") == 0) {
5691 wpas_notify_resume(wpa_s->global);
5692 } else if (os_strcmp(buf, "DROP_SA") == 0) {
5693 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
5694 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
5695 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
5696 reply_len = -1;
5697 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
5698 if (wpa_supplicant_ctrl_iface_sta_autoconnect(wpa_s, buf + 16))
5699 reply_len = -1;
5700 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
5701 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
5702 reply_len = -1;
5703 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
5704 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
5705 buf + 17))
5706 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07005707 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
5708 if (wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10))
5709 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005710#ifdef CONFIG_TDLS
5711 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
5712 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
5713 reply_len = -1;
5714 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
5715 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
5716 reply_len = -1;
5717 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
5718 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
5719 reply_len = -1;
5720#endif /* CONFIG_TDLS */
5721 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
5722 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
5723 reply_size);
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005724 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
5725 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
5726 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005727#ifdef CONFIG_AUTOSCAN
5728 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
5729 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
5730 reply_len = -1;
5731#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005732#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005733 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
5734 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
5735 reply_size);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005736#endif
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005737 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005738 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005739 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005740#ifdef CONFIG_WNM
5741 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
5742 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
5743 reply_len = -1;
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005744 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 10) == 0) {
5745 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 10))
5746 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005747#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005748 } else if (os_strcmp(buf, "FLUSH") == 0) {
5749 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005750 } else {
5751 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
5752 reply_len = 16;
5753 }
5754
5755 if (reply_len < 0) {
5756 os_memcpy(reply, "FAIL\n", 5);
5757 reply_len = 5;
5758 }
5759
5760 if (ctrl_rsp)
5761 eapol_sm_notify_ctrl_response(wpa_s->eapol);
5762
5763 *resp_len = reply_len;
5764 return reply;
5765}
5766
5767
5768static int wpa_supplicant_global_iface_add(struct wpa_global *global,
5769 char *cmd)
5770{
5771 struct wpa_interface iface;
5772 char *pos;
5773
5774 /*
5775 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
5776 * TAB<bridge_ifname>
5777 */
5778 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
5779
5780 os_memset(&iface, 0, sizeof(iface));
5781
5782 do {
5783 iface.ifname = pos = cmd;
5784 pos = os_strchr(pos, '\t');
5785 if (pos)
5786 *pos++ = '\0';
5787 if (iface.ifname[0] == '\0')
5788 return -1;
5789 if (pos == NULL)
5790 break;
5791
5792 iface.confname = pos;
5793 pos = os_strchr(pos, '\t');
5794 if (pos)
5795 *pos++ = '\0';
5796 if (iface.confname[0] == '\0')
5797 iface.confname = NULL;
5798 if (pos == NULL)
5799 break;
5800
5801 iface.driver = pos;
5802 pos = os_strchr(pos, '\t');
5803 if (pos)
5804 *pos++ = '\0';
5805 if (iface.driver[0] == '\0')
5806 iface.driver = NULL;
5807 if (pos == NULL)
5808 break;
5809
5810 iface.ctrl_interface = pos;
5811 pos = os_strchr(pos, '\t');
5812 if (pos)
5813 *pos++ = '\0';
5814 if (iface.ctrl_interface[0] == '\0')
5815 iface.ctrl_interface = NULL;
5816 if (pos == NULL)
5817 break;
5818
5819 iface.driver_param = pos;
5820 pos = os_strchr(pos, '\t');
5821 if (pos)
5822 *pos++ = '\0';
5823 if (iface.driver_param[0] == '\0')
5824 iface.driver_param = NULL;
5825 if (pos == NULL)
5826 break;
5827
5828 iface.bridge_ifname = pos;
5829 pos = os_strchr(pos, '\t');
5830 if (pos)
5831 *pos++ = '\0';
5832 if (iface.bridge_ifname[0] == '\0')
5833 iface.bridge_ifname = NULL;
5834 if (pos == NULL)
5835 break;
5836 } while (0);
5837
5838 if (wpa_supplicant_get_iface(global, iface.ifname))
5839 return -1;
5840
5841 return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
5842}
5843
5844
5845static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
5846 char *cmd)
5847{
5848 struct wpa_supplicant *wpa_s;
5849
5850 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
5851
5852 wpa_s = wpa_supplicant_get_iface(global, cmd);
5853 if (wpa_s == NULL)
5854 return -1;
Dmitry Shmidte15c7b52011-08-03 15:04:35 -07005855 return wpa_supplicant_remove_iface(global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005856}
5857
5858
5859static void wpa_free_iface_info(struct wpa_interface_info *iface)
5860{
5861 struct wpa_interface_info *prev;
5862
5863 while (iface) {
5864 prev = iface;
5865 iface = iface->next;
5866
5867 os_free(prev->ifname);
5868 os_free(prev->desc);
5869 os_free(prev);
5870 }
5871}
5872
5873
5874static int wpa_supplicant_global_iface_list(struct wpa_global *global,
5875 char *buf, int len)
5876{
5877 int i, res;
5878 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
5879 char *pos, *end;
5880
5881 for (i = 0; wpa_drivers[i]; i++) {
5882 struct wpa_driver_ops *drv = wpa_drivers[i];
5883 if (drv->get_interfaces == NULL)
5884 continue;
5885 tmp = drv->get_interfaces(global->drv_priv[i]);
5886 if (tmp == NULL)
5887 continue;
5888
5889 if (last == NULL)
5890 iface = last = tmp;
5891 else
5892 last->next = tmp;
5893 while (last->next)
5894 last = last->next;
5895 }
5896
5897 pos = buf;
5898 end = buf + len;
5899 for (tmp = iface; tmp; tmp = tmp->next) {
5900 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
5901 tmp->drv_name, tmp->ifname,
5902 tmp->desc ? tmp->desc : "");
5903 if (res < 0 || res >= end - pos) {
5904 *pos = '\0';
5905 break;
5906 }
5907 pos += res;
5908 }
5909
5910 wpa_free_iface_info(iface);
5911
5912 return pos - buf;
5913}
5914
5915
5916static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
5917 char *buf, int len)
5918{
5919 int res;
5920 char *pos, *end;
5921 struct wpa_supplicant *wpa_s;
5922
5923 wpa_s = global->ifaces;
5924 pos = buf;
5925 end = buf + len;
5926
5927 while (wpa_s) {
5928 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
5929 if (res < 0 || res >= end - pos) {
5930 *pos = '\0';
5931 break;
5932 }
5933 pos += res;
5934 wpa_s = wpa_s->next;
5935 }
5936 return pos - buf;
5937}
5938
5939
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005940static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
5941 const char *ifname,
5942 char *cmd, size_t *resp_len)
5943{
5944 struct wpa_supplicant *wpa_s;
5945
5946 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5947 if (os_strcmp(ifname, wpa_s->ifname) == 0)
5948 break;
5949 }
5950
5951 if (wpa_s == NULL) {
5952 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
5953 if (resp)
5954 *resp_len = os_strlen(resp);
5955 else
5956 *resp_len = 1;
5957 return resp;
5958 }
5959
5960 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
5961}
5962
5963
5964static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
5965 char *buf, size_t *resp_len)
5966{
5967#ifdef CONFIG_P2P
5968 static const char * cmd[] = {
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07005969#ifdef ANDROID_P2P
5970 "LIST_NETWORKS",
5971 "SAVE_CONFIG",
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07005972#endif
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005973 "P2P_FIND",
5974 "P2P_STOP_FIND",
5975 "P2P_LISTEN",
5976 "P2P_GROUP_ADD",
5977 "P2P_GET_PASSPHRASE",
5978 "P2P_SERVICE_UPDATE",
5979 "P2P_SERVICE_FLUSH",
5980 "P2P_FLUSH",
5981 "P2P_CANCEL",
5982 "P2P_PRESENCE_REQ",
5983 "P2P_EXT_LISTEN",
5984 NULL
5985 };
5986 static const char * prefix[] = {
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07005987#ifdef ANDROID_P2P
5988 "DRIVER ",
5989 "GET_NETWORK ",
5990 "REMOVE_NETWORK ",
5991 "SET ",
5992#endif
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005993 "P2P_FIND ",
5994 "P2P_CONNECT ",
5995 "P2P_LISTEN ",
5996 "P2P_GROUP_REMOVE ",
5997 "P2P_GROUP_ADD ",
5998 "P2P_PROV_DISC ",
5999 "P2P_SERV_DISC_REQ ",
6000 "P2P_SERV_DISC_CANCEL_REQ ",
6001 "P2P_SERV_DISC_RESP ",
6002 "P2P_SERV_DISC_EXTERNAL ",
6003 "P2P_SERVICE_ADD ",
6004 "P2P_SERVICE_DEL ",
6005 "P2P_REJECT ",
6006 "P2P_INVITE ",
6007 "P2P_PEER ",
6008 "P2P_SET ",
6009 "P2P_UNAUTHORIZE ",
6010 "P2P_PRESENCE_REQ ",
6011 "P2P_EXT_LISTEN ",
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006012 "P2P_REMOVE_CLIENT ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006013 NULL
6014 };
6015 int found = 0;
6016 int i;
6017
6018 if (global->p2p_init_wpa_s == NULL)
6019 return NULL;
6020
6021 for (i = 0; !found && cmd[i]; i++) {
6022 if (os_strcmp(buf, cmd[i]) == 0)
6023 found = 1;
6024 }
6025
6026 for (i = 0; !found && prefix[i]; i++) {
6027 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
6028 found = 1;
6029 }
6030
6031 if (found)
6032 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
6033 buf, resp_len);
6034#endif /* CONFIG_P2P */
6035 return NULL;
6036}
6037
6038
6039static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
6040 char *buf, size_t *resp_len)
6041{
6042#ifdef CONFIG_WIFI_DISPLAY
6043 if (global->p2p_init_wpa_s == NULL)
6044 return NULL;
6045 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
6046 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
6047 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
6048 buf, resp_len);
6049#endif /* CONFIG_WIFI_DISPLAY */
6050 return NULL;
6051}
6052
6053
6054static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
6055 char *buf, size_t *resp_len)
6056{
6057 char *ret;
6058
6059 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
6060 if (ret)
6061 return ret;
6062
6063 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
6064 if (ret)
6065 return ret;
6066
6067 return NULL;
6068}
6069
6070
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07006071static int wpas_global_ctrl_iface_set(struct wpa_global *global, char *cmd)
6072{
6073 char *value;
6074
6075 value = os_strchr(cmd, ' ');
6076 if (value == NULL)
6077 return -1;
6078 *value++ = '\0';
6079
6080 wpa_printf(MSG_DEBUG, "GLOBAL_CTRL_IFACE SET '%s'='%s'", cmd, value);
6081
6082#ifdef CONFIG_WIFI_DISPLAY
6083 if (os_strcasecmp(cmd, "wifi_display") == 0) {
6084 wifi_display_enable(global, !!atoi(value));
6085 return 0;
6086 }
6087#endif /* CONFIG_WIFI_DISPLAY */
6088
6089 return -1;
6090}
6091
6092
6093#ifndef CONFIG_NO_CONFIG_WRITE
6094static int wpas_global_ctrl_iface_save_config(struct wpa_global *global)
6095{
6096 int ret = 0;
6097 struct wpa_supplicant *wpa_s;
6098
6099 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
6100 if (!wpa_s->conf->update_config) {
6101 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed to update configuration (update_config=0)");
6102 continue;
6103 }
6104
6105 if (wpa_config_write(wpa_s->confname, wpa_s->conf)) {
6106 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to update configuration");
6107 ret = 1;
6108 } else {
6109 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration updated");
6110 }
6111 }
6112
6113 return ret;
6114}
6115#endif /* CONFIG_NO_CONFIG_WRITE */
6116
6117
6118static int wpas_global_ctrl_iface_status(struct wpa_global *global,
6119 char *buf, size_t buflen)
6120{
6121 char *pos, *end;
6122 int ret;
6123 struct wpa_supplicant *wpa_s;
6124
6125 pos = buf;
6126 end = buf + buflen;
6127
6128#ifdef CONFIG_P2P
6129 if (global->p2p && !global->p2p_disabled) {
6130 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
6131 "\n"
6132 "p2p_state=%s\n",
6133 MAC2STR(global->p2p_dev_addr),
6134 p2p_get_state_txt(global->p2p));
6135 if (ret < 0 || ret >= end - pos)
6136 return pos - buf;
6137 pos += ret;
6138 } else if (global->p2p) {
6139 ret = os_snprintf(pos, end - pos, "p2p_state=DISABLED\n");
6140 if (ret < 0 || ret >= end - pos)
6141 return pos - buf;
6142 pos += ret;
6143 }
6144#endif /* CONFIG_P2P */
6145
6146#ifdef CONFIG_WIFI_DISPLAY
6147 ret = os_snprintf(pos, end - pos, "wifi_display=%d\n",
6148 !!global->wifi_display);
6149 if (ret < 0 || ret >= end - pos)
6150 return pos - buf;
6151 pos += ret;
6152#endif /* CONFIG_WIFI_DISPLAY */
6153
6154 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
6155 ret = os_snprintf(pos, end - pos, "ifname=%s\n"
6156 "address=" MACSTR "\n",
6157 wpa_s->ifname, MAC2STR(wpa_s->own_addr));
6158 if (ret < 0 || ret >= end - pos)
6159 return pos - buf;
6160 pos += ret;
6161 }
6162
6163 return pos - buf;
6164}
6165
6166
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006167char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
6168 char *buf, size_t *resp_len)
6169{
6170 char *reply;
6171 const int reply_size = 2048;
6172 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006173 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006174
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006175 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
6176 char *pos = os_strchr(buf + 7, ' ');
6177 if (pos) {
6178 *pos++ = '\0';
6179 return wpas_global_ctrl_iface_ifname(global,
6180 buf + 7, pos,
6181 resp_len);
6182 }
6183 }
6184
6185 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
6186 if (reply)
6187 return reply;
6188
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006189 if (os_strcmp(buf, "PING") == 0)
6190 level = MSG_EXCESSIVE;
6191 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006192 (const u8 *) buf, os_strlen(buf));
6193
6194 reply = os_malloc(reply_size);
6195 if (reply == NULL) {
6196 *resp_len = 1;
6197 return NULL;
6198 }
6199
6200 os_memcpy(reply, "OK\n", 3);
6201 reply_len = 3;
6202
6203 if (os_strcmp(buf, "PING") == 0) {
6204 os_memcpy(reply, "PONG\n", 5);
6205 reply_len = 5;
6206 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
6207 if (wpa_supplicant_global_iface_add(global, buf + 14))
6208 reply_len = -1;
6209 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
6210 if (wpa_supplicant_global_iface_remove(global, buf + 17))
6211 reply_len = -1;
6212 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
6213 reply_len = wpa_supplicant_global_iface_list(
6214 global, reply, reply_size);
6215 } else if (os_strcmp(buf, "INTERFACES") == 0) {
6216 reply_len = wpa_supplicant_global_iface_interfaces(
6217 global, reply, reply_size);
6218 } else if (os_strcmp(buf, "TERMINATE") == 0) {
6219 wpa_supplicant_terminate_proc(global);
6220 } else if (os_strcmp(buf, "SUSPEND") == 0) {
6221 wpas_notify_suspend(global);
6222 } else if (os_strcmp(buf, "RESUME") == 0) {
6223 wpas_notify_resume(global);
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07006224 } else if (os_strncmp(buf, "SET ", 4) == 0) {
6225 if (wpas_global_ctrl_iface_set(global, buf + 4))
6226 reply_len = -1;
6227#ifndef CONFIG_NO_CONFIG_WRITE
6228 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
6229 if (wpas_global_ctrl_iface_save_config(global))
6230 reply_len = -1;
6231#endif /* CONFIG_NO_CONFIG_WRITE */
6232 } else if (os_strcmp(buf, "STATUS") == 0) {
6233 reply_len = wpas_global_ctrl_iface_status(global, reply,
6234 reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006235 } else {
6236 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
6237 reply_len = 16;
6238 }
6239
6240 if (reply_len < 0) {
6241 os_memcpy(reply, "FAIL\n", 5);
6242 reply_len = 5;
6243 }
6244
6245 *resp_len = reply_len;
6246 return reply;
6247}