blob: 8edf0869ba8fb223920ea5f30e73977ebecc42e7 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Control interface (shared code for all backends)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003 * Copyright (c) 2004-2012, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "common/version.h"
14#include "common/ieee802_11_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070015#include "common/ieee802_11_common.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016#include "common/wpa_ctrl.h"
17#include "eap_peer/eap.h"
18#include "eapol_supp/eapol_supp_sm.h"
19#include "rsn_supp/wpa.h"
20#include "rsn_supp/preauth.h"
21#include "rsn_supp/pmksa_cache.h"
22#include "l2_packet/l2_packet.h"
23#include "wps/wps.h"
24#include "config.h"
25#include "wpa_supplicant_i.h"
26#include "driver_i.h"
27#include "wps_supplicant.h"
28#include "ibss_rsn.h"
29#include "ap.h"
30#include "p2p_supplicant.h"
31#include "p2p/p2p.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070032#include "hs20_supplicant.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070033#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070034#include "notify.h"
35#include "bss.h"
36#include "scan.h"
37#include "ctrl_iface.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080038#include "interworking.h"
Dmitry Shmidte19501d2011-03-16 14:32:18 -070039#include "blacklist.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070040#include "autoscan.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080041#include "wnm_sta.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070042
43extern struct wpa_driver_ops *wpa_drivers[];
44
45static int wpa_supplicant_global_iface_list(struct wpa_global *global,
46 char *buf, int len);
47static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
48 char *buf, int len);
49
50
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080051static int pno_start(struct wpa_supplicant *wpa_s)
52{
53 int ret;
54 size_t i, num_ssid;
55 struct wpa_ssid *ssid;
56 struct wpa_driver_scan_params params;
57
58 if (wpa_s->pno)
59 return 0;
60
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080061 if (wpa_s->wpa_state == WPA_SCANNING) {
62 wpa_supplicant_cancel_sched_scan(wpa_s);
63 wpa_supplicant_cancel_scan(wpa_s);
64 }
65
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080066 os_memset(&params, 0, sizeof(params));
67
68 num_ssid = 0;
69 ssid = wpa_s->conf->ssid;
70 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -070071 if (!wpas_network_disabled(wpa_s, ssid))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080072 num_ssid++;
73 ssid = ssid->next;
74 }
75 if (num_ssid > WPAS_MAX_SCAN_SSIDS) {
76 wpa_printf(MSG_DEBUG, "PNO: Use only the first %u SSIDs from "
77 "%u", WPAS_MAX_SCAN_SSIDS, (unsigned int) num_ssid);
78 num_ssid = WPAS_MAX_SCAN_SSIDS;
79 }
80
81 if (num_ssid == 0) {
82 wpa_printf(MSG_DEBUG, "PNO: No configured SSIDs");
83 return -1;
84 }
85
86 params.filter_ssids = os_malloc(sizeof(struct wpa_driver_scan_filter) *
87 num_ssid);
88 if (params.filter_ssids == NULL)
89 return -1;
90 i = 0;
91 ssid = wpa_s->conf->ssid;
92 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -070093 if (!wpas_network_disabled(wpa_s, ssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080094 params.ssids[i].ssid = ssid->ssid;
95 params.ssids[i].ssid_len = ssid->ssid_len;
96 params.num_ssids++;
97 os_memcpy(params.filter_ssids[i].ssid, ssid->ssid,
98 ssid->ssid_len);
99 params.filter_ssids[i].ssid_len = ssid->ssid_len;
100 params.num_filter_ssids++;
101 i++;
102 if (i == num_ssid)
103 break;
104 }
105 ssid = ssid->next;
106 }
107
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700108 if (wpa_s->conf->filter_rssi)
109 params.filter_rssi = wpa_s->conf->filter_rssi;
110
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800111 ret = wpa_drv_sched_scan(wpa_s, &params, 10 * 1000);
112 os_free(params.filter_ssids);
113 if (ret == 0)
114 wpa_s->pno = 1;
115 return ret;
116}
117
118
119static int pno_stop(struct wpa_supplicant *wpa_s)
120{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800121 int ret = 0;
122
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800123 if (wpa_s->pno) {
124 wpa_s->pno = 0;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800125 ret = wpa_drv_stop_sched_scan(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800126 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800127
128 if (wpa_s->wpa_state == WPA_SCANNING)
129 wpa_supplicant_req_scan(wpa_s, 0, 0);
130
131 return ret;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800132}
133
134
Dmitry Shmidt04949592012-07-19 12:16:46 -0700135static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
136{
137 char *pos;
138 u8 addr[ETH_ALEN], *filter = NULL, *n;
139 size_t count = 0;
140
141 pos = val;
142 while (pos) {
143 if (*pos == '\0')
144 break;
145 if (hwaddr_aton(pos, addr)) {
146 os_free(filter);
147 return -1;
148 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700149 n = os_realloc_array(filter, count + 1, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700150 if (n == NULL) {
151 os_free(filter);
152 return -1;
153 }
154 filter = n;
155 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
156 count++;
157
158 pos = os_strchr(pos, ' ');
159 if (pos)
160 pos++;
161 }
162
163 wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
164 os_free(wpa_s->bssid_filter);
165 wpa_s->bssid_filter = filter;
166 wpa_s->bssid_filter_count = count;
167
168 return 0;
169}
170
171
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800172static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
173{
174 char *pos;
175 u8 addr[ETH_ALEN], *bssid = NULL, *n;
176 struct wpa_ssid_value *ssid = NULL, *ns;
177 size_t count = 0, ssid_count = 0;
178 struct wpa_ssid *c;
179
180 /*
181 * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | “”
182 * SSID_SPEC ::= ssid <SSID_HEX>
183 * BSSID_SPEC ::= bssid <BSSID_HEX>
184 */
185
186 pos = val;
187 while (pos) {
188 if (*pos == '\0')
189 break;
190 if (os_strncmp(pos, "bssid ", 6) == 0) {
191 int res;
192 pos += 6;
193 res = hwaddr_aton2(pos, addr);
194 if (res < 0) {
195 os_free(ssid);
196 os_free(bssid);
197 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
198 "BSSID value '%s'", pos);
199 return -1;
200 }
201 pos += res;
202 n = os_realloc_array(bssid, count + 1, ETH_ALEN);
203 if (n == NULL) {
204 os_free(ssid);
205 os_free(bssid);
206 return -1;
207 }
208 bssid = n;
209 os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
210 count++;
211 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
212 char *end;
213 pos += 5;
214
215 end = pos;
216 while (*end) {
217 if (*end == '\0' || *end == ' ')
218 break;
219 end++;
220 }
221
222 ns = os_realloc_array(ssid, ssid_count + 1,
223 sizeof(struct wpa_ssid_value));
224 if (ns == NULL) {
225 os_free(ssid);
226 os_free(bssid);
227 return -1;
228 }
229 ssid = ns;
230
231 if ((end - pos) & 0x01 || end - pos > 2 * 32 ||
232 hexstr2bin(pos, ssid[ssid_count].ssid,
233 (end - pos) / 2) < 0) {
234 os_free(ssid);
235 os_free(bssid);
236 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
237 "SSID value '%s'", pos);
238 return -1;
239 }
240 ssid[ssid_count].ssid_len = (end - pos) / 2;
241 wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
242 ssid[ssid_count].ssid,
243 ssid[ssid_count].ssid_len);
244 ssid_count++;
245 pos = end;
246 } else {
247 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
248 "'%s'", pos);
249 os_free(ssid);
250 os_free(bssid);
251 return -1;
252 }
253
254 pos = os_strchr(pos, ' ');
255 if (pos)
256 pos++;
257 }
258
259 wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
260 os_free(wpa_s->disallow_aps_bssid);
261 wpa_s->disallow_aps_bssid = bssid;
262 wpa_s->disallow_aps_bssid_count = count;
263
264 wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
265 os_free(wpa_s->disallow_aps_ssid);
266 wpa_s->disallow_aps_ssid = ssid;
267 wpa_s->disallow_aps_ssid_count = ssid_count;
268
269 if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
270 return 0;
271
272 c = wpa_s->current_ssid;
273 if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
274 return 0;
275
276 if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
277 !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
278 return 0;
279
280 wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
281 "because current AP was marked disallowed");
282
283#ifdef CONFIG_SME
284 wpa_s->sme.prev_bssid_set = 0;
285#endif /* CONFIG_SME */
286 wpa_s->reassociate = 1;
287 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
288 wpa_supplicant_req_scan(wpa_s, 0, 0);
289
290 return 0;
291}
292
293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700294static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
295 char *cmd)
296{
297 char *value;
298 int ret = 0;
299
300 value = os_strchr(cmd, ' ');
301 if (value == NULL)
302 return -1;
303 *value++ = '\0';
304
305 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
306 if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
307 eapol_sm_configure(wpa_s->eapol,
308 atoi(value), -1, -1, -1);
309 } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
310 eapol_sm_configure(wpa_s->eapol,
311 -1, atoi(value), -1, -1);
312 } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
313 eapol_sm_configure(wpa_s->eapol,
314 -1, -1, atoi(value), -1);
315 } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
316 eapol_sm_configure(wpa_s->eapol,
317 -1, -1, -1, atoi(value));
318 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
319 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
320 atoi(value)))
321 ret = -1;
322 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
323 0) {
324 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
325 atoi(value)))
326 ret = -1;
327 } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
328 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
329 ret = -1;
330 } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
331 wpa_s->wps_fragment_size = atoi(value);
332#ifdef CONFIG_WPS_TESTING
333 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
334 long int val;
335 val = strtol(value, NULL, 0);
336 if (val < 0 || val > 0xff) {
337 ret = -1;
338 wpa_printf(MSG_DEBUG, "WPS: Invalid "
339 "wps_version_number %ld", val);
340 } else {
341 wps_version_number = val;
342 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
343 "version %u.%u",
344 (wps_version_number & 0xf0) >> 4,
345 wps_version_number & 0x0f);
346 }
347 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
348 wps_testing_dummy_cred = atoi(value);
349 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
350 wps_testing_dummy_cred);
351#endif /* CONFIG_WPS_TESTING */
352 } else if (os_strcasecmp(cmd, "ampdu") == 0) {
353 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
354 ret = -1;
355#ifdef CONFIG_TDLS_TESTING
356 } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
357 extern unsigned int tdls_testing;
358 tdls_testing = strtol(value, NULL, 0);
359 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
360#endif /* CONFIG_TDLS_TESTING */
361#ifdef CONFIG_TDLS
362 } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
363 int disabled = atoi(value);
364 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
365 if (disabled) {
366 if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
367 ret = -1;
368 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
369 ret = -1;
370 wpa_tdls_enable(wpa_s->wpa, !disabled);
371#endif /* CONFIG_TDLS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800372 } else if (os_strcasecmp(cmd, "pno") == 0) {
373 if (atoi(value))
374 ret = pno_start(wpa_s);
375 else
376 ret = pno_stop(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700377 } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
378 int disabled = atoi(value);
379 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
380 ret = -1;
381 else if (disabled)
382 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
383 } else if (os_strcasecmp(cmd, "uapsd") == 0) {
384 if (os_strcmp(value, "disable") == 0)
385 wpa_s->set_sta_uapsd = 0;
386 else {
387 int be, bk, vi, vo;
388 char *pos;
389 /* format: BE,BK,VI,VO;max SP Length */
390 be = atoi(value);
391 pos = os_strchr(value, ',');
392 if (pos == NULL)
393 return -1;
394 pos++;
395 bk = atoi(pos);
396 pos = os_strchr(pos, ',');
397 if (pos == NULL)
398 return -1;
399 pos++;
400 vi = atoi(pos);
401 pos = os_strchr(pos, ',');
402 if (pos == NULL)
403 return -1;
404 pos++;
405 vo = atoi(pos);
406 /* ignore max SP Length for now */
407
408 wpa_s->set_sta_uapsd = 1;
409 wpa_s->sta_uapsd = 0;
410 if (be)
411 wpa_s->sta_uapsd |= BIT(0);
412 if (bk)
413 wpa_s->sta_uapsd |= BIT(1);
414 if (vi)
415 wpa_s->sta_uapsd |= BIT(2);
416 if (vo)
417 wpa_s->sta_uapsd |= BIT(3);
418 }
Jouni Malinen21d6bc82012-04-10 16:17:59 -0700419 } else if (os_strcasecmp(cmd, "ps") == 0) {
420 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700421#ifdef CONFIG_WIFI_DISPLAY
422 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
423 wifi_display_enable(wpa_s->global, !!atoi(value));
424#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700425 } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
426 ret = set_bssid_filter(wpa_s, value);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800427 } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
428 ret = set_disallow_aps(wpa_s, value);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800429 } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
430 wpa_s->no_keep_alive = !!atoi(value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700431 } else {
432 value[-1] = '=';
433 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
434 if (ret == 0)
435 wpa_supplicant_update_config(wpa_s);
436 }
437
438 return ret;
439}
440
441
442static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
443 char *cmd, char *buf, size_t buflen)
444{
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700445 int res = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700446
447 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
448
449 if (os_strcmp(cmd, "version") == 0) {
450 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700451 } else if (os_strcasecmp(cmd, "country") == 0) {
452 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
453 res = os_snprintf(buf, buflen, "%c%c",
454 wpa_s->conf->country[0],
455 wpa_s->conf->country[1]);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700456#ifdef CONFIG_WIFI_DISPLAY
457 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
458 res = os_snprintf(buf, buflen, "%d",
459 wpa_s->global->wifi_display);
460 if (res < 0 || (unsigned int) res >= buflen)
461 return -1;
462 return res;
463#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700464#ifdef CONFIG_TESTING_GET_GTK
465 } else if (os_strcmp(cmd, "gtk") == 0) {
466 if (wpa_s->last_gtk_len == 0)
467 return -1;
468 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
469 wpa_s->last_gtk_len);
470 return res;
471#endif /* CONFIG_TESTING_GET_GTK */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700472 }
473
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700474 if (res < 0 || (unsigned int) res >= buflen)
475 return -1;
476 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700477}
478
479
480#ifdef IEEE8021X_EAPOL
481static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
482 char *addr)
483{
484 u8 bssid[ETH_ALEN];
485 struct wpa_ssid *ssid = wpa_s->current_ssid;
486
487 if (hwaddr_aton(addr, bssid)) {
488 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
489 "'%s'", addr);
490 return -1;
491 }
492
493 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
494 rsn_preauth_deinit(wpa_s->wpa);
495 if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
496 return -1;
497
498 return 0;
499}
500#endif /* IEEE8021X_EAPOL */
501
502
503#ifdef CONFIG_PEERKEY
504/* MLME-STKSTART.request(peer) */
505static int wpa_supplicant_ctrl_iface_stkstart(
506 struct wpa_supplicant *wpa_s, char *addr)
507{
508 u8 peer[ETH_ALEN];
509
510 if (hwaddr_aton(addr, peer)) {
511 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
512 "address '%s'", addr);
513 return -1;
514 }
515
516 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
517 MAC2STR(peer));
518
519 return wpa_sm_stkstart(wpa_s->wpa, peer);
520}
521#endif /* CONFIG_PEERKEY */
522
523
524#ifdef CONFIG_TDLS
525
526static int wpa_supplicant_ctrl_iface_tdls_discover(
527 struct wpa_supplicant *wpa_s, char *addr)
528{
529 u8 peer[ETH_ALEN];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800530 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700531
532 if (hwaddr_aton(addr, peer)) {
533 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
534 "address '%s'", addr);
535 return -1;
536 }
537
538 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
539 MAC2STR(peer));
540
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800541 if (wpa_tdls_is_external_setup(wpa_s->wpa))
542 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
543 else
544 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
545
546 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700547}
548
549
550static int wpa_supplicant_ctrl_iface_tdls_setup(
551 struct wpa_supplicant *wpa_s, char *addr)
552{
553 u8 peer[ETH_ALEN];
554 int ret;
555
556 if (hwaddr_aton(addr, peer)) {
557 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
558 "address '%s'", addr);
559 return -1;
560 }
561
562 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
563 MAC2STR(peer));
564
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800565 wpa_tdls_remove(wpa_s->wpa, peer);
566
567 if (wpa_tdls_is_external_setup(wpa_s->wpa))
568 ret = wpa_tdls_start(wpa_s->wpa, peer);
569 else
570 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800571
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700572 return ret;
573}
574
575
576static int wpa_supplicant_ctrl_iface_tdls_teardown(
577 struct wpa_supplicant *wpa_s, char *addr)
578{
579 u8 peer[ETH_ALEN];
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 &&
1506 wpa_s->sme.sae.state == SAE_ACCEPTED && !wpa_s->ap_iface) {
1507 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1508 wpa_s->sme.sae.group);
1509 if (ret < 0 || ret >= end - pos)
1510 return pos - buf;
1511 pos += ret;
1512 }
1513#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001514 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1515 wpa_supplicant_state_txt(wpa_s->wpa_state));
1516 if (ret < 0 || ret >= end - pos)
1517 return pos - buf;
1518 pos += ret;
1519
1520 if (wpa_s->l2 &&
1521 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1522 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
1523 if (ret < 0 || ret >= end - pos)
1524 return pos - buf;
1525 pos += ret;
1526 }
1527
1528#ifdef CONFIG_P2P
1529 if (wpa_s->global->p2p) {
1530 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1531 "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
1532 if (ret < 0 || ret >= end - pos)
1533 return pos - buf;
1534 pos += ret;
1535 }
1536#endif /* CONFIG_P2P */
1537
1538 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1539 MAC2STR(wpa_s->own_addr));
1540 if (ret < 0 || ret >= end - pos)
1541 return pos - buf;
1542 pos += ret;
1543
Dmitry Shmidt04949592012-07-19 12:16:46 -07001544#ifdef CONFIG_HS20
1545 if (wpa_s->current_bss &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001546 wpa_bss_get_vendor_ie(wpa_s->current_bss, HS20_IE_VENDOR_TYPE) &&
1547 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1548 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001549 ret = os_snprintf(pos, end - pos, "hs20=1\n");
1550 if (ret < 0 || ret >= end - pos)
1551 return pos - buf;
1552 pos += ret;
1553 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001554
1555 if (wpa_s->current_ssid) {
1556 struct wpa_cred *cred;
1557 char *type;
1558
1559 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1560 if (wpa_s->current_ssid->parent_cred != cred)
1561 continue;
1562 if (!cred->domain)
1563 continue;
1564
1565 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1566 cred->domain);
1567 if (ret < 0 || ret >= end - pos)
1568 return pos - buf;
1569 pos += ret;
1570
1571 if (wpa_s->current_bss == NULL ||
1572 wpa_s->current_bss->anqp == NULL)
1573 res = -1;
1574 else
1575 res = interworking_home_sp_cred(
1576 wpa_s, cred,
1577 wpa_s->current_bss->anqp->domain_name);
1578 if (res > 0)
1579 type = "home";
1580 else if (res == 0)
1581 type = "roaming";
1582 else
1583 type = "unknown";
1584
1585 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
1586 if (ret < 0 || ret >= end - pos)
1587 return pos - buf;
1588 pos += ret;
1589
1590 break;
1591 }
1592 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001593#endif /* CONFIG_HS20 */
1594
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001595 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
1596 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1597 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
1598 verbose);
1599 if (res >= 0)
1600 pos += res;
1601 }
1602
1603 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
1604 if (res >= 0)
1605 pos += res;
1606
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001607#ifdef ANDROID
1608 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
Irfan Sherifff20a4432012-04-16 16:48:34 -07001609 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001610 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
Irfan Sherifff20a4432012-04-16 16:48:34 -07001611 wpa_s->wpa_state,
Irfan Sheriffe78e7672012-08-01 11:10:15 -07001612 MAC2STR(wpa_s->bssid),
andy2_kuo5b5fb022012-05-22 11:53:07 -07001613 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
1614 wpa_ssid_txt(wpa_s->current_ssid->ssid,
Irfan Sheriff10294772012-05-11 11:23:35 -07001615 wpa_s->current_ssid->ssid_len) : "");
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001616 if (wpa_s->wpa_state == WPA_COMPLETED) {
1617 struct wpa_ssid *ssid = wpa_s->current_ssid;
1618 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- connection to "
1619 MACSTR " completed %s [id=%d id_str=%s]",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001620 MAC2STR(wpa_s->bssid), "(auth)",
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001621 ssid ? ssid->id : -1,
1622 ssid && ssid->id_str ? ssid->id_str : "");
1623 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001624#endif /* ANDROID */
1625
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001626 return pos - buf;
1627}
1628
1629
1630static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
1631 char *cmd)
1632{
1633 char *pos;
1634 int id;
1635 struct wpa_ssid *ssid;
1636 u8 bssid[ETH_ALEN];
1637
1638 /* cmd: "<network id> <BSSID>" */
1639 pos = os_strchr(cmd, ' ');
1640 if (pos == NULL)
1641 return -1;
1642 *pos++ = '\0';
1643 id = atoi(cmd);
1644 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
1645 if (hwaddr_aton(pos, bssid)) {
1646 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
1647 return -1;
1648 }
1649
1650 ssid = wpa_config_get_network(wpa_s->conf, id);
1651 if (ssid == NULL) {
1652 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1653 "to update", id);
1654 return -1;
1655 }
1656
1657 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
1658 ssid->bssid_set = !is_zero_ether_addr(bssid);
1659
1660 return 0;
1661}
1662
1663
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001664static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001665 char *cmd, char *buf,
1666 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001667{
1668 u8 bssid[ETH_ALEN];
1669 struct wpa_blacklist *e;
1670 char *pos, *end;
1671 int ret;
1672
1673 /* cmd: "BLACKLIST [<BSSID>]" */
1674 if (*cmd == '\0') {
1675 pos = buf;
1676 end = buf + buflen;
1677 e = wpa_s->blacklist;
1678 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001679 ret = os_snprintf(pos, end - pos, MACSTR "\n",
1680 MAC2STR(e->bssid));
1681 if (ret < 0 || ret >= end - pos)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001682 return pos - buf;
1683 pos += ret;
1684 e = e->next;
1685 }
1686 return pos - buf;
1687 }
1688
1689 cmd++;
1690 if (os_strncmp(cmd, "clear", 5) == 0) {
1691 wpa_blacklist_clear(wpa_s);
1692 os_memcpy(buf, "OK\n", 3);
1693 return 3;
1694 }
1695
1696 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
1697 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001698 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001699 return -1;
1700 }
1701
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001702 /*
1703 * Add the BSSID twice, so its count will be 2, causing it to be
1704 * skipped when processing scan results.
1705 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001706 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001707 if (ret != 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07001708 return -1;
1709 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 os_memcpy(buf, "OK\n", 3);
1713 return 3;
1714}
1715
1716
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001717extern int wpa_debug_level;
1718extern int wpa_debug_timestamp;
1719
1720static const char * debug_level_str(int level)
1721{
1722 switch (level) {
1723 case MSG_EXCESSIVE:
1724 return "EXCESSIVE";
1725 case MSG_MSGDUMP:
1726 return "MSGDUMP";
1727 case MSG_DEBUG:
1728 return "DEBUG";
1729 case MSG_INFO:
1730 return "INFO";
1731 case MSG_WARNING:
1732 return "WARNING";
1733 case MSG_ERROR:
1734 return "ERROR";
1735 default:
1736 return "?";
1737 }
1738}
1739
1740
1741static int str_to_debug_level(const char *s)
1742{
1743 if (os_strcasecmp(s, "EXCESSIVE") == 0)
1744 return MSG_EXCESSIVE;
1745 if (os_strcasecmp(s, "MSGDUMP") == 0)
1746 return MSG_MSGDUMP;
1747 if (os_strcasecmp(s, "DEBUG") == 0)
1748 return MSG_DEBUG;
1749 if (os_strcasecmp(s, "INFO") == 0)
1750 return MSG_INFO;
1751 if (os_strcasecmp(s, "WARNING") == 0)
1752 return MSG_WARNING;
1753 if (os_strcasecmp(s, "ERROR") == 0)
1754 return MSG_ERROR;
1755 return -1;
1756}
1757
1758
1759static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
1760 char *cmd, char *buf,
1761 size_t buflen)
1762{
1763 char *pos, *end, *stamp;
1764 int ret;
1765
1766 if (cmd == NULL) {
1767 return -1;
1768 }
1769
1770 /* cmd: "LOG_LEVEL [<level>]" */
1771 if (*cmd == '\0') {
1772 pos = buf;
1773 end = buf + buflen;
1774 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
1775 "Timestamp: %d\n",
1776 debug_level_str(wpa_debug_level),
1777 wpa_debug_timestamp);
1778 if (ret < 0 || ret >= end - pos)
1779 ret = 0;
1780
1781 return ret;
1782 }
1783
1784 while (*cmd == ' ')
1785 cmd++;
1786
1787 stamp = os_strchr(cmd, ' ');
1788 if (stamp) {
1789 *stamp++ = '\0';
1790 while (*stamp == ' ') {
1791 stamp++;
1792 }
1793 }
1794
1795 if (cmd && os_strlen(cmd)) {
1796 int level = str_to_debug_level(cmd);
1797 if (level < 0)
1798 return -1;
1799 wpa_debug_level = level;
1800 }
1801
1802 if (stamp && os_strlen(stamp))
1803 wpa_debug_timestamp = atoi(stamp);
1804
1805 os_memcpy(buf, "OK\n", 3);
1806 return 3;
1807}
1808
1809
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001810static int wpa_supplicant_ctrl_iface_list_networks(
1811 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
1812{
1813 char *pos, *end;
1814 struct wpa_ssid *ssid;
1815 int ret;
1816
1817 pos = buf;
1818 end = buf + buflen;
1819 ret = os_snprintf(pos, end - pos,
1820 "network id / ssid / bssid / flags\n");
1821 if (ret < 0 || ret >= end - pos)
1822 return pos - buf;
1823 pos += ret;
1824
1825 ssid = wpa_s->conf->ssid;
1826 while (ssid) {
1827 ret = os_snprintf(pos, end - pos, "%d\t%s",
1828 ssid->id,
1829 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1830 if (ret < 0 || ret >= end - pos)
1831 return pos - buf;
1832 pos += ret;
1833 if (ssid->bssid_set) {
1834 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
1835 MAC2STR(ssid->bssid));
1836 } else {
1837 ret = os_snprintf(pos, end - pos, "\tany");
1838 }
1839 if (ret < 0 || ret >= end - pos)
1840 return pos - buf;
1841 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001842 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001843 ssid == wpa_s->current_ssid ?
1844 "[CURRENT]" : "",
1845 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001846 ssid->disabled_until.sec ?
1847 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001848 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
1849 "");
1850 if (ret < 0 || ret >= end - pos)
1851 return pos - buf;
1852 pos += ret;
1853 ret = os_snprintf(pos, end - pos, "\n");
1854 if (ret < 0 || ret >= end - pos)
1855 return pos - buf;
1856 pos += ret;
1857
1858 ssid = ssid->next;
1859 }
1860
1861 return pos - buf;
1862}
1863
1864
1865static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
1866{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001867 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001868 ret = os_snprintf(pos, end - pos, "-");
1869 if (ret < 0 || ret >= end - pos)
1870 return pos;
1871 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001872 ret = wpa_write_ciphers(pos, end, cipher, "+");
1873 if (ret < 0)
1874 return pos;
1875 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001876 return pos;
1877}
1878
1879
1880static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
1881 const u8 *ie, size_t ie_len)
1882{
1883 struct wpa_ie_data data;
1884 int first, ret;
1885
1886 ret = os_snprintf(pos, end - pos, "[%s-", proto);
1887 if (ret < 0 || ret >= end - pos)
1888 return pos;
1889 pos += ret;
1890
1891 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
1892 ret = os_snprintf(pos, end - pos, "?]");
1893 if (ret < 0 || ret >= end - pos)
1894 return pos;
1895 pos += ret;
1896 return pos;
1897 }
1898
1899 first = 1;
1900 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
1901 ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
1902 if (ret < 0 || ret >= end - pos)
1903 return pos;
1904 pos += ret;
1905 first = 0;
1906 }
1907 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
1908 ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
1909 if (ret < 0 || ret >= end - pos)
1910 return pos;
1911 pos += ret;
1912 first = 0;
1913 }
1914 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
1915 ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
1916 if (ret < 0 || ret >= end - pos)
1917 return pos;
1918 pos += ret;
1919 first = 0;
1920 }
1921#ifdef CONFIG_IEEE80211R
1922 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
1923 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
1924 first ? "" : "+");
1925 if (ret < 0 || ret >= end - pos)
1926 return pos;
1927 pos += ret;
1928 first = 0;
1929 }
1930 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
1931 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
1932 first ? "" : "+");
1933 if (ret < 0 || ret >= end - pos)
1934 return pos;
1935 pos += ret;
1936 first = 0;
1937 }
1938#endif /* CONFIG_IEEE80211R */
1939#ifdef CONFIG_IEEE80211W
1940 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
1941 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
1942 first ? "" : "+");
1943 if (ret < 0 || ret >= end - pos)
1944 return pos;
1945 pos += ret;
1946 first = 0;
1947 }
1948 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
1949 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
1950 first ? "" : "+");
1951 if (ret < 0 || ret >= end - pos)
1952 return pos;
1953 pos += ret;
1954 first = 0;
1955 }
1956#endif /* CONFIG_IEEE80211W */
1957
1958 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
1959
1960 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
1961 ret = os_snprintf(pos, end - pos, "-preauth");
1962 if (ret < 0 || ret >= end - pos)
1963 return pos;
1964 pos += ret;
1965 }
1966
1967 ret = os_snprintf(pos, end - pos, "]");
1968 if (ret < 0 || ret >= end - pos)
1969 return pos;
1970 pos += ret;
1971
1972 return pos;
1973}
1974
1975
1976#ifdef CONFIG_WPS
1977static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
1978 char *pos, char *end,
1979 struct wpabuf *wps_ie)
1980{
1981 int ret;
1982 const char *txt;
1983
1984 if (wps_ie == NULL)
1985 return pos;
1986 if (wps_is_selected_pbc_registrar(wps_ie))
1987 txt = "[WPS-PBC]";
1988#ifdef CONFIG_WPS2
1989 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
1990 txt = "[WPS-AUTH]";
1991#endif /* CONFIG_WPS2 */
1992 else if (wps_is_selected_pin_registrar(wps_ie))
1993 txt = "[WPS-PIN]";
1994 else
1995 txt = "[WPS]";
1996
1997 ret = os_snprintf(pos, end - pos, "%s", txt);
1998 if (ret >= 0 && ret < end - pos)
1999 pos += ret;
2000 wpabuf_free(wps_ie);
2001 return pos;
2002}
2003#endif /* CONFIG_WPS */
2004
2005
2006static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2007 char *pos, char *end,
2008 const struct wpa_bss *bss)
2009{
2010#ifdef CONFIG_WPS
2011 struct wpabuf *wps_ie;
2012 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2013 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2014#else /* CONFIG_WPS */
2015 return pos;
2016#endif /* CONFIG_WPS */
2017}
2018
2019
2020/* Format one result on one text line into a buffer. */
2021static int wpa_supplicant_ctrl_iface_scan_result(
2022 struct wpa_supplicant *wpa_s,
2023 const struct wpa_bss *bss, char *buf, size_t buflen)
2024{
2025 char *pos, *end;
2026 int ret;
2027 const u8 *ie, *ie2, *p2p;
2028
2029 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
2030 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2031 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2032 0)
2033 return 0; /* Do not show P2P listen discovery results here */
2034
2035 pos = buf;
2036 end = buf + buflen;
2037
2038 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2039 MAC2STR(bss->bssid), bss->freq, bss->level);
2040 if (ret < 0 || ret >= end - pos)
2041 return -1;
2042 pos += ret;
2043 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2044 if (ie)
2045 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2046 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
2047 if (ie2)
2048 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
2049 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
2050 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
2051 ret = os_snprintf(pos, end - pos, "[WEP]");
2052 if (ret < 0 || ret >= end - pos)
2053 return -1;
2054 pos += ret;
2055 }
2056 if (bss->caps & IEEE80211_CAP_IBSS) {
2057 ret = os_snprintf(pos, end - pos, "[IBSS]");
2058 if (ret < 0 || ret >= end - pos)
2059 return -1;
2060 pos += ret;
2061 }
2062 if (bss->caps & IEEE80211_CAP_ESS) {
2063 ret = os_snprintf(pos, end - pos, "[ESS]");
2064 if (ret < 0 || ret >= end - pos)
2065 return -1;
2066 pos += ret;
2067 }
2068 if (p2p) {
2069 ret = os_snprintf(pos, end - pos, "[P2P]");
2070 if (ret < 0 || ret >= end - pos)
2071 return -1;
2072 pos += ret;
2073 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002074#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002075 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002076 ret = os_snprintf(pos, end - pos, "[HS20]");
2077 if (ret < 0 || ret >= end - pos)
2078 return -1;
2079 pos += ret;
2080 }
2081#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002082
2083 ret = os_snprintf(pos, end - pos, "\t%s",
2084 wpa_ssid_txt(bss->ssid, bss->ssid_len));
2085 if (ret < 0 || ret >= end - pos)
2086 return -1;
2087 pos += ret;
2088
2089 ret = os_snprintf(pos, end - pos, "\n");
2090 if (ret < 0 || ret >= end - pos)
2091 return -1;
2092 pos += ret;
2093
2094 return pos - buf;
2095}
2096
2097
2098static int wpa_supplicant_ctrl_iface_scan_results(
2099 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2100{
2101 char *pos, *end;
2102 struct wpa_bss *bss;
2103 int ret;
2104
2105 pos = buf;
2106 end = buf + buflen;
2107 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2108 "flags / ssid\n");
2109 if (ret < 0 || ret >= end - pos)
2110 return pos - buf;
2111 pos += ret;
2112
2113 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2114 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2115 end - pos);
2116 if (ret < 0 || ret >= end - pos)
2117 return pos - buf;
2118 pos += ret;
2119 }
2120
2121 return pos - buf;
2122}
2123
2124
2125static int wpa_supplicant_ctrl_iface_select_network(
2126 struct wpa_supplicant *wpa_s, char *cmd)
2127{
2128 int id;
2129 struct wpa_ssid *ssid;
2130
2131 /* cmd: "<network id>" or "any" */
2132 if (os_strcmp(cmd, "any") == 0) {
2133 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2134 ssid = NULL;
2135 } else {
2136 id = atoi(cmd);
2137 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2138
2139 ssid = wpa_config_get_network(wpa_s->conf, id);
2140 if (ssid == NULL) {
2141 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2142 "network id=%d", id);
2143 return -1;
2144 }
2145 if (ssid->disabled == 2) {
2146 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2147 "SELECT_NETWORK with persistent P2P group");
2148 return -1;
2149 }
2150 }
2151
2152 wpa_supplicant_select_network(wpa_s, ssid);
2153
2154 return 0;
2155}
2156
2157
2158static int wpa_supplicant_ctrl_iface_enable_network(
2159 struct wpa_supplicant *wpa_s, char *cmd)
2160{
2161 int id;
2162 struct wpa_ssid *ssid;
2163
2164 /* cmd: "<network id>" or "all" */
2165 if (os_strcmp(cmd, "all") == 0) {
2166 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2167 ssid = NULL;
2168 } else {
2169 id = atoi(cmd);
2170 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2171
2172 ssid = wpa_config_get_network(wpa_s->conf, id);
2173 if (ssid == NULL) {
2174 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2175 "network id=%d", id);
2176 return -1;
2177 }
2178 if (ssid->disabled == 2) {
2179 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2180 "ENABLE_NETWORK with persistent P2P group");
2181 return -1;
2182 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002183
2184 if (os_strstr(cmd, " no-connect")) {
2185 ssid->disabled = 0;
2186 return 0;
2187 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002188 }
2189 wpa_supplicant_enable_network(wpa_s, ssid);
2190
2191 return 0;
2192}
2193
2194
2195static int wpa_supplicant_ctrl_iface_disable_network(
2196 struct wpa_supplicant *wpa_s, char *cmd)
2197{
2198 int id;
2199 struct wpa_ssid *ssid;
2200
2201 /* cmd: "<network id>" or "all" */
2202 if (os_strcmp(cmd, "all") == 0) {
2203 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2204 ssid = NULL;
2205 } else {
2206 id = atoi(cmd);
2207 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2208
2209 ssid = wpa_config_get_network(wpa_s->conf, id);
2210 if (ssid == NULL) {
2211 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2212 "network id=%d", id);
2213 return -1;
2214 }
2215 if (ssid->disabled == 2) {
2216 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2217 "DISABLE_NETWORK with persistent P2P "
2218 "group");
2219 return -1;
2220 }
2221 }
2222 wpa_supplicant_disable_network(wpa_s, ssid);
2223
2224 return 0;
2225}
2226
2227
2228static int wpa_supplicant_ctrl_iface_add_network(
2229 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2230{
2231 struct wpa_ssid *ssid;
2232 int ret;
2233
2234 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2235
2236 ssid = wpa_config_add_network(wpa_s->conf);
2237 if (ssid == NULL)
2238 return -1;
2239
2240 wpas_notify_network_added(wpa_s, ssid);
2241
2242 ssid->disabled = 1;
2243 wpa_config_set_network_defaults(ssid);
2244
2245 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
2246 if (ret < 0 || (size_t) ret >= buflen)
2247 return -1;
2248 return ret;
2249}
2250
2251
2252static int wpa_supplicant_ctrl_iface_remove_network(
2253 struct wpa_supplicant *wpa_s, char *cmd)
2254{
2255 int id;
2256 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002257 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002258
2259 /* cmd: "<network id>" or "all" */
2260 if (os_strcmp(cmd, "all") == 0) {
2261 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002262 if (wpa_s->sched_scanning)
2263 wpa_supplicant_cancel_sched_scan(wpa_s);
2264
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002265 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002266 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002267#ifdef CONFIG_SME
2268 wpa_s->sme.prev_bssid_set = 0;
2269#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002270 wpa_sm_set_config(wpa_s->wpa, NULL);
2271 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002272 wpa_supplicant_deauthenticate(
2273 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002274 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002275 ssid = wpa_s->conf->ssid;
2276 while (ssid) {
2277 struct wpa_ssid *remove_ssid = ssid;
2278 id = ssid->id;
2279 ssid = ssid->next;
2280 wpas_notify_network_removed(wpa_s, remove_ssid);
2281 wpa_config_remove_network(wpa_s->conf, id);
2282 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002283 return 0;
2284 }
2285
2286 id = atoi(cmd);
2287 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2288
2289 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002290 if (ssid)
2291 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002292 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002293 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2294 "id=%d", id);
2295 return -1;
2296 }
2297
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002298 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002299#ifdef CONFIG_SME
2300 wpa_s->sme.prev_bssid_set = 0;
2301#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002302 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002303 * Invalidate the EAP session cache if the current or
2304 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002305 */
2306 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002307 }
2308
2309 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002310 wpa_sm_set_config(wpa_s->wpa, NULL);
2311 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002312
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002313 wpa_supplicant_deauthenticate(wpa_s,
2314 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002315 }
2316
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002317 was_disabled = ssid->disabled;
2318
Deepthi Gowria831d782012-09-03 11:55:38 +03002319 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2320 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2321 "network id=%d", id);
2322 return -1;
2323 }
2324
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002325 if (!was_disabled && wpa_s->sched_scanning) {
2326 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2327 "network from filters");
2328 wpa_supplicant_cancel_sched_scan(wpa_s);
2329 wpa_supplicant_req_scan(wpa_s, 0, 0);
2330 }
2331
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002332 return 0;
2333}
2334
2335
2336static int wpa_supplicant_ctrl_iface_set_network(
2337 struct wpa_supplicant *wpa_s, char *cmd)
2338{
2339 int id;
2340 struct wpa_ssid *ssid;
2341 char *name, *value;
2342
2343 /* cmd: "<network id> <variable name> <value>" */
2344 name = os_strchr(cmd, ' ');
2345 if (name == NULL)
2346 return -1;
2347 *name++ = '\0';
2348
2349 value = os_strchr(name, ' ');
2350 if (value == NULL)
2351 return -1;
2352 *value++ = '\0';
2353
2354 id = atoi(cmd);
2355 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
2356 id, name);
2357 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2358 (u8 *) value, os_strlen(value));
2359
2360 ssid = wpa_config_get_network(wpa_s->conf, id);
2361 if (ssid == NULL) {
2362 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2363 "id=%d", id);
2364 return -1;
2365 }
2366
2367 if (wpa_config_set(ssid, name, value, 0) < 0) {
2368 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2369 "variable '%s'", name);
2370 return -1;
2371 }
2372
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002373 if (os_strcmp(name, "bssid") != 0 &&
2374 os_strcmp(name, "priority") != 0)
2375 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002376
2377 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002378 /*
2379 * Invalidate the EAP session cache if anything in the current
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002380 * or previously used configuration changes.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002381 */
2382 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2383 }
2384
2385 if ((os_strcmp(name, "psk") == 0 &&
2386 value[0] == '"' && ssid->ssid_len) ||
2387 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2388 wpa_config_update_psk(ssid);
2389 else if (os_strcmp(name, "priority") == 0)
2390 wpa_config_update_prio_list(wpa_s->conf);
2391
2392 return 0;
2393}
2394
2395
2396static int wpa_supplicant_ctrl_iface_get_network(
2397 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
2398{
2399 int id;
2400 size_t res;
2401 struct wpa_ssid *ssid;
2402 char *name, *value;
2403
2404 /* cmd: "<network id> <variable name>" */
2405 name = os_strchr(cmd, ' ');
2406 if (name == NULL || buflen == 0)
2407 return -1;
2408 *name++ = '\0';
2409
2410 id = atoi(cmd);
2411 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
2412 id, name);
2413
2414 ssid = wpa_config_get_network(wpa_s->conf, id);
2415 if (ssid == NULL) {
2416 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2417 "id=%d", id);
2418 return -1;
2419 }
2420
2421 value = wpa_config_get_no_key(ssid, name);
2422 if (value == NULL) {
2423 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
2424 "variable '%s'", name);
2425 return -1;
2426 }
2427
2428 res = os_strlcpy(buf, value, buflen);
2429 if (res >= buflen) {
2430 os_free(value);
2431 return -1;
2432 }
2433
2434 os_free(value);
2435
2436 return res;
2437}
2438
2439
Dmitry Shmidt04949592012-07-19 12:16:46 -07002440static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
2441 char *buf, size_t buflen)
2442{
2443 char *pos, *end;
2444 struct wpa_cred *cred;
2445 int ret;
2446
2447 pos = buf;
2448 end = buf + buflen;
2449 ret = os_snprintf(pos, end - pos,
2450 "cred id / realm / username / domain / imsi\n");
2451 if (ret < 0 || ret >= end - pos)
2452 return pos - buf;
2453 pos += ret;
2454
2455 cred = wpa_s->conf->cred;
2456 while (cred) {
2457 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
2458 cred->id, cred->realm ? cred->realm : "",
2459 cred->username ? cred->username : "",
2460 cred->domain ? cred->domain : "",
2461 cred->imsi ? cred->imsi : "");
2462 if (ret < 0 || ret >= end - pos)
2463 return pos - buf;
2464 pos += ret;
2465
2466 cred = cred->next;
2467 }
2468
2469 return pos - buf;
2470}
2471
2472
2473static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
2474 char *buf, size_t buflen)
2475{
2476 struct wpa_cred *cred;
2477 int ret;
2478
2479 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
2480
2481 cred = wpa_config_add_cred(wpa_s->conf);
2482 if (cred == NULL)
2483 return -1;
2484
2485 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
2486 if (ret < 0 || (size_t) ret >= buflen)
2487 return -1;
2488 return ret;
2489}
2490
2491
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002492static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
2493 struct wpa_cred *cred)
2494{
2495 struct wpa_ssid *ssid;
2496 char str[20];
2497
2498 if (cred == NULL || wpa_config_remove_cred(wpa_s->conf, cred->id) < 0) {
2499 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
2500 return -1;
2501 }
2502
2503 /* Remove any network entry created based on the removed credential */
2504 ssid = wpa_s->conf->ssid;
2505 while (ssid) {
2506 if (ssid->parent_cred == cred) {
2507 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
2508 "used the removed credential", ssid->id);
2509 os_snprintf(str, sizeof(str), "%d", ssid->id);
2510 ssid = ssid->next;
2511 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
2512 } else
2513 ssid = ssid->next;
2514 }
2515
2516 return 0;
2517}
2518
2519
Dmitry Shmidt04949592012-07-19 12:16:46 -07002520static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
2521 char *cmd)
2522{
2523 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002524 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002525
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002526 /* cmd: "<cred id>", "all", or "sp_fqdn=<FQDN>" */
Dmitry Shmidt04949592012-07-19 12:16:46 -07002527 if (os_strcmp(cmd, "all") == 0) {
2528 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
2529 cred = wpa_s->conf->cred;
2530 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002531 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002532 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002533 wpas_ctrl_remove_cred(wpa_s, prev);
2534 }
2535 return 0;
2536 }
2537
2538 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
2539 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
2540 cmd + 8);
2541 cred = wpa_s->conf->cred;
2542 while (cred) {
2543 prev = cred;
2544 cred = cred->next;
2545 if (prev->domain &&
2546 os_strcmp(prev->domain, cmd + 8) == 0)
2547 wpas_ctrl_remove_cred(wpa_s, prev);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002548 }
2549 return 0;
2550 }
2551
2552 id = atoi(cmd);
2553 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
2554
2555 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002556 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002557}
2558
2559
2560static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
2561 char *cmd)
2562{
2563 int id;
2564 struct wpa_cred *cred;
2565 char *name, *value;
2566
2567 /* cmd: "<cred id> <variable name> <value>" */
2568 name = os_strchr(cmd, ' ');
2569 if (name == NULL)
2570 return -1;
2571 *name++ = '\0';
2572
2573 value = os_strchr(name, ' ');
2574 if (value == NULL)
2575 return -1;
2576 *value++ = '\0';
2577
2578 id = atoi(cmd);
2579 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
2580 id, name);
2581 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2582 (u8 *) value, os_strlen(value));
2583
2584 cred = wpa_config_get_cred(wpa_s->conf, id);
2585 if (cred == NULL) {
2586 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
2587 id);
2588 return -1;
2589 }
2590
2591 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
2592 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
2593 "variable '%s'", name);
2594 return -1;
2595 }
2596
2597 return 0;
2598}
2599
2600
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002601#ifndef CONFIG_NO_CONFIG_WRITE
2602static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
2603{
2604 int ret;
2605
2606 if (!wpa_s->conf->update_config) {
2607 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
2608 "to update configuration (update_config=0)");
2609 return -1;
2610 }
2611
2612 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
2613 if (ret) {
2614 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
2615 "update configuration");
2616 } else {
2617 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
2618 " updated");
2619 }
2620
2621 return ret;
2622}
2623#endif /* CONFIG_NO_CONFIG_WRITE */
2624
2625
2626static int ctrl_iface_get_capability_pairwise(int res, char *strict,
2627 struct wpa_driver_capa *capa,
2628 char *buf, size_t buflen)
2629{
2630 int ret, first = 1;
2631 char *pos, *end;
2632 size_t len;
2633
2634 pos = buf;
2635 end = pos + buflen;
2636
2637 if (res < 0) {
2638 if (strict)
2639 return 0;
2640 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
2641 if (len >= buflen)
2642 return -1;
2643 return len;
2644 }
2645
2646 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2647 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2648 if (ret < 0 || ret >= end - pos)
2649 return pos - buf;
2650 pos += ret;
2651 first = 0;
2652 }
2653
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002654 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2655 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2656 if (ret < 0 || ret >= end - pos)
2657 return pos - buf;
2658 pos += ret;
2659 first = 0;
2660 }
2661
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002662 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2663 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2664 if (ret < 0 || ret >= end - pos)
2665 return pos - buf;
2666 pos += ret;
2667 first = 0;
2668 }
2669
2670 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2671 ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
2672 if (ret < 0 || ret >= end - pos)
2673 return pos - buf;
2674 pos += ret;
2675 first = 0;
2676 }
2677
2678 return pos - buf;
2679}
2680
2681
2682static int ctrl_iface_get_capability_group(int res, char *strict,
2683 struct wpa_driver_capa *capa,
2684 char *buf, size_t buflen)
2685{
2686 int ret, first = 1;
2687 char *pos, *end;
2688 size_t len;
2689
2690 pos = buf;
2691 end = pos + buflen;
2692
2693 if (res < 0) {
2694 if (strict)
2695 return 0;
2696 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
2697 if (len >= buflen)
2698 return -1;
2699 return len;
2700 }
2701
2702 if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2703 ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
2704 if (ret < 0 || ret >= end - pos)
2705 return pos - buf;
2706 pos += ret;
2707 first = 0;
2708 }
2709
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002710 if (capa->enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2711 ret = os_snprintf(pos, end - pos, "%sGCMP", first ? "" : " ");
2712 if (ret < 0 || ret >= end - pos)
2713 return pos - buf;
2714 pos += ret;
2715 first = 0;
2716 }
2717
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002718 if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2719 ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
2720 if (ret < 0 || ret >= end - pos)
2721 return pos - buf;
2722 pos += ret;
2723 first = 0;
2724 }
2725
2726 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
2727 ret = os_snprintf(pos, end - pos, "%sWEP104",
2728 first ? "" : " ");
2729 if (ret < 0 || ret >= end - pos)
2730 return pos - buf;
2731 pos += ret;
2732 first = 0;
2733 }
2734
2735 if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
2736 ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
2737 if (ret < 0 || ret >= end - pos)
2738 return pos - buf;
2739 pos += ret;
2740 first = 0;
2741 }
2742
2743 return pos - buf;
2744}
2745
2746
2747static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
2748 struct wpa_driver_capa *capa,
2749 char *buf, size_t buflen)
2750{
2751 int ret;
2752 char *pos, *end;
2753 size_t len;
2754
2755 pos = buf;
2756 end = pos + buflen;
2757
2758 if (res < 0) {
2759 if (strict)
2760 return 0;
2761 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
2762 "NONE", buflen);
2763 if (len >= buflen)
2764 return -1;
2765 return len;
2766 }
2767
2768 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
2769 if (ret < 0 || ret >= end - pos)
2770 return pos - buf;
2771 pos += ret;
2772
2773 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2774 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
2775 ret = os_snprintf(pos, end - pos, " WPA-EAP");
2776 if (ret < 0 || ret >= end - pos)
2777 return pos - buf;
2778 pos += ret;
2779 }
2780
2781 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
2782 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2783 ret = os_snprintf(pos, end - pos, " WPA-PSK");
2784 if (ret < 0 || ret >= end - pos)
2785 return pos - buf;
2786 pos += ret;
2787 }
2788
2789 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2790 ret = os_snprintf(pos, end - pos, " WPA-NONE");
2791 if (ret < 0 || ret >= end - pos)
2792 return pos - buf;
2793 pos += ret;
2794 }
2795
2796 return pos - buf;
2797}
2798
2799
2800static int ctrl_iface_get_capability_proto(int res, char *strict,
2801 struct wpa_driver_capa *capa,
2802 char *buf, size_t buflen)
2803{
2804 int ret, first = 1;
2805 char *pos, *end;
2806 size_t len;
2807
2808 pos = buf;
2809 end = pos + buflen;
2810
2811 if (res < 0) {
2812 if (strict)
2813 return 0;
2814 len = os_strlcpy(buf, "RSN WPA", buflen);
2815 if (len >= buflen)
2816 return -1;
2817 return len;
2818 }
2819
2820 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
2821 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2822 ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
2823 if (ret < 0 || ret >= end - pos)
2824 return pos - buf;
2825 pos += ret;
2826 first = 0;
2827 }
2828
2829 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2830 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
2831 ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
2832 if (ret < 0 || ret >= end - pos)
2833 return pos - buf;
2834 pos += ret;
2835 first = 0;
2836 }
2837
2838 return pos - buf;
2839}
2840
2841
2842static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
2843 struct wpa_driver_capa *capa,
2844 char *buf, size_t buflen)
2845{
2846 int ret, first = 1;
2847 char *pos, *end;
2848 size_t len;
2849
2850 pos = buf;
2851 end = pos + buflen;
2852
2853 if (res < 0) {
2854 if (strict)
2855 return 0;
2856 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
2857 if (len >= buflen)
2858 return -1;
2859 return len;
2860 }
2861
2862 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
2863 ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
2864 if (ret < 0 || ret >= end - pos)
2865 return pos - buf;
2866 pos += ret;
2867 first = 0;
2868 }
2869
2870 if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
2871 ret = os_snprintf(pos, end - pos, "%sSHARED",
2872 first ? "" : " ");
2873 if (ret < 0 || ret >= end - pos)
2874 return pos - buf;
2875 pos += ret;
2876 first = 0;
2877 }
2878
2879 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
2880 ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
2881 if (ret < 0 || ret >= end - pos)
2882 return pos - buf;
2883 pos += ret;
2884 first = 0;
2885 }
2886
2887 return pos - buf;
2888}
2889
2890
Dmitry Shmidt700a1372013-03-15 14:14:44 -07002891static int ctrl_iface_get_capability_modes(int res, char *strict,
2892 struct wpa_driver_capa *capa,
2893 char *buf, size_t buflen)
2894{
2895 int ret, first = 1;
2896 char *pos, *end;
2897 size_t len;
2898
2899 pos = buf;
2900 end = pos + buflen;
2901
2902 if (res < 0) {
2903 if (strict)
2904 return 0;
2905 len = os_strlcpy(buf, "IBSS AP", buflen);
2906 if (len >= buflen)
2907 return -1;
2908 return len;
2909 }
2910
2911 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
2912 ret = os_snprintf(pos, end - pos, "%sIBSS", first ? "" : " ");
2913 if (ret < 0 || ret >= end - pos)
2914 return pos - buf;
2915 pos += ret;
2916 first = 0;
2917 }
2918
2919 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
2920 ret = os_snprintf(pos, end - pos, "%sAP", first ? "" : " ");
2921 if (ret < 0 || ret >= end - pos)
2922 return pos - buf;
2923 pos += ret;
2924 first = 0;
2925 }
2926
2927 return pos - buf;
2928}
2929
2930
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002931static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
2932 char *buf, size_t buflen)
2933{
2934 struct hostapd_channel_data *chnl;
2935 int ret, i, j;
2936 char *pos, *end, *hmode;
2937
2938 pos = buf;
2939 end = pos + buflen;
2940
2941 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2942 switch (wpa_s->hw.modes[j].mode) {
2943 case HOSTAPD_MODE_IEEE80211B:
2944 hmode = "B";
2945 break;
2946 case HOSTAPD_MODE_IEEE80211G:
2947 hmode = "G";
2948 break;
2949 case HOSTAPD_MODE_IEEE80211A:
2950 hmode = "A";
2951 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002952 case HOSTAPD_MODE_IEEE80211AD:
2953 hmode = "AD";
2954 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002955 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002956 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002957 }
2958 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
2959 if (ret < 0 || ret >= end - pos)
2960 return pos - buf;
2961 pos += ret;
2962 chnl = wpa_s->hw.modes[j].channels;
2963 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002964 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
2965 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07002966 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
2967 if (ret < 0 || ret >= end - pos)
2968 return pos - buf;
2969 pos += ret;
2970 }
2971 ret = os_snprintf(pos, end - pos, "\n");
2972 if (ret < 0 || ret >= end - pos)
2973 return pos - buf;
2974 pos += ret;
2975 }
2976
2977 return pos - buf;
2978}
2979
2980
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07002981static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
2982 char *buf, size_t buflen)
2983{
2984 struct hostapd_channel_data *chnl;
2985 int ret, i, j;
2986 char *pos, *end, *hmode;
2987
2988 pos = buf;
2989 end = pos + buflen;
2990
2991 for (j = 0; j < wpa_s->hw.num_modes; j++) {
2992 switch (wpa_s->hw.modes[j].mode) {
2993 case HOSTAPD_MODE_IEEE80211B:
2994 hmode = "B";
2995 break;
2996 case HOSTAPD_MODE_IEEE80211G:
2997 hmode = "G";
2998 break;
2999 case HOSTAPD_MODE_IEEE80211A:
3000 hmode = "A";
3001 break;
3002 case HOSTAPD_MODE_IEEE80211AD:
3003 hmode = "AD";
3004 break;
3005 default:
3006 continue;
3007 }
3008 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3009 hmode);
3010 if (ret < 0 || ret >= end - pos)
3011 return pos - buf;
3012 pos += ret;
3013 chnl = wpa_s->hw.modes[j].channels;
3014 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3015 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3016 continue;
3017 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s\n",
3018 chnl[i].chan, chnl[i].freq,
3019 chnl[i].flag & HOSTAPD_CHAN_NO_IBSS ?
3020 " (NO_IBSS)" : "");
3021 if (ret < 0 || ret >= end - pos)
3022 return pos - buf;
3023 pos += ret;
3024 }
3025 ret = os_snprintf(pos, end - pos, "\n");
3026 if (ret < 0 || ret >= end - pos)
3027 return pos - buf;
3028 pos += ret;
3029 }
3030
3031 return pos - buf;
3032}
3033
3034
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003035static int wpa_supplicant_ctrl_iface_get_capability(
3036 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3037 size_t buflen)
3038{
3039 struct wpa_driver_capa capa;
3040 int res;
3041 char *strict;
3042 char field[30];
3043 size_t len;
3044
3045 /* Determine whether or not strict checking was requested */
3046 len = os_strlcpy(field, _field, sizeof(field));
3047 if (len >= sizeof(field))
3048 return -1;
3049 strict = os_strchr(field, ' ');
3050 if (strict != NULL) {
3051 *strict++ = '\0';
3052 if (os_strcmp(strict, "strict") != 0)
3053 return -1;
3054 }
3055
3056 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3057 field, strict ? strict : "");
3058
3059 if (os_strcmp(field, "eap") == 0) {
3060 return eap_get_names(buf, buflen);
3061 }
3062
3063 res = wpa_drv_get_capa(wpa_s, &capa);
3064
3065 if (os_strcmp(field, "pairwise") == 0)
3066 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3067 buf, buflen);
3068
3069 if (os_strcmp(field, "group") == 0)
3070 return ctrl_iface_get_capability_group(res, strict, &capa,
3071 buf, buflen);
3072
3073 if (os_strcmp(field, "key_mgmt") == 0)
3074 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3075 buf, buflen);
3076
3077 if (os_strcmp(field, "proto") == 0)
3078 return ctrl_iface_get_capability_proto(res, strict, &capa,
3079 buf, buflen);
3080
3081 if (os_strcmp(field, "auth_alg") == 0)
3082 return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
3083 buf, buflen);
3084
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003085 if (os_strcmp(field, "modes") == 0)
3086 return ctrl_iface_get_capability_modes(res, strict, &capa,
3087 buf, buflen);
3088
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003089 if (os_strcmp(field, "channels") == 0)
3090 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3091
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003092 if (os_strcmp(field, "freq") == 0)
3093 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3094
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003095 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3096 field);
3097
3098 return -1;
3099}
3100
3101
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003102#ifdef CONFIG_INTERWORKING
3103static char * anqp_add_hex(char *pos, char *end, const char *title,
3104 struct wpabuf *data)
3105{
3106 char *start = pos;
3107 size_t i;
3108 int ret;
3109 const u8 *d;
3110
3111 if (data == NULL)
3112 return start;
3113
3114 ret = os_snprintf(pos, end - pos, "%s=", title);
3115 if (ret < 0 || ret >= end - pos)
3116 return start;
3117 pos += ret;
3118
3119 d = wpabuf_head_u8(data);
3120 for (i = 0; i < wpabuf_len(data); i++) {
3121 ret = os_snprintf(pos, end - pos, "%02x", *d++);
3122 if (ret < 0 || ret >= end - pos)
3123 return start;
3124 pos += ret;
3125 }
3126
3127 ret = os_snprintf(pos, end - pos, "\n");
3128 if (ret < 0 || ret >= end - pos)
3129 return start;
3130 pos += ret;
3131
3132 return pos;
3133}
3134#endif /* CONFIG_INTERWORKING */
3135
3136
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003137static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
3138 unsigned long mask, char *buf, size_t buflen)
3139{
3140 size_t i;
3141 int ret;
3142 char *pos, *end;
3143 const u8 *ie, *ie2;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003144
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003145 pos = buf;
3146 end = buf + buflen;
3147
3148 if (mask & WPA_BSS_MASK_ID) {
3149 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
3150 if (ret < 0 || ret >= end - pos)
3151 return 0;
3152 pos += ret;
3153 }
3154
3155 if (mask & WPA_BSS_MASK_BSSID) {
3156 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
3157 MAC2STR(bss->bssid));
3158 if (ret < 0 || ret >= end - pos)
3159 return 0;
3160 pos += ret;
3161 }
3162
3163 if (mask & WPA_BSS_MASK_FREQ) {
3164 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
3165 if (ret < 0 || ret >= end - pos)
3166 return 0;
3167 pos += ret;
3168 }
3169
3170 if (mask & WPA_BSS_MASK_BEACON_INT) {
3171 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
3172 bss->beacon_int);
3173 if (ret < 0 || ret >= end - pos)
3174 return 0;
3175 pos += ret;
3176 }
3177
3178 if (mask & WPA_BSS_MASK_CAPABILITIES) {
3179 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
3180 bss->caps);
3181 if (ret < 0 || ret >= end - pos)
3182 return 0;
3183 pos += ret;
3184 }
3185
3186 if (mask & WPA_BSS_MASK_QUAL) {
3187 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
3188 if (ret < 0 || ret >= end - pos)
3189 return 0;
3190 pos += ret;
3191 }
3192
3193 if (mask & WPA_BSS_MASK_NOISE) {
3194 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
3195 if (ret < 0 || ret >= end - pos)
3196 return 0;
3197 pos += ret;
3198 }
3199
3200 if (mask & WPA_BSS_MASK_LEVEL) {
3201 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
3202 if (ret < 0 || ret >= end - pos)
3203 return 0;
3204 pos += ret;
3205 }
3206
3207 if (mask & WPA_BSS_MASK_TSF) {
3208 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
3209 (unsigned long long) bss->tsf);
3210 if (ret < 0 || ret >= end - pos)
3211 return 0;
3212 pos += ret;
3213 }
3214
3215 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003216 struct os_time now;
3217
3218 os_get_time(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003219 ret = os_snprintf(pos, end - pos, "age=%d\n",
3220 (int) (now.sec - bss->last_update.sec));
3221 if (ret < 0 || ret >= end - pos)
3222 return 0;
3223 pos += ret;
3224 }
3225
3226 if (mask & WPA_BSS_MASK_IE) {
3227 ret = os_snprintf(pos, end - pos, "ie=");
3228 if (ret < 0 || ret >= end - pos)
3229 return 0;
3230 pos += ret;
3231
3232 ie = (const u8 *) (bss + 1);
3233 for (i = 0; i < bss->ie_len; i++) {
3234 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
3235 if (ret < 0 || ret >= end - pos)
3236 return 0;
3237 pos += ret;
3238 }
3239
3240 ret = os_snprintf(pos, end - pos, "\n");
3241 if (ret < 0 || ret >= end - pos)
3242 return 0;
3243 pos += ret;
3244 }
3245
3246 if (mask & WPA_BSS_MASK_FLAGS) {
3247 ret = os_snprintf(pos, end - pos, "flags=");
3248 if (ret < 0 || ret >= end - pos)
3249 return 0;
3250 pos += ret;
3251
3252 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
3253 if (ie)
3254 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
3255 2 + ie[1]);
3256 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
3257 if (ie2)
3258 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
3259 2 + ie2[1]);
3260 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
3261 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
3262 ret = os_snprintf(pos, end - pos, "[WEP]");
3263 if (ret < 0 || ret >= end - pos)
3264 return 0;
3265 pos += ret;
3266 }
3267 if (bss->caps & IEEE80211_CAP_IBSS) {
3268 ret = os_snprintf(pos, end - pos, "[IBSS]");
3269 if (ret < 0 || ret >= end - pos)
3270 return 0;
3271 pos += ret;
3272 }
3273 if (bss->caps & IEEE80211_CAP_ESS) {
3274 ret = os_snprintf(pos, end - pos, "[ESS]");
3275 if (ret < 0 || ret >= end - pos)
3276 return 0;
3277 pos += ret;
3278 }
3279 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE)) {
3280 ret = os_snprintf(pos, end - pos, "[P2P]");
3281 if (ret < 0 || ret >= end - pos)
3282 return 0;
3283 pos += ret;
3284 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003285#ifdef CONFIG_HS20
3286 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
3287 ret = os_snprintf(pos, end - pos, "[HS20]");
3288 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003289 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003290 pos += ret;
3291 }
3292#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003293
3294 ret = os_snprintf(pos, end - pos, "\n");
3295 if (ret < 0 || ret >= end - pos)
3296 return 0;
3297 pos += ret;
3298 }
3299
3300 if (mask & WPA_BSS_MASK_SSID) {
3301 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
3302 wpa_ssid_txt(bss->ssid, bss->ssid_len));
3303 if (ret < 0 || ret >= end - pos)
3304 return 0;
3305 pos += ret;
3306 }
3307
3308#ifdef CONFIG_WPS
3309 if (mask & WPA_BSS_MASK_WPS_SCAN) {
3310 ie = (const u8 *) (bss + 1);
3311 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
3312 if (ret < 0 || ret >= end - pos)
3313 return 0;
3314 pos += ret;
3315 }
3316#endif /* CONFIG_WPS */
3317
3318#ifdef CONFIG_P2P
3319 if (mask & WPA_BSS_MASK_P2P_SCAN) {
3320 ie = (const u8 *) (bss + 1);
3321 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
3322 if (ret < 0 || ret >= end - pos)
3323 return 0;
3324 pos += ret;
3325 }
3326#endif /* CONFIG_P2P */
3327
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003328#ifdef CONFIG_WIFI_DISPLAY
3329 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
3330 struct wpabuf *wfd;
3331 ie = (const u8 *) (bss + 1);
3332 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
3333 WFD_IE_VENDOR_TYPE);
3334 if (wfd) {
3335 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
3336 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003337 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003338 pos += ret;
3339
3340 pos += wpa_snprintf_hex(pos, end - pos,
3341 wpabuf_head(wfd),
3342 wpabuf_len(wfd));
3343 wpabuf_free(wfd);
3344
3345 ret = os_snprintf(pos, end - pos, "\n");
3346 if (ret < 0 || ret >= end - pos)
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003347 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003348 pos += ret;
3349 }
3350 }
3351#endif /* CONFIG_WIFI_DISPLAY */
3352
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003353#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003354 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
3355 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003356 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003357 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003358 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003359 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003360 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003361 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003362 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003363 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003364 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003365 anqp->nai_realm);
3366 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003367 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003368 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003369#ifdef CONFIG_HS20
3370 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003371 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003372 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003373 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003374 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07003375 anqp->hs20_connection_capability);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003376#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003377 }
3378#endif /* CONFIG_INTERWORKING */
3379
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003380 if (mask & WPA_BSS_MASK_DELIM) {
3381 ret = os_snprintf(pos, end - pos, "====\n");
3382 if (ret < 0 || ret >= end - pos)
3383 return 0;
3384 pos += ret;
3385 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07003386
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003387 return pos - buf;
3388}
3389
Dmitry Shmidt04949592012-07-19 12:16:46 -07003390
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003391static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
3392 const char *cmd, char *buf,
3393 size_t buflen)
3394{
3395 u8 bssid[ETH_ALEN];
3396 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003397 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003398 struct wpa_bss *bsslast = NULL;
3399 struct dl_list *next;
3400 int ret = 0;
3401 int len;
3402 char *ctmp;
3403 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003404
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003405 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
3406 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
3407 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003408 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003409 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
3410 list_id);
3411 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003412 unsigned int id1, id2;
3413
3414 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
3415 wpa_printf(MSG_INFO, "Wrong BSS range "
3416 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003417 return 0;
3418 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003419
Dmitry Shmidtf8623282013-02-20 14:34:59 -08003420 if (*(cmd + 6) == '-')
3421 id1 = 0;
3422 else
3423 id1 = atoi(cmd + 6);
3424 ctmp++;
3425 if (*ctmp >= '0' && *ctmp <= '9')
3426 id2 = atoi(ctmp);
3427 else
3428 id2 = (unsigned int) -1;
3429 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
3430 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003431 bsslast = dl_list_last(&wpa_s->bss_id,
3432 struct wpa_bss,
3433 list_id);
3434 else {
3435 bsslast = wpa_bss_get_id(wpa_s, id2);
3436 if (bsslast == NULL && bss && id2 > id1) {
3437 struct wpa_bss *tmp = bss;
3438 for (;;) {
3439 next = tmp->list_id.next;
3440 if (next == &wpa_s->bss_id)
3441 break;
3442 tmp = dl_list_entry(
3443 next, struct wpa_bss,
3444 list_id);
3445 if (tmp->id > id2)
3446 break;
3447 bsslast = tmp;
3448 }
3449 }
3450 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003451 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003452 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003453 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08003454 else if (os_strncmp(cmd, "LAST", 4) == 0)
3455 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003456 else if (os_strncmp(cmd, "ID-", 3) == 0) {
3457 i = atoi(cmd + 3);
3458 bss = wpa_bss_get_id(wpa_s, i);
3459 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
3460 i = atoi(cmd + 5);
3461 bss = wpa_bss_get_id(wpa_s, i);
3462 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003463 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003464 if (next == &wpa_s->bss_id)
3465 bss = NULL;
3466 else
3467 bss = dl_list_entry(next, struct wpa_bss,
3468 list_id);
3469 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003470#ifdef CONFIG_P2P
3471 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
3472 if (hwaddr_aton(cmd + 13, bssid) == 0)
3473 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
3474 else
3475 bss = NULL;
3476#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003477 } else if (hwaddr_aton(cmd, bssid) == 0)
3478 bss = wpa_bss_get_bssid(wpa_s, bssid);
3479 else {
3480 struct wpa_bss *tmp;
3481 i = atoi(cmd);
3482 bss = NULL;
3483 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
3484 {
3485 if (i-- == 0) {
3486 bss = tmp;
3487 break;
3488 }
3489 }
3490 }
3491
Dmitry Shmidt04949592012-07-19 12:16:46 -07003492 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
3493 mask = strtoul(ctmp + 5, NULL, 0x10);
3494 if (mask == 0)
3495 mask = WPA_BSS_MASK_ALL;
3496 }
3497
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003498 if (bss == NULL)
3499 return 0;
3500
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003501 if (bsslast == NULL)
3502 bsslast = bss;
3503 do {
3504 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
3505 ret += len;
3506 buf += len;
3507 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003508 if (bss == bsslast) {
3509 if ((mask & WPA_BSS_MASK_DELIM) && len &&
3510 (bss == dl_list_last(&wpa_s->bss_id,
3511 struct wpa_bss, list_id)))
3512 os_snprintf(buf - 5, 5, "####\n");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003513 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08003514 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003515 next = bss->list_id.next;
3516 if (next == &wpa_s->bss_id)
3517 break;
3518 bss = dl_list_entry(next, struct wpa_bss, list_id);
3519 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003520
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003521 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003522}
3523
3524
3525static int wpa_supplicant_ctrl_iface_ap_scan(
3526 struct wpa_supplicant *wpa_s, char *cmd)
3527{
3528 int ap_scan = atoi(cmd);
3529 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
3530}
3531
3532
3533static int wpa_supplicant_ctrl_iface_scan_interval(
3534 struct wpa_supplicant *wpa_s, char *cmd)
3535{
3536 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003537 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003538}
3539
3540
3541static int wpa_supplicant_ctrl_iface_bss_expire_age(
3542 struct wpa_supplicant *wpa_s, char *cmd)
3543{
3544 int expire_age = atoi(cmd);
3545 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
3546}
3547
3548
3549static int wpa_supplicant_ctrl_iface_bss_expire_count(
3550 struct wpa_supplicant *wpa_s, char *cmd)
3551{
3552 int expire_count = atoi(cmd);
3553 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
3554}
3555
3556
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07003557static int wpa_supplicant_ctrl_iface_bss_flush(
3558 struct wpa_supplicant *wpa_s, char *cmd)
3559{
3560 int flush_age = atoi(cmd);
3561
3562 if (flush_age == 0)
3563 wpa_bss_flush(wpa_s);
3564 else
3565 wpa_bss_flush_by_age(wpa_s, flush_age);
3566 return 0;
3567}
3568
3569
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003570static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
3571{
3572 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
3573 /* MLME-DELETEKEYS.request */
3574 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
3575 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
3576 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
3577 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
3578#ifdef CONFIG_IEEE80211W
3579 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
3580 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
3581#endif /* CONFIG_IEEE80211W */
3582
3583 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
3584 0);
3585 /* MLME-SETPROTECTION.request(None) */
3586 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
3587 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
3588 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
3589 wpa_sm_drop_sa(wpa_s->wpa);
3590}
3591
3592
3593static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
3594 char *addr)
3595{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003596#ifdef CONFIG_NO_SCAN_PROCESSING
3597 return -1;
3598#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003599 u8 bssid[ETH_ALEN];
3600 struct wpa_bss *bss;
3601 struct wpa_ssid *ssid = wpa_s->current_ssid;
3602
3603 if (hwaddr_aton(addr, bssid)) {
3604 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
3605 "address '%s'", addr);
3606 return -1;
3607 }
3608
3609 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
3610
Dmitry Shmidt444d5672013-04-01 13:08:44 -07003611 if (!ssid) {
3612 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
3613 "configuration known for the target AP");
3614 return -1;
3615 }
3616
3617 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003618 if (!bss) {
3619 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
3620 "from BSS table");
3621 return -1;
3622 }
3623
3624 /*
3625 * TODO: Find best network configuration block from configuration to
3626 * allow roaming to other networks
3627 */
3628
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003629 wpa_s->reassociate = 1;
3630 wpa_supplicant_connect(wpa_s, bss, ssid);
3631
3632 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003633#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003634}
3635
3636
3637#ifdef CONFIG_P2P
3638static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
3639{
3640 unsigned int timeout = atoi(cmd);
3641 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003642 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
3643 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003644 unsigned int search_delay;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003645
3646 if (os_strstr(cmd, "type=social"))
3647 type = P2P_FIND_ONLY_SOCIAL;
3648 else if (os_strstr(cmd, "type=progressive"))
3649 type = P2P_FIND_PROGRESSIVE;
3650
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003651 pos = os_strstr(cmd, "dev_id=");
3652 if (pos) {
3653 pos += 7;
3654 if (hwaddr_aton(pos, dev_id))
3655 return -1;
3656 _dev_id = dev_id;
3657 }
3658
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003659 pos = os_strstr(cmd, "delay=");
3660 if (pos) {
3661 pos += 6;
3662 search_delay = atoi(pos);
3663 } else
3664 search_delay = wpas_p2p_search_delay(wpa_s);
3665
3666 return wpas_p2p_find(wpa_s, timeout, type, 0, NULL, _dev_id,
3667 search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003668}
3669
3670
3671static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
3672 char *buf, size_t buflen)
3673{
3674 u8 addr[ETH_ALEN];
3675 char *pos, *pos2;
3676 char *pin = NULL;
3677 enum p2p_wps_method wps_method;
3678 int new_pin;
3679 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003680 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003681 int join;
3682 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003683 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003684 int go_intent = -1;
3685 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003686 int pd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003687 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003688
Dmitry Shmidt04949592012-07-19 12:16:46 -07003689 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad]
3690 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003691 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
3692 * [ht40] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003693
3694 if (hwaddr_aton(cmd, addr))
3695 return -1;
3696
3697 pos = cmd + 17;
3698 if (*pos != ' ')
3699 return -1;
3700 pos++;
3701
3702 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003703 pos2 = os_strstr(pos, " persistent=");
3704 if (pos2) {
3705 struct wpa_ssid *ssid;
3706 persistent_id = atoi(pos2 + 12);
3707 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
3708 if (ssid == NULL || ssid->disabled != 2 ||
3709 ssid->mode != WPAS_MODE_P2P_GO) {
3710 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3711 "SSID id=%d for persistent P2P group (GO)",
3712 persistent_id);
3713 return -1;
3714 }
3715 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003716 join = os_strstr(pos, " join") != NULL;
3717 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003718 automatic = os_strstr(pos, " auto") != NULL;
3719 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003720 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003721
3722 pos2 = os_strstr(pos, " go_intent=");
3723 if (pos2) {
3724 pos2 += 11;
3725 go_intent = atoi(pos2);
3726 if (go_intent < 0 || go_intent > 15)
3727 return -1;
3728 }
3729
3730 pos2 = os_strstr(pos, " freq=");
3731 if (pos2) {
3732 pos2 += 6;
3733 freq = atoi(pos2);
3734 if (freq <= 0)
3735 return -1;
3736 }
3737
3738 if (os_strncmp(pos, "pin", 3) == 0) {
3739 /* Request random PIN (to be displayed) and enable the PIN */
3740 wps_method = WPS_PIN_DISPLAY;
3741 } else if (os_strncmp(pos, "pbc", 3) == 0) {
3742 wps_method = WPS_PBC;
3743 } else {
3744 pin = pos;
3745 pos = os_strchr(pin, ' ');
3746 wps_method = WPS_PIN_KEYPAD;
3747 if (pos) {
3748 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003749 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003750 wps_method = WPS_PIN_DISPLAY;
3751 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003752 if (!wps_pin_str_valid(pin)) {
3753 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
3754 return 17;
3755 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003756 }
3757
3758 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07003759 persistent_group, automatic, join,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003760 auth, go_intent, freq, persistent_id, pd,
3761 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003762 if (new_pin == -2) {
3763 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
3764 return 25;
3765 }
3766 if (new_pin == -3) {
3767 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
3768 return 25;
3769 }
3770 if (new_pin < 0)
3771 return -1;
3772 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
3773 ret = os_snprintf(buf, buflen, "%08d", new_pin);
3774 if (ret < 0 || (size_t) ret >= buflen)
3775 return -1;
3776 return ret;
3777 }
3778
3779 os_memcpy(buf, "OK\n", 3);
3780 return 3;
3781}
3782
3783
3784static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
3785{
3786 unsigned int timeout = atoi(cmd);
3787 return wpas_p2p_listen(wpa_s, timeout);
3788}
3789
3790
3791static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
3792{
3793 u8 addr[ETH_ALEN];
3794 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003795 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003796
Dmitry Shmidt04949592012-07-19 12:16:46 -07003797 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003798
3799 if (hwaddr_aton(cmd, addr))
3800 return -1;
3801
3802 pos = cmd + 17;
3803 if (*pos != ' ')
3804 return -1;
3805 pos++;
3806
Dmitry Shmidt04949592012-07-19 12:16:46 -07003807 if (os_strstr(pos, " join") != NULL)
3808 use = WPAS_P2P_PD_FOR_JOIN;
3809 else if (os_strstr(pos, " auto") != NULL)
3810 use = WPAS_P2P_PD_AUTO;
3811
3812 return wpas_p2p_prov_disc(wpa_s, addr, pos, use);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003813}
3814
3815
3816static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
3817 size_t buflen)
3818{
3819 struct wpa_ssid *ssid = wpa_s->current_ssid;
3820
3821 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3822 ssid->passphrase == NULL)
3823 return -1;
3824
3825 os_strlcpy(buf, ssid->passphrase, buflen);
3826 return os_strlen(buf);
3827}
3828
3829
3830static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
3831 char *buf, size_t buflen)
3832{
3833 u64 ref;
3834 int res;
3835 u8 dst_buf[ETH_ALEN], *dst;
3836 struct wpabuf *tlvs;
3837 char *pos;
3838 size_t len;
3839
3840 if (hwaddr_aton(cmd, dst_buf))
3841 return -1;
3842 dst = dst_buf;
3843 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
3844 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
3845 dst = NULL;
3846 pos = cmd + 17;
3847 if (*pos != ' ')
3848 return -1;
3849 pos++;
3850
3851 if (os_strncmp(pos, "upnp ", 5) == 0) {
3852 u8 version;
3853 pos += 5;
3854 if (hexstr2bin(pos, &version, 1) < 0)
3855 return -1;
3856 pos += 2;
3857 if (*pos != ' ')
3858 return -1;
3859 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003860 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003861#ifdef CONFIG_WIFI_DISPLAY
3862 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
3863 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
3864#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003865 } else {
3866 len = os_strlen(pos);
3867 if (len & 1)
3868 return -1;
3869 len /= 2;
3870 tlvs = wpabuf_alloc(len);
3871 if (tlvs == NULL)
3872 return -1;
3873 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
3874 wpabuf_free(tlvs);
3875 return -1;
3876 }
3877
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003878 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003879 wpabuf_free(tlvs);
3880 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003881 if (ref == 0)
3882 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003883 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
3884 if (res < 0 || (unsigned) res >= buflen)
3885 return -1;
3886 return res;
3887}
3888
3889
3890static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
3891 char *cmd)
3892{
3893 long long unsigned val;
3894 u64 req;
3895 if (sscanf(cmd, "%llx", &val) != 1)
3896 return -1;
3897 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003898 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003899}
3900
3901
3902static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
3903{
3904 int freq;
3905 u8 dst[ETH_ALEN];
3906 u8 dialog_token;
3907 struct wpabuf *resp_tlvs;
3908 char *pos, *pos2;
3909 size_t len;
3910
3911 pos = os_strchr(cmd, ' ');
3912 if (pos == NULL)
3913 return -1;
3914 *pos++ = '\0';
3915 freq = atoi(cmd);
3916 if (freq == 0)
3917 return -1;
3918
3919 if (hwaddr_aton(pos, dst))
3920 return -1;
3921 pos += 17;
3922 if (*pos != ' ')
3923 return -1;
3924 pos++;
3925
3926 pos2 = os_strchr(pos, ' ');
3927 if (pos2 == NULL)
3928 return -1;
3929 *pos2++ = '\0';
3930 dialog_token = atoi(pos);
3931
3932 len = os_strlen(pos2);
3933 if (len & 1)
3934 return -1;
3935 len /= 2;
3936 resp_tlvs = wpabuf_alloc(len);
3937 if (resp_tlvs == NULL)
3938 return -1;
3939 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
3940 wpabuf_free(resp_tlvs);
3941 return -1;
3942 }
3943
3944 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
3945 wpabuf_free(resp_tlvs);
3946 return 0;
3947}
3948
3949
3950static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
3951 char *cmd)
3952{
Dmitry Shmidt04949592012-07-19 12:16:46 -07003953 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
3954 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003955 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
3956 return 0;
3957}
3958
3959
3960static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
3961 char *cmd)
3962{
3963 char *pos;
3964 size_t len;
3965 struct wpabuf *query, *resp;
3966
3967 pos = os_strchr(cmd, ' ');
3968 if (pos == NULL)
3969 return -1;
3970 *pos++ = '\0';
3971
3972 len = os_strlen(cmd);
3973 if (len & 1)
3974 return -1;
3975 len /= 2;
3976 query = wpabuf_alloc(len);
3977 if (query == NULL)
3978 return -1;
3979 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
3980 wpabuf_free(query);
3981 return -1;
3982 }
3983
3984 len = os_strlen(pos);
3985 if (len & 1) {
3986 wpabuf_free(query);
3987 return -1;
3988 }
3989 len /= 2;
3990 resp = wpabuf_alloc(len);
3991 if (resp == NULL) {
3992 wpabuf_free(query);
3993 return -1;
3994 }
3995 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
3996 wpabuf_free(query);
3997 wpabuf_free(resp);
3998 return -1;
3999 }
4000
4001 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
4002 wpabuf_free(query);
4003 wpabuf_free(resp);
4004 return -1;
4005 }
4006 return 0;
4007}
4008
4009
4010static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4011{
4012 char *pos;
4013 u8 version;
4014
4015 pos = os_strchr(cmd, ' ');
4016 if (pos == NULL)
4017 return -1;
4018 *pos++ = '\0';
4019
4020 if (hexstr2bin(cmd, &version, 1) < 0)
4021 return -1;
4022
4023 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
4024}
4025
4026
4027static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
4028{
4029 char *pos;
4030
4031 pos = os_strchr(cmd, ' ');
4032 if (pos == NULL)
4033 return -1;
4034 *pos++ = '\0';
4035
4036 if (os_strcmp(cmd, "bonjour") == 0)
4037 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
4038 if (os_strcmp(cmd, "upnp") == 0)
4039 return p2p_ctrl_service_add_upnp(wpa_s, pos);
4040 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4041 return -1;
4042}
4043
4044
4045static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
4046 char *cmd)
4047{
4048 size_t len;
4049 struct wpabuf *query;
4050 int ret;
4051
4052 len = os_strlen(cmd);
4053 if (len & 1)
4054 return -1;
4055 len /= 2;
4056 query = wpabuf_alloc(len);
4057 if (query == NULL)
4058 return -1;
4059 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
4060 wpabuf_free(query);
4061 return -1;
4062 }
4063
4064 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
4065 wpabuf_free(query);
4066 return ret;
4067}
4068
4069
4070static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4071{
4072 char *pos;
4073 u8 version;
4074
4075 pos = os_strchr(cmd, ' ');
4076 if (pos == NULL)
4077 return -1;
4078 *pos++ = '\0';
4079
4080 if (hexstr2bin(cmd, &version, 1) < 0)
4081 return -1;
4082
4083 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
4084}
4085
4086
4087static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
4088{
4089 char *pos;
4090
4091 pos = os_strchr(cmd, ' ');
4092 if (pos == NULL)
4093 return -1;
4094 *pos++ = '\0';
4095
4096 if (os_strcmp(cmd, "bonjour") == 0)
4097 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
4098 if (os_strcmp(cmd, "upnp") == 0)
4099 return p2p_ctrl_service_del_upnp(wpa_s, pos);
4100 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4101 return -1;
4102}
4103
4104
4105static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
4106{
4107 u8 addr[ETH_ALEN];
4108
4109 /* <addr> */
4110
4111 if (hwaddr_aton(cmd, addr))
4112 return -1;
4113
4114 return wpas_p2p_reject(wpa_s, addr);
4115}
4116
4117
4118static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
4119{
4120 char *pos;
4121 int id;
4122 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004123 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004124 int freq = 0, pref_freq = 0;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004125 int ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004126
4127 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004128 pos = os_strstr(cmd, " peer=");
4129 if (pos) {
4130 pos += 6;
4131 if (hwaddr_aton(pos, peer))
4132 return -1;
4133 _peer = peer;
4134 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004135 ssid = wpa_config_get_network(wpa_s->conf, id);
4136 if (ssid == NULL || ssid->disabled != 2) {
4137 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4138 "for persistent P2P group",
4139 id);
4140 return -1;
4141 }
4142
Jouni Malinen31be0a42012-08-31 21:20:51 +03004143 pos = os_strstr(cmd, " freq=");
4144 if (pos) {
4145 pos += 6;
4146 freq = atoi(pos);
4147 if (freq <= 0)
4148 return -1;
4149 }
4150
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004151 pos = os_strstr(cmd, " pref=");
4152 if (pos) {
4153 pos += 6;
4154 pref_freq = atoi(pos);
4155 if (pref_freq <= 0)
4156 return -1;
4157 }
4158
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004159 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004160
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004161 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, ht40, pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004162}
4163
4164
4165static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
4166{
4167 char *pos;
4168 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
4169
4170 pos = os_strstr(cmd, " peer=");
4171 if (!pos)
4172 return -1;
4173
4174 *pos = '\0';
4175 pos += 6;
4176 if (hwaddr_aton(pos, peer)) {
4177 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
4178 return -1;
4179 }
4180
4181 pos = os_strstr(pos, " go_dev_addr=");
4182 if (pos) {
4183 pos += 13;
4184 if (hwaddr_aton(pos, go_dev_addr)) {
4185 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
4186 pos);
4187 return -1;
4188 }
4189 go_dev = go_dev_addr;
4190 }
4191
4192 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
4193}
4194
4195
4196static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
4197{
4198 if (os_strncmp(cmd, "persistent=", 11) == 0)
4199 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
4200 if (os_strncmp(cmd, "group=", 6) == 0)
4201 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
4202
4203 return -1;
4204}
4205
4206
4207static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004208 char *cmd, int freq, int ht40)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004209{
4210 int id;
4211 struct wpa_ssid *ssid;
4212
4213 id = atoi(cmd);
4214 ssid = wpa_config_get_network(wpa_s->conf, id);
4215 if (ssid == NULL || ssid->disabled != 2) {
4216 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4217 "for persistent P2P group",
4218 id);
4219 return -1;
4220 }
4221
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004222 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq, ht40, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004223}
4224
4225
4226static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
4227{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004228 int freq = 0, ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004229 char *pos;
4230
4231 pos = os_strstr(cmd, "freq=");
4232 if (pos)
4233 freq = atoi(pos + 5);
4234
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004235 ht40 = (os_strstr(cmd, "ht40") != NULL) || wpa_s->conf->p2p_go_ht40;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004236
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004237 if (os_strncmp(cmd, "persistent=", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004238 return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq,
4239 ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004240 if (os_strcmp(cmd, "persistent") == 0 ||
4241 os_strncmp(cmd, "persistent ", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004242 return wpas_p2p_group_add(wpa_s, 1, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004243 if (os_strncmp(cmd, "freq=", 5) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004244 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
4245 if (ht40)
4246 return wpas_p2p_group_add(wpa_s, 0, freq, ht40);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004247
4248 wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
4249 cmd);
4250 return -1;
4251}
4252
4253
4254static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
4255 char *buf, size_t buflen)
4256{
4257 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004258 int next, res;
4259 const struct p2p_peer_info *info;
4260 char *pos, *end;
4261 char devtype[WPS_DEV_TYPE_BUFSIZE];
4262 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004263 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004264
4265 if (!wpa_s->global->p2p)
4266 return -1;
4267
4268 if (os_strcmp(cmd, "FIRST") == 0) {
4269 addr_ptr = NULL;
4270 next = 0;
4271 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4272 if (hwaddr_aton(cmd + 5, addr) < 0)
4273 return -1;
4274 addr_ptr = addr;
4275 next = 1;
4276 } else {
4277 if (hwaddr_aton(cmd, addr) < 0)
4278 return -1;
4279 addr_ptr = addr;
4280 next = 0;
4281 }
4282
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004283 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
4284 if (info == NULL)
4285 return -1;
4286
4287 pos = buf;
4288 end = buf + buflen;
4289
4290 res = os_snprintf(pos, end - pos, MACSTR "\n"
4291 "pri_dev_type=%s\n"
4292 "device_name=%s\n"
4293 "manufacturer=%s\n"
4294 "model_name=%s\n"
4295 "model_number=%s\n"
4296 "serial_number=%s\n"
4297 "config_methods=0x%x\n"
4298 "dev_capab=0x%x\n"
4299 "group_capab=0x%x\n"
4300 "level=%d\n",
4301 MAC2STR(info->p2p_device_addr),
4302 wps_dev_type_bin2str(info->pri_dev_type,
4303 devtype, sizeof(devtype)),
4304 info->device_name,
4305 info->manufacturer,
4306 info->model_name,
4307 info->model_number,
4308 info->serial_number,
4309 info->config_methods,
4310 info->dev_capab,
4311 info->group_capab,
4312 info->level);
4313 if (res < 0 || res >= end - pos)
4314 return pos - buf;
4315 pos += res;
4316
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004317 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
4318 {
4319 const u8 *t;
4320 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
4321 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
4322 wps_dev_type_bin2str(t, devtype,
4323 sizeof(devtype)));
4324 if (res < 0 || res >= end - pos)
4325 return pos - buf;
4326 pos += res;
4327 }
4328
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004329 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004330 if (ssid) {
4331 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
4332 if (res < 0 || res >= end - pos)
4333 return pos - buf;
4334 pos += res;
4335 }
4336
4337 res = p2p_get_peer_info_txt(info, pos, end - pos);
4338 if (res < 0)
4339 return pos - buf;
4340 pos += res;
4341
4342 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004343}
4344
4345
Dmitry Shmidt04949592012-07-19 12:16:46 -07004346static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
4347 const char *param)
4348{
4349 struct wpa_freq_range *freq = NULL, *n;
4350 unsigned int count = 0, i;
4351 const char *pos, *pos2, *pos3;
4352
4353 if (wpa_s->global->p2p == NULL)
4354 return -1;
4355
4356 /*
4357 * param includes comma separated frequency range.
4358 * For example: 2412-2432,2462,5000-6000
4359 */
4360 pos = param;
4361 while (pos && pos[0]) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004362 n = os_realloc_array(freq, count + 1,
4363 sizeof(struct wpa_freq_range));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004364 if (n == NULL) {
4365 os_free(freq);
4366 return -1;
4367 }
4368 freq = n;
4369 freq[count].min = atoi(pos);
4370 pos2 = os_strchr(pos, '-');
4371 pos3 = os_strchr(pos, ',');
4372 if (pos2 && (!pos3 || pos2 < pos3)) {
4373 pos2++;
4374 freq[count].max = atoi(pos2);
4375 } else
4376 freq[count].max = freq[count].min;
4377 pos = pos3;
4378 if (pos)
4379 pos++;
4380 count++;
4381 }
4382
4383 for (i = 0; i < count; i++) {
4384 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
4385 freq[i].min, freq[i].max);
4386 }
4387
4388 os_free(wpa_s->global->p2p_disallow_freq);
4389 wpa_s->global->p2p_disallow_freq = freq;
4390 wpa_s->global->num_p2p_disallow_freq = count;
4391 wpas_p2p_update_channel_list(wpa_s);
4392 return 0;
4393}
4394
4395
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004396static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
4397{
4398 char *param;
4399
4400 if (wpa_s->global->p2p == NULL)
4401 return -1;
4402
4403 param = os_strchr(cmd, ' ');
4404 if (param == NULL)
4405 return -1;
4406 *param++ = '\0';
4407
4408 if (os_strcmp(cmd, "discoverability") == 0) {
4409 p2p_set_client_discoverability(wpa_s->global->p2p,
4410 atoi(param));
4411 return 0;
4412 }
4413
4414 if (os_strcmp(cmd, "managed") == 0) {
4415 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
4416 return 0;
4417 }
4418
4419 if (os_strcmp(cmd, "listen_channel") == 0) {
4420 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
4421 atoi(param));
4422 }
4423
4424 if (os_strcmp(cmd, "ssid_postfix") == 0) {
4425 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
4426 os_strlen(param));
4427 }
4428
4429 if (os_strcmp(cmd, "noa") == 0) {
4430 char *pos;
4431 int count, start, duration;
4432 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
4433 count = atoi(param);
4434 pos = os_strchr(param, ',');
4435 if (pos == NULL)
4436 return -1;
4437 pos++;
4438 start = atoi(pos);
4439 pos = os_strchr(pos, ',');
4440 if (pos == NULL)
4441 return -1;
4442 pos++;
4443 duration = atoi(pos);
4444 if (count < 0 || count > 255 || start < 0 || duration < 0)
4445 return -1;
4446 if (count == 0 && duration > 0)
4447 return -1;
4448 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
4449 "start=%d duration=%d", count, start, duration);
4450 return wpas_p2p_set_noa(wpa_s, count, start, duration);
4451 }
4452
4453 if (os_strcmp(cmd, "ps") == 0)
4454 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
4455
4456 if (os_strcmp(cmd, "oppps") == 0)
4457 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
4458
4459 if (os_strcmp(cmd, "ctwindow") == 0)
4460 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
4461
4462 if (os_strcmp(cmd, "disabled") == 0) {
4463 wpa_s->global->p2p_disabled = atoi(param);
4464 wpa_printf(MSG_DEBUG, "P2P functionality %s",
4465 wpa_s->global->p2p_disabled ?
4466 "disabled" : "enabled");
4467 if (wpa_s->global->p2p_disabled) {
4468 wpas_p2p_stop_find(wpa_s);
4469 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4470 p2p_flush(wpa_s->global->p2p);
4471 }
4472 return 0;
4473 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004474
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004475 if (os_strcmp(cmd, "conc_pref") == 0) {
4476 if (os_strcmp(param, "sta") == 0)
4477 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
4478 else if (os_strcmp(param, "p2p") == 0)
4479 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004480 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004481 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004482 return -1;
4483 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07004484 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07004485 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07004486 return 0;
4487 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004488
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004489 if (os_strcmp(cmd, "force_long_sd") == 0) {
4490 wpa_s->force_long_sd = atoi(param);
4491 return 0;
4492 }
4493
4494 if (os_strcmp(cmd, "peer_filter") == 0) {
4495 u8 addr[ETH_ALEN];
4496 if (hwaddr_aton(param, addr))
4497 return -1;
4498 p2p_set_peer_filter(wpa_s->global->p2p, addr);
4499 return 0;
4500 }
4501
4502 if (os_strcmp(cmd, "cross_connect") == 0)
4503 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
4504
4505 if (os_strcmp(cmd, "go_apsd") == 0) {
4506 if (os_strcmp(param, "disable") == 0)
4507 wpa_s->set_ap_uapsd = 0;
4508 else {
4509 wpa_s->set_ap_uapsd = 1;
4510 wpa_s->ap_uapsd = atoi(param);
4511 }
4512 return 0;
4513 }
4514
4515 if (os_strcmp(cmd, "client_apsd") == 0) {
4516 if (os_strcmp(param, "disable") == 0)
4517 wpa_s->set_sta_uapsd = 0;
4518 else {
4519 int be, bk, vi, vo;
4520 char *pos;
4521 /* format: BE,BK,VI,VO;max SP Length */
4522 be = atoi(param);
4523 pos = os_strchr(param, ',');
4524 if (pos == NULL)
4525 return -1;
4526 pos++;
4527 bk = atoi(pos);
4528 pos = os_strchr(pos, ',');
4529 if (pos == NULL)
4530 return -1;
4531 pos++;
4532 vi = atoi(pos);
4533 pos = os_strchr(pos, ',');
4534 if (pos == NULL)
4535 return -1;
4536 pos++;
4537 vo = atoi(pos);
4538 /* ignore max SP Length for now */
4539
4540 wpa_s->set_sta_uapsd = 1;
4541 wpa_s->sta_uapsd = 0;
4542 if (be)
4543 wpa_s->sta_uapsd |= BIT(0);
4544 if (bk)
4545 wpa_s->sta_uapsd |= BIT(1);
4546 if (vi)
4547 wpa_s->sta_uapsd |= BIT(2);
4548 if (vo)
4549 wpa_s->sta_uapsd |= BIT(3);
4550 }
4551 return 0;
4552 }
4553
Dmitry Shmidt04949592012-07-19 12:16:46 -07004554 if (os_strcmp(cmd, "disallow_freq") == 0)
4555 return p2p_ctrl_disallow_freq(wpa_s, param);
4556
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004557 if (os_strcmp(cmd, "disc_int") == 0) {
4558 int min_disc_int, max_disc_int, max_disc_tu;
4559 char *pos;
4560
4561 pos = param;
4562
4563 min_disc_int = atoi(pos);
4564 pos = os_strchr(pos, ' ');
4565 if (pos == NULL)
4566 return -1;
4567 *pos++ = '\0';
4568
4569 max_disc_int = atoi(pos);
4570 pos = os_strchr(pos, ' ');
4571 if (pos == NULL)
4572 return -1;
4573 *pos++ = '\0';
4574
4575 max_disc_tu = atoi(pos);
4576
4577 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
4578 max_disc_int, max_disc_tu);
4579 }
4580
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004581 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
4582 cmd);
4583
4584 return -1;
4585}
4586
4587
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004588static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
4589{
4590 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
4591 wpa_s->force_long_sd = 0;
4592 if (wpa_s->global->p2p)
4593 p2p_flush(wpa_s->global->p2p);
4594}
4595
4596
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004597static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
4598{
4599 char *pos, *pos2;
4600 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
4601
4602 if (cmd[0]) {
4603 pos = os_strchr(cmd, ' ');
4604 if (pos == NULL)
4605 return -1;
4606 *pos++ = '\0';
4607 dur1 = atoi(cmd);
4608
4609 pos2 = os_strchr(pos, ' ');
4610 if (pos2)
4611 *pos2++ = '\0';
4612 int1 = atoi(pos);
4613 } else
4614 pos2 = NULL;
4615
4616 if (pos2) {
4617 pos = os_strchr(pos2, ' ');
4618 if (pos == NULL)
4619 return -1;
4620 *pos++ = '\0';
4621 dur2 = atoi(pos2);
4622 int2 = atoi(pos);
4623 }
4624
4625 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
4626}
4627
4628
4629static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
4630{
4631 char *pos;
4632 unsigned int period = 0, interval = 0;
4633
4634 if (cmd[0]) {
4635 pos = os_strchr(cmd, ' ');
4636 if (pos == NULL)
4637 return -1;
4638 *pos++ = '\0';
4639 period = atoi(cmd);
4640 interval = atoi(pos);
4641 }
4642
4643 return wpas_p2p_ext_listen(wpa_s, period, interval);
4644}
4645
4646#endif /* CONFIG_P2P */
4647
4648
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004649#ifdef CONFIG_INTERWORKING
4650static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst)
4651{
4652 u8 bssid[ETH_ALEN];
4653 struct wpa_bss *bss;
4654
4655 if (hwaddr_aton(dst, bssid)) {
4656 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
4657 return -1;
4658 }
4659
4660 bss = wpa_bss_get_bssid(wpa_s, bssid);
4661 if (bss == NULL) {
4662 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
4663 MAC2STR(bssid));
4664 return -1;
4665 }
4666
4667 return interworking_connect(wpa_s, bss);
4668}
4669
4670
4671static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
4672{
4673 u8 dst_addr[ETH_ALEN];
4674 int used;
4675 char *pos;
4676#define MAX_ANQP_INFO_ID 100
4677 u16 id[MAX_ANQP_INFO_ID];
4678 size_t num_id = 0;
4679
4680 used = hwaddr_aton2(dst, dst_addr);
4681 if (used < 0)
4682 return -1;
4683 pos = dst + used;
4684 while (num_id < MAX_ANQP_INFO_ID) {
4685 id[num_id] = atoi(pos);
4686 if (id[num_id])
4687 num_id++;
4688 pos = os_strchr(pos + 1, ',');
4689 if (pos == NULL)
4690 break;
4691 pos++;
4692 }
4693
4694 if (num_id == 0)
4695 return -1;
4696
4697 return anqp_send_req(wpa_s, dst_addr, id, num_id);
4698}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004699
4700
4701static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
4702{
4703 u8 dst_addr[ETH_ALEN];
4704 struct wpabuf *advproto, *query = NULL;
4705 int used, ret = -1;
4706 char *pos, *end;
4707 size_t len;
4708
4709 used = hwaddr_aton2(cmd, dst_addr);
4710 if (used < 0)
4711 return -1;
4712
4713 pos = cmd + used;
4714 while (*pos == ' ')
4715 pos++;
4716
4717 /* Advertisement Protocol ID */
4718 end = os_strchr(pos, ' ');
4719 if (end)
4720 len = end - pos;
4721 else
4722 len = os_strlen(pos);
4723 if (len & 0x01)
4724 return -1;
4725 len /= 2;
4726 if (len == 0)
4727 return -1;
4728 advproto = wpabuf_alloc(len);
4729 if (advproto == NULL)
4730 return -1;
4731 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
4732 goto fail;
4733
4734 if (end) {
4735 /* Optional Query Request */
4736 pos = end + 1;
4737 while (*pos == ' ')
4738 pos++;
4739
4740 len = os_strlen(pos);
4741 if (len) {
4742 if (len & 0x01)
4743 goto fail;
4744 len /= 2;
4745 if (len == 0)
4746 goto fail;
4747 query = wpabuf_alloc(len);
4748 if (query == NULL)
4749 goto fail;
4750 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
4751 goto fail;
4752 }
4753 }
4754
4755 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
4756
4757fail:
4758 wpabuf_free(advproto);
4759 wpabuf_free(query);
4760
4761 return ret;
4762}
4763
4764
4765static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
4766 size_t buflen)
4767{
4768 u8 addr[ETH_ALEN];
4769 int dialog_token;
4770 int used;
4771 char *pos;
4772 size_t resp_len, start, requested_len;
4773
4774 if (!wpa_s->last_gas_resp)
4775 return -1;
4776
4777 used = hwaddr_aton2(cmd, addr);
4778 if (used < 0)
4779 return -1;
4780
4781 pos = cmd + used;
4782 while (*pos == ' ')
4783 pos++;
4784 dialog_token = atoi(pos);
4785
4786 if (os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) != 0 ||
4787 dialog_token != wpa_s->last_gas_dialog_token)
4788 return -1;
4789
4790 resp_len = wpabuf_len(wpa_s->last_gas_resp);
4791 start = 0;
4792 requested_len = resp_len;
4793
4794 pos = os_strchr(pos, ' ');
4795 if (pos) {
4796 start = atoi(pos);
4797 if (start > resp_len)
4798 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4799 pos = os_strchr(pos, ',');
4800 if (pos == NULL)
4801 return -1;
4802 pos++;
4803 requested_len = atoi(pos);
4804 if (start + requested_len > resp_len)
4805 return os_snprintf(buf, buflen, "FAIL-Invalid range");
4806 }
4807
4808 if (requested_len * 2 + 1 > buflen)
4809 return os_snprintf(buf, buflen, "FAIL-Too long response");
4810
4811 return wpa_snprintf_hex(buf, buflen,
4812 wpabuf_head_u8(wpa_s->last_gas_resp) + start,
4813 requested_len);
4814}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004815#endif /* CONFIG_INTERWORKING */
4816
4817
Dmitry Shmidt04949592012-07-19 12:16:46 -07004818#ifdef CONFIG_HS20
4819
4820static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
4821{
4822 u8 dst_addr[ETH_ALEN];
4823 int used;
4824 char *pos;
4825 u32 subtypes = 0;
4826
4827 used = hwaddr_aton2(dst, dst_addr);
4828 if (used < 0)
4829 return -1;
4830 pos = dst + used;
4831 for (;;) {
4832 int num = atoi(pos);
4833 if (num <= 0 || num > 31)
4834 return -1;
4835 subtypes |= BIT(num);
4836 pos = os_strchr(pos + 1, ',');
4837 if (pos == NULL)
4838 break;
4839 pos++;
4840 }
4841
4842 if (subtypes == 0)
4843 return -1;
4844
4845 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0);
4846}
4847
4848
4849static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4850 const u8 *addr, const char *realm)
4851{
4852 u8 *buf;
4853 size_t rlen, len;
4854 int ret;
4855
4856 rlen = os_strlen(realm);
4857 len = 3 + rlen;
4858 buf = os_malloc(len);
4859 if (buf == NULL)
4860 return -1;
4861 buf[0] = 1; /* NAI Home Realm Count */
4862 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
4863 buf[2] = rlen;
4864 os_memcpy(buf + 3, realm, rlen);
4865
4866 ret = hs20_anqp_send_req(wpa_s, addr,
4867 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4868 buf, len);
4869
4870 os_free(buf);
4871
4872 return ret;
4873}
4874
4875
4876static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
4877 char *dst)
4878{
4879 struct wpa_cred *cred = wpa_s->conf->cred;
4880 u8 dst_addr[ETH_ALEN];
4881 int used;
4882 u8 *buf;
4883 size_t len;
4884 int ret;
4885
4886 used = hwaddr_aton2(dst, dst_addr);
4887 if (used < 0)
4888 return -1;
4889
4890 while (dst[used] == ' ')
4891 used++;
4892 if (os_strncmp(dst + used, "realm=", 6) == 0)
4893 return hs20_nai_home_realm_list(wpa_s, dst_addr,
4894 dst + used + 6);
4895
4896 len = os_strlen(dst + used);
4897
4898 if (len == 0 && cred && cred->realm)
4899 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
4900
4901 if (len % 1)
4902 return -1;
4903 len /= 2;
4904 buf = os_malloc(len);
4905 if (buf == NULL)
4906 return -1;
4907 if (hexstr2bin(dst + used, buf, len) < 0) {
4908 os_free(buf);
4909 return -1;
4910 }
4911
4912 ret = hs20_anqp_send_req(wpa_s, dst_addr,
4913 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
4914 buf, len);
4915 os_free(buf);
4916
4917 return ret;
4918}
4919
4920#endif /* CONFIG_HS20 */
4921
4922
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004923static int wpa_supplicant_ctrl_iface_sta_autoconnect(
4924 struct wpa_supplicant *wpa_s, char *cmd)
4925{
4926 wpa_s->auto_reconnect_disabled = atoi(cmd) == 0 ? 1 : 0;
4927 return 0;
4928}
4929
4930
Dmitry Shmidt04949592012-07-19 12:16:46 -07004931#ifdef CONFIG_AUTOSCAN
4932
4933static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
4934 char *cmd)
4935{
4936 enum wpa_states state = wpa_s->wpa_state;
4937 char *new_params = NULL;
4938
4939 if (os_strlen(cmd) > 0) {
4940 new_params = os_strdup(cmd);
4941 if (new_params == NULL)
4942 return -1;
4943 }
4944
4945 os_free(wpa_s->conf->autoscan);
4946 wpa_s->conf->autoscan = new_params;
4947
4948 if (wpa_s->conf->autoscan == NULL)
4949 autoscan_deinit(wpa_s);
4950 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
4951 autoscan_init(wpa_s, 1);
4952 else if (state == WPA_SCANNING)
4953 wpa_supplicant_reinit_autoscan(wpa_s);
4954
4955 return 0;
4956}
4957
4958#endif /* CONFIG_AUTOSCAN */
4959
4960
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004961#ifdef CONFIG_WNM
4962
4963static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
4964{
4965 int enter;
4966 int intval = 0;
4967 char *pos;
4968 int ret;
4969 struct wpabuf *tfs_req = NULL;
4970
4971 if (os_strncmp(cmd, "enter", 5) == 0)
4972 enter = 1;
4973 else if (os_strncmp(cmd, "exit", 4) == 0)
4974 enter = 0;
4975 else
4976 return -1;
4977
4978 pos = os_strstr(cmd, " interval=");
4979 if (pos)
4980 intval = atoi(pos + 10);
4981
4982 pos = os_strstr(cmd, " tfs_req=");
4983 if (pos) {
4984 char *end;
4985 size_t len;
4986 pos += 9;
4987 end = os_strchr(pos, ' ');
4988 if (end)
4989 len = end - pos;
4990 else
4991 len = os_strlen(pos);
4992 if (len & 1)
4993 return -1;
4994 len /= 2;
4995 tfs_req = wpabuf_alloc(len);
4996 if (tfs_req == NULL)
4997 return -1;
4998 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
4999 wpabuf_free(tfs_req);
5000 return -1;
5001 }
5002 }
5003
5004 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
5005 WNM_SLEEP_MODE_EXIT, intval,
5006 tfs_req);
5007 wpabuf_free(tfs_req);
5008
5009 return ret;
5010}
5011
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005012
5013static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
5014{
5015 int query_reason;
5016
5017 query_reason = atoi(cmd);
5018
5019 wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
5020 query_reason);
5021
5022 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
5023}
5024
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005025#endif /* CONFIG_WNM */
5026
5027
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005028/* Get string representation of channel width */
5029static const char * channel_width_name(enum chan_width width)
5030{
5031 switch (width) {
5032 case CHAN_WIDTH_20_NOHT:
5033 return "20 MHz (no HT)";
5034 case CHAN_WIDTH_20:
5035 return "20 MHz";
5036 case CHAN_WIDTH_40:
5037 return "40 MHz";
5038 case CHAN_WIDTH_80:
5039 return "80 MHz";
5040 case CHAN_WIDTH_80P80:
5041 return "80+80 MHz";
5042 case CHAN_WIDTH_160:
5043 return "160 MHz";
5044 default:
5045 return "unknown";
5046 }
5047}
5048
5049
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005050static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
5051 size_t buflen)
5052{
5053 struct wpa_signal_info si;
5054 int ret;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005055 char *pos, *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005056
5057 ret = wpa_drv_signal_poll(wpa_s, &si);
5058 if (ret)
5059 return -1;
5060
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005061 pos = buf;
5062 end = buf + buflen;
5063
5064 ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005065 "NOISE=%d\nFREQUENCY=%u\n",
5066 si.current_signal, si.current_txrate / 1000,
5067 si.current_noise, si.frequency);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005068 if (ret < 0 || ret > end - pos)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005069 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005070 pos += ret;
5071
5072 if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
5073 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
5074 channel_width_name(si.chanwidth));
5075 if (ret < 0 || ret > end - pos)
5076 return -1;
5077 pos += ret;
5078 }
5079
5080 if (si.center_frq1 > 0 && si.center_frq2 > 0) {
5081 ret = os_snprintf(pos, end - pos,
5082 "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
5083 si.center_frq1, si.center_frq2);
5084 if (ret < 0 || ret > end - pos)
5085 return -1;
5086 pos += ret;
5087 }
5088
5089 if (si.avg_signal) {
5090 ret = os_snprintf(pos, end - pos,
5091 "AVG_RSSI=%d\n", si.avg_signal);
5092 if (ret < 0 || ret >= end - pos)
5093 return -1;
5094 pos += ret;
5095 }
5096
5097 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005098}
5099
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005100
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005101static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
5102 size_t buflen)
5103{
5104 struct hostap_sta_driver_data sta;
5105 int ret;
5106
5107 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
5108 if (ret)
5109 return -1;
5110
5111 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03005112 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
5113 if (ret < 0 || (size_t) ret > buflen)
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005114 return -1;
5115 return ret;
5116}
5117
5118
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005119#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005120static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
5121 char *buf, size_t buflen)
5122{
5123 int ret;
5124
5125 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
5126 if (ret == 0)
5127 ret = sprintf(buf, "%s\n", "OK");
5128 return ret;
5129}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005130#endif
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005131
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07005132
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005133static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
5134{
5135 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
5136
5137#ifdef CONFIG_P2P
5138 wpas_p2p_stop_find(wpa_s);
5139 p2p_ctrl_flush(wpa_s);
5140 wpas_p2p_group_remove(wpa_s, "*");
5141#endif /* CONFIG_P2P */
5142
5143#ifdef CONFIG_WPS_TESTING
5144 wps_version_number = 0x20;
5145 wps_testing_dummy_cred = 0;
5146#endif /* CONFIG_WPS_TESTING */
5147#ifdef CONFIG_WPS
5148 wpas_wps_cancel(wpa_s);
5149#endif /* CONFIG_WPS */
5150
5151#ifdef CONFIG_TDLS_TESTING
5152 extern unsigned int tdls_testing;
5153 tdls_testing = 0;
5154#endif /* CONFIG_TDLS_TESTING */
5155#ifdef CONFIG_TDLS
5156 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
5157 wpa_tdls_enable(wpa_s->wpa, 1);
5158#endif /* CONFIG_TDLS */
5159
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005160 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
5161 wpa_supplicant_stop_countermeasures(wpa_s, NULL);
5162
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005163 wpa_s->no_keep_alive = 0;
5164
5165 os_free(wpa_s->disallow_aps_bssid);
5166 wpa_s->disallow_aps_bssid = NULL;
5167 wpa_s->disallow_aps_bssid_count = 0;
5168 os_free(wpa_s->disallow_aps_ssid);
5169 wpa_s->disallow_aps_ssid = NULL;
5170 wpa_s->disallow_aps_ssid_count = 0;
5171
5172 wpa_s->set_sta_uapsd = 0;
5173 wpa_s->sta_uapsd = 0;
5174
5175 wpa_drv_radio_disable(wpa_s, 0);
5176
5177 wpa_bss_flush(wpa_s);
5178 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07005179 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005180 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
5181 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
5182}
5183
5184
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005185char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
5186 char *buf, size_t *resp_len)
5187{
5188 char *reply;
5189 const int reply_size = 4096;
5190 int ctrl_rsp = 0;
5191 int reply_len;
5192
5193 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005194 os_strncmp(buf, "SET_NETWORK ", 12) == 0 ||
5195 os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005196 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005197 os_strncmp(buf, "NFC_RX_HANDOVER_SEL", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005198 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
5199 (const u8 *) buf, os_strlen(buf));
5200 } else {
5201 int level = MSG_DEBUG;
5202 if (os_strcmp(buf, "PING") == 0)
5203 level = MSG_EXCESSIVE;
5204 wpa_hexdump_ascii(level, "RX ctrl_iface",
5205 (const u8 *) buf, os_strlen(buf));
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005206 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005207 }
5208
5209 reply = os_malloc(reply_size);
5210 if (reply == NULL) {
5211 *resp_len = 1;
5212 return NULL;
5213 }
5214
5215 os_memcpy(reply, "OK\n", 3);
5216 reply_len = 3;
5217
5218 if (os_strcmp(buf, "PING") == 0) {
5219 os_memcpy(reply, "PONG\n", 5);
5220 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005221 } else if (os_strcmp(buf, "IFNAME") == 0) {
5222 reply_len = os_strlen(wpa_s->ifname);
5223 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005224 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
5225 if (wpa_debug_reopen_file() < 0)
5226 reply_len = -1;
5227 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
5228 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
5229 } else if (os_strcmp(buf, "MIB") == 0) {
5230 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
5231 if (reply_len >= 0) {
5232 int res;
5233 res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
5234 reply_size - reply_len);
5235 if (res < 0)
5236 reply_len = -1;
5237 else
5238 reply_len += res;
5239 }
5240 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
5241 reply_len = wpa_supplicant_ctrl_iface_status(
5242 wpa_s, buf + 6, reply, reply_size);
5243 } else if (os_strcmp(buf, "PMKSA") == 0) {
5244 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
5245 reply_size);
5246 } else if (os_strncmp(buf, "SET ", 4) == 0) {
5247 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
5248 reply_len = -1;
5249 } else if (os_strncmp(buf, "GET ", 4) == 0) {
5250 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
5251 reply, reply_size);
5252 } else if (os_strcmp(buf, "LOGON") == 0) {
5253 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
5254 } else if (os_strcmp(buf, "LOGOFF") == 0) {
5255 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
5256 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
5257 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5258 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005259 else
5260 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005261 } else if (os_strcmp(buf, "RECONNECT") == 0) {
5262 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5263 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005264 else if (wpa_s->disconnected)
5265 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005266#ifdef IEEE8021X_EAPOL
5267 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
5268 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
5269 reply_len = -1;
5270#endif /* IEEE8021X_EAPOL */
5271#ifdef CONFIG_PEERKEY
5272 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
5273 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
5274 reply_len = -1;
5275#endif /* CONFIG_PEERKEY */
5276#ifdef CONFIG_IEEE80211R
5277 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
5278 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
5279 reply_len = -1;
5280#endif /* CONFIG_IEEE80211R */
5281#ifdef CONFIG_WPS
5282 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
5283 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
5284 if (res == -2) {
5285 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5286 reply_len = 17;
5287 } else if (res)
5288 reply_len = -1;
5289 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
5290 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
5291 if (res == -2) {
5292 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5293 reply_len = 17;
5294 } else if (res)
5295 reply_len = -1;
5296 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
5297 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
5298 reply,
5299 reply_size);
5300 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
5301 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
5302 wpa_s, buf + 14, reply, reply_size);
5303 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
5304 if (wpas_wps_cancel(wpa_s))
5305 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005306#ifdef CONFIG_WPS_NFC
5307 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
5308 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
5309 reply_len = -1;
5310 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
5311 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
5312 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005313 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
5314 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
5315 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005316 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
5317 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
5318 wpa_s, buf + 14, reply, reply_size);
5319 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
5320 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
5321 buf + 17))
5322 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005323 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
5324 reply_len = wpas_ctrl_nfc_get_handover_req(
5325 wpa_s, buf + 21, reply, reply_size);
5326 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
5327 reply_len = wpas_ctrl_nfc_get_handover_sel(
5328 wpa_s, buf + 21, reply, reply_size);
5329 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_REQ ", 20) == 0) {
5330 reply_len = wpas_ctrl_nfc_rx_handover_req(
5331 wpa_s, buf + 20, reply, reply_size);
5332 } else if (os_strncmp(buf, "NFC_RX_HANDOVER_SEL ", 20) == 0) {
5333 if (wpas_ctrl_nfc_rx_handover_sel(wpa_s, buf + 20))
5334 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08005335 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
5336 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
5337 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005338#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005339 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
5340 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
5341 reply_len = -1;
5342#ifdef CONFIG_AP
5343 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
5344 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
5345 wpa_s, buf + 11, reply, reply_size);
5346#endif /* CONFIG_AP */
5347#ifdef CONFIG_WPS_ER
5348 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
5349 if (wpas_wps_er_start(wpa_s, NULL))
5350 reply_len = -1;
5351 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
5352 if (wpas_wps_er_start(wpa_s, buf + 13))
5353 reply_len = -1;
5354 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
5355 if (wpas_wps_er_stop(wpa_s))
5356 reply_len = -1;
5357 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
5358 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
5359 reply_len = -1;
5360 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
5361 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
5362 if (ret == -2) {
5363 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
5364 reply_len = 17;
5365 } else if (ret == -3) {
5366 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
5367 reply_len = 18;
5368 } else if (ret == -4) {
5369 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
5370 reply_len = 20;
5371 } else if (ret)
5372 reply_len = -1;
5373 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
5374 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
5375 reply_len = -1;
5376 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
5377 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
5378 buf + 18))
5379 reply_len = -1;
5380 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
5381 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
5382 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005383#ifdef CONFIG_WPS_NFC
5384 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
5385 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
5386 wpa_s, buf + 24, reply, reply_size);
5387#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005388#endif /* CONFIG_WPS_ER */
5389#endif /* CONFIG_WPS */
5390#ifdef CONFIG_IBSS_RSN
5391 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
5392 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
5393 reply_len = -1;
5394#endif /* CONFIG_IBSS_RSN */
5395#ifdef CONFIG_P2P
5396 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
5397 if (p2p_ctrl_find(wpa_s, buf + 9))
5398 reply_len = -1;
5399 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
5400 if (p2p_ctrl_find(wpa_s, ""))
5401 reply_len = -1;
5402 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
5403 wpas_p2p_stop_find(wpa_s);
5404 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
5405 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
5406 reply_size);
5407 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
5408 if (p2p_ctrl_listen(wpa_s, buf + 11))
5409 reply_len = -1;
5410 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
5411 if (p2p_ctrl_listen(wpa_s, ""))
5412 reply_len = -1;
5413 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
5414 if (wpas_p2p_group_remove(wpa_s, buf + 17))
5415 reply_len = -1;
5416 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005417 if (wpas_p2p_group_add(wpa_s, 0, 0, 0))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005418 reply_len = -1;
5419 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
5420 if (p2p_ctrl_group_add(wpa_s, buf + 14))
5421 reply_len = -1;
5422 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
5423 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
5424 reply_len = -1;
5425 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
5426 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
5427 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
5428 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
5429 reply_size);
5430 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
5431 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
5432 reply_len = -1;
5433 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
5434 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
5435 reply_len = -1;
5436 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
Dmitry Shmidtb5e8f062012-08-08 10:56:33 -07005437#ifdef ANDROID_P2P
5438 wpas_p2p_sd_service_update(wpa_s, SRV_UPDATE);
5439#else
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005440 wpas_p2p_sd_service_update(wpa_s);
Dmitry Shmidtb5e8f062012-08-08 10:56:33 -07005441#endif
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005442 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
5443 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
5444 reply_len = -1;
5445 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
5446 wpas_p2p_service_flush(wpa_s);
5447 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
5448 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
5449 reply_len = -1;
5450 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
5451 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
5452 reply_len = -1;
5453 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
5454 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
5455 reply_len = -1;
5456 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
5457 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
5458 reply_len = -1;
5459 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
5460 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
5461 reply_size);
5462 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
5463 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
5464 reply_len = -1;
5465 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005466 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005467 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
5468 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
5469 reply_len = -1;
5470 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
5471 if (wpas_p2p_cancel(wpa_s))
5472 reply_len = -1;
5473 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
5474 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
5475 reply_len = -1;
5476 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
5477 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
5478 reply_len = -1;
5479 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
5480 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
5481 reply_len = -1;
5482 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
5483 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
5484 reply_len = -1;
5485#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005486#ifdef CONFIG_WIFI_DISPLAY
5487 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
5488 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
5489 reply_len = -1;
5490 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
5491 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
5492 reply, reply_size);
5493#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005494#ifdef CONFIG_INTERWORKING
5495 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
5496 if (interworking_fetch_anqp(wpa_s) < 0)
5497 reply_len = -1;
5498 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
5499 interworking_stop_fetch_anqp(wpa_s);
5500 } else if (os_strncmp(buf, "INTERWORKING_SELECT", 19) == 0) {
5501 if (interworking_select(wpa_s, os_strstr(buf + 19, "auto") !=
5502 NULL) < 0)
5503 reply_len = -1;
5504 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
5505 if (ctrl_interworking_connect(wpa_s, buf + 21) < 0)
5506 reply_len = -1;
5507 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
5508 if (get_anqp(wpa_s, buf + 9) < 0)
5509 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005510 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
5511 if (gas_request(wpa_s, buf + 12) < 0)
5512 reply_len = -1;
5513 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
5514 reply_len = gas_response_get(wpa_s, buf + 17, reply,
5515 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005516#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07005517#ifdef CONFIG_HS20
5518 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
5519 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
5520 reply_len = -1;
5521 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
5522 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
5523 reply_len = -1;
5524#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005525 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
5526 {
5527 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
5528 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
5529 reply_len = -1;
5530 else
5531 ctrl_rsp = 1;
5532 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
5533 if (wpa_supplicant_reload_configuration(wpa_s))
5534 reply_len = -1;
5535 } else if (os_strcmp(buf, "TERMINATE") == 0) {
5536 wpa_supplicant_terminate_proc(wpa_s->global);
5537 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
5538 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
5539 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07005540 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005541 reply_len = wpa_supplicant_ctrl_iface_blacklist(
5542 wpa_s, buf + 9, reply, reply_size);
5543 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
5544 reply_len = wpa_supplicant_ctrl_iface_log_level(
5545 wpa_s, buf + 9, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005546 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
5547 reply_len = wpa_supplicant_ctrl_iface_list_networks(
5548 wpa_s, reply, reply_size);
5549 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005550#ifdef CONFIG_SME
5551 wpa_s->sme.prev_bssid_set = 0;
5552#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005553 wpa_s->reassociate = 0;
5554 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005555 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005556 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005557 wpa_supplicant_deauthenticate(wpa_s,
5558 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005559 } else if (os_strcmp(buf, "SCAN") == 0 ||
5560 os_strncmp(buf, "SCAN ", 5) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005561 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
5562 reply_len = -1;
5563 else {
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005564 if (os_strlen(buf) > 4 &&
5565 os_strncasecmp(buf + 5, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08005566 wpa_s->scan_res_handler = scan_only_handler;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005567 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005568 ((wpa_s->wpa_state <= WPA_SCANNING) ||
5569 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005570 wpa_s->normal_scans = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005571 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005572 wpa_supplicant_req_scan(wpa_s, 0, 0);
5573 } else if (wpa_s->sched_scanning) {
5574 wpa_printf(MSG_DEBUG, "Stop ongoing "
5575 "sched_scan to allow requested "
5576 "full scan to proceed");
5577 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005578 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005579 wpa_supplicant_req_scan(wpa_s, 0, 0);
5580 } else {
5581 wpa_printf(MSG_DEBUG, "Ongoing scan action - "
5582 "reject new request");
5583 reply_len = os_snprintf(reply, reply_size,
5584 "FAIL-BUSY\n");
5585 }
5586 }
5587 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
5588 reply_len = wpa_supplicant_ctrl_iface_scan_results(
5589 wpa_s, reply, reply_size);
5590 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
5591 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
5592 reply_len = -1;
5593 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
5594 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
5595 reply_len = -1;
5596 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
5597 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
5598 reply_len = -1;
5599 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
5600 reply_len = wpa_supplicant_ctrl_iface_add_network(
5601 wpa_s, reply, reply_size);
5602 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
5603 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
5604 reply_len = -1;
5605 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
5606 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
5607 reply_len = -1;
5608 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
5609 reply_len = wpa_supplicant_ctrl_iface_get_network(
5610 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005611 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
5612 reply_len = wpa_supplicant_ctrl_iface_list_creds(
5613 wpa_s, reply, reply_size);
5614 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
5615 reply_len = wpa_supplicant_ctrl_iface_add_cred(
5616 wpa_s, reply, reply_size);
5617 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
5618 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
5619 reply_len = -1;
5620 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
5621 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
5622 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005623#ifndef CONFIG_NO_CONFIG_WRITE
5624 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
5625 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
5626 reply_len = -1;
5627#endif /* CONFIG_NO_CONFIG_WRITE */
5628 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
5629 reply_len = wpa_supplicant_ctrl_iface_get_capability(
5630 wpa_s, buf + 15, reply, reply_size);
5631 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
5632 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
5633 reply_len = -1;
5634 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
5635 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
5636 reply_len = -1;
5637 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
5638 reply_len = wpa_supplicant_global_iface_list(
5639 wpa_s->global, reply, reply_size);
5640 } else if (os_strcmp(buf, "INTERFACES") == 0) {
5641 reply_len = wpa_supplicant_global_iface_interfaces(
5642 wpa_s->global, reply, reply_size);
5643 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
5644 reply_len = wpa_supplicant_ctrl_iface_bss(
5645 wpa_s, buf + 4, reply, reply_size);
5646#ifdef CONFIG_AP
5647 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
5648 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
5649 } else if (os_strncmp(buf, "STA ", 4) == 0) {
5650 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
5651 reply_size);
5652 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
5653 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
5654 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005655 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
5656 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
5657 reply_len = -1;
5658 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
5659 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
5660 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005661#endif /* CONFIG_AP */
5662 } else if (os_strcmp(buf, "SUSPEND") == 0) {
5663 wpas_notify_suspend(wpa_s->global);
5664 } else if (os_strcmp(buf, "RESUME") == 0) {
5665 wpas_notify_resume(wpa_s->global);
5666 } else if (os_strcmp(buf, "DROP_SA") == 0) {
5667 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
5668 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
5669 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
5670 reply_len = -1;
5671 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
5672 if (wpa_supplicant_ctrl_iface_sta_autoconnect(wpa_s, buf + 16))
5673 reply_len = -1;
5674 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
5675 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
5676 reply_len = -1;
5677 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
5678 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
5679 buf + 17))
5680 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07005681 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
5682 if (wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10))
5683 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005684#ifdef CONFIG_TDLS
5685 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
5686 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
5687 reply_len = -1;
5688 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
5689 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
5690 reply_len = -1;
5691 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
5692 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
5693 reply_len = -1;
5694#endif /* CONFIG_TDLS */
5695 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
5696 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
5697 reply_size);
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07005698 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
5699 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
5700 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005701#ifdef CONFIG_AUTOSCAN
5702 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
5703 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
5704 reply_len = -1;
5705#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005706#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07005707 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
5708 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
5709 reply_size);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005710#endif
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005711 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005712 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005713 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005714#ifdef CONFIG_WNM
5715 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
5716 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
5717 reply_len = -1;
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005718 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 10) == 0) {
5719 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 10))
5720 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005721#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005722 } else if (os_strcmp(buf, "FLUSH") == 0) {
5723 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005724 } else {
5725 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
5726 reply_len = 16;
5727 }
5728
5729 if (reply_len < 0) {
5730 os_memcpy(reply, "FAIL\n", 5);
5731 reply_len = 5;
5732 }
5733
5734 if (ctrl_rsp)
5735 eapol_sm_notify_ctrl_response(wpa_s->eapol);
5736
5737 *resp_len = reply_len;
5738 return reply;
5739}
5740
5741
5742static int wpa_supplicant_global_iface_add(struct wpa_global *global,
5743 char *cmd)
5744{
5745 struct wpa_interface iface;
5746 char *pos;
5747
5748 /*
5749 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
5750 * TAB<bridge_ifname>
5751 */
5752 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
5753
5754 os_memset(&iface, 0, sizeof(iface));
5755
5756 do {
5757 iface.ifname = pos = cmd;
5758 pos = os_strchr(pos, '\t');
5759 if (pos)
5760 *pos++ = '\0';
5761 if (iface.ifname[0] == '\0')
5762 return -1;
5763 if (pos == NULL)
5764 break;
5765
5766 iface.confname = pos;
5767 pos = os_strchr(pos, '\t');
5768 if (pos)
5769 *pos++ = '\0';
5770 if (iface.confname[0] == '\0')
5771 iface.confname = NULL;
5772 if (pos == NULL)
5773 break;
5774
5775 iface.driver = pos;
5776 pos = os_strchr(pos, '\t');
5777 if (pos)
5778 *pos++ = '\0';
5779 if (iface.driver[0] == '\0')
5780 iface.driver = NULL;
5781 if (pos == NULL)
5782 break;
5783
5784 iface.ctrl_interface = pos;
5785 pos = os_strchr(pos, '\t');
5786 if (pos)
5787 *pos++ = '\0';
5788 if (iface.ctrl_interface[0] == '\0')
5789 iface.ctrl_interface = NULL;
5790 if (pos == NULL)
5791 break;
5792
5793 iface.driver_param = pos;
5794 pos = os_strchr(pos, '\t');
5795 if (pos)
5796 *pos++ = '\0';
5797 if (iface.driver_param[0] == '\0')
5798 iface.driver_param = NULL;
5799 if (pos == NULL)
5800 break;
5801
5802 iface.bridge_ifname = pos;
5803 pos = os_strchr(pos, '\t');
5804 if (pos)
5805 *pos++ = '\0';
5806 if (iface.bridge_ifname[0] == '\0')
5807 iface.bridge_ifname = NULL;
5808 if (pos == NULL)
5809 break;
5810 } while (0);
5811
5812 if (wpa_supplicant_get_iface(global, iface.ifname))
5813 return -1;
5814
5815 return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
5816}
5817
5818
5819static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
5820 char *cmd)
5821{
5822 struct wpa_supplicant *wpa_s;
5823
5824 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
5825
5826 wpa_s = wpa_supplicant_get_iface(global, cmd);
5827 if (wpa_s == NULL)
5828 return -1;
Dmitry Shmidte15c7b52011-08-03 15:04:35 -07005829 return wpa_supplicant_remove_iface(global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005830}
5831
5832
5833static void wpa_free_iface_info(struct wpa_interface_info *iface)
5834{
5835 struct wpa_interface_info *prev;
5836
5837 while (iface) {
5838 prev = iface;
5839 iface = iface->next;
5840
5841 os_free(prev->ifname);
5842 os_free(prev->desc);
5843 os_free(prev);
5844 }
5845}
5846
5847
5848static int wpa_supplicant_global_iface_list(struct wpa_global *global,
5849 char *buf, int len)
5850{
5851 int i, res;
5852 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
5853 char *pos, *end;
5854
5855 for (i = 0; wpa_drivers[i]; i++) {
5856 struct wpa_driver_ops *drv = wpa_drivers[i];
5857 if (drv->get_interfaces == NULL)
5858 continue;
5859 tmp = drv->get_interfaces(global->drv_priv[i]);
5860 if (tmp == NULL)
5861 continue;
5862
5863 if (last == NULL)
5864 iface = last = tmp;
5865 else
5866 last->next = tmp;
5867 while (last->next)
5868 last = last->next;
5869 }
5870
5871 pos = buf;
5872 end = buf + len;
5873 for (tmp = iface; tmp; tmp = tmp->next) {
5874 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
5875 tmp->drv_name, tmp->ifname,
5876 tmp->desc ? tmp->desc : "");
5877 if (res < 0 || res >= end - pos) {
5878 *pos = '\0';
5879 break;
5880 }
5881 pos += res;
5882 }
5883
5884 wpa_free_iface_info(iface);
5885
5886 return pos - buf;
5887}
5888
5889
5890static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
5891 char *buf, int len)
5892{
5893 int res;
5894 char *pos, *end;
5895 struct wpa_supplicant *wpa_s;
5896
5897 wpa_s = global->ifaces;
5898 pos = buf;
5899 end = buf + len;
5900
5901 while (wpa_s) {
5902 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
5903 if (res < 0 || res >= end - pos) {
5904 *pos = '\0';
5905 break;
5906 }
5907 pos += res;
5908 wpa_s = wpa_s->next;
5909 }
5910 return pos - buf;
5911}
5912
5913
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005914static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
5915 const char *ifname,
5916 char *cmd, size_t *resp_len)
5917{
5918 struct wpa_supplicant *wpa_s;
5919
5920 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5921 if (os_strcmp(ifname, wpa_s->ifname) == 0)
5922 break;
5923 }
5924
5925 if (wpa_s == NULL) {
5926 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
5927 if (resp)
5928 *resp_len = os_strlen(resp);
5929 else
5930 *resp_len = 1;
5931 return resp;
5932 }
5933
5934 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
5935}
5936
5937
5938static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
5939 char *buf, size_t *resp_len)
5940{
5941#ifdef CONFIG_P2P
5942 static const char * cmd[] = {
5943 "P2P_FIND",
5944 "P2P_STOP_FIND",
5945 "P2P_LISTEN",
5946 "P2P_GROUP_ADD",
5947 "P2P_GET_PASSPHRASE",
5948 "P2P_SERVICE_UPDATE",
5949 "P2P_SERVICE_FLUSH",
5950 "P2P_FLUSH",
5951 "P2P_CANCEL",
5952 "P2P_PRESENCE_REQ",
5953 "P2P_EXT_LISTEN",
5954 NULL
5955 };
5956 static const char * prefix[] = {
5957 "P2P_FIND ",
5958 "P2P_CONNECT ",
5959 "P2P_LISTEN ",
5960 "P2P_GROUP_REMOVE ",
5961 "P2P_GROUP_ADD ",
5962 "P2P_PROV_DISC ",
5963 "P2P_SERV_DISC_REQ ",
5964 "P2P_SERV_DISC_CANCEL_REQ ",
5965 "P2P_SERV_DISC_RESP ",
5966 "P2P_SERV_DISC_EXTERNAL ",
5967 "P2P_SERVICE_ADD ",
5968 "P2P_SERVICE_DEL ",
5969 "P2P_REJECT ",
5970 "P2P_INVITE ",
5971 "P2P_PEER ",
5972 "P2P_SET ",
5973 "P2P_UNAUTHORIZE ",
5974 "P2P_PRESENCE_REQ ",
5975 "P2P_EXT_LISTEN ",
5976 NULL
5977 };
5978 int found = 0;
5979 int i;
5980
5981 if (global->p2p_init_wpa_s == NULL)
5982 return NULL;
5983
5984 for (i = 0; !found && cmd[i]; i++) {
5985 if (os_strcmp(buf, cmd[i]) == 0)
5986 found = 1;
5987 }
5988
5989 for (i = 0; !found && prefix[i]; i++) {
5990 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
5991 found = 1;
5992 }
5993
5994 if (found)
5995 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
5996 buf, resp_len);
5997#endif /* CONFIG_P2P */
5998 return NULL;
5999}
6000
6001
6002static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
6003 char *buf, size_t *resp_len)
6004{
6005#ifdef CONFIG_WIFI_DISPLAY
6006 if (global->p2p_init_wpa_s == NULL)
6007 return NULL;
6008 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
6009 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
6010 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
6011 buf, resp_len);
6012#endif /* CONFIG_WIFI_DISPLAY */
6013 return NULL;
6014}
6015
6016
6017static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
6018 char *buf, size_t *resp_len)
6019{
6020 char *ret;
6021
6022 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
6023 if (ret)
6024 return ret;
6025
6026 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
6027 if (ret)
6028 return ret;
6029
6030 return NULL;
6031}
6032
6033
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006034char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
6035 char *buf, size_t *resp_len)
6036{
6037 char *reply;
6038 const int reply_size = 2048;
6039 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006040 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006041
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006042 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
6043 char *pos = os_strchr(buf + 7, ' ');
6044 if (pos) {
6045 *pos++ = '\0';
6046 return wpas_global_ctrl_iface_ifname(global,
6047 buf + 7, pos,
6048 resp_len);
6049 }
6050 }
6051
6052 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
6053 if (reply)
6054 return reply;
6055
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006056 if (os_strcmp(buf, "PING") == 0)
6057 level = MSG_EXCESSIVE;
6058 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006059 (const u8 *) buf, os_strlen(buf));
6060
6061 reply = os_malloc(reply_size);
6062 if (reply == NULL) {
6063 *resp_len = 1;
6064 return NULL;
6065 }
6066
6067 os_memcpy(reply, "OK\n", 3);
6068 reply_len = 3;
6069
6070 if (os_strcmp(buf, "PING") == 0) {
6071 os_memcpy(reply, "PONG\n", 5);
6072 reply_len = 5;
6073 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
6074 if (wpa_supplicant_global_iface_add(global, buf + 14))
6075 reply_len = -1;
6076 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
6077 if (wpa_supplicant_global_iface_remove(global, buf + 17))
6078 reply_len = -1;
6079 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
6080 reply_len = wpa_supplicant_global_iface_list(
6081 global, reply, reply_size);
6082 } else if (os_strcmp(buf, "INTERFACES") == 0) {
6083 reply_len = wpa_supplicant_global_iface_interfaces(
6084 global, reply, reply_size);
6085 } else if (os_strcmp(buf, "TERMINATE") == 0) {
6086 wpa_supplicant_terminate_proc(global);
6087 } else if (os_strcmp(buf, "SUSPEND") == 0) {
6088 wpas_notify_suspend(global);
6089 } else if (os_strcmp(buf, "RESUME") == 0) {
6090 wpas_notify_resume(global);
6091 } else {
6092 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
6093 reply_len = 16;
6094 }
6095
6096 if (reply_len < 0) {
6097 os_memcpy(reply, "FAIL\n", 5);
6098 reply_len = 5;
6099 }
6100
6101 *resp_len = reply_len;
6102 return reply;
6103}