blob: 8e71727fd84fe4de1f31db22c8393871247cc82e [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Control interface (shared code for all backends)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003 * Copyright (c) 2004-2014, 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"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080010#ifdef CONFIG_TESTING_OPTIONS
11#include <net/ethernet.h>
12#include <netinet/ip.h>
13#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070014
15#include "utils/common.h"
16#include "utils/eloop.h"
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080017#include "utils/uuid.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "common/version.h"
19#include "common/ieee802_11_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070020#include "common/ieee802_11_common.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070021#include "common/wpa_ctrl.h"
Dmitry Shmidtff787d52015-01-12 13:01:47 -080022#include "crypto/tls.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080023#include "ap/hostapd.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024#include "eap_peer/eap.h"
25#include "eapol_supp/eapol_supp_sm.h"
26#include "rsn_supp/wpa.h"
27#include "rsn_supp/preauth.h"
28#include "rsn_supp/pmksa_cache.h"
29#include "l2_packet/l2_packet.h"
30#include "wps/wps.h"
31#include "config.h"
32#include "wpa_supplicant_i.h"
33#include "driver_i.h"
34#include "wps_supplicant.h"
35#include "ibss_rsn.h"
36#include "ap.h"
37#include "p2p_supplicant.h"
38#include "p2p/p2p.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070039#include "hs20_supplicant.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070040#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070041#include "notify.h"
42#include "bss.h"
43#include "scan.h"
44#include "ctrl_iface.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080045#include "interworking.h"
Dmitry Shmidte19501d2011-03-16 14:32:18 -070046#include "blacklist.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070047#include "autoscan.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080048#include "wnm_sta.h"
Dmitry Shmidt818ea482014-03-10 13:15:21 -070049#include "offchannel.h"
Dmitry Shmidt661b4f72014-09-29 14:58:27 -070050#include "drivers/driver.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080051#include "mesh.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070052
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070053static int wpa_supplicant_global_iface_list(struct wpa_global *global,
54 char *buf, int len);
55static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
56 char *buf, int len);
Dmitry Shmidtd11f0192014-03-24 12:09:47 -070057static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s,
58 char *val);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070059
Dmitry Shmidt04949592012-07-19 12:16:46 -070060static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
61{
62 char *pos;
63 u8 addr[ETH_ALEN], *filter = NULL, *n;
64 size_t count = 0;
65
66 pos = val;
67 while (pos) {
68 if (*pos == '\0')
69 break;
70 if (hwaddr_aton(pos, addr)) {
71 os_free(filter);
72 return -1;
73 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070074 n = os_realloc_array(filter, count + 1, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -070075 if (n == NULL) {
76 os_free(filter);
77 return -1;
78 }
79 filter = n;
80 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
81 count++;
82
83 pos = os_strchr(pos, ' ');
84 if (pos)
85 pos++;
86 }
87
88 wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
89 os_free(wpa_s->bssid_filter);
90 wpa_s->bssid_filter = filter;
91 wpa_s->bssid_filter_count = count;
92
93 return 0;
94}
95
96
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080097static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
98{
99 char *pos;
100 u8 addr[ETH_ALEN], *bssid = NULL, *n;
101 struct wpa_ssid_value *ssid = NULL, *ns;
102 size_t count = 0, ssid_count = 0;
103 struct wpa_ssid *c;
104
105 /*
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800106 * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | ""
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800107 * SSID_SPEC ::= ssid <SSID_HEX>
108 * BSSID_SPEC ::= bssid <BSSID_HEX>
109 */
110
111 pos = val;
112 while (pos) {
113 if (*pos == '\0')
114 break;
115 if (os_strncmp(pos, "bssid ", 6) == 0) {
116 int res;
117 pos += 6;
118 res = hwaddr_aton2(pos, addr);
119 if (res < 0) {
120 os_free(ssid);
121 os_free(bssid);
122 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
123 "BSSID value '%s'", pos);
124 return -1;
125 }
126 pos += res;
127 n = os_realloc_array(bssid, count + 1, ETH_ALEN);
128 if (n == NULL) {
129 os_free(ssid);
130 os_free(bssid);
131 return -1;
132 }
133 bssid = n;
134 os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
135 count++;
136 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
137 char *end;
138 pos += 5;
139
140 end = pos;
141 while (*end) {
142 if (*end == '\0' || *end == ' ')
143 break;
144 end++;
145 }
146
147 ns = os_realloc_array(ssid, ssid_count + 1,
148 sizeof(struct wpa_ssid_value));
149 if (ns == NULL) {
150 os_free(ssid);
151 os_free(bssid);
152 return -1;
153 }
154 ssid = ns;
155
156 if ((end - pos) & 0x01 || end - pos > 2 * 32 ||
157 hexstr2bin(pos, ssid[ssid_count].ssid,
158 (end - pos) / 2) < 0) {
159 os_free(ssid);
160 os_free(bssid);
161 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
162 "SSID value '%s'", pos);
163 return -1;
164 }
165 ssid[ssid_count].ssid_len = (end - pos) / 2;
166 wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
167 ssid[ssid_count].ssid,
168 ssid[ssid_count].ssid_len);
169 ssid_count++;
170 pos = end;
171 } else {
172 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
173 "'%s'", pos);
174 os_free(ssid);
175 os_free(bssid);
176 return -1;
177 }
178
179 pos = os_strchr(pos, ' ');
180 if (pos)
181 pos++;
182 }
183
184 wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
185 os_free(wpa_s->disallow_aps_bssid);
186 wpa_s->disallow_aps_bssid = bssid;
187 wpa_s->disallow_aps_bssid_count = count;
188
189 wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
190 os_free(wpa_s->disallow_aps_ssid);
191 wpa_s->disallow_aps_ssid = ssid;
192 wpa_s->disallow_aps_ssid_count = ssid_count;
193
194 if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
195 return 0;
196
197 c = wpa_s->current_ssid;
198 if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
199 return 0;
200
201 if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
202 !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
203 return 0;
204
205 wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
206 "because current AP was marked disallowed");
207
208#ifdef CONFIG_SME
209 wpa_s->sme.prev_bssid_set = 0;
210#endif /* CONFIG_SME */
211 wpa_s->reassociate = 1;
212 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
213 wpa_supplicant_req_scan(wpa_s, 0, 0);
214
215 return 0;
216}
217
218
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700219#ifndef CONFIG_NO_CONFIG_BLOBS
220static int wpas_ctrl_set_blob(struct wpa_supplicant *wpa_s, char *pos)
221{
222 char *name = pos;
223 struct wpa_config_blob *blob;
224 size_t len;
225
226 pos = os_strchr(pos, ' ');
227 if (pos == NULL)
228 return -1;
229 *pos++ = '\0';
230 len = os_strlen(pos);
231 if (len & 1)
232 return -1;
233
234 wpa_printf(MSG_DEBUG, "CTRL: Set blob '%s'", name);
235 blob = os_zalloc(sizeof(*blob));
236 if (blob == NULL)
237 return -1;
238 blob->name = os_strdup(name);
239 blob->data = os_malloc(len / 2);
240 if (blob->name == NULL || blob->data == NULL) {
241 wpa_config_free_blob(blob);
242 return -1;
243 }
244
245 if (hexstr2bin(pos, blob->data, len / 2) < 0) {
246 wpa_printf(MSG_DEBUG, "CTRL: Invalid blob hex data");
247 wpa_config_free_blob(blob);
248 return -1;
249 }
250 blob->len = len / 2;
251
252 wpa_config_set_blob(wpa_s->conf, blob);
253
254 return 0;
255}
256#endif /* CONFIG_NO_CONFIG_BLOBS */
257
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700258
259static int wpas_ctrl_pno(struct wpa_supplicant *wpa_s, char *cmd)
260{
261 char *params;
262 char *pos;
263 int *freqs = NULL;
264 int ret;
265
266 if (atoi(cmd)) {
267 params = os_strchr(cmd, ' ');
268 os_free(wpa_s->manual_sched_scan_freqs);
269 if (params) {
270 params++;
271 pos = os_strstr(params, "freq=");
272 if (pos)
273 freqs = freq_range_to_channel_list(wpa_s,
274 pos + 5);
275 }
276 wpa_s->manual_sched_scan_freqs = freqs;
277 ret = wpas_start_pno(wpa_s);
278 } else {
279 ret = wpas_stop_pno(wpa_s);
280 }
281 return ret;
282}
283
284
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700285static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
286 char *cmd)
287{
288 char *value;
289 int ret = 0;
290
291 value = os_strchr(cmd, ' ');
292 if (value == NULL)
293 return -1;
294 *value++ = '\0';
295
296 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
297 if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
298 eapol_sm_configure(wpa_s->eapol,
299 atoi(value), -1, -1, -1);
300 } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
301 eapol_sm_configure(wpa_s->eapol,
302 -1, atoi(value), -1, -1);
303 } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
304 eapol_sm_configure(wpa_s->eapol,
305 -1, -1, atoi(value), -1);
306 } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
307 eapol_sm_configure(wpa_s->eapol,
308 -1, -1, -1, atoi(value));
309 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
310 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
311 atoi(value)))
312 ret = -1;
313 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
314 0) {
315 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
316 atoi(value)))
317 ret = -1;
318 } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
319 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
320 ret = -1;
321 } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
322 wpa_s->wps_fragment_size = atoi(value);
323#ifdef CONFIG_WPS_TESTING
324 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
325 long int val;
326 val = strtol(value, NULL, 0);
327 if (val < 0 || val > 0xff) {
328 ret = -1;
329 wpa_printf(MSG_DEBUG, "WPS: Invalid "
330 "wps_version_number %ld", val);
331 } else {
332 wps_version_number = val;
333 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
334 "version %u.%u",
335 (wps_version_number & 0xf0) >> 4,
336 wps_version_number & 0x0f);
337 }
338 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
339 wps_testing_dummy_cred = atoi(value);
340 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
341 wps_testing_dummy_cred);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800342 } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
343 wps_corrupt_pkhash = atoi(value);
344 wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
345 wps_corrupt_pkhash);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700346#endif /* CONFIG_WPS_TESTING */
347 } else if (os_strcasecmp(cmd, "ampdu") == 0) {
348 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
349 ret = -1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800350#ifdef CONFIG_TDLS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700351#ifdef CONFIG_TDLS_TESTING
352 } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
353 extern unsigned int tdls_testing;
354 tdls_testing = strtol(value, NULL, 0);
355 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
356#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700357 } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
358 int disabled = atoi(value);
359 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
360 if (disabled) {
361 if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
362 ret = -1;
363 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
364 ret = -1;
365 wpa_tdls_enable(wpa_s->wpa, !disabled);
366#endif /* CONFIG_TDLS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800367 } else if (os_strcasecmp(cmd, "pno") == 0) {
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700368 ret = wpas_ctrl_pno(wpa_s, value);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700369 } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
370 int disabled = atoi(value);
371 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
372 ret = -1;
373 else if (disabled)
374 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
375 } else if (os_strcasecmp(cmd, "uapsd") == 0) {
376 if (os_strcmp(value, "disable") == 0)
377 wpa_s->set_sta_uapsd = 0;
378 else {
379 int be, bk, vi, vo;
380 char *pos;
381 /* format: BE,BK,VI,VO;max SP Length */
382 be = atoi(value);
383 pos = os_strchr(value, ',');
384 if (pos == NULL)
385 return -1;
386 pos++;
387 bk = atoi(pos);
388 pos = os_strchr(pos, ',');
389 if (pos == NULL)
390 return -1;
391 pos++;
392 vi = atoi(pos);
393 pos = os_strchr(pos, ',');
394 if (pos == NULL)
395 return -1;
396 pos++;
397 vo = atoi(pos);
398 /* ignore max SP Length for now */
399
400 wpa_s->set_sta_uapsd = 1;
401 wpa_s->sta_uapsd = 0;
402 if (be)
403 wpa_s->sta_uapsd |= BIT(0);
404 if (bk)
405 wpa_s->sta_uapsd |= BIT(1);
406 if (vi)
407 wpa_s->sta_uapsd |= BIT(2);
408 if (vo)
409 wpa_s->sta_uapsd |= BIT(3);
410 }
Jouni Malinen21d6bc82012-04-10 16:17:59 -0700411 } else if (os_strcasecmp(cmd, "ps") == 0) {
412 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700413#ifdef CONFIG_WIFI_DISPLAY
414 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800415 int enabled = !!atoi(value);
416 if (enabled && !wpa_s->global->p2p)
417 ret = -1;
418 else
419 wifi_display_enable(wpa_s->global, enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700420#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700421 } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
422 ret = set_bssid_filter(wpa_s, value);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800423 } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
424 ret = set_disallow_aps(wpa_s, value);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800425 } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
426 wpa_s->no_keep_alive = !!atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700427#ifdef CONFIG_TESTING_OPTIONS
428 } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
429 wpa_s->ext_mgmt_frame_handling = !!atoi(value);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800430 } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
431 wpa_s->ext_eapol_frame_io = !!atoi(value);
432#ifdef CONFIG_AP
433 if (wpa_s->ap_iface) {
434 wpa_s->ap_iface->bss[0]->ext_eapol_frame_io =
435 wpa_s->ext_eapol_frame_io;
436 }
437#endif /* CONFIG_AP */
438 } else if (os_strcasecmp(cmd, "extra_roc_dur") == 0) {
439 wpa_s->extra_roc_dur = atoi(value);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800440 } else if (os_strcasecmp(cmd, "test_failure") == 0) {
441 wpa_s->test_failure = atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700442#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700443#ifndef CONFIG_NO_CONFIG_BLOBS
444 } else if (os_strcmp(cmd, "blob") == 0) {
445 ret = wpas_ctrl_set_blob(wpa_s, value);
446#endif /* CONFIG_NO_CONFIG_BLOBS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800447 } else if (os_strcasecmp(cmd, "setband") == 0) {
448 if (os_strcmp(value, "AUTO") == 0)
449 wpa_s->setband = WPA_SETBAND_AUTO;
450 else if (os_strcmp(value, "5G") == 0)
451 wpa_s->setband = WPA_SETBAND_5G;
452 else if (os_strcmp(value, "2G") == 0)
453 wpa_s->setband = WPA_SETBAND_2G;
454 else
455 ret = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700456 } else {
457 value[-1] = '=';
458 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
459 if (ret == 0)
460 wpa_supplicant_update_config(wpa_s);
461 }
462
463 return ret;
464}
465
466
467static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
468 char *cmd, char *buf, size_t buflen)
469{
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700470 int res = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700471
472 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
473
474 if (os_strcmp(cmd, "version") == 0) {
475 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700476 } else if (os_strcasecmp(cmd, "country") == 0) {
477 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
478 res = os_snprintf(buf, buflen, "%c%c",
479 wpa_s->conf->country[0],
480 wpa_s->conf->country[1]);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700481#ifdef CONFIG_WIFI_DISPLAY
482 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800483 int enabled;
484 if (wpa_s->global->p2p == NULL ||
485 wpa_s->global->p2p_disabled)
486 enabled = 0;
487 else
488 enabled = wpa_s->global->wifi_display;
489 res = os_snprintf(buf, buflen, "%d", enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700490#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700491#ifdef CONFIG_TESTING_GET_GTK
492 } else if (os_strcmp(cmd, "gtk") == 0) {
493 if (wpa_s->last_gtk_len == 0)
494 return -1;
495 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
496 wpa_s->last_gtk_len);
497 return res;
498#endif /* CONFIG_TESTING_GET_GTK */
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800499 } else if (os_strcmp(cmd, "tls_library") == 0) {
500 res = tls_get_library_version(buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700501 }
502
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800503 if (os_snprintf_error(buflen, res))
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700504 return -1;
505 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700506}
507
508
509#ifdef IEEE8021X_EAPOL
510static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
511 char *addr)
512{
513 u8 bssid[ETH_ALEN];
514 struct wpa_ssid *ssid = wpa_s->current_ssid;
515
516 if (hwaddr_aton(addr, bssid)) {
517 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
518 "'%s'", addr);
519 return -1;
520 }
521
522 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
523 rsn_preauth_deinit(wpa_s->wpa);
524 if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
525 return -1;
526
527 return 0;
528}
529#endif /* IEEE8021X_EAPOL */
530
531
532#ifdef CONFIG_PEERKEY
533/* MLME-STKSTART.request(peer) */
534static int wpa_supplicant_ctrl_iface_stkstart(
535 struct wpa_supplicant *wpa_s, char *addr)
536{
537 u8 peer[ETH_ALEN];
538
539 if (hwaddr_aton(addr, peer)) {
540 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
541 "address '%s'", addr);
542 return -1;
543 }
544
545 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
546 MAC2STR(peer));
547
548 return wpa_sm_stkstart(wpa_s->wpa, peer);
549}
550#endif /* CONFIG_PEERKEY */
551
552
553#ifdef CONFIG_TDLS
554
555static int wpa_supplicant_ctrl_iface_tdls_discover(
556 struct wpa_supplicant *wpa_s, char *addr)
557{
558 u8 peer[ETH_ALEN];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800559 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700560
561 if (hwaddr_aton(addr, peer)) {
562 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
563 "address '%s'", addr);
564 return -1;
565 }
566
567 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
568 MAC2STR(peer));
569
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800570 if (wpa_tdls_is_external_setup(wpa_s->wpa))
571 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
572 else
573 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
574
575 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700576}
577
578
579static int wpa_supplicant_ctrl_iface_tdls_setup(
580 struct wpa_supplicant *wpa_s, char *addr)
581{
582 u8 peer[ETH_ALEN];
583 int ret;
584
585 if (hwaddr_aton(addr, peer)) {
586 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
587 "address '%s'", addr);
588 return -1;
589 }
590
591 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
592 MAC2STR(peer));
593
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800594 if ((wpa_s->conf->tdls_external_control) &&
595 wpa_tdls_is_external_setup(wpa_s->wpa))
596 return wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
597
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800598 wpa_tdls_remove(wpa_s->wpa, peer);
599
600 if (wpa_tdls_is_external_setup(wpa_s->wpa))
601 ret = wpa_tdls_start(wpa_s->wpa, peer);
602 else
603 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800604
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700605 return ret;
606}
607
608
609static int wpa_supplicant_ctrl_iface_tdls_teardown(
610 struct wpa_supplicant *wpa_s, char *addr)
611{
612 u8 peer[ETH_ALEN];
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700613 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700614
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700615 if (os_strcmp(addr, "*") == 0) {
616 /* remove everyone */
617 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN *");
618 wpa_tdls_teardown_peers(wpa_s->wpa);
619 return 0;
620 }
621
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700622 if (hwaddr_aton(addr, peer)) {
623 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
624 "address '%s'", addr);
625 return -1;
626 }
627
628 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
629 MAC2STR(peer));
630
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800631 if ((wpa_s->conf->tdls_external_control) &&
632 wpa_tdls_is_external_setup(wpa_s->wpa))
633 return wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
634
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700635 if (wpa_tdls_is_external_setup(wpa_s->wpa))
636 ret = wpa_tdls_teardown_link(
637 wpa_s->wpa, peer,
638 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
639 else
640 ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
641
642 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700643}
644
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700645
646static int ctrl_iface_get_capability_tdls(
647 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
648{
649 int ret;
650
651 ret = os_snprintf(buf, buflen, "%s\n",
652 wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT ?
653 (wpa_s->drv_flags &
654 WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP ?
655 "EXTERNAL" : "INTERNAL") : "UNSUPPORTED");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800656 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700657 return -1;
658 return ret;
659}
660
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800661
662static int wpa_supplicant_ctrl_iface_tdls_chan_switch(
663 struct wpa_supplicant *wpa_s, char *cmd)
664{
665 u8 peer[ETH_ALEN];
666 struct hostapd_freq_params freq_params;
667 u8 oper_class;
668 char *pos, *end;
669
670 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
671 wpa_printf(MSG_INFO,
672 "tdls_chanswitch: Only supported with external setup");
673 return -1;
674 }
675
676 os_memset(&freq_params, 0, sizeof(freq_params));
677
678 pos = os_strchr(cmd, ' ');
679 if (pos == NULL)
680 return -1;
681 *pos++ = '\0';
682
683 oper_class = strtol(pos, &end, 10);
684 if (pos == end) {
685 wpa_printf(MSG_INFO,
686 "tdls_chanswitch: Invalid op class provided");
687 return -1;
688 }
689
690 pos = end;
691 freq_params.freq = atoi(pos);
692 if (freq_params.freq == 0) {
693 wpa_printf(MSG_INFO, "tdls_chanswitch: Invalid freq provided");
694 return -1;
695 }
696
697#define SET_FREQ_SETTING(str) \
698 do { \
699 const char *pos2 = os_strstr(pos, " " #str "="); \
700 if (pos2) { \
701 pos2 += sizeof(" " #str "=") - 1; \
702 freq_params.str = atoi(pos2); \
703 } \
704 } while (0)
705
706 SET_FREQ_SETTING(center_freq1);
707 SET_FREQ_SETTING(center_freq2);
708 SET_FREQ_SETTING(bandwidth);
709 SET_FREQ_SETTING(sec_channel_offset);
710#undef SET_FREQ_SETTING
711
712 freq_params.ht_enabled = !!os_strstr(pos, " ht");
713 freq_params.vht_enabled = !!os_strstr(pos, " vht");
714
715 if (hwaddr_aton(cmd, peer)) {
716 wpa_printf(MSG_DEBUG,
717 "CTRL_IFACE TDLS_CHAN_SWITCH: Invalid address '%s'",
718 cmd);
719 return -1;
720 }
721
722 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CHAN_SWITCH " MACSTR
723 " OP CLASS %d FREQ %d CENTER1 %d CENTER2 %d BW %d SEC_OFFSET %d%s%s",
724 MAC2STR(peer), oper_class, freq_params.freq,
725 freq_params.center_freq1, freq_params.center_freq2,
726 freq_params.bandwidth, freq_params.sec_channel_offset,
727 freq_params.ht_enabled ? " HT" : "",
728 freq_params.vht_enabled ? " VHT" : "");
729
730 return wpa_tdls_enable_chan_switch(wpa_s->wpa, peer, oper_class,
731 &freq_params);
732}
733
734
735static int wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(
736 struct wpa_supplicant *wpa_s, char *cmd)
737{
738 u8 peer[ETH_ALEN];
739
740 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
741 wpa_printf(MSG_INFO,
742 "tdls_chanswitch: Only supported with external setup");
743 return -1;
744 }
745
746 if (hwaddr_aton(cmd, peer)) {
747 wpa_printf(MSG_DEBUG,
748 "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH: Invalid address '%s'",
749 cmd);
750 return -1;
751 }
752
753 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH " MACSTR,
754 MAC2STR(peer));
755
756 return wpa_tdls_disable_chan_switch(wpa_s->wpa, peer);
757}
758
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700759#endif /* CONFIG_TDLS */
760
761
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800762static int wmm_ac_ctrl_addts(struct wpa_supplicant *wpa_s, char *cmd)
763{
764 char *token, *context = NULL;
765 struct wmm_ac_ts_setup_params params = {
766 .tsid = 0xff,
767 .direction = 0xff,
768 };
769
770 while ((token = str_token(cmd, " ", &context))) {
771 if (sscanf(token, "tsid=%i", &params.tsid) == 1 ||
772 sscanf(token, "up=%i", &params.user_priority) == 1 ||
773 sscanf(token, "nominal_msdu_size=%i",
774 &params.nominal_msdu_size) == 1 ||
775 sscanf(token, "mean_data_rate=%i",
776 &params.mean_data_rate) == 1 ||
777 sscanf(token, "min_phy_rate=%i",
778 &params.minimum_phy_rate) == 1 ||
779 sscanf(token, "sba=%i",
780 &params.surplus_bandwidth_allowance) == 1)
781 continue;
782
783 if (os_strcasecmp(token, "downlink") == 0) {
784 params.direction = WMM_TSPEC_DIRECTION_DOWNLINK;
785 } else if (os_strcasecmp(token, "uplink") == 0) {
786 params.direction = WMM_TSPEC_DIRECTION_UPLINK;
787 } else if (os_strcasecmp(token, "bidi") == 0) {
788 params.direction = WMM_TSPEC_DIRECTION_BI_DIRECTIONAL;
789 } else if (os_strcasecmp(token, "fixed_nominal_msdu") == 0) {
790 params.fixed_nominal_msdu = 1;
791 } else {
792 wpa_printf(MSG_DEBUG,
793 "CTRL: Invalid WMM_AC_ADDTS parameter: '%s'",
794 token);
795 return -1;
796 }
797
798 }
799
800 return wpas_wmm_ac_addts(wpa_s, &params);
801}
802
803
804static int wmm_ac_ctrl_delts(struct wpa_supplicant *wpa_s, char *cmd)
805{
806 u8 tsid = atoi(cmd);
807
808 return wpas_wmm_ac_delts(wpa_s, tsid);
809}
810
811
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700812#ifdef CONFIG_IEEE80211R
813static int wpa_supplicant_ctrl_iface_ft_ds(
814 struct wpa_supplicant *wpa_s, char *addr)
815{
816 u8 target_ap[ETH_ALEN];
817 struct wpa_bss *bss;
818 const u8 *mdie;
819
820 if (hwaddr_aton(addr, target_ap)) {
821 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
822 "address '%s'", addr);
823 return -1;
824 }
825
826 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
827
828 bss = wpa_bss_get_bssid(wpa_s, target_ap);
829 if (bss)
830 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
831 else
832 mdie = NULL;
833
834 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
835}
836#endif /* CONFIG_IEEE80211R */
837
838
839#ifdef CONFIG_WPS
840static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
841 char *cmd)
842{
843 u8 bssid[ETH_ALEN], *_bssid = bssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700844#ifdef CONFIG_P2P
845 u8 p2p_dev_addr[ETH_ALEN];
846#endif /* CONFIG_P2P */
847#ifdef CONFIG_AP
848 u8 *_p2p_dev_addr = NULL;
849#endif /* CONFIG_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800850
Dmitry Shmidtc0a8db02013-11-08 11:18:33 -0800851 if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700852 _bssid = NULL;
853#ifdef CONFIG_P2P
854 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
855 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
856 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
857 "P2P Device Address '%s'",
858 cmd + 13);
859 return -1;
860 }
861 _p2p_dev_addr = p2p_dev_addr;
862#endif /* CONFIG_P2P */
863 } else if (hwaddr_aton(cmd, bssid)) {
864 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
865 cmd);
866 return -1;
867 }
868
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800869#ifdef CONFIG_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700870 if (wpa_s->ap_iface)
871 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
872#endif /* CONFIG_AP */
873
874 return wpas_wps_start_pbc(wpa_s, _bssid, 0);
875}
876
877
878static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
879 char *cmd, char *buf,
880 size_t buflen)
881{
882 u8 bssid[ETH_ALEN], *_bssid = bssid;
883 char *pin;
884 int ret;
885
886 pin = os_strchr(cmd, ' ');
887 if (pin)
888 *pin++ = '\0';
889
890 if (os_strcmp(cmd, "any") == 0)
891 _bssid = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800892 else if (os_strcmp(cmd, "get") == 0) {
893 ret = wps_generate_pin();
894 goto done;
895 } else if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700896 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
897 cmd);
898 return -1;
899 }
900
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800901#ifdef CONFIG_AP
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800902 if (wpa_s->ap_iface) {
903 int timeout = 0;
904 char *pos;
905
906 if (pin) {
907 pos = os_strchr(pin, ' ');
908 if (pos) {
909 *pos++ = '\0';
910 timeout = atoi(pos);
911 }
912 }
913
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700914 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800915 buf, buflen, timeout);
916 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700917#endif /* CONFIG_AP */
918
919 if (pin) {
920 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
921 DEV_PW_DEFAULT);
922 if (ret < 0)
923 return -1;
924 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800925 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700926 return -1;
927 return ret;
928 }
929
930 ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
931 if (ret < 0)
932 return -1;
933
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800934done:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700935 /* Return the generated PIN */
936 ret = os_snprintf(buf, buflen, "%08d", ret);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800937 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700938 return -1;
939 return ret;
940}
941
942
943static int wpa_supplicant_ctrl_iface_wps_check_pin(
944 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
945{
946 char pin[9];
947 size_t len;
948 char *pos;
949 int ret;
950
951 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
952 (u8 *) cmd, os_strlen(cmd));
953 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
954 if (*pos < '0' || *pos > '9')
955 continue;
956 pin[len++] = *pos;
957 if (len == 9) {
958 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
959 return -1;
960 }
961 }
962 if (len != 4 && len != 8) {
963 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
964 return -1;
965 }
966 pin[len] = '\0';
967
968 if (len == 8) {
969 unsigned int pin_val;
970 pin_val = atoi(pin);
971 if (!wps_pin_valid(pin_val)) {
972 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
973 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800974 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700975 return -1;
976 return ret;
977 }
978 }
979
980 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800981 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700982 return -1;
983
984 return ret;
985}
986
987
Dmitry Shmidt04949592012-07-19 12:16:46 -0700988#ifdef CONFIG_WPS_NFC
989
990static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
991 char *cmd)
992{
993 u8 bssid[ETH_ALEN], *_bssid = bssid;
994
995 if (cmd == NULL || cmd[0] == '\0')
996 _bssid = NULL;
997 else if (hwaddr_aton(cmd, bssid))
998 return -1;
999
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001000 return wpas_wps_start_nfc(wpa_s, NULL, _bssid, NULL, 0, 0, NULL, NULL,
1001 0, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001002}
1003
1004
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001005static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
1006 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1007{
1008 int ndef;
1009 struct wpabuf *buf;
1010 int res;
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001011 char *pos;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001012
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001013 pos = os_strchr(cmd, ' ');
1014 if (pos)
1015 *pos++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001016 if (os_strcmp(cmd, "WPS") == 0)
1017 ndef = 0;
1018 else if (os_strcmp(cmd, "NDEF") == 0)
1019 ndef = 1;
1020 else
1021 return -1;
1022
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001023 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001024 if (buf == NULL)
1025 return -1;
1026
1027 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1028 wpabuf_len(buf));
1029 reply[res++] = '\n';
1030 reply[res] = '\0';
1031
1032 wpabuf_free(buf);
1033
1034 return res;
1035}
1036
1037
Dmitry Shmidt04949592012-07-19 12:16:46 -07001038static int wpa_supplicant_ctrl_iface_wps_nfc_token(
1039 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1040{
1041 int ndef;
1042 struct wpabuf *buf;
1043 int res;
1044
1045 if (os_strcmp(cmd, "WPS") == 0)
1046 ndef = 0;
1047 else if (os_strcmp(cmd, "NDEF") == 0)
1048 ndef = 1;
1049 else
1050 return -1;
1051
1052 buf = wpas_wps_nfc_token(wpa_s, ndef);
1053 if (buf == NULL)
1054 return -1;
1055
1056 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1057 wpabuf_len(buf));
1058 reply[res++] = '\n';
1059 reply[res] = '\0';
1060
1061 wpabuf_free(buf);
1062
1063 return res;
1064}
1065
1066
1067static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
1068 struct wpa_supplicant *wpa_s, char *pos)
1069{
1070 size_t len;
1071 struct wpabuf *buf;
1072 int ret;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001073 char *freq;
1074 int forced_freq = 0;
1075
1076 freq = strstr(pos, " freq=");
1077 if (freq) {
1078 *freq = '\0';
1079 freq += 6;
1080 forced_freq = atoi(freq);
1081 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001082
1083 len = os_strlen(pos);
1084 if (len & 0x01)
1085 return -1;
1086 len /= 2;
1087
1088 buf = wpabuf_alloc(len);
1089 if (buf == NULL)
1090 return -1;
1091 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
1092 wpabuf_free(buf);
1093 return -1;
1094 }
1095
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001096 ret = wpas_wps_nfc_tag_read(wpa_s, buf, forced_freq);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001097 wpabuf_free(buf);
1098
1099 return ret;
1100}
1101
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001102
1103static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001104 char *reply, size_t max_len,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001105 int ndef)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001106{
1107 struct wpabuf *buf;
1108 int res;
1109
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001110 buf = wpas_wps_nfc_handover_req(wpa_s, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001111 if (buf == NULL)
1112 return -1;
1113
1114 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1115 wpabuf_len(buf));
1116 reply[res++] = '\n';
1117 reply[res] = '\0';
1118
1119 wpabuf_free(buf);
1120
1121 return res;
1122}
1123
1124
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001125#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001126static int wpas_ctrl_nfc_get_handover_req_p2p(struct wpa_supplicant *wpa_s,
1127 char *reply, size_t max_len,
1128 int ndef)
1129{
1130 struct wpabuf *buf;
1131 int res;
1132
1133 buf = wpas_p2p_nfc_handover_req(wpa_s, ndef);
1134 if (buf == NULL) {
1135 wpa_printf(MSG_DEBUG, "P2P: Could not generate NFC handover request");
1136 return -1;
1137 }
1138
1139 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1140 wpabuf_len(buf));
1141 reply[res++] = '\n';
1142 reply[res] = '\0';
1143
1144 wpabuf_free(buf);
1145
1146 return res;
1147}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001148#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001149
1150
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001151static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
1152 char *cmd, char *reply,
1153 size_t max_len)
1154{
1155 char *pos;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001156 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001157
1158 pos = os_strchr(cmd, ' ');
1159 if (pos == NULL)
1160 return -1;
1161 *pos++ = '\0';
1162
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001163 if (os_strcmp(cmd, "WPS") == 0)
1164 ndef = 0;
1165 else if (os_strcmp(cmd, "NDEF") == 0)
1166 ndef = 1;
1167 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001168 return -1;
1169
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001170 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001171 if (!ndef)
1172 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001173 return wpas_ctrl_nfc_get_handover_req_wps(
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001174 wpa_s, reply, max_len, ndef);
1175 }
1176
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001177#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001178 if (os_strcmp(pos, "P2P-CR") == 0) {
1179 return wpas_ctrl_nfc_get_handover_req_p2p(
1180 wpa_s, reply, max_len, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001181 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001182#endif /* CONFIG_P2P */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001183
1184 return -1;
1185}
1186
1187
1188static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001189 char *reply, size_t max_len,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001190 int ndef, int cr, char *uuid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001191{
1192 struct wpabuf *buf;
1193 int res;
1194
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001195 buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001196 if (buf == NULL)
1197 return -1;
1198
1199 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1200 wpabuf_len(buf));
1201 reply[res++] = '\n';
1202 reply[res] = '\0';
1203
1204 wpabuf_free(buf);
1205
1206 return res;
1207}
1208
1209
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001210#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001211static int wpas_ctrl_nfc_get_handover_sel_p2p(struct wpa_supplicant *wpa_s,
1212 char *reply, size_t max_len,
1213 int ndef, int tag)
1214{
1215 struct wpabuf *buf;
1216 int res;
1217
1218 buf = wpas_p2p_nfc_handover_sel(wpa_s, ndef, tag);
1219 if (buf == NULL)
1220 return -1;
1221
1222 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1223 wpabuf_len(buf));
1224 reply[res++] = '\n';
1225 reply[res] = '\0';
1226
1227 wpabuf_free(buf);
1228
1229 return res;
1230}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001231#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001232
1233
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001234static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
1235 char *cmd, char *reply,
1236 size_t max_len)
1237{
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001238 char *pos, *pos2;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001239 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001240
1241 pos = os_strchr(cmd, ' ');
1242 if (pos == NULL)
1243 return -1;
1244 *pos++ = '\0';
1245
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001246 if (os_strcmp(cmd, "WPS") == 0)
1247 ndef = 0;
1248 else if (os_strcmp(cmd, "NDEF") == 0)
1249 ndef = 1;
1250 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001251 return -1;
1252
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001253 pos2 = os_strchr(pos, ' ');
1254 if (pos2)
1255 *pos2++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001256 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001257 if (!ndef)
1258 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001259 return wpas_ctrl_nfc_get_handover_sel_wps(
1260 wpa_s, reply, max_len, ndef,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001261 os_strcmp(pos, "WPS-CR") == 0, pos2);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001262 }
1263
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001264#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001265 if (os_strcmp(pos, "P2P-CR") == 0) {
1266 return wpas_ctrl_nfc_get_handover_sel_p2p(
1267 wpa_s, reply, max_len, ndef, 0);
1268 }
1269
1270 if (os_strcmp(pos, "P2P-CR-TAG") == 0) {
1271 return wpas_ctrl_nfc_get_handover_sel_p2p(
1272 wpa_s, reply, max_len, ndef, 1);
1273 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001274#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001275
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001276 return -1;
1277}
1278
1279
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001280static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1281 char *cmd)
1282{
1283 size_t len;
1284 struct wpabuf *req, *sel;
1285 int ret;
1286 char *pos, *role, *type, *pos2;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001287#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001288 char *freq;
1289 int forced_freq = 0;
1290
1291 freq = strstr(cmd, " freq=");
1292 if (freq) {
1293 *freq = '\0';
1294 freq += 6;
1295 forced_freq = atoi(freq);
1296 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001297#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001298
1299 role = cmd;
1300 pos = os_strchr(role, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001301 if (pos == NULL) {
1302 wpa_printf(MSG_DEBUG, "NFC: Missing type in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001303 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001304 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001305 *pos++ = '\0';
1306
1307 type = pos;
1308 pos = os_strchr(type, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001309 if (pos == NULL) {
1310 wpa_printf(MSG_DEBUG, "NFC: Missing request message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001311 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001312 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001313 *pos++ = '\0';
1314
1315 pos2 = os_strchr(pos, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001316 if (pos2 == NULL) {
1317 wpa_printf(MSG_DEBUG, "NFC: Missing select message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001318 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001319 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001320 *pos2++ = '\0';
1321
1322 len = os_strlen(pos);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001323 if (len & 0x01) {
1324 wpa_printf(MSG_DEBUG, "NFC: Invalid request message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001325 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001326 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001327 len /= 2;
1328
1329 req = wpabuf_alloc(len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001330 if (req == NULL) {
1331 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for request message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001332 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001333 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001334 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001335 wpa_printf(MSG_DEBUG, "NFC: Invalid request message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001336 wpabuf_free(req);
1337 return -1;
1338 }
1339
1340 len = os_strlen(pos2);
1341 if (len & 0x01) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001342 wpa_printf(MSG_DEBUG, "NFC: Invalid select message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001343 wpabuf_free(req);
1344 return -1;
1345 }
1346 len /= 2;
1347
1348 sel = wpabuf_alloc(len);
1349 if (sel == NULL) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001350 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for select message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001351 wpabuf_free(req);
1352 return -1;
1353 }
1354 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001355 wpa_printf(MSG_DEBUG, "NFC: Invalid select message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001356 wpabuf_free(req);
1357 wpabuf_free(sel);
1358 return -1;
1359 }
1360
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001361 wpa_printf(MSG_DEBUG, "NFC: Connection handover reported - role=%s type=%s req_len=%d sel_len=%d",
1362 role, type, (int) wpabuf_len(req), (int) wpabuf_len(sel));
1363
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001364 if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1365 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001366#ifdef CONFIG_AP
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001367 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0)
1368 {
1369 ret = wpas_ap_wps_nfc_report_handover(wpa_s, req, sel);
1370 if (ret < 0)
1371 ret = wpas_er_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001372#endif /* CONFIG_AP */
1373#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001374 } else if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "P2P") == 0)
1375 {
1376 ret = wpas_p2p_nfc_report_handover(wpa_s, 1, req, sel, 0);
1377 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "P2P") == 0)
1378 {
1379 ret = wpas_p2p_nfc_report_handover(wpa_s, 0, req, sel,
1380 forced_freq);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001381#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001382 } else {
1383 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1384 "reported: role=%s type=%s", role, type);
1385 ret = -1;
1386 }
1387 wpabuf_free(req);
1388 wpabuf_free(sel);
1389
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001390 if (ret)
1391 wpa_printf(MSG_DEBUG, "NFC: Failed to process reported handover messages");
1392
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001393 return ret;
1394}
1395
Dmitry Shmidt04949592012-07-19 12:16:46 -07001396#endif /* CONFIG_WPS_NFC */
1397
1398
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001399static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1400 char *cmd)
1401{
1402 u8 bssid[ETH_ALEN];
1403 char *pin;
1404 char *new_ssid;
1405 char *new_auth;
1406 char *new_encr;
1407 char *new_key;
1408 struct wps_new_ap_settings ap;
1409
1410 pin = os_strchr(cmd, ' ');
1411 if (pin == NULL)
1412 return -1;
1413 *pin++ = '\0';
1414
1415 if (hwaddr_aton(cmd, bssid)) {
1416 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1417 cmd);
1418 return -1;
1419 }
1420
1421 new_ssid = os_strchr(pin, ' ');
1422 if (new_ssid == NULL)
1423 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1424 *new_ssid++ = '\0';
1425
1426 new_auth = os_strchr(new_ssid, ' ');
1427 if (new_auth == NULL)
1428 return -1;
1429 *new_auth++ = '\0';
1430
1431 new_encr = os_strchr(new_auth, ' ');
1432 if (new_encr == NULL)
1433 return -1;
1434 *new_encr++ = '\0';
1435
1436 new_key = os_strchr(new_encr, ' ');
1437 if (new_key == NULL)
1438 return -1;
1439 *new_key++ = '\0';
1440
1441 os_memset(&ap, 0, sizeof(ap));
1442 ap.ssid_hex = new_ssid;
1443 ap.auth = new_auth;
1444 ap.encr = new_encr;
1445 ap.key_hex = new_key;
1446 return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1447}
1448
1449
1450#ifdef CONFIG_AP
1451static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1452 char *cmd, char *buf,
1453 size_t buflen)
1454{
1455 int timeout = 300;
1456 char *pos;
1457 const char *pin_txt;
1458
1459 if (!wpa_s->ap_iface)
1460 return -1;
1461
1462 pos = os_strchr(cmd, ' ');
1463 if (pos)
1464 *pos++ = '\0';
1465
1466 if (os_strcmp(cmd, "disable") == 0) {
1467 wpas_wps_ap_pin_disable(wpa_s);
1468 return os_snprintf(buf, buflen, "OK\n");
1469 }
1470
1471 if (os_strcmp(cmd, "random") == 0) {
1472 if (pos)
1473 timeout = atoi(pos);
1474 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1475 if (pin_txt == NULL)
1476 return -1;
1477 return os_snprintf(buf, buflen, "%s", pin_txt);
1478 }
1479
1480 if (os_strcmp(cmd, "get") == 0) {
1481 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1482 if (pin_txt == NULL)
1483 return -1;
1484 return os_snprintf(buf, buflen, "%s", pin_txt);
1485 }
1486
1487 if (os_strcmp(cmd, "set") == 0) {
1488 char *pin;
1489 if (pos == NULL)
1490 return -1;
1491 pin = pos;
1492 pos = os_strchr(pos, ' ');
1493 if (pos) {
1494 *pos++ = '\0';
1495 timeout = atoi(pos);
1496 }
1497 if (os_strlen(pin) > buflen)
1498 return -1;
1499 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1500 return -1;
1501 return os_snprintf(buf, buflen, "%s", pin);
1502 }
1503
1504 return -1;
1505}
1506#endif /* CONFIG_AP */
1507
1508
1509#ifdef CONFIG_WPS_ER
1510static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1511 char *cmd)
1512{
1513 char *uuid = cmd, *pin, *pos;
1514 u8 addr_buf[ETH_ALEN], *addr = NULL;
1515 pin = os_strchr(uuid, ' ');
1516 if (pin == NULL)
1517 return -1;
1518 *pin++ = '\0';
1519 pos = os_strchr(pin, ' ');
1520 if (pos) {
1521 *pos++ = '\0';
1522 if (hwaddr_aton(pos, addr_buf) == 0)
1523 addr = addr_buf;
1524 }
1525 return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1526}
1527
1528
1529static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1530 char *cmd)
1531{
1532 char *uuid = cmd, *pin;
1533 pin = os_strchr(uuid, ' ');
1534 if (pin == NULL)
1535 return -1;
1536 *pin++ = '\0';
1537 return wpas_wps_er_learn(wpa_s, uuid, pin);
1538}
1539
1540
1541static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1542 struct wpa_supplicant *wpa_s, char *cmd)
1543{
1544 char *uuid = cmd, *id;
1545 id = os_strchr(uuid, ' ');
1546 if (id == NULL)
1547 return -1;
1548 *id++ = '\0';
1549 return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1550}
1551
1552
1553static int wpa_supplicant_ctrl_iface_wps_er_config(
1554 struct wpa_supplicant *wpa_s, char *cmd)
1555{
1556 char *pin;
1557 char *new_ssid;
1558 char *new_auth;
1559 char *new_encr;
1560 char *new_key;
1561 struct wps_new_ap_settings ap;
1562
1563 pin = os_strchr(cmd, ' ');
1564 if (pin == NULL)
1565 return -1;
1566 *pin++ = '\0';
1567
1568 new_ssid = os_strchr(pin, ' ');
1569 if (new_ssid == NULL)
1570 return -1;
1571 *new_ssid++ = '\0';
1572
1573 new_auth = os_strchr(new_ssid, ' ');
1574 if (new_auth == NULL)
1575 return -1;
1576 *new_auth++ = '\0';
1577
1578 new_encr = os_strchr(new_auth, ' ');
1579 if (new_encr == NULL)
1580 return -1;
1581 *new_encr++ = '\0';
1582
1583 new_key = os_strchr(new_encr, ' ');
1584 if (new_key == NULL)
1585 return -1;
1586 *new_key++ = '\0';
1587
1588 os_memset(&ap, 0, sizeof(ap));
1589 ap.ssid_hex = new_ssid;
1590 ap.auth = new_auth;
1591 ap.encr = new_encr;
1592 ap.key_hex = new_key;
1593 return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1594}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001595
1596
1597#ifdef CONFIG_WPS_NFC
1598static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1599 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1600{
1601 int ndef;
1602 struct wpabuf *buf;
1603 int res;
1604 char *uuid;
1605
1606 uuid = os_strchr(cmd, ' ');
1607 if (uuid == NULL)
1608 return -1;
1609 *uuid++ = '\0';
1610
1611 if (os_strcmp(cmd, "WPS") == 0)
1612 ndef = 0;
1613 else if (os_strcmp(cmd, "NDEF") == 0)
1614 ndef = 1;
1615 else
1616 return -1;
1617
1618 buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1619 if (buf == NULL)
1620 return -1;
1621
1622 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1623 wpabuf_len(buf));
1624 reply[res++] = '\n';
1625 reply[res] = '\0';
1626
1627 wpabuf_free(buf);
1628
1629 return res;
1630}
1631#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001632#endif /* CONFIG_WPS_ER */
1633
1634#endif /* CONFIG_WPS */
1635
1636
1637#ifdef CONFIG_IBSS_RSN
1638static int wpa_supplicant_ctrl_iface_ibss_rsn(
1639 struct wpa_supplicant *wpa_s, char *addr)
1640{
1641 u8 peer[ETH_ALEN];
1642
1643 if (hwaddr_aton(addr, peer)) {
1644 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1645 "address '%s'", addr);
1646 return -1;
1647 }
1648
1649 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1650 MAC2STR(peer));
1651
1652 return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1653}
1654#endif /* CONFIG_IBSS_RSN */
1655
1656
1657static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1658 char *rsp)
1659{
1660#ifdef IEEE8021X_EAPOL
1661 char *pos, *id_pos;
1662 int id;
1663 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001664
1665 pos = os_strchr(rsp, '-');
1666 if (pos == NULL)
1667 return -1;
1668 *pos++ = '\0';
1669 id_pos = pos;
1670 pos = os_strchr(pos, ':');
1671 if (pos == NULL)
1672 return -1;
1673 *pos++ = '\0';
1674 id = atoi(id_pos);
1675 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1676 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1677 (u8 *) pos, os_strlen(pos));
1678
1679 ssid = wpa_config_get_network(wpa_s->conf, id);
1680 if (ssid == NULL) {
1681 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1682 "to update", id);
1683 return -1;
1684 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001685
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001686 return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1687 pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001688#else /* IEEE8021X_EAPOL */
1689 wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1690 return -1;
1691#endif /* IEEE8021X_EAPOL */
1692}
1693
1694
1695static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1696 const char *params,
1697 char *buf, size_t buflen)
1698{
1699 char *pos, *end, tmp[30];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001700 int res, verbose, wps, ret;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001701#ifdef CONFIG_HS20
1702 const u8 *hs20;
1703#endif /* CONFIG_HS20 */
Dmitry Shmidt44da0252011-08-23 12:30:30 -07001704
Dmitry Shmidt56052862013-10-04 10:23:25 -07001705 if (os_strcmp(params, "-DRIVER") == 0)
1706 return wpa_drv_status(wpa_s, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001707 verbose = os_strcmp(params, "-VERBOSE") == 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001708 wps = os_strcmp(params, "-WPS") == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001709 pos = buf;
1710 end = buf + buflen;
1711 if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1712 struct wpa_ssid *ssid = wpa_s->current_ssid;
1713 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1714 MAC2STR(wpa_s->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001715 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001716 return pos - buf;
1717 pos += ret;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001718 ret = os_snprintf(pos, end - pos, "freq=%u\n",
1719 wpa_s->assoc_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001720 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001721 return pos - buf;
1722 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001723 if (ssid) {
1724 u8 *_ssid = ssid->ssid;
1725 size_t ssid_len = ssid->ssid_len;
1726 u8 ssid_buf[MAX_SSID_LEN];
1727 if (ssid_len == 0) {
1728 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1729 if (_res < 0)
1730 ssid_len = 0;
1731 else
1732 ssid_len = _res;
1733 _ssid = ssid_buf;
1734 }
1735 ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1736 wpa_ssid_txt(_ssid, ssid_len),
1737 ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001738 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001739 return pos - buf;
1740 pos += ret;
1741
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001742 if (wps && ssid->passphrase &&
1743 wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1744 (ssid->mode == WPAS_MODE_AP ||
1745 ssid->mode == WPAS_MODE_P2P_GO)) {
1746 ret = os_snprintf(pos, end - pos,
1747 "passphrase=%s\n",
1748 ssid->passphrase);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001749 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001750 return pos - buf;
1751 pos += ret;
1752 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001753 if (ssid->id_str) {
1754 ret = os_snprintf(pos, end - pos,
1755 "id_str=%s\n",
1756 ssid->id_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001757 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001758 return pos - buf;
1759 pos += ret;
1760 }
1761
1762 switch (ssid->mode) {
1763 case WPAS_MODE_INFRA:
1764 ret = os_snprintf(pos, end - pos,
1765 "mode=station\n");
1766 break;
1767 case WPAS_MODE_IBSS:
1768 ret = os_snprintf(pos, end - pos,
1769 "mode=IBSS\n");
1770 break;
1771 case WPAS_MODE_AP:
1772 ret = os_snprintf(pos, end - pos,
1773 "mode=AP\n");
1774 break;
1775 case WPAS_MODE_P2P_GO:
1776 ret = os_snprintf(pos, end - pos,
1777 "mode=P2P GO\n");
1778 break;
1779 case WPAS_MODE_P2P_GROUP_FORMATION:
1780 ret = os_snprintf(pos, end - pos,
1781 "mode=P2P GO - group "
1782 "formation\n");
1783 break;
1784 default:
1785 ret = 0;
1786 break;
1787 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001788 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001789 return pos - buf;
1790 pos += ret;
1791 }
1792
1793#ifdef CONFIG_AP
1794 if (wpa_s->ap_iface) {
1795 pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1796 end - pos,
1797 verbose);
1798 } else
1799#endif /* CONFIG_AP */
1800 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1801 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001802#ifdef CONFIG_SAE
1803 if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001804#ifdef CONFIG_AP
1805 !wpa_s->ap_iface &&
1806#endif /* CONFIG_AP */
1807 wpa_s->sme.sae.state == SAE_ACCEPTED) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001808 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1809 wpa_s->sme.sae.group);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001810 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001811 return pos - buf;
1812 pos += ret;
1813 }
1814#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001815 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1816 wpa_supplicant_state_txt(wpa_s->wpa_state));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001817 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001818 return pos - buf;
1819 pos += ret;
1820
1821 if (wpa_s->l2 &&
1822 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1823 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001824 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001825 return pos - buf;
1826 pos += ret;
1827 }
1828
1829#ifdef CONFIG_P2P
1830 if (wpa_s->global->p2p) {
1831 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1832 "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001833 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001834 return pos - buf;
1835 pos += ret;
1836 }
1837#endif /* CONFIG_P2P */
1838
1839 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1840 MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001841 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001842 return pos - buf;
1843 pos += ret;
1844
Dmitry Shmidt04949592012-07-19 12:16:46 -07001845#ifdef CONFIG_HS20
1846 if (wpa_s->current_bss &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001847 (hs20 = wpa_bss_get_vendor_ie(wpa_s->current_bss,
1848 HS20_IE_VENDOR_TYPE)) &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001849 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1850 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001851 int release = 1;
1852 if (hs20[1] >= 5) {
1853 u8 rel_num = (hs20[6] & 0xf0) >> 4;
1854 release = rel_num + 1;
1855 }
1856 ret = os_snprintf(pos, end - pos, "hs20=%d\n", release);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001857 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07001858 return pos - buf;
1859 pos += ret;
1860 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001861
1862 if (wpa_s->current_ssid) {
1863 struct wpa_cred *cred;
1864 char *type;
1865
1866 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001867 size_t i;
1868
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001869 if (wpa_s->current_ssid->parent_cred != cred)
1870 continue;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001871
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001872 if (cred->provisioning_sp) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001873 ret = os_snprintf(pos, end - pos,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001874 "provisioning_sp=%s\n",
1875 cred->provisioning_sp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001876 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt051af732013-10-22 13:52:46 -07001877 return pos - buf;
1878 pos += ret;
1879 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001880
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001881 if (!cred->domain)
1882 goto no_domain;
1883
1884 i = 0;
1885 if (wpa_s->current_bss && wpa_s->current_bss->anqp) {
1886 struct wpabuf *names =
1887 wpa_s->current_bss->anqp->domain_name;
1888 for (i = 0; names && i < cred->num_domain; i++)
1889 {
1890 if (domain_name_list_contains(
1891 names, cred->domain[i], 1))
1892 break;
1893 }
1894 if (i == cred->num_domain)
1895 i = 0; /* show first entry by default */
1896 }
1897 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1898 cred->domain[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001899 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001900 return pos - buf;
1901 pos += ret;
1902
1903 no_domain:
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001904 if (wpa_s->current_bss == NULL ||
1905 wpa_s->current_bss->anqp == NULL)
1906 res = -1;
1907 else
1908 res = interworking_home_sp_cred(
1909 wpa_s, cred,
1910 wpa_s->current_bss->anqp->domain_name);
1911 if (res > 0)
1912 type = "home";
1913 else if (res == 0)
1914 type = "roaming";
1915 else
1916 type = "unknown";
1917
1918 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001919 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001920 return pos - buf;
1921 pos += ret;
1922
1923 break;
1924 }
1925 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001926#endif /* CONFIG_HS20 */
1927
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001928 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
1929 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1930 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
1931 verbose);
1932 if (res >= 0)
1933 pos += res;
1934 }
1935
1936 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
1937 if (res >= 0)
1938 pos += res;
1939
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001940#ifdef CONFIG_WPS
1941 {
1942 char uuid_str[100];
1943 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
1944 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001945 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001946 return pos - buf;
1947 pos += ret;
1948 }
1949#endif /* CONFIG_WPS */
1950
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001951#ifdef ANDROID
vandwalleffc70182014-09-11 11:40:14 -07001952 /*
1953 * Allow using the STATUS command with default behavior, say for debug,
1954 * i.e., don't generate a "fake" CONNECTION and SUPPLICANT_STATE_CHANGE
1955 * events with STATUS-NO_EVENTS.
1956 */
1957 if (os_strcmp(params, "-NO_EVENTS")) {
1958 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
1959 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
1960 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
1961 wpa_s->wpa_state,
1962 MAC2STR(wpa_s->bssid),
1963 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
1964 wpa_ssid_txt(wpa_s->current_ssid->ssid,
1965 wpa_s->current_ssid->ssid_len) : "");
1966 if (wpa_s->wpa_state == WPA_COMPLETED) {
1967 struct wpa_ssid *ssid = wpa_s->current_ssid;
1968 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED
1969 "- connection to " MACSTR
1970 " completed %s [id=%d id_str=%s]",
1971 MAC2STR(wpa_s->bssid), "(auth)",
1972 ssid ? ssid->id : -1,
1973 ssid && ssid->id_str ? ssid->id_str : "");
1974 }
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08001975 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08001976#endif /* ANDROID */
1977
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001978 return pos - buf;
1979}
1980
1981
1982static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
1983 char *cmd)
1984{
1985 char *pos;
1986 int id;
1987 struct wpa_ssid *ssid;
1988 u8 bssid[ETH_ALEN];
1989
1990 /* cmd: "<network id> <BSSID>" */
1991 pos = os_strchr(cmd, ' ');
1992 if (pos == NULL)
1993 return -1;
1994 *pos++ = '\0';
1995 id = atoi(cmd);
1996 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
1997 if (hwaddr_aton(pos, bssid)) {
1998 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
1999 return -1;
2000 }
2001
2002 ssid = wpa_config_get_network(wpa_s->conf, id);
2003 if (ssid == NULL) {
2004 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
2005 "to update", id);
2006 return -1;
2007 }
2008
2009 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
2010 ssid->bssid_set = !is_zero_ether_addr(bssid);
2011
2012 return 0;
2013}
2014
2015
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002016static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002017 char *cmd, char *buf,
2018 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002019{
2020 u8 bssid[ETH_ALEN];
2021 struct wpa_blacklist *e;
2022 char *pos, *end;
2023 int ret;
2024
2025 /* cmd: "BLACKLIST [<BSSID>]" */
2026 if (*cmd == '\0') {
2027 pos = buf;
2028 end = buf + buflen;
2029 e = wpa_s->blacklist;
2030 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002031 ret = os_snprintf(pos, end - pos, MACSTR "\n",
2032 MAC2STR(e->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002033 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002034 return pos - buf;
2035 pos += ret;
2036 e = e->next;
2037 }
2038 return pos - buf;
2039 }
2040
2041 cmd++;
2042 if (os_strncmp(cmd, "clear", 5) == 0) {
2043 wpa_blacklist_clear(wpa_s);
2044 os_memcpy(buf, "OK\n", 3);
2045 return 3;
2046 }
2047
2048 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
2049 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002050 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002051 return -1;
2052 }
2053
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002054 /*
2055 * Add the BSSID twice, so its count will be 2, causing it to be
2056 * skipped when processing scan results.
2057 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002058 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002059 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002060 return -1;
2061 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002062 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002063 return -1;
2064 os_memcpy(buf, "OK\n", 3);
2065 return 3;
2066}
2067
2068
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002069static const char * debug_level_str(int level)
2070{
2071 switch (level) {
2072 case MSG_EXCESSIVE:
2073 return "EXCESSIVE";
2074 case MSG_MSGDUMP:
2075 return "MSGDUMP";
2076 case MSG_DEBUG:
2077 return "DEBUG";
2078 case MSG_INFO:
2079 return "INFO";
2080 case MSG_WARNING:
2081 return "WARNING";
2082 case MSG_ERROR:
2083 return "ERROR";
2084 default:
2085 return "?";
2086 }
2087}
2088
2089
2090static int str_to_debug_level(const char *s)
2091{
2092 if (os_strcasecmp(s, "EXCESSIVE") == 0)
2093 return MSG_EXCESSIVE;
2094 if (os_strcasecmp(s, "MSGDUMP") == 0)
2095 return MSG_MSGDUMP;
2096 if (os_strcasecmp(s, "DEBUG") == 0)
2097 return MSG_DEBUG;
2098 if (os_strcasecmp(s, "INFO") == 0)
2099 return MSG_INFO;
2100 if (os_strcasecmp(s, "WARNING") == 0)
2101 return MSG_WARNING;
2102 if (os_strcasecmp(s, "ERROR") == 0)
2103 return MSG_ERROR;
2104 return -1;
2105}
2106
2107
2108static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
2109 char *cmd, char *buf,
2110 size_t buflen)
2111{
2112 char *pos, *end, *stamp;
2113 int ret;
2114
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002115 /* cmd: "LOG_LEVEL [<level>]" */
2116 if (*cmd == '\0') {
2117 pos = buf;
2118 end = buf + buflen;
2119 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
2120 "Timestamp: %d\n",
2121 debug_level_str(wpa_debug_level),
2122 wpa_debug_timestamp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002123 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002124 ret = 0;
2125
2126 return ret;
2127 }
2128
2129 while (*cmd == ' ')
2130 cmd++;
2131
2132 stamp = os_strchr(cmd, ' ');
2133 if (stamp) {
2134 *stamp++ = '\0';
2135 while (*stamp == ' ') {
2136 stamp++;
2137 }
2138 }
2139
2140 if (cmd && os_strlen(cmd)) {
2141 int level = str_to_debug_level(cmd);
2142 if (level < 0)
2143 return -1;
2144 wpa_debug_level = level;
2145 }
2146
2147 if (stamp && os_strlen(stamp))
2148 wpa_debug_timestamp = atoi(stamp);
2149
2150 os_memcpy(buf, "OK\n", 3);
2151 return 3;
2152}
2153
2154
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002155static int wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002156 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002157{
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002158 char *pos, *end, *prev;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002159 struct wpa_ssid *ssid;
2160 int ret;
2161
2162 pos = buf;
2163 end = buf + buflen;
2164 ret = os_snprintf(pos, end - pos,
2165 "network id / ssid / bssid / flags\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002166 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002167 return pos - buf;
2168 pos += ret;
2169
2170 ssid = wpa_s->conf->ssid;
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002171
2172 /* skip over ssids until we find next one */
2173 if (cmd != NULL && os_strncmp(cmd, "LAST_ID=", 8) == 0) {
2174 int last_id = atoi(cmd + 8);
2175 if (last_id != -1) {
2176 while (ssid != NULL && ssid->id <= last_id) {
2177 ssid = ssid->next;
2178 }
2179 }
2180 }
2181
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002182 while (ssid) {
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002183 prev = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002184 ret = os_snprintf(pos, end - pos, "%d\t%s",
2185 ssid->id,
2186 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002187 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002188 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002189 pos += ret;
2190 if (ssid->bssid_set) {
2191 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
2192 MAC2STR(ssid->bssid));
2193 } else {
2194 ret = os_snprintf(pos, end - pos, "\tany");
2195 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002196 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002197 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002198 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002199 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002200 ssid == wpa_s->current_ssid ?
2201 "[CURRENT]" : "",
2202 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002203 ssid->disabled_until.sec ?
2204 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002205 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
2206 "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002207 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002208 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002209 pos += ret;
2210 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002211 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002212 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002213 pos += ret;
2214
2215 ssid = ssid->next;
2216 }
2217
2218 return pos - buf;
2219}
2220
2221
2222static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
2223{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002224 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002225 ret = os_snprintf(pos, end - pos, "-");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002226 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002227 return pos;
2228 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002229 ret = wpa_write_ciphers(pos, end, cipher, "+");
2230 if (ret < 0)
2231 return pos;
2232 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002233 return pos;
2234}
2235
2236
2237static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
2238 const u8 *ie, size_t ie_len)
2239{
2240 struct wpa_ie_data data;
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002241 char *start;
2242 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002243
2244 ret = os_snprintf(pos, end - pos, "[%s-", proto);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002245 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002246 return pos;
2247 pos += ret;
2248
2249 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
2250 ret = os_snprintf(pos, end - pos, "?]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002251 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002252 return pos;
2253 pos += ret;
2254 return pos;
2255 }
2256
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002257 start = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002258 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002259 ret = os_snprintf(pos, end - pos, "%sEAP",
2260 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002261 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002262 return pos;
2263 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002264 }
2265 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002266 ret = os_snprintf(pos, end - pos, "%sPSK",
2267 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002268 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002269 return pos;
2270 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002271 }
2272 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002273 ret = os_snprintf(pos, end - pos, "%sNone",
2274 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002275 if (os_snprintf_error(end - pos, ret))
2276 return pos;
2277 pos += ret;
2278 }
2279 if (data.key_mgmt & WPA_KEY_MGMT_SAE) {
2280 ret = os_snprintf(pos, end - pos, "%sSAE",
2281 pos == start ? "" : "+");
2282 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002283 return pos;
2284 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002285 }
2286#ifdef CONFIG_IEEE80211R
2287 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
2288 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002289 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002290 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002291 return pos;
2292 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002293 }
2294 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
2295 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002296 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002297 if (os_snprintf_error(end - pos, ret))
2298 return pos;
2299 pos += ret;
2300 }
2301 if (data.key_mgmt & WPA_KEY_MGMT_FT_SAE) {
2302 ret = os_snprintf(pos, end - pos, "%sFT/SAE",
2303 pos == start ? "" : "+");
2304 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002305 return pos;
2306 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002307 }
2308#endif /* CONFIG_IEEE80211R */
2309#ifdef CONFIG_IEEE80211W
2310 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
2311 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002312 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002313 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002314 return pos;
2315 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002316 }
2317 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
2318 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002319 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002320 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002321 return pos;
2322 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002323 }
2324#endif /* CONFIG_IEEE80211W */
2325
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002326 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
2327 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B",
2328 pos == start ? "" : "+");
2329 if (os_snprintf_error(end - pos, ret))
2330 return pos;
2331 pos += ret;
2332 }
2333
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002334 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
2335
2336 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
2337 ret = os_snprintf(pos, end - pos, "-preauth");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002338 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002339 return pos;
2340 pos += ret;
2341 }
2342
2343 ret = os_snprintf(pos, end - pos, "]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002344 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002345 return pos;
2346 pos += ret;
2347
2348 return pos;
2349}
2350
2351
2352#ifdef CONFIG_WPS
2353static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
2354 char *pos, char *end,
2355 struct wpabuf *wps_ie)
2356{
2357 int ret;
2358 const char *txt;
2359
2360 if (wps_ie == NULL)
2361 return pos;
2362 if (wps_is_selected_pbc_registrar(wps_ie))
2363 txt = "[WPS-PBC]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002364 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
2365 txt = "[WPS-AUTH]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002366 else if (wps_is_selected_pin_registrar(wps_ie))
2367 txt = "[WPS-PIN]";
2368 else
2369 txt = "[WPS]";
2370
2371 ret = os_snprintf(pos, end - pos, "%s", txt);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002372 if (!os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002373 pos += ret;
2374 wpabuf_free(wps_ie);
2375 return pos;
2376}
2377#endif /* CONFIG_WPS */
2378
2379
2380static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2381 char *pos, char *end,
2382 const struct wpa_bss *bss)
2383{
2384#ifdef CONFIG_WPS
2385 struct wpabuf *wps_ie;
2386 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2387 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2388#else /* CONFIG_WPS */
2389 return pos;
2390#endif /* CONFIG_WPS */
2391}
2392
2393
2394/* Format one result on one text line into a buffer. */
2395static int wpa_supplicant_ctrl_iface_scan_result(
2396 struct wpa_supplicant *wpa_s,
2397 const struct wpa_bss *bss, char *buf, size_t buflen)
2398{
2399 char *pos, *end;
2400 int ret;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002401 const u8 *ie, *ie2, *p2p, *mesh;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002402
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002403 mesh = wpa_bss_get_ie(bss, WLAN_EID_MESH_ID);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002404 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt96571392013-10-14 12:54:46 -07002405 if (!p2p)
2406 p2p = wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002407 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2408 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2409 0)
2410 return 0; /* Do not show P2P listen discovery results here */
2411
2412 pos = buf;
2413 end = buf + buflen;
2414
2415 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2416 MAC2STR(bss->bssid), bss->freq, bss->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002417 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002418 return -1;
2419 pos += ret;
2420 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2421 if (ie)
2422 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2423 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002424 if (ie2) {
2425 pos = wpa_supplicant_ie_txt(pos, end, mesh ? "RSN" : "WPA2",
2426 ie2, 2 + ie2[1]);
2427 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002428 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
2429 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
2430 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002431 if (os_snprintf_error(end - pos, ret))
2432 return -1;
2433 pos += ret;
2434 }
2435 if (mesh) {
2436 ret = os_snprintf(pos, end - pos, "[MESH]");
2437 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002438 return -1;
2439 pos += ret;
2440 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002441 if (bss_is_dmg(bss)) {
2442 const char *s;
2443 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002444 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002445 return -1;
2446 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002447 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
2448 case IEEE80211_CAP_DMG_IBSS:
2449 s = "[IBSS]";
2450 break;
2451 case IEEE80211_CAP_DMG_AP:
2452 s = "[ESS]";
2453 break;
2454 case IEEE80211_CAP_DMG_PBSS:
2455 s = "[PBSS]";
2456 break;
2457 default:
2458 s = "";
2459 break;
2460 }
2461 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002462 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002463 return -1;
2464 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002465 } else {
2466 if (bss->caps & IEEE80211_CAP_IBSS) {
2467 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002468 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002469 return -1;
2470 pos += ret;
2471 }
2472 if (bss->caps & IEEE80211_CAP_ESS) {
2473 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002474 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002475 return -1;
2476 pos += ret;
2477 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002478 }
2479 if (p2p) {
2480 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002481 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002482 return -1;
2483 pos += ret;
2484 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002485#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002486 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002487 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002488 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07002489 return -1;
2490 pos += ret;
2491 }
2492#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002493
2494 ret = os_snprintf(pos, end - pos, "\t%s",
2495 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002496 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002497 return -1;
2498 pos += ret;
2499
2500 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002501 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002502 return -1;
2503 pos += ret;
2504
2505 return pos - buf;
2506}
2507
2508
2509static int wpa_supplicant_ctrl_iface_scan_results(
2510 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2511{
2512 char *pos, *end;
2513 struct wpa_bss *bss;
2514 int ret;
2515
2516 pos = buf;
2517 end = buf + buflen;
2518 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2519 "flags / ssid\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002520 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002521 return pos - buf;
2522 pos += ret;
2523
2524 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2525 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2526 end - pos);
2527 if (ret < 0 || ret >= end - pos)
2528 return pos - buf;
2529 pos += ret;
2530 }
2531
2532 return pos - buf;
2533}
2534
2535
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002536#ifdef CONFIG_MESH
2537
2538static int wpa_supplicant_ctrl_iface_mesh_interface_add(
2539 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
2540{
2541 char *pos, ifname[IFNAMSIZ + 1];
2542
2543 ifname[0] = '\0';
2544
2545 pos = os_strstr(cmd, "ifname=");
2546 if (pos) {
2547 pos += 7;
2548 os_strlcpy(ifname, pos, sizeof(ifname));
2549 }
2550
2551 if (wpas_mesh_add_interface(wpa_s, ifname, sizeof(ifname)) < 0)
2552 return -1;
2553
2554 os_strlcpy(reply, ifname, max_len);
2555 return os_strlen(ifname);
2556}
2557
2558
2559static int wpa_supplicant_ctrl_iface_mesh_group_add(
2560 struct wpa_supplicant *wpa_s, char *cmd)
2561{
2562 int id;
2563 struct wpa_ssid *ssid;
2564
2565 id = atoi(cmd);
2566 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_ADD id=%d", id);
2567
2568 ssid = wpa_config_get_network(wpa_s->conf, id);
2569 if (ssid == NULL) {
2570 wpa_printf(MSG_DEBUG,
2571 "CTRL_IFACE: Could not find network id=%d", id);
2572 return -1;
2573 }
2574 if (ssid->mode != WPAS_MODE_MESH) {
2575 wpa_printf(MSG_DEBUG,
2576 "CTRL_IFACE: Cannot use MESH_GROUP_ADD on a non mesh network");
2577 return -1;
2578 }
2579 if (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
2580 ssid->key_mgmt != WPA_KEY_MGMT_SAE) {
2581 wpa_printf(MSG_ERROR,
2582 "CTRL_IFACE: key_mgmt for mesh network should be open or SAE");
2583 return -1;
2584 }
2585
2586 /*
2587 * TODO: If necessary write our own group_add function,
2588 * for now we can reuse select_network
2589 */
2590 wpa_supplicant_select_network(wpa_s, ssid);
2591
2592 return 0;
2593}
2594
2595
2596static int wpa_supplicant_ctrl_iface_mesh_group_remove(
2597 struct wpa_supplicant *wpa_s, char *cmd)
2598{
2599 struct wpa_supplicant *orig;
2600 struct wpa_global *global;
2601 int found = 0;
2602
2603 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s", cmd);
2604
2605 global = wpa_s->global;
2606 orig = wpa_s;
2607
2608 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2609 if (os_strcmp(wpa_s->ifname, cmd) == 0) {
2610 found = 1;
2611 break;
2612 }
2613 }
2614 if (!found) {
2615 wpa_printf(MSG_ERROR,
2616 "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s not found",
2617 cmd);
2618 return -1;
2619 }
2620 if (wpa_s->mesh_if_created && wpa_s == orig) {
2621 wpa_printf(MSG_ERROR,
2622 "CTRL_IFACE: MESH_GROUP_REMOVE can't remove itself");
2623 return -1;
2624 }
2625
2626 wpa_s->reassociate = 0;
2627 wpa_s->disconnected = 1;
2628 wpa_supplicant_cancel_sched_scan(wpa_s);
2629 wpa_supplicant_cancel_scan(wpa_s);
2630
2631 /*
2632 * TODO: If necessary write our own group_remove function,
2633 * for now we can reuse deauthenticate
2634 */
2635 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2636
2637 if (wpa_s->mesh_if_created)
2638 wpa_supplicant_remove_iface(global, wpa_s, 0);
2639
2640 return 0;
2641}
2642
2643#endif /* CONFIG_MESH */
2644
2645
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002646static int wpa_supplicant_ctrl_iface_select_network(
2647 struct wpa_supplicant *wpa_s, char *cmd)
2648{
2649 int id;
2650 struct wpa_ssid *ssid;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002651 char *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002652
2653 /* cmd: "<network id>" or "any" */
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002654 if (os_strncmp(cmd, "any", 3) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002655 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2656 ssid = NULL;
2657 } else {
2658 id = atoi(cmd);
2659 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2660
2661 ssid = wpa_config_get_network(wpa_s->conf, id);
2662 if (ssid == NULL) {
2663 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2664 "network id=%d", id);
2665 return -1;
2666 }
2667 if (ssid->disabled == 2) {
2668 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2669 "SELECT_NETWORK with persistent P2P group");
2670 return -1;
2671 }
2672 }
2673
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002674 pos = os_strstr(cmd, " freq=");
2675 if (pos) {
2676 int *freqs = freq_range_to_channel_list(wpa_s, pos + 6);
2677 if (freqs) {
2678 wpa_s->scan_req = MANUAL_SCAN_REQ;
2679 os_free(wpa_s->manual_scan_freqs);
2680 wpa_s->manual_scan_freqs = freqs;
2681 }
2682 }
2683
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002684 wpa_supplicant_select_network(wpa_s, ssid);
2685
2686 return 0;
2687}
2688
2689
2690static int wpa_supplicant_ctrl_iface_enable_network(
2691 struct wpa_supplicant *wpa_s, char *cmd)
2692{
2693 int id;
2694 struct wpa_ssid *ssid;
2695
2696 /* cmd: "<network id>" or "all" */
2697 if (os_strcmp(cmd, "all") == 0) {
2698 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2699 ssid = NULL;
2700 } else {
2701 id = atoi(cmd);
2702 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2703
2704 ssid = wpa_config_get_network(wpa_s->conf, id);
2705 if (ssid == NULL) {
2706 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2707 "network id=%d", id);
2708 return -1;
2709 }
2710 if (ssid->disabled == 2) {
2711 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2712 "ENABLE_NETWORK with persistent P2P group");
2713 return -1;
2714 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002715
2716 if (os_strstr(cmd, " no-connect")) {
2717 ssid->disabled = 0;
2718 return 0;
2719 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002720 }
2721 wpa_supplicant_enable_network(wpa_s, ssid);
2722
2723 return 0;
2724}
2725
2726
2727static int wpa_supplicant_ctrl_iface_disable_network(
2728 struct wpa_supplicant *wpa_s, char *cmd)
2729{
2730 int id;
2731 struct wpa_ssid *ssid;
2732
2733 /* cmd: "<network id>" or "all" */
2734 if (os_strcmp(cmd, "all") == 0) {
2735 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2736 ssid = NULL;
2737 } else {
2738 id = atoi(cmd);
2739 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2740
2741 ssid = wpa_config_get_network(wpa_s->conf, id);
2742 if (ssid == NULL) {
2743 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2744 "network id=%d", id);
2745 return -1;
2746 }
2747 if (ssid->disabled == 2) {
2748 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2749 "DISABLE_NETWORK with persistent P2P "
2750 "group");
2751 return -1;
2752 }
2753 }
2754 wpa_supplicant_disable_network(wpa_s, ssid);
2755
2756 return 0;
2757}
2758
2759
2760static int wpa_supplicant_ctrl_iface_add_network(
2761 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2762{
2763 struct wpa_ssid *ssid;
2764 int ret;
2765
2766 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2767
2768 ssid = wpa_config_add_network(wpa_s->conf);
2769 if (ssid == NULL)
2770 return -1;
2771
2772 wpas_notify_network_added(wpa_s, ssid);
2773
2774 ssid->disabled = 1;
2775 wpa_config_set_network_defaults(ssid);
2776
2777 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002778 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002779 return -1;
2780 return ret;
2781}
2782
2783
2784static int wpa_supplicant_ctrl_iface_remove_network(
2785 struct wpa_supplicant *wpa_s, char *cmd)
2786{
2787 int id;
2788 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002789 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002790
2791 /* cmd: "<network id>" or "all" */
2792 if (os_strcmp(cmd, "all") == 0) {
2793 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002794 if (wpa_s->sched_scanning)
2795 wpa_supplicant_cancel_sched_scan(wpa_s);
2796
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002797 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002798 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002799#ifdef CONFIG_SME
2800 wpa_s->sme.prev_bssid_set = 0;
2801#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002802 wpa_sm_set_config(wpa_s->wpa, NULL);
2803 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002804 wpa_supplicant_deauthenticate(
2805 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002806 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002807 ssid = wpa_s->conf->ssid;
2808 while (ssid) {
2809 struct wpa_ssid *remove_ssid = ssid;
2810 id = ssid->id;
2811 ssid = ssid->next;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002812 if (wpa_s->last_ssid == remove_ssid)
2813 wpa_s->last_ssid = NULL;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002814 wpas_notify_network_removed(wpa_s, remove_ssid);
2815 wpa_config_remove_network(wpa_s->conf, id);
2816 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002817 return 0;
2818 }
2819
2820 id = atoi(cmd);
2821 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2822
2823 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002824 if (ssid)
2825 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002826 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002827 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2828 "id=%d", id);
2829 return -1;
2830 }
2831
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002832 if (wpa_s->last_ssid == ssid)
2833 wpa_s->last_ssid = NULL;
2834
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002835 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002836#ifdef CONFIG_SME
2837 wpa_s->sme.prev_bssid_set = 0;
2838#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002839 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002840 * Invalidate the EAP session cache if the current or
2841 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002842 */
2843 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002844 }
2845
2846 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002847 wpa_sm_set_config(wpa_s->wpa, NULL);
2848 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002849
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002850 wpa_supplicant_deauthenticate(wpa_s,
2851 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002852 }
2853
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002854 was_disabled = ssid->disabled;
2855
Deepthi Gowria831d782012-09-03 11:55:38 +03002856 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2857 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2858 "network id=%d", id);
2859 return -1;
2860 }
2861
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002862 if (!was_disabled && wpa_s->sched_scanning) {
2863 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2864 "network from filters");
2865 wpa_supplicant_cancel_sched_scan(wpa_s);
2866 wpa_supplicant_req_scan(wpa_s, 0, 0);
2867 }
2868
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002869 return 0;
2870}
2871
2872
Dmitry Shmidt684785c2014-05-12 13:34:29 -07002873static int wpa_supplicant_ctrl_iface_update_network(
2874 struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2875 char *name, char *value)
2876{
2877 if (wpa_config_set(ssid, name, value, 0) < 0) {
2878 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2879 "variable '%s'", name);
2880 return -1;
2881 }
2882
2883 if (os_strcmp(name, "bssid") != 0 &&
2884 os_strcmp(name, "priority") != 0)
2885 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
2886
2887 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
2888 /*
2889 * Invalidate the EAP session cache if anything in the current
2890 * or previously used configuration changes.
2891 */
2892 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2893 }
2894
2895 if ((os_strcmp(name, "psk") == 0 &&
2896 value[0] == '"' && ssid->ssid_len) ||
2897 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2898 wpa_config_update_psk(ssid);
2899 else if (os_strcmp(name, "priority") == 0)
2900 wpa_config_update_prio_list(wpa_s->conf);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002901 else if (os_strcmp(name, "no_auto_peer") == 0)
2902 ssid->no_auto_peer = atoi(value);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07002903
2904 return 0;
2905}
2906
2907
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002908static int wpa_supplicant_ctrl_iface_set_network(
2909 struct wpa_supplicant *wpa_s, char *cmd)
2910{
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002911 int id, ret, prev_bssid_set;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002912 struct wpa_ssid *ssid;
2913 char *name, *value;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002914 u8 prev_bssid[ETH_ALEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002915
2916 /* cmd: "<network id> <variable name> <value>" */
2917 name = os_strchr(cmd, ' ');
2918 if (name == NULL)
2919 return -1;
2920 *name++ = '\0';
2921
2922 value = os_strchr(name, ' ');
2923 if (value == NULL)
2924 return -1;
2925 *value++ = '\0';
2926
2927 id = atoi(cmd);
2928 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
2929 id, name);
2930 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
2931 (u8 *) value, os_strlen(value));
2932
2933 ssid = wpa_config_get_network(wpa_s->conf, id);
2934 if (ssid == NULL) {
2935 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2936 "id=%d", id);
2937 return -1;
2938 }
2939
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002940 prev_bssid_set = ssid->bssid_set;
2941 os_memcpy(prev_bssid, ssid->bssid, ETH_ALEN);
2942 ret = wpa_supplicant_ctrl_iface_update_network(wpa_s, ssid, name,
2943 value);
2944 if (ret == 0 &&
2945 (ssid->bssid_set != prev_bssid_set ||
2946 os_memcmp(ssid->bssid, prev_bssid, ETH_ALEN) != 0))
2947 wpas_notify_network_bssid_set_changed(wpa_s, ssid);
2948 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002949}
2950
2951
2952static int wpa_supplicant_ctrl_iface_get_network(
2953 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
2954{
2955 int id;
2956 size_t res;
2957 struct wpa_ssid *ssid;
2958 char *name, *value;
2959
2960 /* cmd: "<network id> <variable name>" */
2961 name = os_strchr(cmd, ' ');
2962 if (name == NULL || buflen == 0)
2963 return -1;
2964 *name++ = '\0';
2965
2966 id = atoi(cmd);
2967 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
2968 id, name);
2969
2970 ssid = wpa_config_get_network(wpa_s->conf, id);
2971 if (ssid == NULL) {
2972 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2973 "id=%d", id);
2974 return -1;
2975 }
2976
2977 value = wpa_config_get_no_key(ssid, name);
2978 if (value == NULL) {
2979 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
2980 "variable '%s'", name);
2981 return -1;
2982 }
2983
2984 res = os_strlcpy(buf, value, buflen);
2985 if (res >= buflen) {
2986 os_free(value);
2987 return -1;
2988 }
2989
2990 os_free(value);
2991
2992 return res;
2993}
2994
2995
Dmitry Shmidt684785c2014-05-12 13:34:29 -07002996static int wpa_supplicant_ctrl_iface_dup_network(
2997 struct wpa_supplicant *wpa_s, char *cmd)
2998{
2999 struct wpa_ssid *ssid_s, *ssid_d;
3000 char *name, *id, *value;
3001 int id_s, id_d, ret;
3002
3003 /* cmd: "<src network id> <dst network id> <variable name>" */
3004 id = os_strchr(cmd, ' ');
3005 if (id == NULL)
3006 return -1;
3007 *id++ = '\0';
3008
3009 name = os_strchr(id, ' ');
3010 if (name == NULL)
3011 return -1;
3012 *name++ = '\0';
3013
3014 id_s = atoi(cmd);
3015 id_d = atoi(id);
3016 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DUP_NETWORK id=%d -> %d name='%s'",
3017 id_s, id_d, name);
3018
3019 ssid_s = wpa_config_get_network(wpa_s->conf, id_s);
3020 if (ssid_s == NULL) {
3021 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3022 "network id=%d", id_s);
3023 return -1;
3024 }
3025
3026 ssid_d = wpa_config_get_network(wpa_s->conf, id_d);
3027 if (ssid_d == NULL) {
3028 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003029 "network id=%d", id_d);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003030 return -1;
3031 }
3032
3033 value = wpa_config_get(ssid_s, name);
3034 if (value == NULL) {
3035 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
3036 "variable '%s'", name);
3037 return -1;
3038 }
3039
3040 ret = wpa_supplicant_ctrl_iface_update_network(wpa_s, ssid_d, name,
3041 value);
3042
3043 os_free(value);
3044
3045 return ret;
3046}
3047
3048
Dmitry Shmidt04949592012-07-19 12:16:46 -07003049static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
3050 char *buf, size_t buflen)
3051{
3052 char *pos, *end;
3053 struct wpa_cred *cred;
3054 int ret;
3055
3056 pos = buf;
3057 end = buf + buflen;
3058 ret = os_snprintf(pos, end - pos,
3059 "cred id / realm / username / domain / imsi\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003060 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003061 return pos - buf;
3062 pos += ret;
3063
3064 cred = wpa_s->conf->cred;
3065 while (cred) {
3066 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
3067 cred->id, cred->realm ? cred->realm : "",
3068 cred->username ? cred->username : "",
Dmitry Shmidt051af732013-10-22 13:52:46 -07003069 cred->domain ? cred->domain[0] : "",
Dmitry Shmidt04949592012-07-19 12:16:46 -07003070 cred->imsi ? cred->imsi : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003071 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003072 return pos - buf;
3073 pos += ret;
3074
3075 cred = cred->next;
3076 }
3077
3078 return pos - buf;
3079}
3080
3081
3082static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
3083 char *buf, size_t buflen)
3084{
3085 struct wpa_cred *cred;
3086 int ret;
3087
3088 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
3089
3090 cred = wpa_config_add_cred(wpa_s->conf);
3091 if (cred == NULL)
3092 return -1;
3093
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003094 wpa_msg(wpa_s, MSG_INFO, CRED_ADDED "%d", cred->id);
3095
Dmitry Shmidt04949592012-07-19 12:16:46 -07003096 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003097 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003098 return -1;
3099 return ret;
3100}
3101
3102
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003103static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
3104 struct wpa_cred *cred)
3105{
3106 struct wpa_ssid *ssid;
3107 char str[20];
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003108 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003109
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003110 if (cred == NULL) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003111 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3112 return -1;
3113 }
3114
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003115 id = cred->id;
3116 if (wpa_config_remove_cred(wpa_s->conf, id) < 0) {
3117 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3118 return -1;
3119 }
3120
3121 wpa_msg(wpa_s, MSG_INFO, CRED_REMOVED "%d", id);
3122
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003123 /* Remove any network entry created based on the removed credential */
3124 ssid = wpa_s->conf->ssid;
3125 while (ssid) {
3126 if (ssid->parent_cred == cred) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003127 int res;
3128
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003129 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
3130 "used the removed credential", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003131 res = os_snprintf(str, sizeof(str), "%d", ssid->id);
3132 if (os_snprintf_error(sizeof(str), res))
3133 str[sizeof(str) - 1] = '\0';
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003134 ssid = ssid->next;
3135 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
3136 } else
3137 ssid = ssid->next;
3138 }
3139
3140 return 0;
3141}
3142
3143
Dmitry Shmidt04949592012-07-19 12:16:46 -07003144static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
3145 char *cmd)
3146{
3147 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003148 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003149
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003150 /* cmd: "<cred id>", "all", "sp_fqdn=<FQDN>", or
3151 * "provisioning_sp=<FQDN> */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003152 if (os_strcmp(cmd, "all") == 0) {
3153 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
3154 cred = wpa_s->conf->cred;
3155 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003156 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003157 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003158 wpas_ctrl_remove_cred(wpa_s, prev);
3159 }
3160 return 0;
3161 }
3162
3163 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
3164 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
3165 cmd + 8);
3166 cred = wpa_s->conf->cred;
3167 while (cred) {
3168 prev = cred;
3169 cred = cred->next;
Dmitry Shmidt051af732013-10-22 13:52:46 -07003170 if (prev->domain) {
3171 size_t i;
3172 for (i = 0; i < prev->num_domain; i++) {
3173 if (os_strcmp(prev->domain[i], cmd + 8)
3174 != 0)
3175 continue;
3176 wpas_ctrl_remove_cred(wpa_s, prev);
3177 break;
3178 }
3179 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003180 }
3181 return 0;
3182 }
3183
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003184 if (os_strncmp(cmd, "provisioning_sp=", 16) == 0) {
3185 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED provisioning SP FQDN '%s'",
3186 cmd + 16);
3187 cred = wpa_s->conf->cred;
3188 while (cred) {
3189 prev = cred;
3190 cred = cred->next;
3191 if (prev->provisioning_sp &&
3192 os_strcmp(prev->provisioning_sp, cmd + 16) == 0)
3193 wpas_ctrl_remove_cred(wpa_s, prev);
3194 }
3195 return 0;
3196 }
3197
Dmitry Shmidt04949592012-07-19 12:16:46 -07003198 id = atoi(cmd);
3199 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
3200
3201 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003202 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003203}
3204
3205
3206static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
3207 char *cmd)
3208{
3209 int id;
3210 struct wpa_cred *cred;
3211 char *name, *value;
3212
3213 /* cmd: "<cred id> <variable name> <value>" */
3214 name = os_strchr(cmd, ' ');
3215 if (name == NULL)
3216 return -1;
3217 *name++ = '\0';
3218
3219 value = os_strchr(name, ' ');
3220 if (value == NULL)
3221 return -1;
3222 *value++ = '\0';
3223
3224 id = atoi(cmd);
3225 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
3226 id, name);
3227 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3228 (u8 *) value, os_strlen(value));
3229
3230 cred = wpa_config_get_cred(wpa_s->conf, id);
3231 if (cred == NULL) {
3232 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3233 id);
3234 return -1;
3235 }
3236
3237 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
3238 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
3239 "variable '%s'", name);
3240 return -1;
3241 }
3242
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003243 wpa_msg(wpa_s, MSG_INFO, CRED_MODIFIED "%d %s", cred->id, name);
3244
Dmitry Shmidt04949592012-07-19 12:16:46 -07003245 return 0;
3246}
3247
3248
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003249static int wpa_supplicant_ctrl_iface_get_cred(struct wpa_supplicant *wpa_s,
3250 char *cmd, char *buf,
3251 size_t buflen)
3252{
3253 int id;
3254 size_t res;
3255 struct wpa_cred *cred;
3256 char *name, *value;
3257
3258 /* cmd: "<cred id> <variable name>" */
3259 name = os_strchr(cmd, ' ');
3260 if (name == NULL)
3261 return -1;
3262 *name++ = '\0';
3263
3264 id = atoi(cmd);
3265 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CRED id=%d name='%s'",
3266 id, name);
3267
3268 cred = wpa_config_get_cred(wpa_s->conf, id);
3269 if (cred == NULL) {
3270 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3271 id);
3272 return -1;
3273 }
3274
3275 value = wpa_config_get_cred_no_key(cred, name);
3276 if (value == NULL) {
3277 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get cred variable '%s'",
3278 name);
3279 return -1;
3280 }
3281
3282 res = os_strlcpy(buf, value, buflen);
3283 if (res >= buflen) {
3284 os_free(value);
3285 return -1;
3286 }
3287
3288 os_free(value);
3289
3290 return res;
3291}
3292
3293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003294#ifndef CONFIG_NO_CONFIG_WRITE
3295static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
3296{
3297 int ret;
3298
3299 if (!wpa_s->conf->update_config) {
3300 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
3301 "to update configuration (update_config=0)");
3302 return -1;
3303 }
3304
3305 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
3306 if (ret) {
3307 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
3308 "update configuration");
3309 } else {
3310 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
3311 " updated");
3312 }
3313
3314 return ret;
3315}
3316#endif /* CONFIG_NO_CONFIG_WRITE */
3317
3318
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003319struct cipher_info {
3320 unsigned int capa;
3321 const char *name;
3322 int group_only;
3323};
3324
3325static const struct cipher_info ciphers[] = {
3326 { WPA_DRIVER_CAPA_ENC_CCMP_256, "CCMP-256", 0 },
3327 { WPA_DRIVER_CAPA_ENC_GCMP_256, "GCMP-256", 0 },
3328 { WPA_DRIVER_CAPA_ENC_CCMP, "CCMP", 0 },
3329 { WPA_DRIVER_CAPA_ENC_GCMP, "GCMP", 0 },
3330 { WPA_DRIVER_CAPA_ENC_TKIP, "TKIP", 0 },
3331 { WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE, "NONE", 0 },
3332 { WPA_DRIVER_CAPA_ENC_WEP104, "WEP104", 1 },
3333 { WPA_DRIVER_CAPA_ENC_WEP40, "WEP40", 1 }
3334};
3335
3336
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003337static int ctrl_iface_get_capability_pairwise(int res, char *strict,
3338 struct wpa_driver_capa *capa,
3339 char *buf, size_t buflen)
3340{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003341 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003342 char *pos, *end;
3343 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003344 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003345
3346 pos = buf;
3347 end = pos + buflen;
3348
3349 if (res < 0) {
3350 if (strict)
3351 return 0;
3352 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
3353 if (len >= buflen)
3354 return -1;
3355 return len;
3356 }
3357
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003358 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3359 if (!ciphers[i].group_only && capa->enc & ciphers[i].capa) {
3360 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003361 pos == buf ? "" : " ",
3362 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003363 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003364 return pos - buf;
3365 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003366 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003367 }
3368
3369 return pos - buf;
3370}
3371
3372
3373static int ctrl_iface_get_capability_group(int res, char *strict,
3374 struct wpa_driver_capa *capa,
3375 char *buf, size_t buflen)
3376{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003377 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003378 char *pos, *end;
3379 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003380 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003381
3382 pos = buf;
3383 end = pos + buflen;
3384
3385 if (res < 0) {
3386 if (strict)
3387 return 0;
3388 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
3389 if (len >= buflen)
3390 return -1;
3391 return len;
3392 }
3393
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003394 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3395 if (capa->enc & ciphers[i].capa) {
3396 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003397 pos == buf ? "" : " ",
3398 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003399 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003400 return pos - buf;
3401 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003402 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003403 }
3404
3405 return pos - buf;
3406}
3407
3408
3409static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
3410 struct wpa_driver_capa *capa,
3411 char *buf, size_t buflen)
3412{
3413 int ret;
3414 char *pos, *end;
3415 size_t len;
3416
3417 pos = buf;
3418 end = pos + buflen;
3419
3420 if (res < 0) {
3421 if (strict)
3422 return 0;
3423 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
3424 "NONE", buflen);
3425 if (len >= buflen)
3426 return -1;
3427 return len;
3428 }
3429
3430 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003431 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003432 return pos - buf;
3433 pos += ret;
3434
3435 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3436 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
3437 ret = os_snprintf(pos, end - pos, " WPA-EAP");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003438 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003439 return pos - buf;
3440 pos += ret;
3441 }
3442
3443 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
3444 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
3445 ret = os_snprintf(pos, end - pos, " WPA-PSK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003446 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003447 return pos - buf;
3448 pos += ret;
3449 }
3450
3451 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
3452 ret = os_snprintf(pos, end - pos, " WPA-NONE");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003453 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003454 return pos - buf;
3455 pos += ret;
3456 }
3457
3458 return pos - buf;
3459}
3460
3461
3462static int ctrl_iface_get_capability_proto(int res, char *strict,
3463 struct wpa_driver_capa *capa,
3464 char *buf, size_t buflen)
3465{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003466 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003467 char *pos, *end;
3468 size_t len;
3469
3470 pos = buf;
3471 end = pos + buflen;
3472
3473 if (res < 0) {
3474 if (strict)
3475 return 0;
3476 len = os_strlcpy(buf, "RSN WPA", buflen);
3477 if (len >= buflen)
3478 return -1;
3479 return len;
3480 }
3481
3482 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3483 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003484 ret = os_snprintf(pos, end - pos, "%sRSN",
3485 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003486 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003487 return pos - buf;
3488 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003489 }
3490
3491 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3492 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003493 ret = os_snprintf(pos, end - pos, "%sWPA",
3494 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003495 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003496 return pos - buf;
3497 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003498 }
3499
3500 return pos - buf;
3501}
3502
3503
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003504static int ctrl_iface_get_capability_auth_alg(struct wpa_supplicant *wpa_s,
3505 int res, char *strict,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003506 struct wpa_driver_capa *capa,
3507 char *buf, size_t buflen)
3508{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003509 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003510 char *pos, *end;
3511 size_t len;
3512
3513 pos = buf;
3514 end = pos + buflen;
3515
3516 if (res < 0) {
3517 if (strict)
3518 return 0;
3519 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
3520 if (len >= buflen)
3521 return -1;
3522 return len;
3523 }
3524
3525 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003526 ret = os_snprintf(pos, end - pos, "%sOPEN",
3527 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003528 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003529 return pos - buf;
3530 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003531 }
3532
3533 if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
3534 ret = os_snprintf(pos, end - pos, "%sSHARED",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003535 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003536 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003537 return pos - buf;
3538 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003539 }
3540
3541 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003542 ret = os_snprintf(pos, end - pos, "%sLEAP",
3543 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003544 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003545 return pos - buf;
3546 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003547 }
3548
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003549#ifdef CONFIG_SAE
3550 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE) {
3551 ret = os_snprintf(pos, end - pos, "%sSAE",
3552 pos == buf ? "" : " ");
3553 if (os_snprintf_error(end - pos, ret))
3554 return pos - buf;
3555 pos += ret;
3556 }
3557#endif /* CONFIG_SAE */
3558
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003559 return pos - buf;
3560}
3561
3562
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003563static int ctrl_iface_get_capability_modes(int res, char *strict,
3564 struct wpa_driver_capa *capa,
3565 char *buf, size_t buflen)
3566{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003567 int ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003568 char *pos, *end;
3569 size_t len;
3570
3571 pos = buf;
3572 end = pos + buflen;
3573
3574 if (res < 0) {
3575 if (strict)
3576 return 0;
3577 len = os_strlcpy(buf, "IBSS AP", buflen);
3578 if (len >= buflen)
3579 return -1;
3580 return len;
3581 }
3582
3583 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003584 ret = os_snprintf(pos, end - pos, "%sIBSS",
3585 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003586 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003587 return pos - buf;
3588 pos += ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003589 }
3590
3591 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003592 ret = os_snprintf(pos, end - pos, "%sAP",
3593 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003594 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003595 return pos - buf;
3596 pos += ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003597 }
3598
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003599#ifdef CONFIG_MESH
3600 if (capa->flags & WPA_DRIVER_FLAGS_MESH) {
3601 ret = os_snprintf(pos, end - pos, "%sMESH",
3602 pos == buf ? "" : " ");
3603 if (os_snprintf_error(end - pos, ret))
3604 return pos - buf;
3605 pos += ret;
3606 }
3607#endif /* CONFIG_MESH */
3608
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003609 return pos - buf;
3610}
3611
3612
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003613static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
3614 char *buf, size_t buflen)
3615{
3616 struct hostapd_channel_data *chnl;
3617 int ret, i, j;
3618 char *pos, *end, *hmode;
3619
3620 pos = buf;
3621 end = pos + buflen;
3622
3623 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3624 switch (wpa_s->hw.modes[j].mode) {
3625 case HOSTAPD_MODE_IEEE80211B:
3626 hmode = "B";
3627 break;
3628 case HOSTAPD_MODE_IEEE80211G:
3629 hmode = "G";
3630 break;
3631 case HOSTAPD_MODE_IEEE80211A:
3632 hmode = "A";
3633 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003634 case HOSTAPD_MODE_IEEE80211AD:
3635 hmode = "AD";
3636 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003637 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003638 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003639 }
3640 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003641 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003642 return pos - buf;
3643 pos += ret;
3644 chnl = wpa_s->hw.modes[j].channels;
3645 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003646 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3647 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003648 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003649 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003650 return pos - buf;
3651 pos += ret;
3652 }
3653 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003654 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003655 return pos - buf;
3656 pos += ret;
3657 }
3658
3659 return pos - buf;
3660}
3661
3662
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003663static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
3664 char *buf, size_t buflen)
3665{
3666 struct hostapd_channel_data *chnl;
3667 int ret, i, j;
3668 char *pos, *end, *hmode;
3669
3670 pos = buf;
3671 end = pos + buflen;
3672
3673 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3674 switch (wpa_s->hw.modes[j].mode) {
3675 case HOSTAPD_MODE_IEEE80211B:
3676 hmode = "B";
3677 break;
3678 case HOSTAPD_MODE_IEEE80211G:
3679 hmode = "G";
3680 break;
3681 case HOSTAPD_MODE_IEEE80211A:
3682 hmode = "A";
3683 break;
3684 case HOSTAPD_MODE_IEEE80211AD:
3685 hmode = "AD";
3686 break;
3687 default:
3688 continue;
3689 }
3690 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3691 hmode);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003692 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003693 return pos - buf;
3694 pos += ret;
3695 chnl = wpa_s->hw.modes[j].channels;
3696 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3697 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3698 continue;
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003699 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s%s\n",
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003700 chnl[i].chan, chnl[i].freq,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003701 chnl[i].flag & HOSTAPD_CHAN_NO_IR ?
3702 " (NO_IR)" : "",
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003703 chnl[i].flag & HOSTAPD_CHAN_RADAR ?
3704 " (DFS)" : "");
3705
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003706 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003707 return pos - buf;
3708 pos += ret;
3709 }
3710 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003711 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003712 return pos - buf;
3713 pos += ret;
3714 }
3715
3716 return pos - buf;
3717}
3718
3719
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003720static int wpa_supplicant_ctrl_iface_get_capability(
3721 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3722 size_t buflen)
3723{
3724 struct wpa_driver_capa capa;
3725 int res;
3726 char *strict;
3727 char field[30];
3728 size_t len;
3729
3730 /* Determine whether or not strict checking was requested */
3731 len = os_strlcpy(field, _field, sizeof(field));
3732 if (len >= sizeof(field))
3733 return -1;
3734 strict = os_strchr(field, ' ');
3735 if (strict != NULL) {
3736 *strict++ = '\0';
3737 if (os_strcmp(strict, "strict") != 0)
3738 return -1;
3739 }
3740
3741 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3742 field, strict ? strict : "");
3743
3744 if (os_strcmp(field, "eap") == 0) {
3745 return eap_get_names(buf, buflen);
3746 }
3747
3748 res = wpa_drv_get_capa(wpa_s, &capa);
3749
3750 if (os_strcmp(field, "pairwise") == 0)
3751 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3752 buf, buflen);
3753
3754 if (os_strcmp(field, "group") == 0)
3755 return ctrl_iface_get_capability_group(res, strict, &capa,
3756 buf, buflen);
3757
3758 if (os_strcmp(field, "key_mgmt") == 0)
3759 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3760 buf, buflen);
3761
3762 if (os_strcmp(field, "proto") == 0)
3763 return ctrl_iface_get_capability_proto(res, strict, &capa,
3764 buf, buflen);
3765
3766 if (os_strcmp(field, "auth_alg") == 0)
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003767 return ctrl_iface_get_capability_auth_alg(wpa_s, res, strict,
3768 &capa, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003769
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003770 if (os_strcmp(field, "modes") == 0)
3771 return ctrl_iface_get_capability_modes(res, strict, &capa,
3772 buf, buflen);
3773
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003774 if (os_strcmp(field, "channels") == 0)
3775 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3776
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003777 if (os_strcmp(field, "freq") == 0)
3778 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3779
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07003780#ifdef CONFIG_TDLS
3781 if (os_strcmp(field, "tdls") == 0)
3782 return ctrl_iface_get_capability_tdls(wpa_s, buf, buflen);
3783#endif /* CONFIG_TDLS */
3784
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003785#ifdef CONFIG_ERP
3786 if (os_strcmp(field, "erp") == 0) {
3787 res = os_snprintf(buf, buflen, "ERP");
3788 if (os_snprintf_error(buflen, res))
3789 return -1;
3790 return res;
3791 }
3792#endif /* CONFIG_EPR */
3793
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003794 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3795 field);
3796
3797 return -1;
3798}
3799
3800
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003801#ifdef CONFIG_INTERWORKING
3802static char * anqp_add_hex(char *pos, char *end, const char *title,
3803 struct wpabuf *data)
3804{
3805 char *start = pos;
3806 size_t i;
3807 int ret;
3808 const u8 *d;
3809
3810 if (data == NULL)
3811 return start;
3812
3813 ret = os_snprintf(pos, end - pos, "%s=", title);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003814 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003815 return start;
3816 pos += ret;
3817
3818 d = wpabuf_head_u8(data);
3819 for (i = 0; i < wpabuf_len(data); i++) {
3820 ret = os_snprintf(pos, end - pos, "%02x", *d++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003821 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003822 return start;
3823 pos += ret;
3824 }
3825
3826 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003827 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003828 return start;
3829 pos += ret;
3830
3831 return pos;
3832}
3833#endif /* CONFIG_INTERWORKING */
3834
3835
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003836static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
3837 unsigned long mask, char *buf, size_t buflen)
3838{
3839 size_t i;
3840 int ret;
3841 char *pos, *end;
3842 const u8 *ie, *ie2;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003843
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003844 pos = buf;
3845 end = buf + buflen;
3846
3847 if (mask & WPA_BSS_MASK_ID) {
3848 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003849 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003850 return 0;
3851 pos += ret;
3852 }
3853
3854 if (mask & WPA_BSS_MASK_BSSID) {
3855 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
3856 MAC2STR(bss->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003857 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003858 return 0;
3859 pos += ret;
3860 }
3861
3862 if (mask & WPA_BSS_MASK_FREQ) {
3863 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003864 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003865 return 0;
3866 pos += ret;
3867 }
3868
3869 if (mask & WPA_BSS_MASK_BEACON_INT) {
3870 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
3871 bss->beacon_int);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003872 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003873 return 0;
3874 pos += ret;
3875 }
3876
3877 if (mask & WPA_BSS_MASK_CAPABILITIES) {
3878 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
3879 bss->caps);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003880 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003881 return 0;
3882 pos += ret;
3883 }
3884
3885 if (mask & WPA_BSS_MASK_QUAL) {
3886 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003887 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003888 return 0;
3889 pos += ret;
3890 }
3891
3892 if (mask & WPA_BSS_MASK_NOISE) {
3893 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003894 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003895 return 0;
3896 pos += ret;
3897 }
3898
3899 if (mask & WPA_BSS_MASK_LEVEL) {
3900 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003901 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003902 return 0;
3903 pos += ret;
3904 }
3905
3906 if (mask & WPA_BSS_MASK_TSF) {
3907 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
3908 (unsigned long long) bss->tsf);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003909 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003910 return 0;
3911 pos += ret;
3912 }
3913
3914 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003915 struct os_reltime now;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003916
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003917 os_get_reltime(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003918 ret = os_snprintf(pos, end - pos, "age=%d\n",
3919 (int) (now.sec - bss->last_update.sec));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003920 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003921 return 0;
3922 pos += ret;
3923 }
3924
3925 if (mask & WPA_BSS_MASK_IE) {
3926 ret = os_snprintf(pos, end - pos, "ie=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003927 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003928 return 0;
3929 pos += ret;
3930
3931 ie = (const u8 *) (bss + 1);
3932 for (i = 0; i < bss->ie_len; i++) {
3933 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003934 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003935 return 0;
3936 pos += ret;
3937 }
3938
3939 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003940 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003941 return 0;
3942 pos += ret;
3943 }
3944
3945 if (mask & WPA_BSS_MASK_FLAGS) {
3946 ret = os_snprintf(pos, end - pos, "flags=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003947 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003948 return 0;
3949 pos += ret;
3950
3951 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
3952 if (ie)
3953 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
3954 2 + ie[1]);
3955 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
3956 if (ie2)
3957 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
3958 2 + ie2[1]);
3959 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
3960 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
3961 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003962 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003963 return 0;
3964 pos += ret;
3965 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07003966 if (bss_is_dmg(bss)) {
3967 const char *s;
3968 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003969 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003970 return 0;
3971 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07003972 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
3973 case IEEE80211_CAP_DMG_IBSS:
3974 s = "[IBSS]";
3975 break;
3976 case IEEE80211_CAP_DMG_AP:
3977 s = "[ESS]";
3978 break;
3979 case IEEE80211_CAP_DMG_PBSS:
3980 s = "[PBSS]";
3981 break;
3982 default:
3983 s = "";
3984 break;
3985 }
3986 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003987 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07003988 return 0;
3989 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07003990 } else {
3991 if (bss->caps & IEEE80211_CAP_IBSS) {
3992 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003993 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07003994 return 0;
3995 pos += ret;
3996 }
3997 if (bss->caps & IEEE80211_CAP_ESS) {
3998 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003999 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004000 return 0;
4001 pos += ret;
4002 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004003 }
Dmitry Shmidt96571392013-10-14 12:54:46 -07004004 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
4005 wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004006 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004007 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004008 return 0;
4009 pos += ret;
4010 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004011#ifdef CONFIG_HS20
4012 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
4013 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004014 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004015 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004016 pos += ret;
4017 }
4018#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004019
4020 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004021 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004022 return 0;
4023 pos += ret;
4024 }
4025
4026 if (mask & WPA_BSS_MASK_SSID) {
4027 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
4028 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004029 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004030 return 0;
4031 pos += ret;
4032 }
4033
4034#ifdef CONFIG_WPS
4035 if (mask & WPA_BSS_MASK_WPS_SCAN) {
4036 ie = (const u8 *) (bss + 1);
4037 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
4038 if (ret < 0 || ret >= end - pos)
4039 return 0;
4040 pos += ret;
4041 }
4042#endif /* CONFIG_WPS */
4043
4044#ifdef CONFIG_P2P
4045 if (mask & WPA_BSS_MASK_P2P_SCAN) {
4046 ie = (const u8 *) (bss + 1);
4047 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
4048 if (ret < 0 || ret >= end - pos)
4049 return 0;
4050 pos += ret;
4051 }
4052#endif /* CONFIG_P2P */
4053
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004054#ifdef CONFIG_WIFI_DISPLAY
4055 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
4056 struct wpabuf *wfd;
4057 ie = (const u8 *) (bss + 1);
4058 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
4059 WFD_IE_VENDOR_TYPE);
4060 if (wfd) {
4061 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004062 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004063 wpabuf_free(wfd);
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004064 return 0;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004065 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004066 pos += ret;
4067
4068 pos += wpa_snprintf_hex(pos, end - pos,
4069 wpabuf_head(wfd),
4070 wpabuf_len(wfd));
4071 wpabuf_free(wfd);
4072
4073 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004074 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004075 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004076 pos += ret;
4077 }
4078 }
4079#endif /* CONFIG_WIFI_DISPLAY */
4080
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004081#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004082 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
4083 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004084 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004085 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004086 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004087 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004088 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004089 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004090 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004091 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004092 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004093 anqp->nai_realm);
4094 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004095 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004096 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004097#ifdef CONFIG_HS20
4098 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004099 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004100 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004101 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004102 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004103 anqp->hs20_connection_capability);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08004104 pos = anqp_add_hex(pos, end, "hs20_operating_class",
4105 anqp->hs20_operating_class);
4106 pos = anqp_add_hex(pos, end, "hs20_osu_providers_list",
4107 anqp->hs20_osu_providers_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004108#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004109 }
4110#endif /* CONFIG_INTERWORKING */
4111
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004112#ifdef CONFIG_MESH
4113 if (mask & WPA_BSS_MASK_MESH_SCAN) {
4114 ie = (const u8 *) (bss + 1);
4115 ret = wpas_mesh_scan_result_text(ie, bss->ie_len, pos, end);
4116 if (ret < 0 || ret >= end - pos)
4117 return 0;
4118 pos += ret;
4119 }
4120#endif /* CONFIG_MESH */
4121
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004122 if (mask & WPA_BSS_MASK_DELIM) {
4123 ret = os_snprintf(pos, end - pos, "====\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004124 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004125 return 0;
4126 pos += ret;
4127 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07004128
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004129 return pos - buf;
4130}
4131
Dmitry Shmidt04949592012-07-19 12:16:46 -07004132
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004133static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
4134 const char *cmd, char *buf,
4135 size_t buflen)
4136{
4137 u8 bssid[ETH_ALEN];
4138 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004139 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004140 struct wpa_bss *bsslast = NULL;
4141 struct dl_list *next;
4142 int ret = 0;
4143 int len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004144 char *ctmp, *end = buf + buflen;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004145 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004146
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004147 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
4148 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
4149 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004150 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004151 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
4152 list_id);
4153 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004154 unsigned int id1, id2;
4155
4156 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
4157 wpa_printf(MSG_INFO, "Wrong BSS range "
4158 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004159 return 0;
4160 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004161
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004162 if (*(cmd + 6) == '-')
4163 id1 = 0;
4164 else
4165 id1 = atoi(cmd + 6);
4166 ctmp++;
4167 if (*ctmp >= '0' && *ctmp <= '9')
4168 id2 = atoi(ctmp);
4169 else
4170 id2 = (unsigned int) -1;
4171 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
4172 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004173 bsslast = dl_list_last(&wpa_s->bss_id,
4174 struct wpa_bss,
4175 list_id);
4176 else {
4177 bsslast = wpa_bss_get_id(wpa_s, id2);
4178 if (bsslast == NULL && bss && id2 > id1) {
4179 struct wpa_bss *tmp = bss;
4180 for (;;) {
4181 next = tmp->list_id.next;
4182 if (next == &wpa_s->bss_id)
4183 break;
4184 tmp = dl_list_entry(
4185 next, struct wpa_bss,
4186 list_id);
4187 if (tmp->id > id2)
4188 break;
4189 bsslast = tmp;
4190 }
4191 }
4192 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004193 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004194 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004195 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004196 else if (os_strncmp(cmd, "LAST", 4) == 0)
4197 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004198 else if (os_strncmp(cmd, "ID-", 3) == 0) {
4199 i = atoi(cmd + 3);
4200 bss = wpa_bss_get_id(wpa_s, i);
4201 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4202 i = atoi(cmd + 5);
4203 bss = wpa_bss_get_id(wpa_s, i);
4204 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004205 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004206 if (next == &wpa_s->bss_id)
4207 bss = NULL;
4208 else
4209 bss = dl_list_entry(next, struct wpa_bss,
4210 list_id);
4211 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004212#ifdef CONFIG_P2P
4213 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
4214 if (hwaddr_aton(cmd + 13, bssid) == 0)
4215 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
4216 else
4217 bss = NULL;
4218#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004219 } else if (hwaddr_aton(cmd, bssid) == 0)
4220 bss = wpa_bss_get_bssid(wpa_s, bssid);
4221 else {
4222 struct wpa_bss *tmp;
4223 i = atoi(cmd);
4224 bss = NULL;
4225 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
4226 {
4227 if (i-- == 0) {
4228 bss = tmp;
4229 break;
4230 }
4231 }
4232 }
4233
Dmitry Shmidt04949592012-07-19 12:16:46 -07004234 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
4235 mask = strtoul(ctmp + 5, NULL, 0x10);
4236 if (mask == 0)
4237 mask = WPA_BSS_MASK_ALL;
4238 }
4239
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004240 if (bss == NULL)
4241 return 0;
4242
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004243 if (bsslast == NULL)
4244 bsslast = bss;
4245 do {
4246 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
4247 ret += len;
4248 buf += len;
4249 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004250 if (bss == bsslast) {
4251 if ((mask & WPA_BSS_MASK_DELIM) && len &&
4252 (bss == dl_list_last(&wpa_s->bss_id,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004253 struct wpa_bss, list_id))) {
4254 int res;
4255
4256 res = os_snprintf(buf - 5, end - buf + 5,
4257 "####\n");
4258 if (os_snprintf_error(end - buf + 5, res)) {
4259 wpa_printf(MSG_DEBUG,
4260 "Could not add end delim");
4261 }
4262 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004263 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004264 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004265 next = bss->list_id.next;
4266 if (next == &wpa_s->bss_id)
4267 break;
4268 bss = dl_list_entry(next, struct wpa_bss, list_id);
4269 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004270
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004271 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004272}
4273
4274
4275static int wpa_supplicant_ctrl_iface_ap_scan(
4276 struct wpa_supplicant *wpa_s, char *cmd)
4277{
4278 int ap_scan = atoi(cmd);
4279 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
4280}
4281
4282
4283static int wpa_supplicant_ctrl_iface_scan_interval(
4284 struct wpa_supplicant *wpa_s, char *cmd)
4285{
4286 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004287 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004288}
4289
4290
4291static int wpa_supplicant_ctrl_iface_bss_expire_age(
4292 struct wpa_supplicant *wpa_s, char *cmd)
4293{
4294 int expire_age = atoi(cmd);
4295 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
4296}
4297
4298
4299static int wpa_supplicant_ctrl_iface_bss_expire_count(
4300 struct wpa_supplicant *wpa_s, char *cmd)
4301{
4302 int expire_count = atoi(cmd);
4303 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
4304}
4305
4306
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004307static void wpa_supplicant_ctrl_iface_bss_flush(
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004308 struct wpa_supplicant *wpa_s, char *cmd)
4309{
4310 int flush_age = atoi(cmd);
4311
4312 if (flush_age == 0)
4313 wpa_bss_flush(wpa_s);
4314 else
4315 wpa_bss_flush_by_age(wpa_s, flush_age);
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004316}
4317
4318
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004319#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004320static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
4321{
4322 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
4323 /* MLME-DELETEKEYS.request */
4324 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
4325 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
4326 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
4327 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
4328#ifdef CONFIG_IEEE80211W
4329 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
4330 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
4331#endif /* CONFIG_IEEE80211W */
4332
4333 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
4334 0);
4335 /* MLME-SETPROTECTION.request(None) */
4336 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
4337 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
4338 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
4339 wpa_sm_drop_sa(wpa_s->wpa);
4340}
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004341#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004342
4343
4344static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
4345 char *addr)
4346{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004347#ifdef CONFIG_NO_SCAN_PROCESSING
4348 return -1;
4349#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004350 u8 bssid[ETH_ALEN];
4351 struct wpa_bss *bss;
4352 struct wpa_ssid *ssid = wpa_s->current_ssid;
4353
4354 if (hwaddr_aton(addr, bssid)) {
4355 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
4356 "address '%s'", addr);
4357 return -1;
4358 }
4359
4360 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
4361
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004362 if (!ssid) {
4363 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
4364 "configuration known for the target AP");
4365 return -1;
4366 }
4367
4368 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004369 if (!bss) {
4370 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
4371 "from BSS table");
4372 return -1;
4373 }
4374
4375 /*
4376 * TODO: Find best network configuration block from configuration to
4377 * allow roaming to other networks
4378 */
4379
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004380 wpa_s->reassociate = 1;
4381 wpa_supplicant_connect(wpa_s, bss, ssid);
4382
4383 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004384#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004385}
4386
4387
4388#ifdef CONFIG_P2P
4389static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
4390{
4391 unsigned int timeout = atoi(cmd);
4392 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004393 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004394 u8 dev_type[WPS_DEV_TYPE_LEN], *_dev_type = NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004395 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004396 unsigned int search_delay;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004397
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07004398 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
4399 wpa_dbg(wpa_s, MSG_INFO,
4400 "Reject P2P_FIND since interface is disabled");
4401 return -1;
4402 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004403 if (os_strstr(cmd, "type=social"))
4404 type = P2P_FIND_ONLY_SOCIAL;
4405 else if (os_strstr(cmd, "type=progressive"))
4406 type = P2P_FIND_PROGRESSIVE;
4407
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004408 pos = os_strstr(cmd, "dev_id=");
4409 if (pos) {
4410 pos += 7;
4411 if (hwaddr_aton(pos, dev_id))
4412 return -1;
4413 _dev_id = dev_id;
4414 }
4415
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004416 pos = os_strstr(cmd, "dev_type=");
4417 if (pos) {
4418 pos += 9;
4419 if (wps_dev_type_str2bin(pos, dev_type) < 0)
4420 return -1;
4421 _dev_type = dev_type;
4422 }
4423
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004424 pos = os_strstr(cmd, "delay=");
4425 if (pos) {
4426 pos += 6;
4427 search_delay = atoi(pos);
4428 } else
4429 search_delay = wpas_p2p_search_delay(wpa_s);
4430
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004431 return wpas_p2p_find(wpa_s, timeout, type, _dev_type != NULL, _dev_type,
4432 _dev_id, search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004433}
4434
4435
4436static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
4437 char *buf, size_t buflen)
4438{
4439 u8 addr[ETH_ALEN];
4440 char *pos, *pos2;
4441 char *pin = NULL;
4442 enum p2p_wps_method wps_method;
4443 int new_pin;
4444 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004445 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004446 int join;
4447 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004448 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004449 int go_intent = -1;
4450 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004451 int pd;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004452 int ht40, vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004453
Dmitry Shmidt04949592012-07-19 12:16:46 -07004454 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad]
4455 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004456 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004457 * [ht40] [vht] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004458
4459 if (hwaddr_aton(cmd, addr))
4460 return -1;
4461
4462 pos = cmd + 17;
4463 if (*pos != ' ')
4464 return -1;
4465 pos++;
4466
4467 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004468 pos2 = os_strstr(pos, " persistent=");
4469 if (pos2) {
4470 struct wpa_ssid *ssid;
4471 persistent_id = atoi(pos2 + 12);
4472 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
4473 if (ssid == NULL || ssid->disabled != 2 ||
4474 ssid->mode != WPAS_MODE_P2P_GO) {
4475 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
4476 "SSID id=%d for persistent P2P group (GO)",
4477 persistent_id);
4478 return -1;
4479 }
4480 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004481 join = os_strstr(pos, " join") != NULL;
4482 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004483 automatic = os_strstr(pos, " auto") != NULL;
4484 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004485 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
4486 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
4487 vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004488
4489 pos2 = os_strstr(pos, " go_intent=");
4490 if (pos2) {
4491 pos2 += 11;
4492 go_intent = atoi(pos2);
4493 if (go_intent < 0 || go_intent > 15)
4494 return -1;
4495 }
4496
4497 pos2 = os_strstr(pos, " freq=");
4498 if (pos2) {
4499 pos2 += 6;
4500 freq = atoi(pos2);
4501 if (freq <= 0)
4502 return -1;
4503 }
4504
4505 if (os_strncmp(pos, "pin", 3) == 0) {
4506 /* Request random PIN (to be displayed) and enable the PIN */
4507 wps_method = WPS_PIN_DISPLAY;
4508 } else if (os_strncmp(pos, "pbc", 3) == 0) {
4509 wps_method = WPS_PBC;
4510 } else {
4511 pin = pos;
4512 pos = os_strchr(pin, ' ');
4513 wps_method = WPS_PIN_KEYPAD;
4514 if (pos) {
4515 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004516 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004517 wps_method = WPS_PIN_DISPLAY;
4518 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004519 if (!wps_pin_str_valid(pin)) {
4520 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
4521 return 17;
4522 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004523 }
4524
4525 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004526 persistent_group, automatic, join,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004527 auth, go_intent, freq, persistent_id, pd,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004528 ht40, vht);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004529 if (new_pin == -2) {
4530 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
4531 return 25;
4532 }
4533 if (new_pin == -3) {
4534 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
4535 return 25;
4536 }
4537 if (new_pin < 0)
4538 return -1;
4539 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
4540 ret = os_snprintf(buf, buflen, "%08d", new_pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004541 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004542 return -1;
4543 return ret;
4544 }
4545
4546 os_memcpy(buf, "OK\n", 3);
4547 return 3;
4548}
4549
4550
4551static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
4552{
4553 unsigned int timeout = atoi(cmd);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07004554 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
4555 wpa_dbg(wpa_s, MSG_INFO,
4556 "Reject P2P_LISTEN since interface is disabled");
4557 return -1;
4558 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004559 return wpas_p2p_listen(wpa_s, timeout);
4560}
4561
4562
4563static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
4564{
4565 u8 addr[ETH_ALEN];
4566 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004567 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004568
Dmitry Shmidt04949592012-07-19 12:16:46 -07004569 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004570
4571 if (hwaddr_aton(cmd, addr))
4572 return -1;
4573
4574 pos = cmd + 17;
4575 if (*pos != ' ')
4576 return -1;
4577 pos++;
4578
Dmitry Shmidt04949592012-07-19 12:16:46 -07004579 if (os_strstr(pos, " join") != NULL)
4580 use = WPAS_P2P_PD_FOR_JOIN;
4581 else if (os_strstr(pos, " auto") != NULL)
4582 use = WPAS_P2P_PD_AUTO;
4583
4584 return wpas_p2p_prov_disc(wpa_s, addr, pos, use);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004585}
4586
4587
4588static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
4589 size_t buflen)
4590{
4591 struct wpa_ssid *ssid = wpa_s->current_ssid;
4592
4593 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
4594 ssid->passphrase == NULL)
4595 return -1;
4596
4597 os_strlcpy(buf, ssid->passphrase, buflen);
4598 return os_strlen(buf);
4599}
4600
4601
4602static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
4603 char *buf, size_t buflen)
4604{
4605 u64 ref;
4606 int res;
4607 u8 dst_buf[ETH_ALEN], *dst;
4608 struct wpabuf *tlvs;
4609 char *pos;
4610 size_t len;
4611
4612 if (hwaddr_aton(cmd, dst_buf))
4613 return -1;
4614 dst = dst_buf;
4615 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
4616 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
4617 dst = NULL;
4618 pos = cmd + 17;
4619 if (*pos != ' ')
4620 return -1;
4621 pos++;
4622
4623 if (os_strncmp(pos, "upnp ", 5) == 0) {
4624 u8 version;
4625 pos += 5;
4626 if (hexstr2bin(pos, &version, 1) < 0)
4627 return -1;
4628 pos += 2;
4629 if (*pos != ' ')
4630 return -1;
4631 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004632 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004633#ifdef CONFIG_WIFI_DISPLAY
4634 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
4635 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
4636#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004637 } else {
4638 len = os_strlen(pos);
4639 if (len & 1)
4640 return -1;
4641 len /= 2;
4642 tlvs = wpabuf_alloc(len);
4643 if (tlvs == NULL)
4644 return -1;
4645 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
4646 wpabuf_free(tlvs);
4647 return -1;
4648 }
4649
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004650 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004651 wpabuf_free(tlvs);
4652 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004653 if (ref == 0)
4654 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004655 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004656 if (os_snprintf_error(buflen, res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004657 return -1;
4658 return res;
4659}
4660
4661
4662static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
4663 char *cmd)
4664{
4665 long long unsigned val;
4666 u64 req;
4667 if (sscanf(cmd, "%llx", &val) != 1)
4668 return -1;
4669 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004670 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004671}
4672
4673
4674static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
4675{
4676 int freq;
4677 u8 dst[ETH_ALEN];
4678 u8 dialog_token;
4679 struct wpabuf *resp_tlvs;
4680 char *pos, *pos2;
4681 size_t len;
4682
4683 pos = os_strchr(cmd, ' ');
4684 if (pos == NULL)
4685 return -1;
4686 *pos++ = '\0';
4687 freq = atoi(cmd);
4688 if (freq == 0)
4689 return -1;
4690
4691 if (hwaddr_aton(pos, dst))
4692 return -1;
4693 pos += 17;
4694 if (*pos != ' ')
4695 return -1;
4696 pos++;
4697
4698 pos2 = os_strchr(pos, ' ');
4699 if (pos2 == NULL)
4700 return -1;
4701 *pos2++ = '\0';
4702 dialog_token = atoi(pos);
4703
4704 len = os_strlen(pos2);
4705 if (len & 1)
4706 return -1;
4707 len /= 2;
4708 resp_tlvs = wpabuf_alloc(len);
4709 if (resp_tlvs == NULL)
4710 return -1;
4711 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
4712 wpabuf_free(resp_tlvs);
4713 return -1;
4714 }
4715
4716 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
4717 wpabuf_free(resp_tlvs);
4718 return 0;
4719}
4720
4721
4722static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
4723 char *cmd)
4724{
Dmitry Shmidt04949592012-07-19 12:16:46 -07004725 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
4726 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004727 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
4728 return 0;
4729}
4730
4731
4732static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
4733 char *cmd)
4734{
4735 char *pos;
4736 size_t len;
4737 struct wpabuf *query, *resp;
4738
4739 pos = os_strchr(cmd, ' ');
4740 if (pos == NULL)
4741 return -1;
4742 *pos++ = '\0';
4743
4744 len = os_strlen(cmd);
4745 if (len & 1)
4746 return -1;
4747 len /= 2;
4748 query = wpabuf_alloc(len);
4749 if (query == NULL)
4750 return -1;
4751 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
4752 wpabuf_free(query);
4753 return -1;
4754 }
4755
4756 len = os_strlen(pos);
4757 if (len & 1) {
4758 wpabuf_free(query);
4759 return -1;
4760 }
4761 len /= 2;
4762 resp = wpabuf_alloc(len);
4763 if (resp == NULL) {
4764 wpabuf_free(query);
4765 return -1;
4766 }
4767 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
4768 wpabuf_free(query);
4769 wpabuf_free(resp);
4770 return -1;
4771 }
4772
4773 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
4774 wpabuf_free(query);
4775 wpabuf_free(resp);
4776 return -1;
4777 }
4778 return 0;
4779}
4780
4781
4782static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4783{
4784 char *pos;
4785 u8 version;
4786
4787 pos = os_strchr(cmd, ' ');
4788 if (pos == NULL)
4789 return -1;
4790 *pos++ = '\0';
4791
4792 if (hexstr2bin(cmd, &version, 1) < 0)
4793 return -1;
4794
4795 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
4796}
4797
4798
4799static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
4800{
4801 char *pos;
4802
4803 pos = os_strchr(cmd, ' ');
4804 if (pos == NULL)
4805 return -1;
4806 *pos++ = '\0';
4807
4808 if (os_strcmp(cmd, "bonjour") == 0)
4809 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
4810 if (os_strcmp(cmd, "upnp") == 0)
4811 return p2p_ctrl_service_add_upnp(wpa_s, pos);
4812 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4813 return -1;
4814}
4815
4816
4817static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
4818 char *cmd)
4819{
4820 size_t len;
4821 struct wpabuf *query;
4822 int ret;
4823
4824 len = os_strlen(cmd);
4825 if (len & 1)
4826 return -1;
4827 len /= 2;
4828 query = wpabuf_alloc(len);
4829 if (query == NULL)
4830 return -1;
4831 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
4832 wpabuf_free(query);
4833 return -1;
4834 }
4835
4836 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
4837 wpabuf_free(query);
4838 return ret;
4839}
4840
4841
4842static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
4843{
4844 char *pos;
4845 u8 version;
4846
4847 pos = os_strchr(cmd, ' ');
4848 if (pos == NULL)
4849 return -1;
4850 *pos++ = '\0';
4851
4852 if (hexstr2bin(cmd, &version, 1) < 0)
4853 return -1;
4854
4855 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
4856}
4857
4858
4859static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
4860{
4861 char *pos;
4862
4863 pos = os_strchr(cmd, ' ');
4864 if (pos == NULL)
4865 return -1;
4866 *pos++ = '\0';
4867
4868 if (os_strcmp(cmd, "bonjour") == 0)
4869 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
4870 if (os_strcmp(cmd, "upnp") == 0)
4871 return p2p_ctrl_service_del_upnp(wpa_s, pos);
4872 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
4873 return -1;
4874}
4875
4876
4877static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
4878{
4879 u8 addr[ETH_ALEN];
4880
4881 /* <addr> */
4882
4883 if (hwaddr_aton(cmd, addr))
4884 return -1;
4885
4886 return wpas_p2p_reject(wpa_s, addr);
4887}
4888
4889
4890static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
4891{
4892 char *pos;
4893 int id;
4894 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004895 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004896 int freq = 0, pref_freq = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004897 int ht40, vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004898
4899 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07004900 pos = os_strstr(cmd, " peer=");
4901 if (pos) {
4902 pos += 6;
4903 if (hwaddr_aton(pos, peer))
4904 return -1;
4905 _peer = peer;
4906 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004907 ssid = wpa_config_get_network(wpa_s->conf, id);
4908 if (ssid == NULL || ssid->disabled != 2) {
4909 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4910 "for persistent P2P group",
4911 id);
4912 return -1;
4913 }
4914
Jouni Malinen31be0a42012-08-31 21:20:51 +03004915 pos = os_strstr(cmd, " freq=");
4916 if (pos) {
4917 pos += 6;
4918 freq = atoi(pos);
4919 if (freq <= 0)
4920 return -1;
4921 }
4922
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004923 pos = os_strstr(cmd, " pref=");
4924 if (pos) {
4925 pos += 6;
4926 pref_freq = atoi(pos);
4927 if (pref_freq <= 0)
4928 return -1;
4929 }
4930
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004931 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
4932 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
4933 vht;
Jouni Malinen31be0a42012-08-31 21:20:51 +03004934
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004935 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, ht40, vht,
4936 pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004937}
4938
4939
4940static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
4941{
4942 char *pos;
4943 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
4944
4945 pos = os_strstr(cmd, " peer=");
4946 if (!pos)
4947 return -1;
4948
4949 *pos = '\0';
4950 pos += 6;
4951 if (hwaddr_aton(pos, peer)) {
4952 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
4953 return -1;
4954 }
4955
4956 pos = os_strstr(pos, " go_dev_addr=");
4957 if (pos) {
4958 pos += 13;
4959 if (hwaddr_aton(pos, go_dev_addr)) {
4960 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
4961 pos);
4962 return -1;
4963 }
4964 go_dev = go_dev_addr;
4965 }
4966
4967 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
4968}
4969
4970
4971static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
4972{
4973 if (os_strncmp(cmd, "persistent=", 11) == 0)
4974 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
4975 if (os_strncmp(cmd, "group=", 6) == 0)
4976 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
4977
4978 return -1;
4979}
4980
4981
4982static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004983 char *cmd, int freq, int ht40,
4984 int vht)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004985{
4986 int id;
4987 struct wpa_ssid *ssid;
4988
4989 id = atoi(cmd);
4990 ssid = wpa_config_get_network(wpa_s->conf, id);
4991 if (ssid == NULL || ssid->disabled != 2) {
4992 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
4993 "for persistent P2P group",
4994 id);
4995 return -1;
4996 }
4997
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004998 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq, 0, ht40, vht,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004999 NULL, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005000}
5001
5002
5003static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
5004{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005005 int freq = 0, ht40, vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005006 char *pos;
5007
5008 pos = os_strstr(cmd, "freq=");
5009 if (pos)
5010 freq = atoi(pos + 5);
5011
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005012 vht = (os_strstr(cmd, "vht") != NULL) || wpa_s->conf->p2p_go_vht;
5013 ht40 = (os_strstr(cmd, "ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
5014 vht;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005015
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005016 if (os_strncmp(cmd, "persistent=", 11) == 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005017 return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005018 ht40, vht);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005019 if (os_strcmp(cmd, "persistent") == 0 ||
5020 os_strncmp(cmd, "persistent ", 11) == 0)
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005021 return wpas_p2p_group_add(wpa_s, 1, freq, ht40, vht);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005022 if (os_strncmp(cmd, "freq=", 5) == 0)
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005023 return wpas_p2p_group_add(wpa_s, 0, freq, ht40, vht);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005024 if (ht40)
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005025 return wpas_p2p_group_add(wpa_s, 0, freq, ht40, vht);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005026
5027 wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
5028 cmd);
5029 return -1;
5030}
5031
5032
5033static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
5034 char *buf, size_t buflen)
5035{
5036 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005037 int next, res;
5038 const struct p2p_peer_info *info;
5039 char *pos, *end;
5040 char devtype[WPS_DEV_TYPE_BUFSIZE];
5041 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005042 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005043
5044 if (!wpa_s->global->p2p)
5045 return -1;
5046
5047 if (os_strcmp(cmd, "FIRST") == 0) {
5048 addr_ptr = NULL;
5049 next = 0;
5050 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
5051 if (hwaddr_aton(cmd + 5, addr) < 0)
5052 return -1;
5053 addr_ptr = addr;
5054 next = 1;
5055 } else {
5056 if (hwaddr_aton(cmd, addr) < 0)
5057 return -1;
5058 addr_ptr = addr;
5059 next = 0;
5060 }
5061
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005062 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
5063 if (info == NULL)
5064 return -1;
5065
5066 pos = buf;
5067 end = buf + buflen;
5068
5069 res = os_snprintf(pos, end - pos, MACSTR "\n"
5070 "pri_dev_type=%s\n"
5071 "device_name=%s\n"
5072 "manufacturer=%s\n"
5073 "model_name=%s\n"
5074 "model_number=%s\n"
5075 "serial_number=%s\n"
5076 "config_methods=0x%x\n"
5077 "dev_capab=0x%x\n"
5078 "group_capab=0x%x\n"
5079 "level=%d\n",
5080 MAC2STR(info->p2p_device_addr),
5081 wps_dev_type_bin2str(info->pri_dev_type,
5082 devtype, sizeof(devtype)),
5083 info->device_name,
5084 info->manufacturer,
5085 info->model_name,
5086 info->model_number,
5087 info->serial_number,
5088 info->config_methods,
5089 info->dev_capab,
5090 info->group_capab,
5091 info->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005092 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005093 return pos - buf;
5094 pos += res;
5095
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005096 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
5097 {
5098 const u8 *t;
5099 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
5100 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
5101 wps_dev_type_bin2str(t, devtype,
5102 sizeof(devtype)));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005103 if (os_snprintf_error(end - pos, res))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005104 return pos - buf;
5105 pos += res;
5106 }
5107
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005108 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005109 if (ssid) {
5110 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005111 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005112 return pos - buf;
5113 pos += res;
5114 }
5115
5116 res = p2p_get_peer_info_txt(info, pos, end - pos);
5117 if (res < 0)
5118 return pos - buf;
5119 pos += res;
5120
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005121 if (info->vendor_elems) {
5122 res = os_snprintf(pos, end - pos, "vendor_elems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005123 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005124 return pos - buf;
5125 pos += res;
5126
5127 pos += wpa_snprintf_hex(pos, end - pos,
5128 wpabuf_head(info->vendor_elems),
5129 wpabuf_len(info->vendor_elems));
5130
5131 res = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005132 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005133 return pos - buf;
5134 pos += res;
5135 }
5136
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005137 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005138}
5139
5140
Dmitry Shmidt04949592012-07-19 12:16:46 -07005141static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
5142 const char *param)
5143{
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005144 unsigned int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005145
5146 if (wpa_s->global->p2p == NULL)
5147 return -1;
5148
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005149 if (freq_range_list_parse(&wpa_s->global->p2p_disallow_freq, param) < 0)
5150 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005151
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005152 for (i = 0; i < wpa_s->global->p2p_disallow_freq.num; i++) {
5153 struct wpa_freq_range *freq;
5154 freq = &wpa_s->global->p2p_disallow_freq.range[i];
Dmitry Shmidt04949592012-07-19 12:16:46 -07005155 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005156 freq->min, freq->max);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005157 }
5158
Dmitry Shmidt04949592012-07-19 12:16:46 -07005159 wpas_p2p_update_channel_list(wpa_s);
5160 return 0;
5161}
5162
5163
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005164static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
5165{
5166 char *param;
5167
5168 if (wpa_s->global->p2p == NULL)
5169 return -1;
5170
5171 param = os_strchr(cmd, ' ');
5172 if (param == NULL)
5173 return -1;
5174 *param++ = '\0';
5175
5176 if (os_strcmp(cmd, "discoverability") == 0) {
5177 p2p_set_client_discoverability(wpa_s->global->p2p,
5178 atoi(param));
5179 return 0;
5180 }
5181
5182 if (os_strcmp(cmd, "managed") == 0) {
5183 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
5184 return 0;
5185 }
5186
5187 if (os_strcmp(cmd, "listen_channel") == 0) {
5188 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005189 atoi(param), 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005190 }
5191
5192 if (os_strcmp(cmd, "ssid_postfix") == 0) {
5193 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
5194 os_strlen(param));
5195 }
5196
5197 if (os_strcmp(cmd, "noa") == 0) {
5198 char *pos;
5199 int count, start, duration;
5200 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
5201 count = atoi(param);
5202 pos = os_strchr(param, ',');
5203 if (pos == NULL)
5204 return -1;
5205 pos++;
5206 start = atoi(pos);
5207 pos = os_strchr(pos, ',');
5208 if (pos == NULL)
5209 return -1;
5210 pos++;
5211 duration = atoi(pos);
5212 if (count < 0 || count > 255 || start < 0 || duration < 0)
5213 return -1;
5214 if (count == 0 && duration > 0)
5215 return -1;
5216 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
5217 "start=%d duration=%d", count, start, duration);
5218 return wpas_p2p_set_noa(wpa_s, count, start, duration);
5219 }
5220
5221 if (os_strcmp(cmd, "ps") == 0)
5222 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
5223
5224 if (os_strcmp(cmd, "oppps") == 0)
5225 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
5226
5227 if (os_strcmp(cmd, "ctwindow") == 0)
5228 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
5229
5230 if (os_strcmp(cmd, "disabled") == 0) {
5231 wpa_s->global->p2p_disabled = atoi(param);
5232 wpa_printf(MSG_DEBUG, "P2P functionality %s",
5233 wpa_s->global->p2p_disabled ?
5234 "disabled" : "enabled");
5235 if (wpa_s->global->p2p_disabled) {
5236 wpas_p2p_stop_find(wpa_s);
5237 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
5238 p2p_flush(wpa_s->global->p2p);
5239 }
5240 return 0;
5241 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005242
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005243 if (os_strcmp(cmd, "conc_pref") == 0) {
5244 if (os_strcmp(param, "sta") == 0)
5245 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
5246 else if (os_strcmp(param, "p2p") == 0)
5247 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005248 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005249 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005250 return -1;
5251 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005252 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07005253 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005254 return 0;
5255 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005256
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005257 if (os_strcmp(cmd, "force_long_sd") == 0) {
5258 wpa_s->force_long_sd = atoi(param);
5259 return 0;
5260 }
5261
5262 if (os_strcmp(cmd, "peer_filter") == 0) {
5263 u8 addr[ETH_ALEN];
5264 if (hwaddr_aton(param, addr))
5265 return -1;
5266 p2p_set_peer_filter(wpa_s->global->p2p, addr);
5267 return 0;
5268 }
5269
5270 if (os_strcmp(cmd, "cross_connect") == 0)
5271 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
5272
5273 if (os_strcmp(cmd, "go_apsd") == 0) {
5274 if (os_strcmp(param, "disable") == 0)
5275 wpa_s->set_ap_uapsd = 0;
5276 else {
5277 wpa_s->set_ap_uapsd = 1;
5278 wpa_s->ap_uapsd = atoi(param);
5279 }
5280 return 0;
5281 }
5282
5283 if (os_strcmp(cmd, "client_apsd") == 0) {
5284 if (os_strcmp(param, "disable") == 0)
5285 wpa_s->set_sta_uapsd = 0;
5286 else {
5287 int be, bk, vi, vo;
5288 char *pos;
5289 /* format: BE,BK,VI,VO;max SP Length */
5290 be = atoi(param);
5291 pos = os_strchr(param, ',');
5292 if (pos == NULL)
5293 return -1;
5294 pos++;
5295 bk = atoi(pos);
5296 pos = os_strchr(pos, ',');
5297 if (pos == NULL)
5298 return -1;
5299 pos++;
5300 vi = atoi(pos);
5301 pos = os_strchr(pos, ',');
5302 if (pos == NULL)
5303 return -1;
5304 pos++;
5305 vo = atoi(pos);
5306 /* ignore max SP Length for now */
5307
5308 wpa_s->set_sta_uapsd = 1;
5309 wpa_s->sta_uapsd = 0;
5310 if (be)
5311 wpa_s->sta_uapsd |= BIT(0);
5312 if (bk)
5313 wpa_s->sta_uapsd |= BIT(1);
5314 if (vi)
5315 wpa_s->sta_uapsd |= BIT(2);
5316 if (vo)
5317 wpa_s->sta_uapsd |= BIT(3);
5318 }
5319 return 0;
5320 }
5321
Dmitry Shmidt04949592012-07-19 12:16:46 -07005322 if (os_strcmp(cmd, "disallow_freq") == 0)
5323 return p2p_ctrl_disallow_freq(wpa_s, param);
5324
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005325 if (os_strcmp(cmd, "disc_int") == 0) {
5326 int min_disc_int, max_disc_int, max_disc_tu;
5327 char *pos;
5328
5329 pos = param;
5330
5331 min_disc_int = atoi(pos);
5332 pos = os_strchr(pos, ' ');
5333 if (pos == NULL)
5334 return -1;
5335 *pos++ = '\0';
5336
5337 max_disc_int = atoi(pos);
5338 pos = os_strchr(pos, ' ');
5339 if (pos == NULL)
5340 return -1;
5341 *pos++ = '\0';
5342
5343 max_disc_tu = atoi(pos);
5344
5345 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
5346 max_disc_int, max_disc_tu);
5347 }
5348
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005349 if (os_strcmp(cmd, "per_sta_psk") == 0) {
5350 wpa_s->global->p2p_per_sta_psk = !!atoi(param);
5351 return 0;
5352 }
5353
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005354#ifdef CONFIG_WPS_NFC
5355 if (os_strcmp(cmd, "nfc_tag") == 0)
5356 return wpas_p2p_nfc_tag_enabled(wpa_s, !!atoi(param));
5357#endif /* CONFIG_WPS_NFC */
5358
5359 if (os_strcmp(cmd, "disable_ip_addr_req") == 0) {
5360 wpa_s->p2p_disable_ip_addr_req = !!atoi(param);
5361 return 0;
5362 }
5363
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005364 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
5365 cmd);
5366
5367 return -1;
5368}
5369
5370
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005371static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
5372{
5373 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
5374 wpa_s->force_long_sd = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005375 wpas_p2p_stop_find(wpa_s);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005376 if (wpa_s->global->p2p)
5377 p2p_flush(wpa_s->global->p2p);
5378}
5379
5380
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005381static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
5382{
5383 char *pos, *pos2;
5384 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
5385
5386 if (cmd[0]) {
5387 pos = os_strchr(cmd, ' ');
5388 if (pos == NULL)
5389 return -1;
5390 *pos++ = '\0';
5391 dur1 = atoi(cmd);
5392
5393 pos2 = os_strchr(pos, ' ');
5394 if (pos2)
5395 *pos2++ = '\0';
5396 int1 = atoi(pos);
5397 } else
5398 pos2 = NULL;
5399
5400 if (pos2) {
5401 pos = os_strchr(pos2, ' ');
5402 if (pos == NULL)
5403 return -1;
5404 *pos++ = '\0';
5405 dur2 = atoi(pos2);
5406 int2 = atoi(pos);
5407 }
5408
5409 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
5410}
5411
5412
5413static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
5414{
5415 char *pos;
5416 unsigned int period = 0, interval = 0;
5417
5418 if (cmd[0]) {
5419 pos = os_strchr(cmd, ' ');
5420 if (pos == NULL)
5421 return -1;
5422 *pos++ = '\0';
5423 period = atoi(cmd);
5424 interval = atoi(pos);
5425 }
5426
5427 return wpas_p2p_ext_listen(wpa_s, period, interval);
5428}
5429
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005430
5431static int p2p_ctrl_remove_client(struct wpa_supplicant *wpa_s, const char *cmd)
5432{
5433 const char *pos;
5434 u8 peer[ETH_ALEN];
5435 int iface_addr = 0;
5436
5437 pos = cmd;
5438 if (os_strncmp(pos, "iface=", 6) == 0) {
5439 iface_addr = 1;
5440 pos += 6;
5441 }
5442 if (hwaddr_aton(pos, peer))
5443 return -1;
5444
5445 wpas_p2p_remove_client(wpa_s, peer, iface_addr);
5446 return 0;
5447}
5448
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005449#endif /* CONFIG_P2P */
5450
5451
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005452static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s, char *val)
5453{
5454 struct wpa_freq_range_list ranges;
5455 int *freqs = NULL;
5456 struct hostapd_hw_modes *mode;
5457 u16 i;
5458
5459 if (wpa_s->hw.modes == NULL)
5460 return NULL;
5461
5462 os_memset(&ranges, 0, sizeof(ranges));
5463 if (freq_range_list_parse(&ranges, val) < 0)
5464 return NULL;
5465
5466 for (i = 0; i < wpa_s->hw.num_modes; i++) {
5467 int j;
5468
5469 mode = &wpa_s->hw.modes[i];
5470 for (j = 0; j < mode->num_channels; j++) {
5471 unsigned int freq;
5472
5473 if (mode->channels[j].flag & HOSTAPD_CHAN_DISABLED)
5474 continue;
5475
5476 freq = mode->channels[j].freq;
5477 if (!freq_range_list_includes(&ranges, freq))
5478 continue;
5479
5480 int_array_add_unique(&freqs, freq);
5481 }
5482 }
5483
5484 os_free(ranges.range);
5485 return freqs;
5486}
5487
5488
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005489#ifdef CONFIG_INTERWORKING
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005490
5491static int ctrl_interworking_select(struct wpa_supplicant *wpa_s, char *param)
5492{
5493 int auto_sel = 0;
5494 int *freqs = NULL;
5495
5496 if (param) {
5497 char *pos;
5498
5499 auto_sel = os_strstr(param, "auto") != NULL;
5500
5501 pos = os_strstr(param, "freq=");
5502 if (pos) {
5503 freqs = freq_range_to_channel_list(wpa_s, pos + 5);
5504 if (freqs == NULL)
5505 return -1;
5506 }
5507
5508 }
5509
5510 return interworking_select(wpa_s, auto_sel, freqs);
5511}
5512
5513
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005514static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst)
5515{
5516 u8 bssid[ETH_ALEN];
5517 struct wpa_bss *bss;
5518
5519 if (hwaddr_aton(dst, bssid)) {
5520 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
5521 return -1;
5522 }
5523
5524 bss = wpa_bss_get_bssid(wpa_s, bssid);
5525 if (bss == NULL) {
5526 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
5527 MAC2STR(bssid));
5528 return -1;
5529 }
5530
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08005531 if (bss->ssid_len == 0) {
5532 int found = 0;
5533
5534 wpa_printf(MSG_DEBUG, "Selected BSS entry for " MACSTR
5535 " does not have SSID information", MAC2STR(bssid));
5536
5537 dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss,
5538 list) {
5539 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
5540 bss->ssid_len > 0) {
5541 found = 1;
5542 break;
5543 }
5544 }
5545
5546 if (!found)
5547 return -1;
5548 wpa_printf(MSG_DEBUG,
5549 "Found another matching BSS entry with SSID");
5550 }
5551
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005552 return interworking_connect(wpa_s, bss);
5553}
5554
5555
5556static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
5557{
5558 u8 dst_addr[ETH_ALEN];
5559 int used;
5560 char *pos;
5561#define MAX_ANQP_INFO_ID 100
5562 u16 id[MAX_ANQP_INFO_ID];
5563 size_t num_id = 0;
Dmitry Shmidt15907092014-03-25 10:42:57 -07005564 u32 subtypes = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005565
5566 used = hwaddr_aton2(dst, dst_addr);
5567 if (used < 0)
5568 return -1;
5569 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005570 if (*pos == ' ')
5571 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005572 while (num_id < MAX_ANQP_INFO_ID) {
Dmitry Shmidt15907092014-03-25 10:42:57 -07005573 if (os_strncmp(pos, "hs20:", 5) == 0) {
5574#ifdef CONFIG_HS20
5575 int num = atoi(pos + 5);
5576 if (num <= 0 || num > 31)
5577 return -1;
5578 subtypes |= BIT(num);
5579#else /* CONFIG_HS20 */
5580 return -1;
5581#endif /* CONFIG_HS20 */
5582 } else {
5583 id[num_id] = atoi(pos);
5584 if (id[num_id])
5585 num_id++;
5586 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005587 pos = os_strchr(pos + 1, ',');
5588 if (pos == NULL)
5589 break;
5590 pos++;
5591 }
5592
5593 if (num_id == 0)
5594 return -1;
5595
Dmitry Shmidt15907092014-03-25 10:42:57 -07005596 return anqp_send_req(wpa_s, dst_addr, id, num_id, subtypes);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005597}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005598
5599
5600static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
5601{
5602 u8 dst_addr[ETH_ALEN];
5603 struct wpabuf *advproto, *query = NULL;
5604 int used, ret = -1;
5605 char *pos, *end;
5606 size_t len;
5607
5608 used = hwaddr_aton2(cmd, dst_addr);
5609 if (used < 0)
5610 return -1;
5611
5612 pos = cmd + used;
5613 while (*pos == ' ')
5614 pos++;
5615
5616 /* Advertisement Protocol ID */
5617 end = os_strchr(pos, ' ');
5618 if (end)
5619 len = end - pos;
5620 else
5621 len = os_strlen(pos);
5622 if (len & 0x01)
5623 return -1;
5624 len /= 2;
5625 if (len == 0)
5626 return -1;
5627 advproto = wpabuf_alloc(len);
5628 if (advproto == NULL)
5629 return -1;
5630 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
5631 goto fail;
5632
5633 if (end) {
5634 /* Optional Query Request */
5635 pos = end + 1;
5636 while (*pos == ' ')
5637 pos++;
5638
5639 len = os_strlen(pos);
5640 if (len) {
5641 if (len & 0x01)
5642 goto fail;
5643 len /= 2;
5644 if (len == 0)
5645 goto fail;
5646 query = wpabuf_alloc(len);
5647 if (query == NULL)
5648 goto fail;
5649 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
5650 goto fail;
5651 }
5652 }
5653
5654 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
5655
5656fail:
5657 wpabuf_free(advproto);
5658 wpabuf_free(query);
5659
5660 return ret;
5661}
5662
5663
5664static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
5665 size_t buflen)
5666{
5667 u8 addr[ETH_ALEN];
5668 int dialog_token;
5669 int used;
5670 char *pos;
5671 size_t resp_len, start, requested_len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005672 struct wpabuf *resp;
5673 int ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005674
5675 used = hwaddr_aton2(cmd, addr);
5676 if (used < 0)
5677 return -1;
5678
5679 pos = cmd + used;
5680 while (*pos == ' ')
5681 pos++;
5682 dialog_token = atoi(pos);
5683
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005684 if (wpa_s->last_gas_resp &&
5685 os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) == 0 &&
5686 dialog_token == wpa_s->last_gas_dialog_token)
5687 resp = wpa_s->last_gas_resp;
5688 else if (wpa_s->prev_gas_resp &&
5689 os_memcmp(addr, wpa_s->prev_gas_addr, ETH_ALEN) == 0 &&
5690 dialog_token == wpa_s->prev_gas_dialog_token)
5691 resp = wpa_s->prev_gas_resp;
5692 else
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005693 return -1;
5694
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005695 resp_len = wpabuf_len(resp);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005696 start = 0;
5697 requested_len = resp_len;
5698
5699 pos = os_strchr(pos, ' ');
5700 if (pos) {
5701 start = atoi(pos);
5702 if (start > resp_len)
5703 return os_snprintf(buf, buflen, "FAIL-Invalid range");
5704 pos = os_strchr(pos, ',');
5705 if (pos == NULL)
5706 return -1;
5707 pos++;
5708 requested_len = atoi(pos);
5709 if (start + requested_len > resp_len)
5710 return os_snprintf(buf, buflen, "FAIL-Invalid range");
5711 }
5712
5713 if (requested_len * 2 + 1 > buflen)
5714 return os_snprintf(buf, buflen, "FAIL-Too long response");
5715
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005716 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(resp) + start,
5717 requested_len);
5718
5719 if (start + requested_len == resp_len) {
5720 /*
5721 * Free memory by dropping the response after it has been
5722 * fetched.
5723 */
5724 if (resp == wpa_s->prev_gas_resp) {
5725 wpabuf_free(wpa_s->prev_gas_resp);
5726 wpa_s->prev_gas_resp = NULL;
5727 } else {
5728 wpabuf_free(wpa_s->last_gas_resp);
5729 wpa_s->last_gas_resp = NULL;
5730 }
5731 }
5732
5733 return ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005734}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005735#endif /* CONFIG_INTERWORKING */
5736
5737
Dmitry Shmidt04949592012-07-19 12:16:46 -07005738#ifdef CONFIG_HS20
5739
5740static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
5741{
5742 u8 dst_addr[ETH_ALEN];
5743 int used;
5744 char *pos;
5745 u32 subtypes = 0;
5746
5747 used = hwaddr_aton2(dst, dst_addr);
5748 if (used < 0)
5749 return -1;
5750 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005751 if (*pos == ' ')
5752 pos++;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005753 for (;;) {
5754 int num = atoi(pos);
5755 if (num <= 0 || num > 31)
5756 return -1;
5757 subtypes |= BIT(num);
5758 pos = os_strchr(pos + 1, ',');
5759 if (pos == NULL)
5760 break;
5761 pos++;
5762 }
5763
5764 if (subtypes == 0)
5765 return -1;
5766
5767 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0);
5768}
5769
5770
5771static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
5772 const u8 *addr, const char *realm)
5773{
5774 u8 *buf;
5775 size_t rlen, len;
5776 int ret;
5777
5778 rlen = os_strlen(realm);
5779 len = 3 + rlen;
5780 buf = os_malloc(len);
5781 if (buf == NULL)
5782 return -1;
5783 buf[0] = 1; /* NAI Home Realm Count */
5784 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
5785 buf[2] = rlen;
5786 os_memcpy(buf + 3, realm, rlen);
5787
5788 ret = hs20_anqp_send_req(wpa_s, addr,
5789 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
5790 buf, len);
5791
5792 os_free(buf);
5793
5794 return ret;
5795}
5796
5797
5798static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
5799 char *dst)
5800{
5801 struct wpa_cred *cred = wpa_s->conf->cred;
5802 u8 dst_addr[ETH_ALEN];
5803 int used;
5804 u8 *buf;
5805 size_t len;
5806 int ret;
5807
5808 used = hwaddr_aton2(dst, dst_addr);
5809 if (used < 0)
5810 return -1;
5811
5812 while (dst[used] == ' ')
5813 used++;
5814 if (os_strncmp(dst + used, "realm=", 6) == 0)
5815 return hs20_nai_home_realm_list(wpa_s, dst_addr,
5816 dst + used + 6);
5817
5818 len = os_strlen(dst + used);
5819
5820 if (len == 0 && cred && cred->realm)
5821 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
5822
Dmitry Shmidt623d63a2014-06-13 11:05:14 -07005823 if (len & 1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07005824 return -1;
5825 len /= 2;
5826 buf = os_malloc(len);
5827 if (buf == NULL)
5828 return -1;
5829 if (hexstr2bin(dst + used, buf, len) < 0) {
5830 os_free(buf);
5831 return -1;
5832 }
5833
5834 ret = hs20_anqp_send_req(wpa_s, dst_addr,
5835 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
5836 buf, len);
5837 os_free(buf);
5838
5839 return ret;
5840}
5841
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08005842
5843static int hs20_icon_request(struct wpa_supplicant *wpa_s, char *cmd)
5844{
5845 u8 dst_addr[ETH_ALEN];
5846 int used;
5847 char *icon;
5848
5849 used = hwaddr_aton2(cmd, dst_addr);
5850 if (used < 0)
5851 return -1;
5852
5853 while (cmd[used] == ' ')
5854 used++;
5855 icon = &cmd[used];
5856
5857 wpa_s->fetch_osu_icon_in_progress = 0;
5858 return hs20_anqp_send_req(wpa_s, dst_addr, BIT(HS20_STYPE_ICON_REQUEST),
5859 (u8 *) icon, os_strlen(icon));
5860}
5861
Dmitry Shmidt04949592012-07-19 12:16:46 -07005862#endif /* CONFIG_HS20 */
5863
5864
Dmitry Shmidt04949592012-07-19 12:16:46 -07005865#ifdef CONFIG_AUTOSCAN
5866
5867static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
5868 char *cmd)
5869{
5870 enum wpa_states state = wpa_s->wpa_state;
5871 char *new_params = NULL;
5872
5873 if (os_strlen(cmd) > 0) {
5874 new_params = os_strdup(cmd);
5875 if (new_params == NULL)
5876 return -1;
5877 }
5878
5879 os_free(wpa_s->conf->autoscan);
5880 wpa_s->conf->autoscan = new_params;
5881
5882 if (wpa_s->conf->autoscan == NULL)
5883 autoscan_deinit(wpa_s);
5884 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
5885 autoscan_init(wpa_s, 1);
5886 else if (state == WPA_SCANNING)
5887 wpa_supplicant_reinit_autoscan(wpa_s);
5888
5889 return 0;
5890}
5891
5892#endif /* CONFIG_AUTOSCAN */
5893
5894
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005895#ifdef CONFIG_WNM
5896
5897static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
5898{
5899 int enter;
5900 int intval = 0;
5901 char *pos;
5902 int ret;
5903 struct wpabuf *tfs_req = NULL;
5904
5905 if (os_strncmp(cmd, "enter", 5) == 0)
5906 enter = 1;
5907 else if (os_strncmp(cmd, "exit", 4) == 0)
5908 enter = 0;
5909 else
5910 return -1;
5911
5912 pos = os_strstr(cmd, " interval=");
5913 if (pos)
5914 intval = atoi(pos + 10);
5915
5916 pos = os_strstr(cmd, " tfs_req=");
5917 if (pos) {
5918 char *end;
5919 size_t len;
5920 pos += 9;
5921 end = os_strchr(pos, ' ');
5922 if (end)
5923 len = end - pos;
5924 else
5925 len = os_strlen(pos);
5926 if (len & 1)
5927 return -1;
5928 len /= 2;
5929 tfs_req = wpabuf_alloc(len);
5930 if (tfs_req == NULL)
5931 return -1;
5932 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
5933 wpabuf_free(tfs_req);
5934 return -1;
5935 }
5936 }
5937
5938 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
5939 WNM_SLEEP_MODE_EXIT, intval,
5940 tfs_req);
5941 wpabuf_free(tfs_req);
5942
5943 return ret;
5944}
5945
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005946
5947static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
5948{
5949 int query_reason;
5950
5951 query_reason = atoi(cmd);
5952
5953 wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
5954 query_reason);
5955
5956 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
5957}
5958
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005959#endif /* CONFIG_WNM */
5960
5961
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005962static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
5963 size_t buflen)
5964{
5965 struct wpa_signal_info si;
5966 int ret;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005967 char *pos, *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005968
5969 ret = wpa_drv_signal_poll(wpa_s, &si);
5970 if (ret)
5971 return -1;
5972
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005973 pos = buf;
5974 end = buf + buflen;
5975
5976 ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005977 "NOISE=%d\nFREQUENCY=%u\n",
5978 si.current_signal, si.current_txrate / 1000,
5979 si.current_noise, si.frequency);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005980 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005981 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005982 pos += ret;
5983
5984 if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
5985 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005986 channel_width_to_string(si.chanwidth));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005987 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005988 return -1;
5989 pos += ret;
5990 }
5991
5992 if (si.center_frq1 > 0 && si.center_frq2 > 0) {
5993 ret = os_snprintf(pos, end - pos,
5994 "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
5995 si.center_frq1, si.center_frq2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005996 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07005997 return -1;
5998 pos += ret;
5999 }
6000
6001 if (si.avg_signal) {
6002 ret = os_snprintf(pos, end - pos,
6003 "AVG_RSSI=%d\n", si.avg_signal);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006004 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006005 return -1;
6006 pos += ret;
6007 }
6008
6009 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006010}
6011
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006012
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006013static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
6014 size_t buflen)
6015{
6016 struct hostap_sta_driver_data sta;
6017 int ret;
6018
6019 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
6020 if (ret)
6021 return -1;
6022
6023 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006024 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006025 if (os_snprintf_error(buflen, ret))
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006026 return -1;
6027 return ret;
6028}
6029
6030
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006031#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006032static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6033 char *buf, size_t buflen)
6034{
6035 int ret;
6036
6037 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006038 if (ret == 0) {
6039 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) {
6040 struct p2p_data *p2p = wpa_s->global->p2p;
6041 if (p2p) {
6042 char country[3];
6043 country[0] = cmd[8];
6044 country[1] = cmd[9];
6045 country[2] = 0x04;
6046 p2p_set_country(p2p, country);
6047 }
6048 }
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006049 ret = os_snprintf(buf, buflen, "%s\n", "OK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006050 if (os_snprintf_error(buflen, ret))
6051 ret = -1;
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006052 }
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006053 return ret;
6054}
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006055#endif /* ANDROID */
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006056
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07006057
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006058static int wpa_supplicant_vendor_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6059 char *buf, size_t buflen)
6060{
6061 int ret;
6062 char *pos;
6063 u8 *data = NULL;
6064 unsigned int vendor_id, subcmd;
6065 struct wpabuf *reply;
6066 size_t data_len = 0;
6067
6068 /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
6069 vendor_id = strtoul(cmd, &pos, 16);
6070 if (!isblank(*pos))
6071 return -EINVAL;
6072
6073 subcmd = strtoul(pos, &pos, 10);
6074
6075 if (*pos != '\0') {
6076 if (!isblank(*pos++))
6077 return -EINVAL;
6078 data_len = os_strlen(pos);
6079 }
6080
6081 if (data_len) {
6082 data_len /= 2;
6083 data = os_malloc(data_len);
6084 if (!data)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006085 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006086
6087 if (hexstr2bin(pos, data, data_len)) {
6088 wpa_printf(MSG_DEBUG,
6089 "Vendor command: wrong parameter format");
6090 os_free(data);
6091 return -EINVAL;
6092 }
6093 }
6094
6095 reply = wpabuf_alloc((buflen - 1) / 2);
6096 if (!reply) {
6097 os_free(data);
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006098 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006099 }
6100
6101 ret = wpa_drv_vendor_cmd(wpa_s, vendor_id, subcmd, data, data_len,
6102 reply);
6103
6104 if (ret == 0)
6105 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
6106 wpabuf_len(reply));
6107
6108 wpabuf_free(reply);
6109 os_free(data);
6110
6111 return ret;
6112}
6113
6114
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006115static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
6116{
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006117#ifdef CONFIG_P2P
6118 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s ?
6119 wpa_s->global->p2p_init_wpa_s : wpa_s;
6120#endif /* CONFIG_P2P */
6121
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006122 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
6123
6124#ifdef CONFIG_P2P
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006125 wpas_p2p_cancel(p2p_wpa_s);
6126 p2p_ctrl_flush(p2p_wpa_s);
6127 wpas_p2p_group_remove(p2p_wpa_s, "*");
6128 wpas_p2p_service_flush(p2p_wpa_s);
6129 p2p_wpa_s->global->p2p_disabled = 0;
6130 p2p_wpa_s->global->p2p_per_sta_psk = 0;
6131 p2p_wpa_s->conf->num_sec_device_types = 0;
6132 p2p_wpa_s->p2p_disable_ip_addr_req = 0;
6133 os_free(p2p_wpa_s->global->p2p_go_avoid_freq.range);
6134 p2p_wpa_s->global->p2p_go_avoid_freq.range = NULL;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006135#endif /* CONFIG_P2P */
6136
6137#ifdef CONFIG_WPS_TESTING
6138 wps_version_number = 0x20;
6139 wps_testing_dummy_cred = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006140 wps_corrupt_pkhash = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006141#endif /* CONFIG_WPS_TESTING */
6142#ifdef CONFIG_WPS
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006143 wpa_s->wps_fragment_size = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006144 wpas_wps_cancel(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006145 wps_registrar_flush(wpa_s->wps->registrar);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006146#endif /* CONFIG_WPS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07006147 wpa_s->after_wps = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006148 wpa_s->known_wps_freq = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006149
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006150#ifdef CONFIG_TDLS
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006151#ifdef CONFIG_TDLS_TESTING
6152 extern unsigned int tdls_testing;
6153 tdls_testing = 0;
6154#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006155 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
6156 wpa_tdls_enable(wpa_s->wpa, 1);
6157#endif /* CONFIG_TDLS */
6158
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07006159 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
6160 wpa_supplicant_stop_countermeasures(wpa_s, NULL);
6161
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006162 wpa_s->no_keep_alive = 0;
6163
6164 os_free(wpa_s->disallow_aps_bssid);
6165 wpa_s->disallow_aps_bssid = NULL;
6166 wpa_s->disallow_aps_bssid_count = 0;
6167 os_free(wpa_s->disallow_aps_ssid);
6168 wpa_s->disallow_aps_ssid = NULL;
6169 wpa_s->disallow_aps_ssid_count = 0;
6170
6171 wpa_s->set_sta_uapsd = 0;
6172 wpa_s->sta_uapsd = 0;
6173
6174 wpa_drv_radio_disable(wpa_s, 0);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006175 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07006176 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006177 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
6178 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
Dmitry Shmidt344abd32014-01-14 13:17:00 -08006179 wpa_config_flush_blobs(wpa_s->conf);
Dmitry Shmidt18463232014-01-24 12:29:41 -08006180 wpa_s->conf->auto_interworking = 0;
6181 wpa_s->conf->okc = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006182
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006183 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
6184 rsn_preauth_deinit(wpa_s->wpa);
6185
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006186 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200);
6187 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70);
6188 wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, 60);
6189 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
6190
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08006191 radio_remove_works(wpa_s, NULL, 1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006192 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006193
6194 wpa_s->next_ssid = NULL;
6195
6196#ifdef CONFIG_INTERWORKING
6197 hs20_cancel_fetch_osu(wpa_s);
6198#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt818ea482014-03-10 13:15:21 -07006199
6200 wpa_s->ext_mgmt_frame_handling = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006201 wpa_s->ext_eapol_frame_io = 0;
6202#ifdef CONFIG_TESTING_OPTIONS
6203 wpa_s->extra_roc_dur = 0;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006204 wpa_s->test_failure = WPAS_TEST_FAILURE_NONE;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006205#endif /* CONFIG_TESTING_OPTIONS */
6206
6207 wpa_s->disconnected = 0;
6208 os_free(wpa_s->next_scan_freqs);
6209 wpa_s->next_scan_freqs = NULL;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006210
6211 wpa_bss_flush(wpa_s);
6212 if (!dl_list_empty(&wpa_s->bss)) {
6213 wpa_printf(MSG_DEBUG,
6214 "BSS table not empty after flush: %u entries, current_bss=%p bssid="
6215 MACSTR " pending_bssid=" MACSTR,
6216 dl_list_len(&wpa_s->bss), wpa_s->current_bss,
6217 MAC2STR(wpa_s->bssid),
6218 MAC2STR(wpa_s->pending_bssid));
6219 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006220}
6221
6222
6223static int wpas_ctrl_radio_work_show(struct wpa_supplicant *wpa_s,
6224 char *buf, size_t buflen)
6225{
6226 struct wpa_radio_work *work;
6227 char *pos, *end;
6228 struct os_reltime now, diff;
6229
6230 pos = buf;
6231 end = buf + buflen;
6232
6233 os_get_reltime(&now);
6234
6235 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
6236 {
6237 int ret;
6238
6239 os_reltime_sub(&now, &work->time, &diff);
6240 ret = os_snprintf(pos, end - pos, "%s@%s:%u:%u:%ld.%06ld\n",
6241 work->type, work->wpa_s->ifname, work->freq,
6242 work->started, diff.sec, diff.usec);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006243 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006244 break;
6245 pos += ret;
6246 }
6247
6248 return pos - buf;
6249}
6250
6251
6252static void wpas_ctrl_radio_work_timeout(void *eloop_ctx, void *timeout_ctx)
6253{
6254 struct wpa_radio_work *work = eloop_ctx;
6255 struct wpa_external_work *ework = work->ctx;
6256
6257 wpa_dbg(work->wpa_s, MSG_DEBUG,
6258 "Timing out external radio work %u (%s)",
6259 ework->id, work->type);
6260 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_TIMEOUT "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006261 work->wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006262 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07006263 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006264}
6265
6266
6267static void wpas_ctrl_radio_work_cb(struct wpa_radio_work *work, int deinit)
6268{
6269 struct wpa_external_work *ework = work->ctx;
6270
6271 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08006272 if (work->started)
6273 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
6274 work, NULL);
6275
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006276 os_free(ework);
6277 return;
6278 }
6279
6280 wpa_dbg(work->wpa_s, MSG_DEBUG, "Starting external radio work %u (%s)",
6281 ework->id, ework->type);
6282 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_START "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006283 work->wpa_s->ext_work_in_progress = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006284 if (!ework->timeout)
6285 ework->timeout = 10;
6286 eloop_register_timeout(ework->timeout, 0, wpas_ctrl_radio_work_timeout,
6287 work, NULL);
6288}
6289
6290
6291static int wpas_ctrl_radio_work_add(struct wpa_supplicant *wpa_s, char *cmd,
6292 char *buf, size_t buflen)
6293{
6294 struct wpa_external_work *ework;
6295 char *pos, *pos2;
6296 size_t type_len;
6297 int ret;
6298 unsigned int freq = 0;
6299
6300 /* format: <name> [freq=<MHz>] [timeout=<seconds>] */
6301
6302 ework = os_zalloc(sizeof(*ework));
6303 if (ework == NULL)
6304 return -1;
6305
6306 pos = os_strchr(cmd, ' ');
6307 if (pos) {
6308 type_len = pos - cmd;
6309 pos++;
6310
6311 pos2 = os_strstr(pos, "freq=");
6312 if (pos2)
6313 freq = atoi(pos2 + 5);
6314
6315 pos2 = os_strstr(pos, "timeout=");
6316 if (pos2)
6317 ework->timeout = atoi(pos2 + 8);
6318 } else {
6319 type_len = os_strlen(cmd);
6320 }
6321 if (4 + type_len >= sizeof(ework->type))
6322 type_len = sizeof(ework->type) - 4 - 1;
6323 os_strlcpy(ework->type, "ext:", sizeof(ework->type));
6324 os_memcpy(ework->type + 4, cmd, type_len);
6325 ework->type[4 + type_len] = '\0';
6326
6327 wpa_s->ext_work_id++;
6328 if (wpa_s->ext_work_id == 0)
6329 wpa_s->ext_work_id++;
6330 ework->id = wpa_s->ext_work_id;
6331
6332 if (radio_add_work(wpa_s, freq, ework->type, 0, wpas_ctrl_radio_work_cb,
6333 ework) < 0) {
6334 os_free(ework);
6335 return -1;
6336 }
6337
6338 ret = os_snprintf(buf, buflen, "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006339 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006340 return -1;
6341 return ret;
6342}
6343
6344
6345static int wpas_ctrl_radio_work_done(struct wpa_supplicant *wpa_s, char *cmd)
6346{
6347 struct wpa_radio_work *work;
6348 unsigned int id = atoi(cmd);
6349
6350 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
6351 {
6352 struct wpa_external_work *ework;
6353
6354 if (os_strncmp(work->type, "ext:", 4) != 0)
6355 continue;
6356 ework = work->ctx;
6357 if (id && ework->id != id)
6358 continue;
6359 wpa_dbg(wpa_s, MSG_DEBUG,
6360 "Completed external radio work %u (%s)",
6361 ework->id, ework->type);
6362 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout, work, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006363 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006364 radio_work_done(work);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07006365 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006366 return 3; /* "OK\n" */
6367 }
6368
6369 return -1;
6370}
6371
6372
6373static int wpas_ctrl_radio_work(struct wpa_supplicant *wpa_s, char *cmd,
6374 char *buf, size_t buflen)
6375{
6376 if (os_strcmp(cmd, "show") == 0)
6377 return wpas_ctrl_radio_work_show(wpa_s, buf, buflen);
6378 if (os_strncmp(cmd, "add ", 4) == 0)
6379 return wpas_ctrl_radio_work_add(wpa_s, cmd + 4, buf, buflen);
6380 if (os_strncmp(cmd, "done ", 5) == 0)
6381 return wpas_ctrl_radio_work_done(wpa_s, cmd + 4);
6382 return -1;
6383}
6384
6385
6386void wpas_ctrl_radio_work_flush(struct wpa_supplicant *wpa_s)
6387{
6388 struct wpa_radio_work *work, *tmp;
6389
Dmitry Shmidt18463232014-01-24 12:29:41 -08006390 if (!wpa_s || !wpa_s->radio)
6391 return;
6392
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006393 dl_list_for_each_safe(work, tmp, &wpa_s->radio->work,
6394 struct wpa_radio_work, list) {
6395 struct wpa_external_work *ework;
6396
6397 if (os_strncmp(work->type, "ext:", 4) != 0)
6398 continue;
6399 ework = work->ctx;
6400 wpa_dbg(wpa_s, MSG_DEBUG,
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07006401 "Flushing%s external radio work %u (%s)",
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006402 work->started ? " started" : "", ework->id,
6403 ework->type);
6404 if (work->started)
6405 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
6406 work, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006407 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07006408 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006409 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006410}
6411
6412
Dmitry Shmidt051af732013-10-22 13:52:46 -07006413static void wpas_ctrl_eapol_response(void *eloop_ctx, void *timeout_ctx)
6414{
6415 struct wpa_supplicant *wpa_s = eloop_ctx;
6416 eapol_sm_notify_ctrl_response(wpa_s->eapol);
6417}
6418
6419
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006420static int scan_id_list_parse(struct wpa_supplicant *wpa_s, const char *value,
6421 unsigned int *scan_id_count, int scan_id[])
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006422{
6423 const char *pos = value;
6424
6425 while (pos) {
6426 if (*pos == ' ' || *pos == '\0')
6427 break;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006428 if (*scan_id_count == MAX_SCAN_ID)
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006429 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006430 scan_id[(*scan_id_count)++] = atoi(pos);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006431 pos = os_strchr(pos, ',');
6432 if (pos)
6433 pos++;
6434 }
6435
6436 return 0;
6437}
6438
6439
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006440static void wpas_ctrl_scan(struct wpa_supplicant *wpa_s, char *params,
6441 char *reply, int reply_size, int *reply_len)
6442{
6443 char *pos;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006444 unsigned int manual_scan_passive = 0;
6445 unsigned int manual_scan_use_id = 0;
6446 unsigned int manual_scan_only_new = 0;
6447 unsigned int scan_only = 0;
6448 unsigned int scan_id_count = 0;
6449 int scan_id[MAX_SCAN_ID];
6450 void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
6451 struct wpa_scan_results *scan_res);
6452 int *manual_scan_freqs = NULL;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006453
6454 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
6455 *reply_len = -1;
6456 return;
6457 }
6458
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006459 if (radio_work_pending(wpa_s, "scan")) {
6460 wpa_printf(MSG_DEBUG,
6461 "Pending scan scheduled - reject new request");
6462 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
6463 return;
6464 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006465
6466 if (params) {
6467 if (os_strncasecmp(params, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006468 scan_only = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006469
6470 pos = os_strstr(params, "freq=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006471 if (pos) {
6472 manual_scan_freqs = freq_range_to_channel_list(wpa_s,
6473 pos + 5);
6474 if (manual_scan_freqs == NULL) {
6475 *reply_len = -1;
6476 goto done;
6477 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006478 }
6479
6480 pos = os_strstr(params, "passive=");
6481 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006482 manual_scan_passive = !!atoi(pos + 8);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006483
6484 pos = os_strstr(params, "use_id=");
6485 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006486 manual_scan_use_id = atoi(pos + 7);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006487
6488 pos = os_strstr(params, "only_new=1");
6489 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006490 manual_scan_only_new = 1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006491
6492 pos = os_strstr(params, "scan_id=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006493 if (pos && scan_id_list_parse(wpa_s, pos + 8, &scan_id_count,
6494 scan_id) < 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006495 *reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006496 goto done;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07006497 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006498 }
6499
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006500 if (scan_only)
6501 scan_res_handler = scan_only_handler;
6502 else if (wpa_s->scan_res_handler == scan_only_handler)
6503 scan_res_handler = NULL;
6504 else
6505 scan_res_handler = wpa_s->scan_res_handler;
6506
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006507 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
6508 ((wpa_s->wpa_state <= WPA_SCANNING) ||
6509 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006510 wpa_s->manual_scan_passive = manual_scan_passive;
6511 wpa_s->manual_scan_use_id = manual_scan_use_id;
6512 wpa_s->manual_scan_only_new = manual_scan_only_new;
6513 wpa_s->scan_id_count = scan_id_count;
6514 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
6515 wpa_s->scan_res_handler = scan_res_handler;
6516 os_free(wpa_s->manual_scan_freqs);
6517 wpa_s->manual_scan_freqs = manual_scan_freqs;
6518 manual_scan_freqs = NULL;
6519
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006520 wpa_s->normal_scans = 0;
6521 wpa_s->scan_req = MANUAL_SCAN_REQ;
6522 wpa_s->after_wps = 0;
6523 wpa_s->known_wps_freq = 0;
6524 wpa_supplicant_req_scan(wpa_s, 0, 0);
6525 if (wpa_s->manual_scan_use_id) {
6526 wpa_s->manual_scan_id++;
6527 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
6528 wpa_s->manual_scan_id);
6529 *reply_len = os_snprintf(reply, reply_size, "%u\n",
6530 wpa_s->manual_scan_id);
6531 }
6532 } else if (wpa_s->sched_scanning) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006533 wpa_s->manual_scan_passive = manual_scan_passive;
6534 wpa_s->manual_scan_use_id = manual_scan_use_id;
6535 wpa_s->manual_scan_only_new = manual_scan_only_new;
6536 wpa_s->scan_id_count = scan_id_count;
6537 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
6538 wpa_s->scan_res_handler = scan_res_handler;
6539 os_free(wpa_s->manual_scan_freqs);
6540 wpa_s->manual_scan_freqs = manual_scan_freqs;
6541 manual_scan_freqs = NULL;
6542
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006543 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to allow requested full scan to proceed");
6544 wpa_supplicant_cancel_sched_scan(wpa_s);
6545 wpa_s->scan_req = MANUAL_SCAN_REQ;
6546 wpa_supplicant_req_scan(wpa_s, 0, 0);
6547 if (wpa_s->manual_scan_use_id) {
6548 wpa_s->manual_scan_id++;
6549 *reply_len = os_snprintf(reply, reply_size, "%u\n",
6550 wpa_s->manual_scan_id);
6551 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
6552 wpa_s->manual_scan_id);
6553 }
6554 } else {
6555 wpa_printf(MSG_DEBUG, "Ongoing scan action - reject new request");
6556 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
6557 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006558
6559done:
6560 os_free(manual_scan_freqs);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006561}
6562
6563
Dmitry Shmidt818ea482014-03-10 13:15:21 -07006564#ifdef CONFIG_TESTING_OPTIONS
6565
6566static void wpas_ctrl_iface_mgmt_tx_cb(struct wpa_supplicant *wpa_s,
6567 unsigned int freq, const u8 *dst,
6568 const u8 *src, const u8 *bssid,
6569 const u8 *data, size_t data_len,
6570 enum offchannel_send_action_result
6571 result)
6572{
6573 wpa_msg(wpa_s, MSG_INFO, "MGMT-TX-STATUS freq=%u dst=" MACSTR
6574 " src=" MACSTR " bssid=" MACSTR " result=%s",
6575 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
6576 result == OFFCHANNEL_SEND_ACTION_SUCCESS ?
6577 "SUCCESS" : (result == OFFCHANNEL_SEND_ACTION_NO_ACK ?
6578 "NO_ACK" : "FAILED"));
6579}
6580
6581
6582static int wpas_ctrl_iface_mgmt_tx(struct wpa_supplicant *wpa_s, char *cmd)
6583{
6584 char *pos, *param;
6585 size_t len;
6586 u8 *buf, da[ETH_ALEN], bssid[ETH_ALEN];
6587 int res, used;
6588 int freq = 0, no_cck = 0, wait_time = 0;
6589
6590 /* <DA> <BSSID> [freq=<MHz>] [wait_time=<ms>] [no_cck=1]
6591 * <action=Action frame payload> */
6592
6593 wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
6594
6595 pos = cmd;
6596 used = hwaddr_aton2(pos, da);
6597 if (used < 0)
6598 return -1;
6599 pos += used;
6600 while (*pos == ' ')
6601 pos++;
6602 used = hwaddr_aton2(pos, bssid);
6603 if (used < 0)
6604 return -1;
6605 pos += used;
6606
6607 param = os_strstr(pos, " freq=");
6608 if (param) {
6609 param += 6;
6610 freq = atoi(param);
6611 }
6612
6613 param = os_strstr(pos, " no_cck=");
6614 if (param) {
6615 param += 8;
6616 no_cck = atoi(param);
6617 }
6618
6619 param = os_strstr(pos, " wait_time=");
6620 if (param) {
6621 param += 11;
6622 wait_time = atoi(param);
6623 }
6624
6625 param = os_strstr(pos, " action=");
6626 if (param == NULL)
6627 return -1;
6628 param += 8;
6629
6630 len = os_strlen(param);
6631 if (len & 1)
6632 return -1;
6633 len /= 2;
6634
6635 buf = os_malloc(len);
6636 if (buf == NULL)
6637 return -1;
6638
6639 if (hexstr2bin(param, buf, len) < 0) {
6640 os_free(buf);
6641 return -1;
6642 }
6643
6644 res = offchannel_send_action(wpa_s, freq, da, wpa_s->own_addr, bssid,
6645 buf, len, wait_time,
6646 wpas_ctrl_iface_mgmt_tx_cb, no_cck);
6647 os_free(buf);
6648 return res;
6649}
6650
6651
6652static void wpas_ctrl_iface_mgmt_tx_done(struct wpa_supplicant *wpa_s)
6653{
6654 wpa_printf(MSG_DEBUG, "External MGMT TX - done waiting");
6655 offchannel_send_action_done(wpa_s);
6656}
6657
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07006658
6659static int wpas_ctrl_iface_driver_event(struct wpa_supplicant *wpa_s, char *cmd)
6660{
6661 char *pos, *param;
6662 union wpa_event_data event;
6663 enum wpa_event_type ev;
6664
6665 /* <event name> [parameters..] */
6666
6667 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - external driver event: %s", cmd);
6668
6669 pos = cmd;
6670 param = os_strchr(pos, ' ');
6671 if (param)
6672 *param++ = '\0';
6673
6674 os_memset(&event, 0, sizeof(event));
6675
6676 if (os_strcmp(cmd, "INTERFACE_ENABLED") == 0) {
6677 ev = EVENT_INTERFACE_ENABLED;
6678 } else if (os_strcmp(cmd, "INTERFACE_DISABLED") == 0) {
6679 ev = EVENT_INTERFACE_DISABLED;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07006680 } else if (os_strcmp(cmd, "AVOID_FREQUENCIES") == 0) {
6681 ev = EVENT_AVOID_FREQUENCIES;
6682 if (param == NULL)
6683 param = "";
6684 if (freq_range_list_parse(&event.freq_range, param) < 0)
6685 return -1;
6686 wpa_supplicant_event(wpa_s, ev, &event);
6687 os_free(event.freq_range.range);
6688 return 0;
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07006689 } else {
6690 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - unknown driver event: %s",
6691 cmd);
6692 return -1;
6693 }
6694
6695 wpa_supplicant_event(wpa_s, ev, &event);
6696
6697 return 0;
6698}
6699
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006700
6701static int wpas_ctrl_iface_eapol_rx(struct wpa_supplicant *wpa_s, char *cmd)
6702{
6703 char *pos;
6704 u8 src[ETH_ALEN], *buf;
6705 int used;
6706 size_t len;
6707
6708 wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
6709
6710 pos = cmd;
6711 used = hwaddr_aton2(pos, src);
6712 if (used < 0)
6713 return -1;
6714 pos += used;
6715 while (*pos == ' ')
6716 pos++;
6717
6718 len = os_strlen(pos);
6719 if (len & 1)
6720 return -1;
6721 len /= 2;
6722
6723 buf = os_malloc(len);
6724 if (buf == NULL)
6725 return -1;
6726
6727 if (hexstr2bin(pos, buf, len) < 0) {
6728 os_free(buf);
6729 return -1;
6730 }
6731
6732 wpa_supplicant_rx_eapol(wpa_s, src, buf, len);
6733 os_free(buf);
6734
6735 return 0;
6736}
6737
6738
6739static u16 ipv4_hdr_checksum(const void *buf, size_t len)
6740{
6741 size_t i;
6742 u32 sum = 0;
6743 const u16 *pos = buf;
6744
6745 for (i = 0; i < len / 2; i++)
6746 sum += *pos++;
6747
6748 while (sum >> 16)
6749 sum = (sum & 0xffff) + (sum >> 16);
6750
6751 return sum ^ 0xffff;
6752}
6753
6754
6755#define HWSIM_PACKETLEN 1500
6756#define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
6757
6758void wpas_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf, size_t len)
6759{
6760 struct wpa_supplicant *wpa_s = ctx;
6761 const struct ether_header *eth;
6762 const struct iphdr *ip;
6763 const u8 *pos;
6764 unsigned int i;
6765
6766 if (len != HWSIM_PACKETLEN)
6767 return;
6768
6769 eth = (const struct ether_header *) buf;
6770 ip = (const struct iphdr *) (eth + 1);
6771 pos = (const u8 *) (ip + 1);
6772
6773 if (ip->ihl != 5 || ip->version != 4 ||
6774 ntohs(ip->tot_len) != HWSIM_IP_LEN)
6775 return;
6776
6777 for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++) {
6778 if (*pos != (u8) i)
6779 return;
6780 pos++;
6781 }
6782
6783 wpa_msg(wpa_s, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
6784 MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
6785}
6786
6787
6788static int wpas_ctrl_iface_data_test_config(struct wpa_supplicant *wpa_s,
6789 char *cmd)
6790{
6791 int enabled = atoi(cmd);
6792
6793 if (!enabled) {
6794 if (wpa_s->l2_test) {
6795 l2_packet_deinit(wpa_s->l2_test);
6796 wpa_s->l2_test = NULL;
6797 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Disabled");
6798 }
6799 return 0;
6800 }
6801
6802 if (wpa_s->l2_test)
6803 return 0;
6804
6805 wpa_s->l2_test = l2_packet_init(wpa_s->ifname, wpa_s->own_addr,
6806 ETHERTYPE_IP, wpas_data_test_rx,
6807 wpa_s, 1);
6808 if (wpa_s->l2_test == NULL)
6809 return -1;
6810
6811 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Enabled");
6812
6813 return 0;
6814}
6815
6816
6817static int wpas_ctrl_iface_data_test_tx(struct wpa_supplicant *wpa_s, char *cmd)
6818{
6819 u8 dst[ETH_ALEN], src[ETH_ALEN];
6820 char *pos;
6821 int used;
6822 long int val;
6823 u8 tos;
6824 u8 buf[HWSIM_PACKETLEN];
6825 struct ether_header *eth;
6826 struct iphdr *ip;
6827 u8 *dpos;
6828 unsigned int i;
6829
6830 if (wpa_s->l2_test == NULL)
6831 return -1;
6832
6833 /* format: <dst> <src> <tos> */
6834
6835 pos = cmd;
6836 used = hwaddr_aton2(pos, dst);
6837 if (used < 0)
6838 return -1;
6839 pos += used;
6840 while (*pos == ' ')
6841 pos++;
6842 used = hwaddr_aton2(pos, src);
6843 if (used < 0)
6844 return -1;
6845 pos += used;
6846
6847 val = strtol(pos, NULL, 0);
6848 if (val < 0 || val > 0xff)
6849 return -1;
6850 tos = val;
6851
6852 eth = (struct ether_header *) buf;
6853 os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
6854 os_memcpy(eth->ether_shost, src, ETH_ALEN);
6855 eth->ether_type = htons(ETHERTYPE_IP);
6856 ip = (struct iphdr *) (eth + 1);
6857 os_memset(ip, 0, sizeof(*ip));
6858 ip->ihl = 5;
6859 ip->version = 4;
6860 ip->ttl = 64;
6861 ip->tos = tos;
6862 ip->tot_len = htons(HWSIM_IP_LEN);
6863 ip->protocol = 1;
6864 ip->saddr = htonl(192 << 24 | 168 << 16 | 1 << 8 | 1);
6865 ip->daddr = htonl(192 << 24 | 168 << 16 | 1 << 8 | 2);
6866 ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
6867 dpos = (u8 *) (ip + 1);
6868 for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
6869 *dpos++ = i;
6870
6871 if (l2_packet_send(wpa_s->l2_test, dst, ETHERTYPE_IP, buf,
6872 HWSIM_PACKETLEN) < 0)
6873 return -1;
6874
6875 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX dst=" MACSTR " src=" MACSTR
6876 " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
6877
6878 return 0;
6879}
6880
6881
6882static int wpas_ctrl_iface_data_test_frame(struct wpa_supplicant *wpa_s,
6883 char *cmd)
6884{
6885 u8 *buf;
6886 struct ether_header *eth;
6887 struct l2_packet_data *l2 = NULL;
6888 size_t len;
6889 u16 ethertype;
6890 int res = -1;
6891
6892 len = os_strlen(cmd);
6893 if (len & 1 || len < ETH_HLEN * 2)
6894 return -1;
6895 len /= 2;
6896
6897 buf = os_malloc(len);
6898 if (buf == NULL)
6899 return -1;
6900
6901 if (hexstr2bin(cmd, buf, len) < 0)
6902 goto done;
6903
6904 eth = (struct ether_header *) buf;
6905 ethertype = ntohs(eth->ether_type);
6906
6907 l2 = l2_packet_init(wpa_s->ifname, wpa_s->own_addr, ethertype,
6908 wpas_data_test_rx, wpa_s, 1);
6909 if (l2 == NULL)
6910 goto done;
6911
6912 res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
6913 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX frame res=%d", res);
6914done:
6915 if (l2)
6916 l2_packet_deinit(l2);
6917 os_free(buf);
6918
6919 return res < 0 ? -1 : 0;
6920}
6921
Dmitry Shmidtff787d52015-01-12 13:01:47 -08006922
6923static int wpas_ctrl_test_alloc_fail(struct wpa_supplicant *wpa_s, char *cmd)
6924{
6925#ifdef WPA_TRACE_BFD
6926 extern char wpa_trace_fail_func[256];
6927 extern unsigned int wpa_trace_fail_after;
6928 char *pos;
6929
6930 wpa_trace_fail_after = atoi(cmd);
6931 pos = os_strchr(cmd, ':');
6932 if (pos) {
6933 pos++;
6934 os_strlcpy(wpa_trace_fail_func, pos,
6935 sizeof(wpa_trace_fail_func));
6936 } else {
6937 wpa_trace_fail_after = 0;
6938 }
6939 return 0;
6940#else /* WPA_TRACE_BFD */
6941 return -1;
6942#endif /* WPA_TRACE_BFD */
6943}
6944
6945
6946static int wpas_ctrl_get_alloc_fail(struct wpa_supplicant *wpa_s,
6947 char *buf, size_t buflen)
6948{
6949#ifdef WPA_TRACE_BFD
6950 extern char wpa_trace_fail_func[256];
6951 extern unsigned int wpa_trace_fail_after;
6952
6953 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
6954 wpa_trace_fail_func);
6955#else /* WPA_TRACE_BFD */
6956 return -1;
6957#endif /* WPA_TRACE_BFD */
6958}
6959
Dmitry Shmidt818ea482014-03-10 13:15:21 -07006960#endif /* CONFIG_TESTING_OPTIONS */
6961
6962
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07006963static void wpas_ctrl_vendor_elem_update(struct wpa_supplicant *wpa_s)
6964{
6965 unsigned int i;
6966 char buf[30];
6967
6968 wpa_printf(MSG_DEBUG, "Update vendor elements");
6969
6970 for (i = 0; i < NUM_VENDOR_ELEM_FRAMES; i++) {
6971 if (wpa_s->vendor_elem[i]) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006972 int res;
6973
6974 res = os_snprintf(buf, sizeof(buf), "frame[%u]", i);
6975 if (!os_snprintf_error(sizeof(buf), res)) {
6976 wpa_hexdump_buf(MSG_DEBUG, buf,
6977 wpa_s->vendor_elem[i]);
6978 }
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07006979 }
6980 }
6981
6982#ifdef CONFIG_P2P
6983 if (wpa_s->parent == wpa_s &&
6984 wpa_s->global->p2p &&
6985 !wpa_s->global->p2p_disabled)
6986 p2p_set_vendor_elems(wpa_s->global->p2p, wpa_s->vendor_elem);
6987#endif /* CONFIG_P2P */
6988}
6989
6990
6991static struct wpa_supplicant *
6992wpas_ctrl_vendor_elem_iface(struct wpa_supplicant *wpa_s,
6993 enum wpa_vendor_elem_frame frame)
6994{
6995 switch (frame) {
6996#ifdef CONFIG_P2P
6997 case VENDOR_ELEM_PROBE_REQ_P2P:
6998 case VENDOR_ELEM_PROBE_RESP_P2P:
6999 case VENDOR_ELEM_PROBE_RESP_P2P_GO:
7000 case VENDOR_ELEM_BEACON_P2P_GO:
7001 case VENDOR_ELEM_P2P_PD_REQ:
7002 case VENDOR_ELEM_P2P_PD_RESP:
7003 case VENDOR_ELEM_P2P_GO_NEG_REQ:
7004 case VENDOR_ELEM_P2P_GO_NEG_RESP:
7005 case VENDOR_ELEM_P2P_GO_NEG_CONF:
7006 case VENDOR_ELEM_P2P_INV_REQ:
7007 case VENDOR_ELEM_P2P_INV_RESP:
7008 case VENDOR_ELEM_P2P_ASSOC_REQ:
7009 return wpa_s->parent;
7010#endif /* CONFIG_P2P */
7011 default:
7012 return wpa_s;
7013 }
7014}
7015
7016
7017static int wpas_ctrl_vendor_elem_add(struct wpa_supplicant *wpa_s, char *cmd)
7018{
7019 char *pos = cmd;
7020 int frame;
7021 size_t len;
7022 struct wpabuf *buf;
7023 struct ieee802_11_elems elems;
7024
7025 frame = atoi(pos);
7026 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
7027 return -1;
7028 wpa_s = wpas_ctrl_vendor_elem_iface(wpa_s, frame);
7029
7030 pos = os_strchr(pos, ' ');
7031 if (pos == NULL)
7032 return -1;
7033 pos++;
7034
7035 len = os_strlen(pos);
7036 if (len == 0)
7037 return 0;
7038 if (len & 1)
7039 return -1;
7040 len /= 2;
7041
7042 buf = wpabuf_alloc(len);
7043 if (buf == NULL)
7044 return -1;
7045
7046 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
7047 wpabuf_free(buf);
7048 return -1;
7049 }
7050
7051 if (ieee802_11_parse_elems(wpabuf_head_u8(buf), len, &elems, 0) ==
7052 ParseFailed) {
7053 wpabuf_free(buf);
7054 return -1;
7055 }
7056
7057 if (wpa_s->vendor_elem[frame] == NULL) {
7058 wpa_s->vendor_elem[frame] = buf;
7059 wpas_ctrl_vendor_elem_update(wpa_s);
7060 return 0;
7061 }
7062
7063 if (wpabuf_resize(&wpa_s->vendor_elem[frame], len) < 0) {
7064 wpabuf_free(buf);
7065 return -1;
7066 }
7067
7068 wpabuf_put_buf(wpa_s->vendor_elem[frame], buf);
7069 wpabuf_free(buf);
7070 wpas_ctrl_vendor_elem_update(wpa_s);
7071
7072 return 0;
7073}
7074
7075
7076static int wpas_ctrl_vendor_elem_get(struct wpa_supplicant *wpa_s, char *cmd,
7077 char *buf, size_t buflen)
7078{
7079 int frame = atoi(cmd);
7080
7081 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
7082 return -1;
7083 wpa_s = wpas_ctrl_vendor_elem_iface(wpa_s, frame);
7084
7085 if (wpa_s->vendor_elem[frame] == NULL)
7086 return 0;
7087
7088 return wpa_snprintf_hex(buf, buflen,
7089 wpabuf_head_u8(wpa_s->vendor_elem[frame]),
7090 wpabuf_len(wpa_s->vendor_elem[frame]));
7091}
7092
7093
7094static int wpas_ctrl_vendor_elem_remove(struct wpa_supplicant *wpa_s, char *cmd)
7095{
7096 char *pos = cmd;
7097 int frame;
7098 size_t len;
7099 u8 *buf;
7100 struct ieee802_11_elems elems;
7101 u8 *ie, *end;
7102
7103 frame = atoi(pos);
7104 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
7105 return -1;
7106 wpa_s = wpas_ctrl_vendor_elem_iface(wpa_s, frame);
7107
7108 pos = os_strchr(pos, ' ');
7109 if (pos == NULL)
7110 return -1;
7111 pos++;
7112
7113 if (*pos == '*') {
7114 wpabuf_free(wpa_s->vendor_elem[frame]);
7115 wpa_s->vendor_elem[frame] = NULL;
7116 wpas_ctrl_vendor_elem_update(wpa_s);
7117 return 0;
7118 }
7119
7120 if (wpa_s->vendor_elem[frame] == NULL)
7121 return -1;
7122
7123 len = os_strlen(pos);
7124 if (len == 0)
7125 return 0;
7126 if (len & 1)
7127 return -1;
7128 len /= 2;
7129
7130 buf = os_malloc(len);
7131 if (buf == NULL)
7132 return -1;
7133
7134 if (hexstr2bin(pos, buf, len) < 0) {
7135 os_free(buf);
7136 return -1;
7137 }
7138
7139 if (ieee802_11_parse_elems(buf, len, &elems, 0) == ParseFailed) {
7140 os_free(buf);
7141 return -1;
7142 }
7143
7144 ie = wpabuf_mhead_u8(wpa_s->vendor_elem[frame]);
7145 end = ie + wpabuf_len(wpa_s->vendor_elem[frame]);
7146
7147 for (; ie + 1 < end; ie += 2 + ie[1]) {
7148 if (ie + len > end)
7149 break;
7150 if (os_memcmp(ie, buf, len) != 0)
7151 continue;
7152
7153 if (wpabuf_len(wpa_s->vendor_elem[frame]) == len) {
7154 wpabuf_free(wpa_s->vendor_elem[frame]);
7155 wpa_s->vendor_elem[frame] = NULL;
7156 } else {
7157 os_memmove(ie, ie + len,
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -07007158 end - (ie + len));
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007159 wpa_s->vendor_elem[frame]->used -= len;
7160 }
7161 os_free(buf);
7162 wpas_ctrl_vendor_elem_update(wpa_s);
7163 return 0;
7164 }
7165
7166 os_free(buf);
7167
7168 return -1;
7169}
7170
7171
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007172static void wpas_ctrl_neighbor_rep_cb(void *ctx, struct wpabuf *neighbor_rep)
7173{
7174 struct wpa_supplicant *wpa_s = ctx;
7175
7176 if (neighbor_rep) {
7177 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_RXED
7178 "length=%u",
7179 (unsigned int) wpabuf_len(neighbor_rep));
7180 wpabuf_free(neighbor_rep);
7181 } else {
7182 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_FAILED);
7183 }
7184}
7185
7186
7187static int wpas_ctrl_iface_send_neigbor_rep(struct wpa_supplicant *wpa_s,
7188 char *cmd)
7189{
7190 struct wpa_ssid ssid;
7191 struct wpa_ssid *ssid_p = NULL;
7192 int ret = 0;
7193
7194 if (os_strncmp(cmd, " ssid=", 6) == 0) {
7195 ssid.ssid_len = os_strlen(cmd + 6);
7196 if (ssid.ssid_len > 32)
7197 return -1;
7198 ssid.ssid = (u8 *) (cmd + 6);
7199 ssid_p = &ssid;
7200 }
7201
7202 ret = wpas_rrm_send_neighbor_rep_request(wpa_s, ssid_p,
7203 wpas_ctrl_neighbor_rep_cb,
7204 wpa_s);
7205
7206 return ret;
7207}
7208
7209
7210static int wpas_ctrl_iface_erp_flush(struct wpa_supplicant *wpa_s)
7211{
7212 eapol_sm_erp_flush(wpa_s->eapol);
7213 return 0;
7214}
7215
7216
7217static int wpas_ctrl_iface_mac_rand_scan(struct wpa_supplicant *wpa_s,
7218 char *cmd)
7219{
7220 char *token, *context = NULL;
7221 unsigned int enable = ~0, type = 0;
7222 u8 _addr[ETH_ALEN], _mask[ETH_ALEN];
7223 u8 *addr = NULL, *mask = NULL;
7224
7225 while ((token = str_token(cmd, " ", &context))) {
7226 if (os_strcasecmp(token, "scan") == 0) {
7227 type |= MAC_ADDR_RAND_SCAN;
7228 } else if (os_strcasecmp(token, "sched") == 0) {
7229 type |= MAC_ADDR_RAND_SCHED_SCAN;
7230 } else if (os_strcasecmp(token, "pno") == 0) {
7231 type |= MAC_ADDR_RAND_PNO;
7232 } else if (os_strcasecmp(token, "all") == 0) {
7233 type = wpa_s->mac_addr_rand_supported;
7234 } else if (os_strncasecmp(token, "enable=", 7) == 0) {
7235 enable = atoi(token + 7);
7236 } else if (os_strncasecmp(token, "addr=", 5) == 0) {
7237 addr = _addr;
7238 if (hwaddr_aton(token + 5, addr)) {
7239 wpa_printf(MSG_INFO,
7240 "CTRL: Invalid MAC address: %s",
7241 token);
7242 return -1;
7243 }
7244 } else if (os_strncasecmp(token, "mask=", 5) == 0) {
7245 mask = _mask;
7246 if (hwaddr_aton(token + 5, mask)) {
7247 wpa_printf(MSG_INFO,
7248 "CTRL: Invalid MAC address mask: %s",
7249 token);
7250 return -1;
7251 }
7252 } else {
7253 wpa_printf(MSG_INFO,
7254 "CTRL: Invalid MAC_RAND_SCAN parameter: %s",
7255 token);
7256 return -1;
7257 }
7258 }
7259
7260 if (!type) {
7261 wpa_printf(MSG_INFO, "CTRL: MAC_RAND_SCAN no type specified");
7262 return -1;
7263 }
7264
7265 if ((wpa_s->mac_addr_rand_supported & type) != type) {
7266 wpa_printf(MSG_INFO,
7267 "CTRL: MAC_RAND_SCAN types=%u != supported=%u",
7268 type, wpa_s->mac_addr_rand_supported);
7269 return -1;
7270 }
7271
7272 if (enable > 1) {
7273 wpa_printf(MSG_INFO,
7274 "CTRL: MAC_RAND_SCAN enable=<0/1> not specified");
7275 return -1;
7276 }
7277
7278 if (!enable) {
7279 wpas_mac_addr_rand_scan_clear(wpa_s, type);
7280 if (wpa_s->pno) {
7281 if (type & MAC_ADDR_RAND_PNO) {
7282 wpas_stop_pno(wpa_s);
7283 wpas_start_pno(wpa_s);
7284 }
7285 } else if (wpa_s->sched_scanning &&
7286 (type & MAC_ADDR_RAND_SCHED_SCAN)) {
7287 /* simulate timeout to restart the sched scan */
7288 wpa_s->sched_scan_timed_out = 1;
7289 wpa_s->prev_sched_ssid = NULL;
7290 wpa_supplicant_cancel_sched_scan(wpa_s);
7291 }
7292 return 0;
7293 }
7294
7295 if ((addr && !mask) || (!addr && mask)) {
7296 wpa_printf(MSG_INFO,
7297 "CTRL: MAC_RAND_SCAN invalid addr/mask combination");
7298 return -1;
7299 }
7300
7301 if (addr && mask && (!(mask[0] & 0x01) || (addr[0] & 0x01))) {
7302 wpa_printf(MSG_INFO,
7303 "CTRL: MAC_RAND_SCAN cannot allow multicast address");
7304 return -1;
7305 }
7306
7307 if (type & MAC_ADDR_RAND_SCAN) {
7308 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCAN,
7309 addr, mask);
7310 }
7311
7312 if (type & MAC_ADDR_RAND_SCHED_SCAN) {
7313 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCHED_SCAN,
7314 addr, mask);
7315
7316 if (wpa_s->sched_scanning && !wpa_s->pno) {
7317 /* simulate timeout to restart the sched scan */
7318 wpa_s->sched_scan_timed_out = 1;
7319 wpa_s->prev_sched_ssid = NULL;
7320 wpa_supplicant_cancel_sched_scan(wpa_s);
7321 }
7322 }
7323
7324 if (type & MAC_ADDR_RAND_PNO) {
7325 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_PNO,
7326 addr, mask);
7327 if (wpa_s->pno) {
7328 wpas_stop_pno(wpa_s);
7329 wpas_start_pno(wpa_s);
7330 }
7331 }
7332
7333 return 0;
7334}
7335
7336
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007337char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
7338 char *buf, size_t *resp_len)
7339{
7340 char *reply;
7341 const int reply_size = 4096;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007342 int reply_len;
7343
7344 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007345 os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
7346 if (wpa_debug_show_keys)
7347 wpa_dbg(wpa_s, MSG_DEBUG,
7348 "Control interface command '%s'", buf);
7349 else
7350 wpa_dbg(wpa_s, MSG_DEBUG,
7351 "Control interface command '%s [REMOVED]'",
7352 os_strncmp(buf, WPA_CTRL_RSP,
7353 os_strlen(WPA_CTRL_RSP)) == 0 ?
7354 WPA_CTRL_RSP : "SET_NETWORK");
7355 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidt21de2142014-04-08 10:50:52 -07007356 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007357 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
7358 (const u8 *) buf, os_strlen(buf));
7359 } else {
7360 int level = MSG_DEBUG;
7361 if (os_strcmp(buf, "PING") == 0)
7362 level = MSG_EXCESSIVE;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07007363 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007364 }
7365
7366 reply = os_malloc(reply_size);
7367 if (reply == NULL) {
7368 *resp_len = 1;
7369 return NULL;
7370 }
7371
7372 os_memcpy(reply, "OK\n", 3);
7373 reply_len = 3;
7374
7375 if (os_strcmp(buf, "PING") == 0) {
7376 os_memcpy(reply, "PONG\n", 5);
7377 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007378 } else if (os_strcmp(buf, "IFNAME") == 0) {
7379 reply_len = os_strlen(wpa_s->ifname);
7380 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007381 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
7382 if (wpa_debug_reopen_file() < 0)
7383 reply_len = -1;
7384 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
7385 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
7386 } else if (os_strcmp(buf, "MIB") == 0) {
7387 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
7388 if (reply_len >= 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007389 reply_len += eapol_sm_get_mib(wpa_s->eapol,
7390 reply + reply_len,
7391 reply_size - reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007392 }
7393 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
7394 reply_len = wpa_supplicant_ctrl_iface_status(
7395 wpa_s, buf + 6, reply, reply_size);
7396 } else if (os_strcmp(buf, "PMKSA") == 0) {
7397 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
7398 reply_size);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07007399 } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
7400 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007401 } else if (os_strncmp(buf, "SET ", 4) == 0) {
7402 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
7403 reply_len = -1;
7404 } else if (os_strncmp(buf, "GET ", 4) == 0) {
7405 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
7406 reply, reply_size);
7407 } else if (os_strcmp(buf, "LOGON") == 0) {
7408 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
7409 } else if (os_strcmp(buf, "LOGOFF") == 0) {
7410 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
7411 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
7412 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
7413 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08007414 else
7415 wpas_request_connection(wpa_s);
Dmitry Shmidt98660862014-03-11 17:26:21 -07007416 } else if (os_strcmp(buf, "REATTACH") == 0) {
7417 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED ||
7418 !wpa_s->current_ssid)
7419 reply_len = -1;
7420 else {
7421 wpa_s->reattach = 1;
7422 wpas_request_connection(wpa_s);
7423 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007424 } else if (os_strcmp(buf, "RECONNECT") == 0) {
7425 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
7426 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08007427 else if (wpa_s->disconnected)
7428 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007429#ifdef IEEE8021X_EAPOL
7430 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
7431 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
7432 reply_len = -1;
7433#endif /* IEEE8021X_EAPOL */
7434#ifdef CONFIG_PEERKEY
7435 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
7436 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
7437 reply_len = -1;
7438#endif /* CONFIG_PEERKEY */
7439#ifdef CONFIG_IEEE80211R
7440 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
7441 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
7442 reply_len = -1;
7443#endif /* CONFIG_IEEE80211R */
7444#ifdef CONFIG_WPS
7445 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
7446 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
7447 if (res == -2) {
7448 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
7449 reply_len = 17;
7450 } else if (res)
7451 reply_len = -1;
7452 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
7453 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
7454 if (res == -2) {
7455 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
7456 reply_len = 17;
7457 } else if (res)
7458 reply_len = -1;
7459 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
7460 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
7461 reply,
7462 reply_size);
7463 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
7464 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
7465 wpa_s, buf + 14, reply, reply_size);
7466 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
7467 if (wpas_wps_cancel(wpa_s))
7468 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007469#ifdef CONFIG_WPS_NFC
7470 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
7471 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
7472 reply_len = -1;
7473 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
7474 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
7475 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08007476 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
7477 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
7478 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007479 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
7480 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
7481 wpa_s, buf + 14, reply, reply_size);
7482 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
7483 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
7484 buf + 17))
7485 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08007486 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
7487 reply_len = wpas_ctrl_nfc_get_handover_req(
7488 wpa_s, buf + 21, reply, reply_size);
7489 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
7490 reply_len = wpas_ctrl_nfc_get_handover_sel(
7491 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08007492 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
7493 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
7494 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007495#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007496 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
7497 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
7498 reply_len = -1;
7499#ifdef CONFIG_AP
7500 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
7501 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
7502 wpa_s, buf + 11, reply, reply_size);
7503#endif /* CONFIG_AP */
7504#ifdef CONFIG_WPS_ER
7505 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
7506 if (wpas_wps_er_start(wpa_s, NULL))
7507 reply_len = -1;
7508 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
7509 if (wpas_wps_er_start(wpa_s, buf + 13))
7510 reply_len = -1;
7511 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007512 wpas_wps_er_stop(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007513 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
7514 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
7515 reply_len = -1;
7516 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
7517 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
7518 if (ret == -2) {
7519 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
7520 reply_len = 17;
7521 } else if (ret == -3) {
7522 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
7523 reply_len = 18;
7524 } else if (ret == -4) {
7525 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
7526 reply_len = 20;
7527 } else if (ret)
7528 reply_len = -1;
7529 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
7530 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
7531 reply_len = -1;
7532 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
7533 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
7534 buf + 18))
7535 reply_len = -1;
7536 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
7537 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
7538 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007539#ifdef CONFIG_WPS_NFC
7540 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
7541 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
7542 wpa_s, buf + 24, reply, reply_size);
7543#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007544#endif /* CONFIG_WPS_ER */
7545#endif /* CONFIG_WPS */
7546#ifdef CONFIG_IBSS_RSN
7547 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
7548 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
7549 reply_len = -1;
7550#endif /* CONFIG_IBSS_RSN */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007551#ifdef CONFIG_MESH
7552 } else if (os_strncmp(buf, "MESH_INTERFACE_ADD ", 19) == 0) {
7553 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
7554 wpa_s, buf + 19, reply, reply_size);
7555 } else if (os_strcmp(buf, "MESH_INTERFACE_ADD") == 0) {
7556 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
7557 wpa_s, "", reply, reply_size);
7558 } else if (os_strncmp(buf, "MESH_GROUP_ADD ", 15) == 0) {
7559 if (wpa_supplicant_ctrl_iface_mesh_group_add(wpa_s, buf + 15))
7560 reply_len = -1;
7561 } else if (os_strncmp(buf, "MESH_GROUP_REMOVE ", 18) == 0) {
7562 if (wpa_supplicant_ctrl_iface_mesh_group_remove(wpa_s,
7563 buf + 18))
7564 reply_len = -1;
7565#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007566#ifdef CONFIG_P2P
7567 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
7568 if (p2p_ctrl_find(wpa_s, buf + 9))
7569 reply_len = -1;
7570 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
7571 if (p2p_ctrl_find(wpa_s, ""))
7572 reply_len = -1;
7573 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
7574 wpas_p2p_stop_find(wpa_s);
7575 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
7576 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
7577 reply_size);
7578 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
7579 if (p2p_ctrl_listen(wpa_s, buf + 11))
7580 reply_len = -1;
7581 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
7582 if (p2p_ctrl_listen(wpa_s, ""))
7583 reply_len = -1;
7584 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
7585 if (wpas_p2p_group_remove(wpa_s, buf + 17))
7586 reply_len = -1;
7587 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007588 if (wpas_p2p_group_add(wpa_s, 0, 0, 0, 0))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007589 reply_len = -1;
7590 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
7591 if (p2p_ctrl_group_add(wpa_s, buf + 14))
7592 reply_len = -1;
7593 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
7594 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
7595 reply_len = -1;
7596 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
7597 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
7598 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
7599 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
7600 reply_size);
7601 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
7602 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
7603 reply_len = -1;
7604 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
7605 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
7606 reply_len = -1;
7607 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
7608 wpas_p2p_sd_service_update(wpa_s);
7609 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
7610 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
7611 reply_len = -1;
7612 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
7613 wpas_p2p_service_flush(wpa_s);
7614 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
7615 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
7616 reply_len = -1;
7617 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
7618 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
7619 reply_len = -1;
7620 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
7621 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
7622 reply_len = -1;
7623 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
7624 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
7625 reply_len = -1;
7626 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
7627 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
7628 reply_size);
7629 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
7630 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
7631 reply_len = -1;
7632 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007633 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007634 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
7635 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
7636 reply_len = -1;
7637 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
7638 if (wpas_p2p_cancel(wpa_s))
7639 reply_len = -1;
7640 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
7641 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
7642 reply_len = -1;
7643 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
7644 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
7645 reply_len = -1;
7646 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
7647 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
7648 reply_len = -1;
7649 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
7650 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
7651 reply_len = -1;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007652 } else if (os_strncmp(buf, "P2P_REMOVE_CLIENT ", 18) == 0) {
7653 if (p2p_ctrl_remove_client(wpa_s, buf + 18) < 0)
7654 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007655#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007656#ifdef CONFIG_WIFI_DISPLAY
7657 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
7658 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
7659 reply_len = -1;
7660 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
7661 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
7662 reply, reply_size);
7663#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007664#ifdef CONFIG_INTERWORKING
7665 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
7666 if (interworking_fetch_anqp(wpa_s) < 0)
7667 reply_len = -1;
7668 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
7669 interworking_stop_fetch_anqp(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007670 } else if (os_strcmp(buf, "INTERWORKING_SELECT") == 0) {
7671 if (ctrl_interworking_select(wpa_s, NULL) < 0)
7672 reply_len = -1;
7673 } else if (os_strncmp(buf, "INTERWORKING_SELECT ", 20) == 0) {
7674 if (ctrl_interworking_select(wpa_s, buf + 20) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007675 reply_len = -1;
7676 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
7677 if (ctrl_interworking_connect(wpa_s, buf + 21) < 0)
7678 reply_len = -1;
7679 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
7680 if (get_anqp(wpa_s, buf + 9) < 0)
7681 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007682 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
7683 if (gas_request(wpa_s, buf + 12) < 0)
7684 reply_len = -1;
7685 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
7686 reply_len = gas_response_get(wpa_s, buf + 17, reply,
7687 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007688#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07007689#ifdef CONFIG_HS20
7690 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
7691 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
7692 reply_len = -1;
7693 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
7694 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
7695 reply_len = -1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007696 } else if (os_strncmp(buf, "HS20_ICON_REQUEST ", 18) == 0) {
7697 if (hs20_icon_request(wpa_s, buf + 18) < 0)
7698 reply_len = -1;
7699 } else if (os_strcmp(buf, "FETCH_OSU") == 0) {
7700 if (hs20_fetch_osu(wpa_s) < 0)
7701 reply_len = -1;
7702 } else if (os_strcmp(buf, "CANCEL_FETCH_OSU") == 0) {
7703 hs20_cancel_fetch_osu(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007704#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007705 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
7706 {
7707 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
7708 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
7709 reply_len = -1;
Dmitry Shmidt051af732013-10-22 13:52:46 -07007710 else {
7711 /*
7712 * Notify response from timeout to allow the control
7713 * interface response to be sent first.
7714 */
7715 eloop_register_timeout(0, 0, wpas_ctrl_eapol_response,
7716 wpa_s, NULL);
7717 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007718 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
7719 if (wpa_supplicant_reload_configuration(wpa_s))
7720 reply_len = -1;
7721 } else if (os_strcmp(buf, "TERMINATE") == 0) {
7722 wpa_supplicant_terminate_proc(wpa_s->global);
7723 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
7724 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
7725 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07007726 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007727 reply_len = wpa_supplicant_ctrl_iface_blacklist(
7728 wpa_s, buf + 9, reply, reply_size);
7729 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
7730 reply_len = wpa_supplicant_ctrl_iface_log_level(
7731 wpa_s, buf + 9, reply, reply_size);
Vinit Deshpandeda134e92014-12-02 10:59:29 -08007732 } else if (os_strncmp(buf, "LIST_NETWORKS ", 14) == 0) {
7733 reply_len = wpa_supplicant_ctrl_iface_list_networks(
7734 wpa_s, buf + 14, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007735 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
7736 reply_len = wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08007737 wpa_s, NULL, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007738 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07007739#ifdef CONFIG_SME
7740 wpa_s->sme.prev_bssid_set = 0;
7741#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007742 wpa_s->reassociate = 0;
7743 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007744 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007745 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007746 wpa_supplicant_deauthenticate(wpa_s,
7747 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007748 } else if (os_strcmp(buf, "SCAN") == 0) {
7749 wpas_ctrl_scan(wpa_s, NULL, reply, reply_size, &reply_len);
7750 } else if (os_strncmp(buf, "SCAN ", 5) == 0) {
7751 wpas_ctrl_scan(wpa_s, buf + 5, reply, reply_size, &reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007752 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
7753 reply_len = wpa_supplicant_ctrl_iface_scan_results(
7754 wpa_s, reply, reply_size);
7755 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
7756 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
7757 reply_len = -1;
7758 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
7759 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
7760 reply_len = -1;
7761 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
7762 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
7763 reply_len = -1;
7764 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
7765 reply_len = wpa_supplicant_ctrl_iface_add_network(
7766 wpa_s, reply, reply_size);
7767 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
7768 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
7769 reply_len = -1;
7770 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
7771 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
7772 reply_len = -1;
7773 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
7774 reply_len = wpa_supplicant_ctrl_iface_get_network(
7775 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07007776 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
7777 if (wpa_supplicant_ctrl_iface_dup_network(wpa_s, buf + 12))
7778 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007779 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
7780 reply_len = wpa_supplicant_ctrl_iface_list_creds(
7781 wpa_s, reply, reply_size);
7782 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
7783 reply_len = wpa_supplicant_ctrl_iface_add_cred(
7784 wpa_s, reply, reply_size);
7785 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
7786 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
7787 reply_len = -1;
7788 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
7789 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
7790 reply_len = -1;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07007791 } else if (os_strncmp(buf, "GET_CRED ", 9) == 0) {
7792 reply_len = wpa_supplicant_ctrl_iface_get_cred(wpa_s, buf + 9,
7793 reply,
7794 reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007795#ifndef CONFIG_NO_CONFIG_WRITE
7796 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
7797 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
7798 reply_len = -1;
7799#endif /* CONFIG_NO_CONFIG_WRITE */
7800 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
7801 reply_len = wpa_supplicant_ctrl_iface_get_capability(
7802 wpa_s, buf + 15, reply, reply_size);
7803 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
7804 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
7805 reply_len = -1;
7806 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
7807 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
7808 reply_len = -1;
7809 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
7810 reply_len = wpa_supplicant_global_iface_list(
7811 wpa_s->global, reply, reply_size);
7812 } else if (os_strcmp(buf, "INTERFACES") == 0) {
7813 reply_len = wpa_supplicant_global_iface_interfaces(
7814 wpa_s->global, reply, reply_size);
7815 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
7816 reply_len = wpa_supplicant_ctrl_iface_bss(
7817 wpa_s, buf + 4, reply, reply_size);
7818#ifdef CONFIG_AP
7819 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
7820 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
7821 } else if (os_strncmp(buf, "STA ", 4) == 0) {
7822 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
7823 reply_size);
7824 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
7825 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
7826 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007827 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
7828 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
7829 reply_len = -1;
7830 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
7831 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
7832 reply_len = -1;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08007833 } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
7834 if (ap_ctrl_iface_chanswitch(wpa_s, buf + 12))
7835 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007836#endif /* CONFIG_AP */
7837 } else if (os_strcmp(buf, "SUSPEND") == 0) {
7838 wpas_notify_suspend(wpa_s->global);
7839 } else if (os_strcmp(buf, "RESUME") == 0) {
7840 wpas_notify_resume(wpa_s->global);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07007841#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007842 } else if (os_strcmp(buf, "DROP_SA") == 0) {
7843 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07007844#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007845 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
7846 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
7847 reply_len = -1;
7848 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007849 wpa_s->auto_reconnect_disabled = atoi(buf + 16) == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007850 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
7851 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
7852 reply_len = -1;
7853 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
7854 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
7855 buf + 17))
7856 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07007857 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007858 wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007859#ifdef CONFIG_TDLS
7860 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
7861 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
7862 reply_len = -1;
7863 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
7864 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
7865 reply_len = -1;
7866 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
7867 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
7868 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007869 } else if (os_strncmp(buf, "TDLS_CHAN_SWITCH ", 17) == 0) {
7870 if (wpa_supplicant_ctrl_iface_tdls_chan_switch(wpa_s,
7871 buf + 17))
7872 reply_len = -1;
7873 } else if (os_strncmp(buf, "TDLS_CANCEL_CHAN_SWITCH ", 24) == 0) {
7874 if (wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(wpa_s,
7875 buf + 24))
7876 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007877#endif /* CONFIG_TDLS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007878 } else if (os_strcmp(buf, "WMM_AC_STATUS") == 0) {
7879 reply_len = wpas_wmm_ac_status(wpa_s, reply, reply_size);
7880 } else if (os_strncmp(buf, "WMM_AC_ADDTS ", 13) == 0) {
7881 if (wmm_ac_ctrl_addts(wpa_s, buf + 13))
7882 reply_len = -1;
7883 } else if (os_strncmp(buf, "WMM_AC_DELTS ", 13) == 0) {
7884 if (wmm_ac_ctrl_delts(wpa_s, buf + 13))
7885 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007886 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
7887 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
7888 reply_size);
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07007889 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
7890 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
7891 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007892#ifdef CONFIG_AUTOSCAN
7893 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
7894 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
7895 reply_len = -1;
7896#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08007897#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07007898 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
7899 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
7900 reply_size);
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08007901#endif /* ANDROID */
Dmitry Shmidta38abf92014-03-06 13:38:44 -08007902 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
7903 reply_len = wpa_supplicant_vendor_cmd(wpa_s, buf + 7, reply,
7904 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007905 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08007906 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007907 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08007908#ifdef CONFIG_WNM
7909 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
7910 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
7911 reply_len = -1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007912 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 14) == 0) {
7913 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 14))
Dmitry Shmidt44c95782013-05-17 09:51:35 -07007914 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08007915#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007916 } else if (os_strcmp(buf, "FLUSH") == 0) {
7917 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007918 } else if (os_strncmp(buf, "RADIO_WORK ", 11) == 0) {
7919 reply_len = wpas_ctrl_radio_work(wpa_s, buf + 11, reply,
7920 reply_size);
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007921#ifdef CONFIG_TESTING_OPTIONS
7922 } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
7923 if (wpas_ctrl_iface_mgmt_tx(wpa_s, buf + 8) < 0)
7924 reply_len = -1;
7925 } else if (os_strcmp(buf, "MGMT_TX_DONE") == 0) {
7926 wpas_ctrl_iface_mgmt_tx_done(wpa_s);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07007927 } else if (os_strncmp(buf, "DRIVER_EVENT ", 13) == 0) {
7928 if (wpas_ctrl_iface_driver_event(wpa_s, buf + 13) < 0)
7929 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007930 } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
7931 if (wpas_ctrl_iface_eapol_rx(wpa_s, buf + 9) < 0)
7932 reply_len = -1;
7933 } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
7934 if (wpas_ctrl_iface_data_test_config(wpa_s, buf + 17) < 0)
7935 reply_len = -1;
7936 } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
7937 if (wpas_ctrl_iface_data_test_tx(wpa_s, buf + 13) < 0)
7938 reply_len = -1;
7939 } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
7940 if (wpas_ctrl_iface_data_test_frame(wpa_s, buf + 16) < 0)
7941 reply_len = -1;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08007942 } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
7943 if (wpas_ctrl_test_alloc_fail(wpa_s, buf + 16) < 0)
7944 reply_len = -1;
7945 } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
7946 reply_len = wpas_ctrl_get_alloc_fail(wpa_s, reply, reply_size);
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007947#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007948 } else if (os_strncmp(buf, "VENDOR_ELEM_ADD ", 16) == 0) {
7949 if (wpas_ctrl_vendor_elem_add(wpa_s, buf + 16) < 0)
7950 reply_len = -1;
7951 } else if (os_strncmp(buf, "VENDOR_ELEM_GET ", 16) == 0) {
7952 reply_len = wpas_ctrl_vendor_elem_get(wpa_s, buf + 16, reply,
7953 reply_size);
7954 } else if (os_strncmp(buf, "VENDOR_ELEM_REMOVE ", 19) == 0) {
7955 if (wpas_ctrl_vendor_elem_remove(wpa_s, buf + 19) < 0)
7956 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007957 } else if (os_strncmp(buf, "NEIGHBOR_REP_REQUEST", 20) == 0) {
7958 if (wpas_ctrl_iface_send_neigbor_rep(wpa_s, buf + 20))
7959 reply_len = -1;
7960 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
7961 wpas_ctrl_iface_erp_flush(wpa_s);
7962 } else if (os_strncmp(buf, "MAC_RAND_SCAN ", 14) == 0) {
7963 if (wpas_ctrl_iface_mac_rand_scan(wpa_s, buf + 14))
7964 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007965 } else {
7966 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
7967 reply_len = 16;
7968 }
7969
7970 if (reply_len < 0) {
7971 os_memcpy(reply, "FAIL\n", 5);
7972 reply_len = 5;
7973 }
7974
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007975 *resp_len = reply_len;
7976 return reply;
7977}
7978
7979
7980static int wpa_supplicant_global_iface_add(struct wpa_global *global,
7981 char *cmd)
7982{
7983 struct wpa_interface iface;
7984 char *pos;
7985
7986 /*
7987 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
7988 * TAB<bridge_ifname>
7989 */
7990 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
7991
7992 os_memset(&iface, 0, sizeof(iface));
7993
7994 do {
7995 iface.ifname = pos = cmd;
7996 pos = os_strchr(pos, '\t');
7997 if (pos)
7998 *pos++ = '\0';
7999 if (iface.ifname[0] == '\0')
8000 return -1;
8001 if (pos == NULL)
8002 break;
8003
8004 iface.confname = pos;
8005 pos = os_strchr(pos, '\t');
8006 if (pos)
8007 *pos++ = '\0';
8008 if (iface.confname[0] == '\0')
8009 iface.confname = NULL;
8010 if (pos == NULL)
8011 break;
8012
8013 iface.driver = pos;
8014 pos = os_strchr(pos, '\t');
8015 if (pos)
8016 *pos++ = '\0';
8017 if (iface.driver[0] == '\0')
8018 iface.driver = NULL;
8019 if (pos == NULL)
8020 break;
8021
8022 iface.ctrl_interface = pos;
8023 pos = os_strchr(pos, '\t');
8024 if (pos)
8025 *pos++ = '\0';
8026 if (iface.ctrl_interface[0] == '\0')
8027 iface.ctrl_interface = NULL;
8028 if (pos == NULL)
8029 break;
8030
8031 iface.driver_param = pos;
8032 pos = os_strchr(pos, '\t');
8033 if (pos)
8034 *pos++ = '\0';
8035 if (iface.driver_param[0] == '\0')
8036 iface.driver_param = NULL;
8037 if (pos == NULL)
8038 break;
8039
8040 iface.bridge_ifname = pos;
8041 pos = os_strchr(pos, '\t');
8042 if (pos)
8043 *pos++ = '\0';
8044 if (iface.bridge_ifname[0] == '\0')
8045 iface.bridge_ifname = NULL;
8046 if (pos == NULL)
8047 break;
8048 } while (0);
8049
8050 if (wpa_supplicant_get_iface(global, iface.ifname))
8051 return -1;
8052
8053 return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
8054}
8055
8056
8057static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
8058 char *cmd)
8059{
8060 struct wpa_supplicant *wpa_s;
8061
8062 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
8063
8064 wpa_s = wpa_supplicant_get_iface(global, cmd);
8065 if (wpa_s == NULL)
8066 return -1;
Dmitry Shmidte15c7b52011-08-03 15:04:35 -07008067 return wpa_supplicant_remove_iface(global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008068}
8069
8070
8071static void wpa_free_iface_info(struct wpa_interface_info *iface)
8072{
8073 struct wpa_interface_info *prev;
8074
8075 while (iface) {
8076 prev = iface;
8077 iface = iface->next;
8078
8079 os_free(prev->ifname);
8080 os_free(prev->desc);
8081 os_free(prev);
8082 }
8083}
8084
8085
8086static int wpa_supplicant_global_iface_list(struct wpa_global *global,
8087 char *buf, int len)
8088{
8089 int i, res;
8090 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
8091 char *pos, *end;
8092
8093 for (i = 0; wpa_drivers[i]; i++) {
8094 struct wpa_driver_ops *drv = wpa_drivers[i];
8095 if (drv->get_interfaces == NULL)
8096 continue;
8097 tmp = drv->get_interfaces(global->drv_priv[i]);
8098 if (tmp == NULL)
8099 continue;
8100
8101 if (last == NULL)
8102 iface = last = tmp;
8103 else
8104 last->next = tmp;
8105 while (last->next)
8106 last = last->next;
8107 }
8108
8109 pos = buf;
8110 end = buf + len;
8111 for (tmp = iface; tmp; tmp = tmp->next) {
8112 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
8113 tmp->drv_name, tmp->ifname,
8114 tmp->desc ? tmp->desc : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008115 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008116 *pos = '\0';
8117 break;
8118 }
8119 pos += res;
8120 }
8121
8122 wpa_free_iface_info(iface);
8123
8124 return pos - buf;
8125}
8126
8127
8128static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
8129 char *buf, int len)
8130{
8131 int res;
8132 char *pos, *end;
8133 struct wpa_supplicant *wpa_s;
8134
8135 wpa_s = global->ifaces;
8136 pos = buf;
8137 end = buf + len;
8138
8139 while (wpa_s) {
8140 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008141 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008142 *pos = '\0';
8143 break;
8144 }
8145 pos += res;
8146 wpa_s = wpa_s->next;
8147 }
8148 return pos - buf;
8149}
8150
8151
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07008152static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
8153 const char *ifname,
8154 char *cmd, size_t *resp_len)
8155{
8156 struct wpa_supplicant *wpa_s;
8157
8158 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8159 if (os_strcmp(ifname, wpa_s->ifname) == 0)
8160 break;
8161 }
8162
8163 if (wpa_s == NULL) {
8164 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
8165 if (resp)
8166 *resp_len = os_strlen(resp);
8167 else
8168 *resp_len = 1;
8169 return resp;
8170 }
8171
8172 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
8173}
8174
8175
8176static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
8177 char *buf, size_t *resp_len)
8178{
8179#ifdef CONFIG_P2P
8180 static const char * cmd[] = {
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07008181 "LIST_NETWORKS",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07008182 "P2P_FIND",
8183 "P2P_STOP_FIND",
8184 "P2P_LISTEN",
8185 "P2P_GROUP_ADD",
8186 "P2P_GET_PASSPHRASE",
8187 "P2P_SERVICE_UPDATE",
8188 "P2P_SERVICE_FLUSH",
8189 "P2P_FLUSH",
8190 "P2P_CANCEL",
8191 "P2P_PRESENCE_REQ",
8192 "P2P_EXT_LISTEN",
8193 NULL
8194 };
8195 static const char * prefix[] = {
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08008196#ifdef ANDROID
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07008197 "DRIVER ",
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08008198#endif /* ANDROID */
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07008199 "GET_NETWORK ",
8200 "REMOVE_NETWORK ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07008201 "P2P_FIND ",
8202 "P2P_CONNECT ",
8203 "P2P_LISTEN ",
8204 "P2P_GROUP_REMOVE ",
8205 "P2P_GROUP_ADD ",
8206 "P2P_PROV_DISC ",
8207 "P2P_SERV_DISC_REQ ",
8208 "P2P_SERV_DISC_CANCEL_REQ ",
8209 "P2P_SERV_DISC_RESP ",
8210 "P2P_SERV_DISC_EXTERNAL ",
8211 "P2P_SERVICE_ADD ",
8212 "P2P_SERVICE_DEL ",
8213 "P2P_REJECT ",
8214 "P2P_INVITE ",
8215 "P2P_PEER ",
8216 "P2P_SET ",
8217 "P2P_UNAUTHORIZE ",
8218 "P2P_PRESENCE_REQ ",
8219 "P2P_EXT_LISTEN ",
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008220 "P2P_REMOVE_CLIENT ",
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08008221 "WPS_NFC_TOKEN ",
8222 "WPS_NFC_TAG_READ ",
Dmitry Shmidt413dde72014-04-11 10:23:22 -07008223 "NFC_GET_HANDOVER_SEL ",
8224 "NFC_GET_HANDOVER_REQ ",
8225 "NFC_REPORT_HANDOVER ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07008226 NULL
8227 };
8228 int found = 0;
8229 int i;
8230
8231 if (global->p2p_init_wpa_s == NULL)
8232 return NULL;
8233
8234 for (i = 0; !found && cmd[i]; i++) {
8235 if (os_strcmp(buf, cmd[i]) == 0)
8236 found = 1;
8237 }
8238
8239 for (i = 0; !found && prefix[i]; i++) {
8240 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
8241 found = 1;
8242 }
8243
8244 if (found)
8245 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
8246 buf, resp_len);
8247#endif /* CONFIG_P2P */
8248 return NULL;
8249}
8250
8251
8252static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
8253 char *buf, size_t *resp_len)
8254{
8255#ifdef CONFIG_WIFI_DISPLAY
8256 if (global->p2p_init_wpa_s == NULL)
8257 return NULL;
8258 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
8259 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
8260 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
8261 buf, resp_len);
8262#endif /* CONFIG_WIFI_DISPLAY */
8263 return NULL;
8264}
8265
8266
8267static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
8268 char *buf, size_t *resp_len)
8269{
8270 char *ret;
8271
8272 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
8273 if (ret)
8274 return ret;
8275
8276 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
8277 if (ret)
8278 return ret;
8279
8280 return NULL;
8281}
8282
8283
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008284static int wpas_global_ctrl_iface_set(struct wpa_global *global, char *cmd)
8285{
8286 char *value;
8287
8288 value = os_strchr(cmd, ' ');
8289 if (value == NULL)
8290 return -1;
8291 *value++ = '\0';
8292
8293 wpa_printf(MSG_DEBUG, "GLOBAL_CTRL_IFACE SET '%s'='%s'", cmd, value);
8294
8295#ifdef CONFIG_WIFI_DISPLAY
8296 if (os_strcasecmp(cmd, "wifi_display") == 0) {
8297 wifi_display_enable(global, !!atoi(value));
8298 return 0;
8299 }
8300#endif /* CONFIG_WIFI_DISPLAY */
8301
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008302 /* Restore cmd to its original value to allow redirection */
8303 value[-1] = ' ';
8304
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008305 return -1;
8306}
8307
8308
8309#ifndef CONFIG_NO_CONFIG_WRITE
8310static int wpas_global_ctrl_iface_save_config(struct wpa_global *global)
8311{
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008312 int ret = 0, saved = 0;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008313 struct wpa_supplicant *wpa_s;
8314
8315 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8316 if (!wpa_s->conf->update_config) {
8317 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed to update configuration (update_config=0)");
8318 continue;
8319 }
8320
8321 if (wpa_config_write(wpa_s->confname, wpa_s->conf)) {
8322 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to update configuration");
8323 ret = 1;
8324 } else {
8325 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration updated");
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008326 saved++;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008327 }
8328 }
8329
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008330 if (!saved && !ret) {
8331 wpa_dbg(wpa_s, MSG_DEBUG,
8332 "CTRL_IFACE: SAVE_CONFIG - No configuration files could be updated");
8333 ret = 1;
8334 }
8335
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008336 return ret;
8337}
8338#endif /* CONFIG_NO_CONFIG_WRITE */
8339
8340
8341static int wpas_global_ctrl_iface_status(struct wpa_global *global,
8342 char *buf, size_t buflen)
8343{
8344 char *pos, *end;
8345 int ret;
8346 struct wpa_supplicant *wpa_s;
8347
8348 pos = buf;
8349 end = buf + buflen;
8350
8351#ifdef CONFIG_P2P
8352 if (global->p2p && !global->p2p_disabled) {
8353 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
8354 "\n"
8355 "p2p_state=%s\n",
8356 MAC2STR(global->p2p_dev_addr),
8357 p2p_get_state_txt(global->p2p));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008358 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008359 return pos - buf;
8360 pos += ret;
8361 } else if (global->p2p) {
8362 ret = os_snprintf(pos, end - pos, "p2p_state=DISABLED\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008363 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008364 return pos - buf;
8365 pos += ret;
8366 }
8367#endif /* CONFIG_P2P */
8368
8369#ifdef CONFIG_WIFI_DISPLAY
8370 ret = os_snprintf(pos, end - pos, "wifi_display=%d\n",
8371 !!global->wifi_display);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008372 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008373 return pos - buf;
8374 pos += ret;
8375#endif /* CONFIG_WIFI_DISPLAY */
8376
8377 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8378 ret = os_snprintf(pos, end - pos, "ifname=%s\n"
8379 "address=" MACSTR "\n",
8380 wpa_s->ifname, MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008381 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008382 return pos - buf;
8383 pos += ret;
8384 }
8385
8386 return pos - buf;
8387}
8388
8389
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008390char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
8391 char *buf, size_t *resp_len)
8392{
8393 char *reply;
8394 const int reply_size = 2048;
8395 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008396 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008397
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07008398 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
8399 char *pos = os_strchr(buf + 7, ' ');
8400 if (pos) {
8401 *pos++ = '\0';
8402 return wpas_global_ctrl_iface_ifname(global,
8403 buf + 7, pos,
8404 resp_len);
8405 }
8406 }
8407
8408 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
8409 if (reply)
8410 return reply;
8411
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008412 if (os_strcmp(buf, "PING") == 0)
8413 level = MSG_EXCESSIVE;
8414 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008415 (const u8 *) buf, os_strlen(buf));
8416
8417 reply = os_malloc(reply_size);
8418 if (reply == NULL) {
8419 *resp_len = 1;
8420 return NULL;
8421 }
8422
8423 os_memcpy(reply, "OK\n", 3);
8424 reply_len = 3;
8425
8426 if (os_strcmp(buf, "PING") == 0) {
8427 os_memcpy(reply, "PONG\n", 5);
8428 reply_len = 5;
8429 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
8430 if (wpa_supplicant_global_iface_add(global, buf + 14))
8431 reply_len = -1;
8432 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
8433 if (wpa_supplicant_global_iface_remove(global, buf + 17))
8434 reply_len = -1;
8435 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
8436 reply_len = wpa_supplicant_global_iface_list(
8437 global, reply, reply_size);
8438 } else if (os_strcmp(buf, "INTERFACES") == 0) {
8439 reply_len = wpa_supplicant_global_iface_interfaces(
8440 global, reply, reply_size);
8441 } else if (os_strcmp(buf, "TERMINATE") == 0) {
8442 wpa_supplicant_terminate_proc(global);
8443 } else if (os_strcmp(buf, "SUSPEND") == 0) {
8444 wpas_notify_suspend(global);
8445 } else if (os_strcmp(buf, "RESUME") == 0) {
8446 wpas_notify_resume(global);
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008447 } else if (os_strncmp(buf, "SET ", 4) == 0) {
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008448 if (wpas_global_ctrl_iface_set(global, buf + 4)) {
8449#ifdef CONFIG_P2P
8450 if (global->p2p_init_wpa_s) {
8451 os_free(reply);
8452 /* Check if P2P redirection would work for this
8453 * command. */
8454 return wpa_supplicant_ctrl_iface_process(
8455 global->p2p_init_wpa_s,
8456 buf, resp_len);
8457 }
8458#endif /* CONFIG_P2P */
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008459 reply_len = -1;
Dmitry Shmidt61593f02014-04-21 16:27:35 -07008460 }
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07008461#ifndef CONFIG_NO_CONFIG_WRITE
8462 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
8463 if (wpas_global_ctrl_iface_save_config(global))
8464 reply_len = -1;
8465#endif /* CONFIG_NO_CONFIG_WRITE */
8466 } else if (os_strcmp(buf, "STATUS") == 0) {
8467 reply_len = wpas_global_ctrl_iface_status(global, reply,
8468 reply_size);
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08008469#ifdef CONFIG_MODULE_TESTS
8470 } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
8471 int wpas_module_tests(void);
8472 if (wpas_module_tests() < 0)
8473 reply_len = -1;
8474#endif /* CONFIG_MODULE_TESTS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008475 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
8476 if (wpa_debug_reopen_file() < 0)
8477 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008478 } else {
8479 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
8480 reply_len = 16;
8481 }
8482
8483 if (reply_len < 0) {
8484 os_memcpy(reply, "FAIL\n", 5);
8485 reply_len = 5;
8486 }
8487
8488 *resp_len = reply_len;
8489 return reply;
8490}