blob: 4e7b58ec5a36aad45ccd279ec9a052c8914cac51 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / UNIX domain socket -based control interface
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003 * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10
11#ifndef CONFIG_NATIVE_WINDOWS
12
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080013#ifdef CONFIG_TESTING_OPTIONS
14#include <net/ethernet.h>
15#include <netinet/ip.h>
16#endif /* CONFIG_TESTING_OPTIONS */
17
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include <sys/un.h>
19#include <sys/stat.h>
20#include <stddef.h>
21
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080022#ifdef CONFIG_CTRL_IFACE_UDP
23#include <netdb.h>
24#endif /* CONFIG_CTRL_IFACE_UDP */
25
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070026#include "utils/common.h"
27#include "utils/eloop.h"
Dmitry Shmidt4ae50e62016-06-27 13:48:39 -070028#include "utils/module_tests.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070029#include "common/version.h"
30#include "common/ieee802_11_defs.h"
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080031#include "common/ctrl_iface_common.h"
Dmitry Shmidtff787d52015-01-12 13:01:47 -080032#include "crypto/tls.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070033#include "drivers/driver.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080034#include "eapol_auth/eapol_auth_sm.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070035#include "radius/radius_client.h"
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080036#include "radius/radius_server.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080037#include "l2_packet/l2_packet.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070038#include "ap/hostapd.h"
39#include "ap/ap_config.h"
40#include "ap/ieee802_1x.h"
41#include "ap/wpa_auth.h"
42#include "ap/ieee802_11.h"
43#include "ap/sta_info.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070044#include "ap/wps_hostapd.h"
45#include "ap/ctrl_iface_ap.h"
46#include "ap/ap_drv_ops.h"
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080047#include "ap/hs20.h"
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080048#include "ap/wnm_ap.h"
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -070049#include "ap/wpa_auth.h"
Dmitry Shmidt7f656022015-02-25 14:36:37 -080050#include "ap/beacon.h"
Dmitry Shmidt849734c2016-05-27 09:59:01 -070051#include "ap/neighbor_db.h"
52#include "ap/rrm.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070053#include "wps/wps_defs.h"
54#include "wps/wps.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080055#include "fst/fst_ctrl_iface.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070056#include "config_file.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070057#include "ctrl_iface.h"
58
59
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080060#define HOSTAPD_CLI_DUP_VALUE_MAX_LEN 256
61
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080062#ifdef CONFIG_CTRL_IFACE_UDP
63#define COOKIE_LEN 8
64static unsigned char cookie[COOKIE_LEN];
65static unsigned char gcookie[COOKIE_LEN];
66#define HOSTAPD_CTRL_IFACE_PORT 8877
67#define HOSTAPD_CTRL_IFACE_PORT_LIMIT 50
68#define HOSTAPD_GLOBAL_CTRL_IFACE_PORT 8878
69#define HOSTAPD_GLOBAL_CTRL_IFACE_PORT_LIMIT 50
70#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070071
72static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
Anton Nayshtutf715e8d2014-11-16 16:52:49 +020073 enum wpa_msg_type type,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070074 const char *buf, size_t len);
75
76
77static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080078 struct sockaddr_storage *from,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070079 socklen_t fromlen)
80{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080081 return ctrl_iface_attach(&hapd->ctrl_dst, from, fromlen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070082}
83
84
85static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080086 struct sockaddr_storage *from,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070087 socklen_t fromlen)
88{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080089 return ctrl_iface_detach(&hapd->ctrl_dst, from, fromlen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070090}
91
92
93static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080094 struct sockaddr_storage *from,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070095 socklen_t fromlen,
96 char *level)
97{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080098 return ctrl_iface_level(&hapd->ctrl_dst, from, fromlen, level);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070099}
100
101
102static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
103 const char *txtaddr)
104{
105 u8 addr[ETH_ALEN];
106 struct sta_info *sta;
107
108 wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
109
110 if (hwaddr_aton(txtaddr, addr))
111 return -1;
112
113 sta = ap_get_sta(hapd, addr);
114 if (sta)
115 return 0;
116
117 wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
118 "notification", MAC2STR(addr));
119 sta = ap_sta_add(hapd, addr);
120 if (sta == NULL)
121 return -1;
122
123 hostapd_new_assoc_sta(hapd, sta, 0);
124 return 0;
125}
126
127
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700128#ifdef CONFIG_IEEE80211W
129#ifdef NEED_AP_MLME
130static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
131 const char *txtaddr)
132{
133 u8 addr[ETH_ALEN];
134 u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
135
136 wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
137
138 if (hwaddr_aton(txtaddr, addr) ||
139 os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
140 return -1;
141
142 ieee802_11_send_sa_query_req(hapd, addr, trans_id);
143
144 return 0;
145}
146#endif /* NEED_AP_MLME */
147#endif /* CONFIG_IEEE80211W */
148
149
150#ifdef CONFIG_WPS
151static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
152{
153 char *pin = os_strchr(txt, ' ');
154 char *timeout_txt;
155 int timeout;
156 u8 addr_buf[ETH_ALEN], *addr = NULL;
157 char *pos;
158
159 if (pin == NULL)
160 return -1;
161 *pin++ = '\0';
162
163 timeout_txt = os_strchr(pin, ' ');
164 if (timeout_txt) {
165 *timeout_txt++ = '\0';
166 timeout = atoi(timeout_txt);
167 pos = os_strchr(timeout_txt, ' ');
168 if (pos) {
169 *pos++ = '\0';
170 if (hwaddr_aton(pos, addr_buf) == 0)
171 addr = addr_buf;
172 }
173 } else
174 timeout = 0;
175
176 return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
177}
178
179
180static int hostapd_ctrl_iface_wps_check_pin(
181 struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
182{
183 char pin[9];
184 size_t len;
185 char *pos;
186 int ret;
187
188 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
189 (u8 *) cmd, os_strlen(cmd));
190 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
191 if (*pos < '0' || *pos > '9')
192 continue;
193 pin[len++] = *pos;
194 if (len == 9) {
195 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
196 return -1;
197 }
198 }
199 if (len != 4 && len != 8) {
200 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
201 return -1;
202 }
203 pin[len] = '\0';
204
205 if (len == 8) {
206 unsigned int pin_val;
207 pin_val = atoi(pin);
208 if (!wps_pin_valid(pin_val)) {
209 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
210 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800211 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700212 return -1;
213 return ret;
214 }
215 }
216
217 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800218 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700219 return -1;
220
221 return ret;
222}
223
224
Dmitry Shmidt04949592012-07-19 12:16:46 -0700225#ifdef CONFIG_WPS_NFC
226static int hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd,
227 char *pos)
228{
229 size_t len;
230 struct wpabuf *buf;
231 int ret;
232
233 len = os_strlen(pos);
234 if (len & 0x01)
235 return -1;
236 len /= 2;
237
238 buf = wpabuf_alloc(len);
239 if (buf == NULL)
240 return -1;
241 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
242 wpabuf_free(buf);
243 return -1;
244 }
245
246 ret = hostapd_wps_nfc_tag_read(hapd, buf);
247 wpabuf_free(buf);
248
249 return ret;
250}
251
252
253static int hostapd_ctrl_iface_wps_nfc_config_token(struct hostapd_data *hapd,
254 char *cmd, char *reply,
255 size_t max_len)
256{
257 int ndef;
258 struct wpabuf *buf;
259 int res;
260
261 if (os_strcmp(cmd, "WPS") == 0)
262 ndef = 0;
263 else if (os_strcmp(cmd, "NDEF") == 0)
264 ndef = 1;
265 else
266 return -1;
267
268 buf = hostapd_wps_nfc_config_token(hapd, ndef);
269 if (buf == NULL)
270 return -1;
271
272 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
273 wpabuf_len(buf));
274 reply[res++] = '\n';
275 reply[res] = '\0';
276
277 wpabuf_free(buf);
278
279 return res;
280}
281
282
283static int hostapd_ctrl_iface_wps_nfc_token_gen(struct hostapd_data *hapd,
284 char *reply, size_t max_len,
285 int ndef)
286{
287 struct wpabuf *buf;
288 int res;
289
290 buf = hostapd_wps_nfc_token_gen(hapd, ndef);
291 if (buf == NULL)
292 return -1;
293
294 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
295 wpabuf_len(buf));
296 reply[res++] = '\n';
297 reply[res] = '\0';
298
299 wpabuf_free(buf);
300
301 return res;
302}
303
304
305static int hostapd_ctrl_iface_wps_nfc_token(struct hostapd_data *hapd,
306 char *cmd, char *reply,
307 size_t max_len)
308{
309 if (os_strcmp(cmd, "WPS") == 0)
310 return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
311 max_len, 0);
312
313 if (os_strcmp(cmd, "NDEF") == 0)
314 return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
315 max_len, 1);
316
317 if (os_strcmp(cmd, "enable") == 0)
318 return hostapd_wps_nfc_token_enable(hapd);
319
320 if (os_strcmp(cmd, "disable") == 0) {
321 hostapd_wps_nfc_token_disable(hapd);
322 return 0;
323 }
324
325 return -1;
326}
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800327
328
329static int hostapd_ctrl_iface_nfc_get_handover_sel(struct hostapd_data *hapd,
330 char *cmd, char *reply,
331 size_t max_len)
332{
333 struct wpabuf *buf;
334 int res;
335 char *pos;
336 int ndef;
337
338 pos = os_strchr(cmd, ' ');
339 if (pos == NULL)
340 return -1;
341 *pos++ = '\0';
342
343 if (os_strcmp(cmd, "WPS") == 0)
344 ndef = 0;
345 else if (os_strcmp(cmd, "NDEF") == 0)
346 ndef = 1;
347 else
348 return -1;
349
350 if (os_strcmp(pos, "WPS-CR") == 0)
351 buf = hostapd_wps_nfc_hs_cr(hapd, ndef);
352 else
353 buf = NULL;
354 if (buf == NULL)
355 return -1;
356
357 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
358 wpabuf_len(buf));
359 reply[res++] = '\n';
360 reply[res] = '\0';
361
362 wpabuf_free(buf);
363
364 return res;
365}
366
367
368static int hostapd_ctrl_iface_nfc_report_handover(struct hostapd_data *hapd,
369 char *cmd)
370{
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800371 size_t len;
372 struct wpabuf *req, *sel;
373 int ret;
374 char *pos, *role, *type, *pos2;
375
376 role = cmd;
377 pos = os_strchr(role, ' ');
378 if (pos == NULL)
379 return -1;
380 *pos++ = '\0';
381
382 type = pos;
383 pos = os_strchr(type, ' ');
384 if (pos == NULL)
385 return -1;
386 *pos++ = '\0';
387
388 pos2 = os_strchr(pos, ' ');
389 if (pos2 == NULL)
390 return -1;
391 *pos2++ = '\0';
392
393 len = os_strlen(pos);
394 if (len & 0x01)
395 return -1;
396 len /= 2;
397
398 req = wpabuf_alloc(len);
399 if (req == NULL)
400 return -1;
401 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
402 wpabuf_free(req);
403 return -1;
404 }
405
406 len = os_strlen(pos2);
407 if (len & 0x01) {
408 wpabuf_free(req);
409 return -1;
410 }
411 len /= 2;
412
413 sel = wpabuf_alloc(len);
414 if (sel == NULL) {
415 wpabuf_free(req);
416 return -1;
417 }
418 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
419 wpabuf_free(req);
420 wpabuf_free(sel);
421 return -1;
422 }
423
424 if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0) {
425 ret = hostapd_wps_nfc_report_handover(hapd, req, sel);
426 } else {
427 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
428 "reported: role=%s type=%s", role, type);
429 ret = -1;
430 }
431 wpabuf_free(req);
432 wpabuf_free(sel);
433
434 return ret;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800435}
436
Dmitry Shmidt04949592012-07-19 12:16:46 -0700437#endif /* CONFIG_WPS_NFC */
438
439
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700440static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
441 char *buf, size_t buflen)
442{
443 int timeout = 300;
444 char *pos;
445 const char *pin_txt;
446
447 pos = os_strchr(txt, ' ');
448 if (pos)
449 *pos++ = '\0';
450
451 if (os_strcmp(txt, "disable") == 0) {
452 hostapd_wps_ap_pin_disable(hapd);
453 return os_snprintf(buf, buflen, "OK\n");
454 }
455
456 if (os_strcmp(txt, "random") == 0) {
457 if (pos)
458 timeout = atoi(pos);
459 pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
460 if (pin_txt == NULL)
461 return -1;
462 return os_snprintf(buf, buflen, "%s", pin_txt);
463 }
464
465 if (os_strcmp(txt, "get") == 0) {
466 pin_txt = hostapd_wps_ap_pin_get(hapd);
467 if (pin_txt == NULL)
468 return -1;
469 return os_snprintf(buf, buflen, "%s", pin_txt);
470 }
471
472 if (os_strcmp(txt, "set") == 0) {
473 char *pin;
474 if (pos == NULL)
475 return -1;
476 pin = pos;
477 pos = os_strchr(pos, ' ');
478 if (pos) {
479 *pos++ = '\0';
480 timeout = atoi(pos);
481 }
482 if (os_strlen(pin) > buflen)
483 return -1;
484 if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
485 return -1;
486 return os_snprintf(buf, buflen, "%s", pin);
487 }
488
489 return -1;
490}
491
492
493static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
494{
495 char *pos;
496 char *ssid, *auth, *encr = NULL, *key = NULL;
497
498 ssid = txt;
499 pos = os_strchr(txt, ' ');
500 if (!pos)
501 return -1;
502 *pos++ = '\0';
503
504 auth = pos;
505 pos = os_strchr(pos, ' ');
506 if (pos) {
507 *pos++ = '\0';
508 encr = pos;
509 pos = os_strchr(pos, ' ');
510 if (pos) {
511 *pos++ = '\0';
512 key = pos;
513 }
514 }
515
516 return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
517}
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700518
519
520static const char * pbc_status_str(enum pbc_status status)
521{
522 switch (status) {
523 case WPS_PBC_STATUS_DISABLE:
524 return "Disabled";
525 case WPS_PBC_STATUS_ACTIVE:
526 return "Active";
527 case WPS_PBC_STATUS_TIMEOUT:
528 return "Timed-out";
529 case WPS_PBC_STATUS_OVERLAP:
530 return "Overlap";
531 default:
532 return "Unknown";
533 }
534}
535
536
537static int hostapd_ctrl_iface_wps_get_status(struct hostapd_data *hapd,
538 char *buf, size_t buflen)
539{
540 int ret;
541 char *pos, *end;
542
543 pos = buf;
544 end = buf + buflen;
545
546 ret = os_snprintf(pos, end - pos, "PBC Status: %s\n",
547 pbc_status_str(hapd->wps_stats.pbc_status));
548
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800549 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700550 return pos - buf;
551 pos += ret;
552
553 ret = os_snprintf(pos, end - pos, "Last WPS result: %s\n",
554 (hapd->wps_stats.status == WPS_STATUS_SUCCESS ?
555 "Success":
556 (hapd->wps_stats.status == WPS_STATUS_FAILURE ?
557 "Failed" : "None")));
558
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800559 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700560 return pos - buf;
561 pos += ret;
562
563 /* If status == Failure - Add possible Reasons */
564 if(hapd->wps_stats.status == WPS_STATUS_FAILURE &&
565 hapd->wps_stats.failure_reason > 0) {
566 ret = os_snprintf(pos, end - pos,
567 "Failure Reason: %s\n",
568 wps_ei_str(hapd->wps_stats.failure_reason));
569
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800570 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700571 return pos - buf;
572 pos += ret;
573 }
574
575 if (hapd->wps_stats.status) {
576 ret = os_snprintf(pos, end - pos, "Peer Address: " MACSTR "\n",
577 MAC2STR(hapd->wps_stats.peer_addr));
578
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800579 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700580 return pos - buf;
581 pos += ret;
582 }
583
584 return pos - buf;
585}
586
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700587#endif /* CONFIG_WPS */
588
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800589#ifdef CONFIG_HS20
590
591static int hostapd_ctrl_iface_hs20_wnm_notif(struct hostapd_data *hapd,
592 const char *cmd)
593{
594 u8 addr[ETH_ALEN];
595 const char *url;
596
597 if (hwaddr_aton(cmd, addr))
598 return -1;
599 url = cmd + 17;
600 if (*url == '\0') {
601 url = NULL;
602 } else {
603 if (*url != ' ')
604 return -1;
605 url++;
606 if (*url == '\0')
607 url = NULL;
608 }
609
610 return hs20_send_wnm_notification(hapd, addr, 1, url);
611}
612
613
614static int hostapd_ctrl_iface_hs20_deauth_req(struct hostapd_data *hapd,
615 const char *cmd)
616{
617 u8 addr[ETH_ALEN];
618 int code, reauth_delay, ret;
619 const char *pos;
620 size_t url_len;
621 struct wpabuf *req;
622
623 /* <STA MAC Addr> <Code(0/1)> <Re-auth-Delay(sec)> [URL] */
624 if (hwaddr_aton(cmd, addr))
625 return -1;
626
627 pos = os_strchr(cmd, ' ');
628 if (pos == NULL)
629 return -1;
630 pos++;
631 code = atoi(pos);
632
633 pos = os_strchr(pos, ' ');
634 if (pos == NULL)
635 return -1;
636 pos++;
637 reauth_delay = atoi(pos);
638
639 url_len = 0;
640 pos = os_strchr(pos, ' ');
641 if (pos) {
642 pos++;
643 url_len = os_strlen(pos);
644 }
645
646 req = wpabuf_alloc(4 + url_len);
647 if (req == NULL)
648 return -1;
649 wpabuf_put_u8(req, code);
650 wpabuf_put_le16(req, reauth_delay);
651 wpabuf_put_u8(req, url_len);
652 if (pos)
653 wpabuf_put_data(req, pos, url_len);
654
655 wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification to " MACSTR
656 " to indicate imminent deauthentication (code=%d "
657 "reauth_delay=%d)", MAC2STR(addr), code, reauth_delay);
658 ret = hs20_send_wnm_notification_deauth_req(hapd, addr, req);
659 wpabuf_free(req);
660 return ret;
661}
662
663#endif /* CONFIG_HS20 */
664
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700665
Dmitry Shmidt051af732013-10-22 13:52:46 -0700666#ifdef CONFIG_INTERWORKING
667
668static int hostapd_ctrl_iface_set_qos_map_set(struct hostapd_data *hapd,
669 const char *cmd)
670{
671 u8 qos_map_set[16 + 2 * 21], count = 0;
672 const char *pos = cmd;
673 int val, ret;
674
675 for (;;) {
676 if (count == sizeof(qos_map_set)) {
677 wpa_printf(MSG_ERROR, "Too many qos_map_set parameters");
678 return -1;
679 }
680
681 val = atoi(pos);
682 if (val < 0 || val > 255) {
683 wpa_printf(MSG_INFO, "Invalid QoS Map Set");
684 return -1;
685 }
686
687 qos_map_set[count++] = val;
688 pos = os_strchr(pos, ',');
689 if (!pos)
690 break;
691 pos++;
692 }
693
694 if (count < 16 || count & 1) {
695 wpa_printf(MSG_INFO, "Invalid QoS Map Set");
696 return -1;
697 }
698
699 ret = hostapd_drv_set_qos_map(hapd, qos_map_set, count);
700 if (ret) {
701 wpa_printf(MSG_INFO, "Failed to set QoS Map Set");
702 return -1;
703 }
704
705 os_memcpy(hapd->conf->qos_map_set, qos_map_set, count);
706 hapd->conf->qos_map_set_len = count;
707
708 return 0;
709}
710
711
712static int hostapd_ctrl_iface_send_qos_map_conf(struct hostapd_data *hapd,
713 const char *cmd)
714{
715 u8 addr[ETH_ALEN];
716 struct sta_info *sta;
717 struct wpabuf *buf;
718 u8 *qos_map_set = hapd->conf->qos_map_set;
719 u8 qos_map_set_len = hapd->conf->qos_map_set_len;
720 int ret;
721
722 if (!qos_map_set_len) {
723 wpa_printf(MSG_INFO, "QoS Map Set is not set");
724 return -1;
725 }
726
727 if (hwaddr_aton(cmd, addr))
728 return -1;
729
730 sta = ap_get_sta(hapd, addr);
731 if (sta == NULL) {
732 wpa_printf(MSG_DEBUG, "Station " MACSTR " not found "
733 "for QoS Map Configuration message",
734 MAC2STR(addr));
735 return -1;
736 }
737
738 if (!sta->qos_map_enabled) {
739 wpa_printf(MSG_DEBUG, "Station " MACSTR " did not indicate "
740 "support for QoS Map", MAC2STR(addr));
741 return -1;
742 }
743
744 buf = wpabuf_alloc(2 + 2 + qos_map_set_len);
745 if (buf == NULL)
746 return -1;
747
748 wpabuf_put_u8(buf, WLAN_ACTION_QOS);
749 wpabuf_put_u8(buf, QOS_QOS_MAP_CONFIG);
750
751 /* QoS Map Set Element */
752 wpabuf_put_u8(buf, WLAN_EID_QOS_MAP_SET);
753 wpabuf_put_u8(buf, qos_map_set_len);
754 wpabuf_put_data(buf, qos_map_set, qos_map_set_len);
755
756 ret = hostapd_drv_send_action(hapd, hapd->iface->freq, 0, addr,
757 wpabuf_head(buf), wpabuf_len(buf));
758 wpabuf_free(buf);
759
760 return ret;
761}
762
763#endif /* CONFIG_INTERWORKING */
764
765
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800766#ifdef CONFIG_WNM
767
768static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
769 const char *cmd)
770{
771 u8 addr[ETH_ALEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800772 int disassoc_timer;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800773 struct sta_info *sta;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800774
775 if (hwaddr_aton(cmd, addr))
776 return -1;
777 if (cmd[17] != ' ')
778 return -1;
779 disassoc_timer = atoi(cmd + 17);
780
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800781 sta = ap_get_sta(hapd, addr);
782 if (sta == NULL) {
783 wpa_printf(MSG_DEBUG, "Station " MACSTR
784 " not found for disassociation imminent message",
785 MAC2STR(addr));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800786 return -1;
787 }
788
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800789 return wnm_send_disassoc_imminent(hapd, sta, disassoc_timer);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800790}
791
792
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800793static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
794 const char *cmd)
795{
796 u8 addr[ETH_ALEN];
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700797 const char *url, *timerstr;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700798 int disassoc_timer;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800799 struct sta_info *sta;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800800
801 if (hwaddr_aton(cmd, addr))
802 return -1;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700803
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800804 sta = ap_get_sta(hapd, addr);
805 if (sta == NULL) {
806 wpa_printf(MSG_DEBUG, "Station " MACSTR
807 " not found for ESS disassociation imminent message",
808 MAC2STR(addr));
809 return -1;
810 }
811
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700812 timerstr = cmd + 17;
813 if (*timerstr != ' ')
814 return -1;
815 timerstr++;
816 disassoc_timer = atoi(timerstr);
817 if (disassoc_timer < 0 || disassoc_timer > 65535)
818 return -1;
819
820 url = os_strchr(timerstr, ' ');
Dmitry Shmidt8bae4132013-06-06 11:25:10 -0700821 if (url == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800822 return -1;
823 url++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800824
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800825 return wnm_send_ess_disassoc_imminent(hapd, sta, url, disassoc_timer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800826}
827
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800828
829static int hostapd_ctrl_iface_bss_tm_req(struct hostapd_data *hapd,
830 const char *cmd)
831{
832 u8 addr[ETH_ALEN];
833 const char *pos, *end;
834 int disassoc_timer = 0;
835 struct sta_info *sta;
836 u8 req_mode = 0, valid_int = 0x01;
837 u8 bss_term_dur[12];
838 char *url = NULL;
839 int ret;
840 u8 nei_rep[1000];
841 u8 *nei_pos = nei_rep;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800842 u8 mbo[10];
843 size_t mbo_len = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800844
845 if (hwaddr_aton(cmd, addr)) {
846 wpa_printf(MSG_DEBUG, "Invalid STA MAC address");
847 return -1;
848 }
849
850 sta = ap_get_sta(hapd, addr);
851 if (sta == NULL) {
852 wpa_printf(MSG_DEBUG, "Station " MACSTR
853 " not found for BSS TM Request message",
854 MAC2STR(addr));
855 return -1;
856 }
857
858 pos = os_strstr(cmd, " disassoc_timer=");
859 if (pos) {
860 pos += 16;
861 disassoc_timer = atoi(pos);
862 if (disassoc_timer < 0 || disassoc_timer > 65535) {
863 wpa_printf(MSG_DEBUG, "Invalid disassoc_timer");
864 return -1;
865 }
866 }
867
868 pos = os_strstr(cmd, " valid_int=");
869 if (pos) {
870 pos += 11;
871 valid_int = atoi(pos);
872 }
873
874 pos = os_strstr(cmd, " bss_term=");
875 if (pos) {
876 pos += 10;
877 req_mode |= WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED;
878 /* TODO: TSF configurable/learnable */
879 bss_term_dur[0] = 4; /* Subelement ID */
880 bss_term_dur[1] = 10; /* Length */
881 os_memset(bss_term_dur, 2, 8);
882 end = os_strchr(pos, ',');
883 if (end == NULL) {
884 wpa_printf(MSG_DEBUG, "Invalid bss_term data");
885 return -1;
886 }
887 end++;
888 WPA_PUT_LE16(&bss_term_dur[10], atoi(end));
889 }
890
891
892 /*
893 * BSS Transition Candidate List Entries - Neighbor Report elements
894 * neighbor=<BSSID>,<BSSID Information>,<Operating Class>,
895 * <Channel Number>,<PHY Type>[,<hexdump of Optional Subelements>]
896 */
897 pos = cmd;
898 while (pos) {
899 u8 *nei_start;
900 long int val;
901 char *endptr, *tmp;
902
903 pos = os_strstr(pos, " neighbor=");
904 if (!pos)
905 break;
906 if (nei_pos + 15 > nei_rep + sizeof(nei_rep)) {
907 wpa_printf(MSG_DEBUG,
908 "Not enough room for additional neighbor");
909 return -1;
910 }
911 pos += 10;
912
913 nei_start = nei_pos;
914 *nei_pos++ = WLAN_EID_NEIGHBOR_REPORT;
915 nei_pos++; /* length to be filled in */
916
917 if (hwaddr_aton(pos, nei_pos)) {
918 wpa_printf(MSG_DEBUG, "Invalid BSSID");
919 return -1;
920 }
921 nei_pos += ETH_ALEN;
922 pos += 17;
923 if (*pos != ',') {
924 wpa_printf(MSG_DEBUG, "Missing BSSID Information");
925 return -1;
926 }
927 pos++;
928
929 val = strtol(pos, &endptr, 0);
930 WPA_PUT_LE32(nei_pos, val);
931 nei_pos += 4;
932 if (*endptr != ',') {
933 wpa_printf(MSG_DEBUG, "Missing Operating Class");
934 return -1;
935 }
936 pos = endptr + 1;
937
938 *nei_pos++ = atoi(pos); /* Operating Class */
939 pos = os_strchr(pos, ',');
940 if (pos == NULL) {
941 wpa_printf(MSG_DEBUG, "Missing Channel Number");
942 return -1;
943 }
944 pos++;
945
946 *nei_pos++ = atoi(pos); /* Channel Number */
947 pos = os_strchr(pos, ',');
948 if (pos == NULL) {
949 wpa_printf(MSG_DEBUG, "Missing PHY Type");
950 return -1;
951 }
952 pos++;
953
954 *nei_pos++ = atoi(pos); /* PHY Type */
955 end = os_strchr(pos, ' ');
956 tmp = os_strchr(pos, ',');
957 if (tmp && (!end || tmp < end)) {
958 /* Optional Subelements (hexdump) */
959 size_t len;
960
961 pos = tmp + 1;
962 end = os_strchr(pos, ' ');
963 if (end)
964 len = end - pos;
965 else
966 len = os_strlen(pos);
967 if (nei_pos + len / 2 > nei_rep + sizeof(nei_rep)) {
968 wpa_printf(MSG_DEBUG,
969 "Not enough room for neighbor subelements");
970 return -1;
971 }
972 if (len & 0x01 ||
973 hexstr2bin(pos, nei_pos, len / 2) < 0) {
974 wpa_printf(MSG_DEBUG,
975 "Invalid neighbor subelement info");
976 return -1;
977 }
978 nei_pos += len / 2;
979 pos = end;
980 }
981
982 nei_start[1] = nei_pos - nei_start - 2;
983 }
984
985 pos = os_strstr(cmd, " url=");
986 if (pos) {
987 size_t len;
988 pos += 5;
989 end = os_strchr(pos, ' ');
990 if (end)
991 len = end - pos;
992 else
993 len = os_strlen(pos);
994 url = os_malloc(len + 1);
995 if (url == NULL)
996 return -1;
997 os_memcpy(url, pos, len);
998 url[len] = '\0';
999 req_mode |= WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT;
1000 }
1001
1002 if (os_strstr(cmd, " pref=1"))
1003 req_mode |= WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED;
1004 if (os_strstr(cmd, " abridged=1"))
1005 req_mode |= WNM_BSS_TM_REQ_ABRIDGED;
1006 if (os_strstr(cmd, " disassoc_imminent=1"))
1007 req_mode |= WNM_BSS_TM_REQ_DISASSOC_IMMINENT;
1008
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001009#ifdef CONFIG_MBO
1010 pos = os_strstr(cmd, "mbo=");
1011 if (pos) {
1012 unsigned int mbo_reason, cell_pref, reassoc_delay;
1013 u8 *mbo_pos = mbo;
1014
1015 ret = sscanf(pos, "mbo=%u:%u:%u", &mbo_reason,
1016 &reassoc_delay, &cell_pref);
1017 if (ret != 3) {
1018 wpa_printf(MSG_DEBUG,
1019 "MBO requires three arguments: mbo=<reason>:<reassoc_delay>:<cell_pref>");
1020 return -1;
1021 }
1022
1023 if (mbo_reason > MBO_TRANSITION_REASON_PREMIUM_AP) {
1024 wpa_printf(MSG_DEBUG,
1025 "Invalid MBO transition reason code %u",
1026 mbo_reason);
1027 return -1;
1028 }
1029
1030 /* Valid values for Cellular preference are: 0, 1, 255 */
1031 if (cell_pref != 0 && cell_pref != 1 && cell_pref != 255) {
1032 wpa_printf(MSG_DEBUG,
1033 "Invalid MBO cellular capability %u",
1034 cell_pref);
1035 return -1;
1036 }
1037
1038 if (reassoc_delay > 65535 ||
1039 (reassoc_delay &&
1040 !(req_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT))) {
1041 wpa_printf(MSG_DEBUG,
1042 "MBO: Assoc retry delay is only valid in disassoc imminent mode");
1043 return -1;
1044 }
1045
1046 *mbo_pos++ = MBO_ATTR_ID_TRANSITION_REASON;
1047 *mbo_pos++ = 1;
1048 *mbo_pos++ = mbo_reason;
1049 *mbo_pos++ = MBO_ATTR_ID_CELL_DATA_PREF;
1050 *mbo_pos++ = 1;
1051 *mbo_pos++ = cell_pref;
1052
1053 if (reassoc_delay) {
1054 *mbo_pos++ = MBO_ATTR_ID_ASSOC_RETRY_DELAY;
1055 *mbo_pos++ = 2;
1056 WPA_PUT_LE16(mbo_pos, reassoc_delay);
1057 mbo_pos += 2;
1058 }
1059
1060 mbo_len = mbo_pos - mbo;
1061 }
1062#endif /* CONFIG_MBO */
1063
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001064 ret = wnm_send_bss_tm_req(hapd, sta, req_mode, disassoc_timer,
1065 valid_int, bss_term_dur, url,
1066 nei_pos > nei_rep ? nei_rep : NULL,
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001067 nei_pos - nei_rep, mbo_len ? mbo : NULL,
1068 mbo_len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001069 os_free(url);
1070 return ret;
1071}
1072
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001073#endif /* CONFIG_WNM */
1074
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001075
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001076static int hostapd_ctrl_iface_get_key_mgmt(struct hostapd_data *hapd,
1077 char *buf, size_t buflen)
1078{
1079 int ret = 0;
1080 char *pos, *end;
1081
1082 pos = buf;
1083 end = buf + buflen;
1084
1085 WPA_ASSERT(hapd->conf->wpa_key_mgmt);
1086
1087 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
1088 ret = os_snprintf(pos, end - pos, "WPA-PSK ");
1089 if (os_snprintf_error(end - pos, ret))
1090 return pos - buf;
1091 pos += ret;
1092 }
1093 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
1094 ret = os_snprintf(pos, end - pos, "WPA-EAP ");
1095 if (os_snprintf_error(end - pos, ret))
1096 return pos - buf;
1097 pos += ret;
1098 }
1099#ifdef CONFIG_IEEE80211R
1100 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
1101 ret = os_snprintf(pos, end - pos, "FT-PSK ");
1102 if (os_snprintf_error(end - pos, ret))
1103 return pos - buf;
1104 pos += ret;
1105 }
1106 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
1107 ret = os_snprintf(pos, end - pos, "FT-EAP ");
1108 if (os_snprintf_error(end - pos, ret))
1109 return pos - buf;
1110 pos += ret;
1111 }
1112#ifdef CONFIG_SAE
1113 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_SAE) {
1114 ret = os_snprintf(pos, end - pos, "FT-SAE ");
1115 if (os_snprintf_error(end - pos, ret))
1116 return pos - buf;
1117 pos += ret;
1118 }
1119#endif /* CONFIG_SAE */
1120#endif /* CONFIG_IEEE80211R */
1121#ifdef CONFIG_IEEE80211W
1122 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
1123 ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
1124 if (os_snprintf_error(end - pos, ret))
1125 return pos - buf;
1126 pos += ret;
1127 }
1128 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
1129 ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
1130 if (os_snprintf_error(end - pos, ret))
1131 return pos - buf;
1132 pos += ret;
1133 }
1134#endif /* CONFIG_IEEE80211W */
1135#ifdef CONFIG_SAE
1136 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_SAE) {
1137 ret = os_snprintf(pos, end - pos, "SAE ");
1138 if (os_snprintf_error(end - pos, ret))
1139 return pos - buf;
1140 pos += ret;
1141 }
1142#endif /* CONFIG_SAE */
1143 if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
1144 ret = os_snprintf(pos, end - pos, "WPA-EAP-SUITE-B ");
1145 if (os_snprintf_error(end - pos, ret))
1146 return pos - buf;
1147 pos += ret;
1148 }
1149 if (hapd->conf->wpa_key_mgmt &
1150 WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
1151 ret = os_snprintf(pos, end - pos,
1152 "WPA-EAP-SUITE-B-192 ");
1153 if (os_snprintf_error(end - pos, ret))
1154 return pos - buf;
1155 pos += ret;
1156 }
1157
1158 if (pos > buf && *(pos - 1) == ' ') {
1159 *(pos - 1) = '\0';
1160 pos--;
1161 }
1162
1163 return pos - buf;
1164}
1165
1166
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001167static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
1168 char *buf, size_t buflen)
1169{
1170 int ret;
1171 char *pos, *end;
1172
1173 pos = buf;
1174 end = buf + buflen;
1175
1176 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
1177 "ssid=%s\n",
1178 MAC2STR(hapd->own_addr),
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001179 wpa_ssid_txt(hapd->conf->ssid.ssid,
1180 hapd->conf->ssid.ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001181 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001182 return pos - buf;
1183 pos += ret;
1184
1185#ifdef CONFIG_WPS
1186 ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
1187 hapd->conf->wps_state == 0 ? "disabled" :
1188 (hapd->conf->wps_state == 1 ? "not configured" :
1189 "configured"));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001190 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001191 return pos - buf;
1192 pos += ret;
1193
1194 if (hapd->conf->wps_state && hapd->conf->wpa &&
1195 hapd->conf->ssid.wpa_passphrase) {
1196 ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
1197 hapd->conf->ssid.wpa_passphrase);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001198 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001199 return pos - buf;
1200 pos += ret;
1201 }
1202
1203 if (hapd->conf->wps_state && hapd->conf->wpa &&
1204 hapd->conf->ssid.wpa_psk &&
1205 hapd->conf->ssid.wpa_psk->group) {
1206 char hex[PMK_LEN * 2 + 1];
1207 wpa_snprintf_hex(hex, sizeof(hex),
1208 hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
1209 ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001210 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001211 return pos - buf;
1212 pos += ret;
1213 }
1214#endif /* CONFIG_WPS */
1215
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001216 if (hapd->conf->wpa) {
1217 ret = os_snprintf(pos, end - pos, "wpa=%d\n", hapd->conf->wpa);
1218 if (os_snprintf_error(end - pos, ret))
1219 return pos - buf;
1220 pos += ret;
1221 }
1222
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001223 if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
1224 ret = os_snprintf(pos, end - pos, "key_mgmt=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001225 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001226 return pos - buf;
1227 pos += ret;
1228
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001229 pos += hostapd_ctrl_iface_get_key_mgmt(hapd, pos, end - pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001230
1231 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001232 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001233 return pos - buf;
1234 pos += ret;
1235 }
1236
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001237 if (hapd->conf->wpa) {
1238 ret = os_snprintf(pos, end - pos, "group_cipher=%s\n",
1239 wpa_cipher_txt(hapd->conf->wpa_group));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001240 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001241 return pos - buf;
1242 pos += ret;
1243 }
1244
1245 if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
1246 ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001247 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001248 return pos - buf;
1249 pos += ret;
1250
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001251 ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise,
1252 " ");
1253 if (ret < 0)
1254 return pos - buf;
1255 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001256
1257 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001258 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001259 return pos - buf;
1260 pos += ret;
1261 }
1262
1263 if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
1264 ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001265 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001266 return pos - buf;
1267 pos += ret;
1268
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001269 ret = wpa_write_ciphers(pos, end, hapd->conf->wpa_pairwise,
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001270 " ");
1271 if (ret < 0)
1272 return pos - buf;
1273 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001274
1275 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001276 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001277 return pos - buf;
1278 pos += ret;
1279 }
1280
1281 return pos - buf;
1282}
1283
1284
1285static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
1286{
1287 char *value;
1288 int ret = 0;
1289
1290 value = os_strchr(cmd, ' ');
1291 if (value == NULL)
1292 return -1;
1293 *value++ = '\0';
1294
1295 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
1296 if (0) {
1297#ifdef CONFIG_WPS_TESTING
1298 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
1299 long int val;
1300 val = strtol(value, NULL, 0);
1301 if (val < 0 || val > 0xff) {
1302 ret = -1;
1303 wpa_printf(MSG_DEBUG, "WPS: Invalid "
1304 "wps_version_number %ld", val);
1305 } else {
1306 wps_version_number = val;
1307 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
1308 "version %u.%u",
1309 (wps_version_number & 0xf0) >> 4,
1310 wps_version_number & 0x0f);
1311 hostapd_wps_update_ie(hapd);
1312 }
1313 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
1314 wps_testing_dummy_cred = atoi(value);
1315 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
1316 wps_testing_dummy_cred);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001317 } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
1318 wps_corrupt_pkhash = atoi(value);
1319 wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
1320 wps_corrupt_pkhash);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001321#endif /* CONFIG_WPS_TESTING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001322#ifdef CONFIG_INTERWORKING
1323 } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
1324 int val = atoi(value);
1325 if (val <= 0)
1326 ret = -1;
1327 else
1328 hapd->gas_frag_limit = val;
1329#endif /* CONFIG_INTERWORKING */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001330#ifdef CONFIG_TESTING_OPTIONS
1331 } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
1332 hapd->ext_mgmt_frame_handling = atoi(value);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001333 } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
1334 hapd->ext_eapol_frame_io = atoi(value);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001335#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001336#ifdef CONFIG_MBO
1337 } else if (os_strcasecmp(cmd, "mbo_assoc_disallow") == 0) {
1338 int val;
1339
1340 if (!hapd->conf->mbo_enabled)
1341 return -1;
1342
1343 val = atoi(value);
1344 if (val < 0 || val > 1)
1345 return -1;
1346
1347 hapd->mbo_assoc_disallow = val;
1348 ieee802_11_update_beacons(hapd->iface);
1349
1350 /*
1351 * TODO: Need to configure drivers that do AP MLME offload with
1352 * disallowing station logic.
1353 */
1354#endif /* CONFIG_MBO */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001355 } else {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001356 struct sta_info *sta;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001357 struct vlan_description vlan_id;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001358
Dmitry Shmidt04949592012-07-19 12:16:46 -07001359 ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001360 if (ret)
1361 return ret;
1362
1363 if (os_strcasecmp(cmd, "deny_mac_file") == 0) {
1364 for (sta = hapd->sta_list; sta; sta = sta->next) {
1365 if (hostapd_maclist_found(
1366 hapd->conf->deny_mac,
1367 hapd->conf->num_deny_mac, sta->addr,
1368 &vlan_id) &&
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001369 (!vlan_id.notempty ||
1370 !vlan_compare(&vlan_id, sta->vlan_desc)))
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001371 ap_sta_disconnect(
1372 hapd, sta, sta->addr,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001373 WLAN_REASON_UNSPECIFIED);
1374 }
1375 } else if (hapd->conf->macaddr_acl == DENY_UNLESS_ACCEPTED &&
1376 os_strcasecmp(cmd, "accept_mac_file") == 0) {
1377 for (sta = hapd->sta_list; sta; sta = sta->next) {
1378 if (!hostapd_maclist_found(
1379 hapd->conf->accept_mac,
1380 hapd->conf->num_accept_mac,
1381 sta->addr, &vlan_id) ||
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001382 (vlan_id.notempty &&
1383 vlan_compare(&vlan_id, sta->vlan_desc)))
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001384 ap_sta_disconnect(
1385 hapd, sta, sta->addr,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001386 WLAN_REASON_UNSPECIFIED);
1387 }
1388 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001389 }
1390
1391 return ret;
1392}
1393
1394
1395static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
1396 char *buf, size_t buflen)
1397{
1398 int res;
1399
1400 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
1401
1402 if (os_strcmp(cmd, "version") == 0) {
1403 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001404 if (os_snprintf_error(buflen, res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001405 return -1;
1406 return res;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001407 } else if (os_strcmp(cmd, "tls_library") == 0) {
1408 res = tls_get_library_version(buf, buflen);
1409 if (os_snprintf_error(buflen, res))
1410 return -1;
1411 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001412 }
1413
1414 return -1;
1415}
1416
1417
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001418static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
1419{
1420 if (hostapd_enable_iface(iface) < 0) {
1421 wpa_printf(MSG_ERROR, "Enabling of interface failed");
1422 return -1;
1423 }
1424 return 0;
1425}
1426
1427
1428static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
1429{
1430 if (hostapd_reload_iface(iface) < 0) {
1431 wpa_printf(MSG_ERROR, "Reloading of interface failed");
1432 return -1;
1433 }
1434 return 0;
1435}
1436
1437
1438static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
1439{
1440 if (hostapd_disable_iface(iface) < 0) {
1441 wpa_printf(MSG_ERROR, "Disabling of interface failed");
1442 return -1;
1443 }
1444 return 0;
1445}
1446
1447
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001448#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001449
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001450static int hostapd_ctrl_iface_radar(struct hostapd_data *hapd, char *cmd)
1451{
1452 union wpa_event_data data;
1453 char *pos, *param;
1454 enum wpa_event_type event;
1455
1456 wpa_printf(MSG_DEBUG, "RADAR TEST: %s", cmd);
1457
1458 os_memset(&data, 0, sizeof(data));
1459
1460 param = os_strchr(cmd, ' ');
1461 if (param == NULL)
1462 return -1;
1463 *param++ = '\0';
1464
1465 if (os_strcmp(cmd, "DETECTED") == 0)
1466 event = EVENT_DFS_RADAR_DETECTED;
1467 else if (os_strcmp(cmd, "CAC-FINISHED") == 0)
1468 event = EVENT_DFS_CAC_FINISHED;
1469 else if (os_strcmp(cmd, "CAC-ABORTED") == 0)
1470 event = EVENT_DFS_CAC_ABORTED;
1471 else if (os_strcmp(cmd, "NOP-FINISHED") == 0)
1472 event = EVENT_DFS_NOP_FINISHED;
1473 else {
1474 wpa_printf(MSG_DEBUG, "Unsupported RADAR test command: %s",
1475 cmd);
1476 return -1;
1477 }
1478
1479 pos = os_strstr(param, "freq=");
1480 if (pos)
1481 data.dfs_event.freq = atoi(pos + 5);
1482
1483 pos = os_strstr(param, "ht_enabled=1");
1484 if (pos)
1485 data.dfs_event.ht_enabled = 1;
1486
1487 pos = os_strstr(param, "chan_offset=");
1488 if (pos)
1489 data.dfs_event.chan_offset = atoi(pos + 12);
1490
1491 pos = os_strstr(param, "chan_width=");
1492 if (pos)
1493 data.dfs_event.chan_width = atoi(pos + 11);
1494
1495 pos = os_strstr(param, "cf1=");
1496 if (pos)
1497 data.dfs_event.cf1 = atoi(pos + 4);
1498
1499 pos = os_strstr(param, "cf2=");
1500 if (pos)
1501 data.dfs_event.cf2 = atoi(pos + 4);
1502
1503 wpa_supplicant_event(hapd, event, &data);
1504
1505 return 0;
1506}
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001507
1508
1509static int hostapd_ctrl_iface_mgmt_tx(struct hostapd_data *hapd, char *cmd)
1510{
1511 size_t len;
1512 u8 *buf;
1513 int res;
1514
1515 wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
1516
1517 len = os_strlen(cmd);
1518 if (len & 1)
1519 return -1;
1520 len /= 2;
1521
1522 buf = os_malloc(len);
1523 if (buf == NULL)
1524 return -1;
1525
1526 if (hexstr2bin(cmd, buf, len) < 0) {
1527 os_free(buf);
1528 return -1;
1529 }
1530
1531 res = hostapd_drv_send_mlme(hapd, buf, len, 0);
1532 os_free(buf);
1533 return res;
1534}
1535
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001536
1537static int hostapd_ctrl_iface_eapol_rx(struct hostapd_data *hapd, char *cmd)
1538{
1539 char *pos;
1540 u8 src[ETH_ALEN], *buf;
1541 int used;
1542 size_t len;
1543
1544 wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
1545
1546 pos = cmd;
1547 used = hwaddr_aton2(pos, src);
1548 if (used < 0)
1549 return -1;
1550 pos += used;
1551 while (*pos == ' ')
1552 pos++;
1553
1554 len = os_strlen(pos);
1555 if (len & 1)
1556 return -1;
1557 len /= 2;
1558
1559 buf = os_malloc(len);
1560 if (buf == NULL)
1561 return -1;
1562
1563 if (hexstr2bin(pos, buf, len) < 0) {
1564 os_free(buf);
1565 return -1;
1566 }
1567
1568 ieee802_1x_receive(hapd, src, buf, len);
1569 os_free(buf);
1570
1571 return 0;
1572}
1573
1574
1575static u16 ipv4_hdr_checksum(const void *buf, size_t len)
1576{
1577 size_t i;
1578 u32 sum = 0;
1579 const u16 *pos = buf;
1580
1581 for (i = 0; i < len / 2; i++)
1582 sum += *pos++;
1583
1584 while (sum >> 16)
1585 sum = (sum & 0xffff) + (sum >> 16);
1586
1587 return sum ^ 0xffff;
1588}
1589
1590
1591#define HWSIM_PACKETLEN 1500
1592#define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
1593
Dmitry Shmidt4ae50e62016-06-27 13:48:39 -07001594static void hostapd_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf,
1595 size_t len)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001596{
1597 struct hostapd_data *hapd = ctx;
1598 const struct ether_header *eth;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001599 struct iphdr ip;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001600 const u8 *pos;
1601 unsigned int i;
1602
1603 if (len != HWSIM_PACKETLEN)
1604 return;
1605
1606 eth = (const struct ether_header *) buf;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001607 os_memcpy(&ip, eth + 1, sizeof(ip));
1608 pos = &buf[sizeof(*eth) + sizeof(ip)];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001609
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001610 if (ip.ihl != 5 || ip.version != 4 ||
1611 ntohs(ip.tot_len) != HWSIM_IP_LEN)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001612 return;
1613
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001614 for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001615 if (*pos != (u8) i)
1616 return;
1617 pos++;
1618 }
1619
1620 wpa_msg(hapd->msg_ctx, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
1621 MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
1622}
1623
1624
1625static int hostapd_ctrl_iface_data_test_config(struct hostapd_data *hapd,
1626 char *cmd)
1627{
1628 int enabled = atoi(cmd);
1629 char *pos;
1630 const char *ifname;
1631
1632 if (!enabled) {
1633 if (hapd->l2_test) {
1634 l2_packet_deinit(hapd->l2_test);
1635 hapd->l2_test = NULL;
1636 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
1637 "test data: Disabled");
1638 }
1639 return 0;
1640 }
1641
1642 if (hapd->l2_test)
1643 return 0;
1644
1645 pos = os_strstr(cmd, " ifname=");
1646 if (pos)
1647 ifname = pos + 8;
1648 else
1649 ifname = hapd->conf->iface;
1650
1651 hapd->l2_test = l2_packet_init(ifname, hapd->own_addr,
1652 ETHERTYPE_IP, hostapd_data_test_rx,
1653 hapd, 1);
1654 if (hapd->l2_test == NULL)
1655 return -1;
1656
1657 wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: Enabled");
1658
1659 return 0;
1660}
1661
1662
1663static int hostapd_ctrl_iface_data_test_tx(struct hostapd_data *hapd, char *cmd)
1664{
1665 u8 dst[ETH_ALEN], src[ETH_ALEN];
1666 char *pos;
1667 int used;
1668 long int val;
1669 u8 tos;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001670 u8 buf[2 + HWSIM_PACKETLEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001671 struct ether_header *eth;
1672 struct iphdr *ip;
1673 u8 *dpos;
1674 unsigned int i;
1675
1676 if (hapd->l2_test == NULL)
1677 return -1;
1678
1679 /* format: <dst> <src> <tos> */
1680
1681 pos = cmd;
1682 used = hwaddr_aton2(pos, dst);
1683 if (used < 0)
1684 return -1;
1685 pos += used;
1686 while (*pos == ' ')
1687 pos++;
1688 used = hwaddr_aton2(pos, src);
1689 if (used < 0)
1690 return -1;
1691 pos += used;
1692
1693 val = strtol(pos, NULL, 0);
1694 if (val < 0 || val > 0xff)
1695 return -1;
1696 tos = val;
1697
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001698 eth = (struct ether_header *) &buf[2];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001699 os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
1700 os_memcpy(eth->ether_shost, src, ETH_ALEN);
1701 eth->ether_type = htons(ETHERTYPE_IP);
1702 ip = (struct iphdr *) (eth + 1);
1703 os_memset(ip, 0, sizeof(*ip));
1704 ip->ihl = 5;
1705 ip->version = 4;
1706 ip->ttl = 64;
1707 ip->tos = tos;
1708 ip->tot_len = htons(HWSIM_IP_LEN);
1709 ip->protocol = 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001710 ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
1711 ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001712 ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
1713 dpos = (u8 *) (ip + 1);
1714 for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
1715 *dpos++ = i;
1716
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001717 if (l2_packet_send(hapd->l2_test, dst, ETHERTYPE_IP, &buf[2],
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001718 HWSIM_PACKETLEN) < 0)
1719 return -1;
1720
1721 wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX dst=" MACSTR
1722 " src=" MACSTR " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
1723
1724 return 0;
1725}
1726
1727
1728static int hostapd_ctrl_iface_data_test_frame(struct hostapd_data *hapd,
1729 char *cmd)
1730{
1731 u8 *buf;
1732 struct ether_header *eth;
1733 struct l2_packet_data *l2 = NULL;
1734 size_t len;
1735 u16 ethertype;
1736 int res = -1;
1737 const char *ifname = hapd->conf->iface;
1738
1739 if (os_strncmp(cmd, "ifname=", 7) == 0) {
1740 cmd += 7;
1741 ifname = cmd;
1742 cmd = os_strchr(cmd, ' ');
1743 if (cmd == NULL)
1744 return -1;
1745 *cmd++ = '\0';
1746 }
1747
1748 len = os_strlen(cmd);
1749 if (len & 1 || len < ETH_HLEN * 2)
1750 return -1;
1751 len /= 2;
1752
1753 buf = os_malloc(len);
1754 if (buf == NULL)
1755 return -1;
1756
1757 if (hexstr2bin(cmd, buf, len) < 0)
1758 goto done;
1759
1760 eth = (struct ether_header *) buf;
1761 ethertype = ntohs(eth->ether_type);
1762
1763 l2 = l2_packet_init(ifname, hapd->own_addr, ethertype,
1764 hostapd_data_test_rx, hapd, 1);
1765 if (l2 == NULL)
1766 goto done;
1767
1768 res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
1769 wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX frame res=%d", res);
1770done:
1771 if (l2)
1772 l2_packet_deinit(l2);
1773 os_free(buf);
1774
1775 return res < 0 ? -1 : 0;
1776}
1777
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001778
1779static int hostapd_ctrl_test_alloc_fail(struct hostapd_data *hapd, char *cmd)
1780{
1781#ifdef WPA_TRACE_BFD
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001782 char *pos;
1783
1784 wpa_trace_fail_after = atoi(cmd);
1785 pos = os_strchr(cmd, ':');
1786 if (pos) {
1787 pos++;
1788 os_strlcpy(wpa_trace_fail_func, pos,
1789 sizeof(wpa_trace_fail_func));
1790 } else {
1791 wpa_trace_fail_after = 0;
1792 }
1793
1794 return 0;
1795#else /* WPA_TRACE_BFD */
1796 return -1;
1797#endif /* WPA_TRACE_BFD */
1798}
1799
1800
1801static int hostapd_ctrl_get_alloc_fail(struct hostapd_data *hapd,
1802 char *buf, size_t buflen)
1803{
1804#ifdef WPA_TRACE_BFD
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001805 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
1806 wpa_trace_fail_func);
1807#else /* WPA_TRACE_BFD */
1808 return -1;
1809#endif /* WPA_TRACE_BFD */
1810}
1811
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001812
1813static int hostapd_ctrl_test_fail(struct hostapd_data *hapd, char *cmd)
1814{
1815#ifdef WPA_TRACE_BFD
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001816 char *pos;
1817
1818 wpa_trace_test_fail_after = atoi(cmd);
1819 pos = os_strchr(cmd, ':');
1820 if (pos) {
1821 pos++;
1822 os_strlcpy(wpa_trace_test_fail_func, pos,
1823 sizeof(wpa_trace_test_fail_func));
1824 } else {
1825 wpa_trace_test_fail_after = 0;
1826 }
1827
1828 return 0;
1829#else /* WPA_TRACE_BFD */
1830 return -1;
1831#endif /* WPA_TRACE_BFD */
1832}
1833
1834
1835static int hostapd_ctrl_get_fail(struct hostapd_data *hapd,
1836 char *buf, size_t buflen)
1837{
1838#ifdef WPA_TRACE_BFD
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001839 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
1840 wpa_trace_test_fail_func);
1841#else /* WPA_TRACE_BFD */
1842 return -1;
1843#endif /* WPA_TRACE_BFD */
1844}
1845
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001846#endif /* CONFIG_TESTING_OPTIONS */
1847
1848
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001849static int hostapd_ctrl_iface_chan_switch(struct hostapd_iface *iface,
1850 char *pos)
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001851{
1852#ifdef NEED_AP_MLME
1853 struct csa_settings settings;
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001854 int ret;
1855 unsigned int i;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001856
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001857 ret = hostapd_parse_csa_settings(pos, &settings);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001858 if (ret)
1859 return ret;
1860
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001861 for (i = 0; i < iface->num_bss; i++) {
1862 ret = hostapd_switch_channel(iface->bss[i], &settings);
1863 if (ret) {
1864 /* FIX: What do we do if CSA fails in the middle of
1865 * submitting multi-BSS CSA requests? */
1866 return ret;
1867 }
1868 }
1869
1870 return 0;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001871#else /* NEED_AP_MLME */
1872 return -1;
1873#endif /* NEED_AP_MLME */
1874}
1875
1876
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001877static int hostapd_ctrl_iface_mib(struct hostapd_data *hapd, char *reply,
1878 int reply_size, const char *param)
1879{
1880#ifdef RADIUS_SERVER
1881 if (os_strcmp(param, "radius_server") == 0) {
1882 return radius_server_get_mib(hapd->radius_srv, reply,
1883 reply_size);
1884 }
1885#endif /* RADIUS_SERVER */
1886 return -1;
1887}
1888
1889
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001890static int hostapd_ctrl_iface_vendor(struct hostapd_data *hapd, char *cmd,
1891 char *buf, size_t buflen)
1892{
1893 int ret;
1894 char *pos;
1895 u8 *data = NULL;
1896 unsigned int vendor_id, subcmd;
1897 struct wpabuf *reply;
1898 size_t data_len = 0;
1899
1900 /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
1901 vendor_id = strtoul(cmd, &pos, 16);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001902 if (!isblank((unsigned char) *pos))
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001903 return -EINVAL;
1904
1905 subcmd = strtoul(pos, &pos, 10);
1906
1907 if (*pos != '\0') {
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001908 if (!isblank((unsigned char) *pos++))
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001909 return -EINVAL;
1910 data_len = os_strlen(pos);
1911 }
1912
1913 if (data_len) {
1914 data_len /= 2;
1915 data = os_malloc(data_len);
1916 if (!data)
1917 return -ENOBUFS;
1918
1919 if (hexstr2bin(pos, data, data_len)) {
1920 wpa_printf(MSG_DEBUG,
1921 "Vendor command: wrong parameter format");
1922 os_free(data);
1923 return -EINVAL;
1924 }
1925 }
1926
1927 reply = wpabuf_alloc((buflen - 1) / 2);
1928 if (!reply) {
1929 os_free(data);
1930 return -ENOBUFS;
1931 }
1932
1933 ret = hostapd_drv_vendor_cmd(hapd, vendor_id, subcmd, data, data_len,
1934 reply);
1935
1936 if (ret == 0)
1937 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
1938 wpabuf_len(reply));
1939
1940 wpabuf_free(reply);
1941 os_free(data);
1942
1943 return ret;
1944}
1945
1946
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001947static int hostapd_ctrl_iface_eapol_reauth(struct hostapd_data *hapd,
1948 const char *cmd)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001949{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001950 u8 addr[ETH_ALEN];
1951 struct sta_info *sta;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001952
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001953 if (hwaddr_aton(cmd, addr))
1954 return -1;
1955
1956 sta = ap_get_sta(hapd, addr);
1957 if (!sta || !sta->eapol_sm)
1958 return -1;
1959
1960 eapol_auth_reauthenticate(sta->eapol_sm);
1961 return 0;
1962}
1963
1964
1965static int hostapd_ctrl_iface_eapol_set(struct hostapd_data *hapd, char *cmd)
1966{
1967 u8 addr[ETH_ALEN];
1968 struct sta_info *sta;
1969 char *pos = cmd, *param;
1970
1971 if (hwaddr_aton(pos, addr) || pos[17] != ' ')
1972 return -1;
1973 pos += 18;
1974 param = pos;
1975 pos = os_strchr(pos, ' ');
1976 if (!pos)
1977 return -1;
1978 *pos++ = '\0';
1979
1980 sta = ap_get_sta(hapd, addr);
1981 if (!sta || !sta->eapol_sm)
1982 return -1;
1983
1984 return eapol_auth_set_conf(sta->eapol_sm, param, pos);
1985}
1986
1987
1988static int hostapd_ctrl_iface_log_level(struct hostapd_data *hapd, char *cmd,
1989 char *buf, size_t buflen)
1990{
1991 char *pos, *end, *stamp;
1992 int ret;
1993
1994 /* cmd: "LOG_LEVEL [<level>]" */
1995 if (*cmd == '\0') {
1996 pos = buf;
1997 end = buf + buflen;
1998 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
1999 "Timestamp: %d\n",
2000 debug_level_str(wpa_debug_level),
2001 wpa_debug_timestamp);
2002 if (os_snprintf_error(end - pos, ret))
2003 ret = 0;
2004
2005 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002006 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002007
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002008 while (*cmd == ' ')
2009 cmd++;
2010
2011 stamp = os_strchr(cmd, ' ');
2012 if (stamp) {
2013 *stamp++ = '\0';
2014 while (*stamp == ' ') {
2015 stamp++;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002016 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002017 }
2018
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002019 if (os_strlen(cmd)) {
2020 int level = str_to_debug_level(cmd);
2021 if (level < 0)
2022 return -1;
2023 wpa_debug_level = level;
2024 }
2025
2026 if (stamp && os_strlen(stamp))
2027 wpa_debug_timestamp = atoi(stamp);
2028
2029 os_memcpy(buf, "OK\n", 3);
2030 return 3;
2031}
2032
2033
2034#ifdef NEED_AP_MLME
2035static int hostapd_ctrl_iface_track_sta_list(struct hostapd_data *hapd,
2036 char *buf, size_t buflen)
2037{
2038 struct hostapd_iface *iface = hapd->iface;
2039 char *pos, *end;
2040 struct hostapd_sta_info *info;
2041 struct os_reltime now;
2042
2043 sta_track_expire(iface, 0);
2044
2045 pos = buf;
2046 end = buf + buflen;
2047
2048 os_get_reltime(&now);
2049 dl_list_for_each_reverse(info, &iface->sta_seen,
2050 struct hostapd_sta_info, list) {
2051 struct os_reltime age;
2052 int ret;
2053
2054 os_reltime_sub(&now, &info->last_seen, &age);
2055 ret = os_snprintf(pos, end - pos, MACSTR " %u\n",
2056 MAC2STR(info->addr), (unsigned int) age.sec);
2057 if (os_snprintf_error(end - pos, ret))
2058 break;
2059 pos += ret;
2060 }
2061
2062 return pos - buf;
2063}
2064#endif /* NEED_AP_MLME */
2065
2066
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002067static int hostapd_ctrl_iface_req_lci(struct hostapd_data *hapd,
2068 const char *cmd)
2069{
2070 u8 addr[ETH_ALEN];
2071
2072 if (hwaddr_aton(cmd, addr)) {
2073 wpa_printf(MSG_INFO, "CTRL: REQ_LCI: Invalid MAC address");
2074 return -1;
2075 }
2076
2077 return hostapd_send_lci_req(hapd, addr);
2078}
2079
2080
Dmitry Shmidt4ae50e62016-06-27 13:48:39 -07002081static int hostapd_ctrl_iface_req_range(struct hostapd_data *hapd, char *cmd)
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002082{
2083 u8 addr[ETH_ALEN];
2084 char *token, *context = NULL;
2085 int random_interval, min_ap;
2086 u8 responders[ETH_ALEN * RRM_RANGE_REQ_MAX_RESPONDERS];
2087 unsigned int n_responders;
2088
2089 token = str_token(cmd, " ", &context);
2090 if (!token || hwaddr_aton(token, addr)) {
2091 wpa_printf(MSG_INFO,
2092 "CTRL: REQ_RANGE - Bad destination address");
2093 return -1;
2094 }
2095
2096 token = str_token(cmd, " ", &context);
2097 if (!token)
2098 return -1;
2099
2100 random_interval = atoi(token);
2101 if (random_interval < 0 || random_interval > 0xffff)
2102 return -1;
2103
2104 token = str_token(cmd, " ", &context);
2105 if (!token)
2106 return -1;
2107
2108 min_ap = atoi(token);
2109 if (min_ap <= 0 || min_ap > WLAN_RRM_RANGE_REQ_MAX_MIN_AP)
2110 return -1;
2111
2112 n_responders = 0;
2113 while ((token = str_token(cmd, " ", &context))) {
2114 if (n_responders == RRM_RANGE_REQ_MAX_RESPONDERS) {
2115 wpa_printf(MSG_INFO,
2116 "CTRL: REQ_RANGE: Too many responders");
2117 return -1;
2118 }
2119
2120 if (hwaddr_aton(token, responders + n_responders * ETH_ALEN)) {
2121 wpa_printf(MSG_INFO,
2122 "CTRL: REQ_RANGE: Bad responder address");
2123 return -1;
2124 }
2125
2126 n_responders++;
2127 }
2128
2129 if (!n_responders) {
2130 wpa_printf(MSG_INFO,
2131 "CTRL: REQ_RANGE - No FTM responder address");
2132 return -1;
2133 }
2134
2135 return hostapd_send_range_req(hapd, addr, random_interval, min_ap,
2136 responders, n_responders);
2137}
2138
2139
2140static int hostapd_ctrl_iface_set_neighbor(struct hostapd_data *hapd, char *buf)
2141{
2142 struct wpa_ssid_value ssid;
2143 u8 bssid[ETH_ALEN];
2144 struct wpabuf *nr, *lci = NULL, *civic = NULL;
2145 char *tmp;
2146 int ret;
2147
2148 if (!(hapd->conf->radio_measurements[0] &
2149 WLAN_RRM_CAPS_NEIGHBOR_REPORT)) {
2150 wpa_printf(MSG_ERROR,
2151 "CTRL: SET_NEIGHBOR: Neighbor report is not enabled");
2152 return -1;
2153 }
2154
2155 if (hwaddr_aton(buf, bssid)) {
2156 wpa_printf(MSG_ERROR, "CTRL: SET_NEIGHBOR: Bad BSSID");
2157 return -1;
2158 }
2159
2160 tmp = os_strstr(buf, "ssid=");
2161 if (!tmp || ssid_parse(tmp + 5, &ssid)) {
2162 wpa_printf(MSG_ERROR,
2163 "CTRL: SET_NEIGHBOR: Bad or missing SSID");
2164 return -1;
2165 }
2166 buf = os_strchr(tmp + 6, tmp[5] == '"' ? '"' : ' ');
2167 if (!buf)
2168 return -1;
2169
2170 tmp = os_strstr(buf, "nr=");
2171 if (!tmp) {
2172 wpa_printf(MSG_ERROR,
2173 "CTRL: SET_NEIGHBOR: Missing Neighbor Report element");
2174 return -1;
2175 }
2176
2177 buf = os_strchr(tmp, ' ');
2178 if (buf)
2179 *buf++ = '\0';
2180
2181 nr = wpabuf_parse_bin(tmp + 3);
2182 if (!nr) {
2183 wpa_printf(MSG_ERROR,
2184 "CTRL: SET_NEIGHBOR: Bad Neighbor Report element");
2185 return -1;
2186 }
2187
2188 if (!buf)
2189 goto set;
2190
2191 tmp = os_strstr(buf, "lci=");
2192 if (tmp) {
2193 buf = os_strchr(tmp, ' ');
2194 if (buf)
2195 *buf++ = '\0';
2196 lci = wpabuf_parse_bin(tmp + 4);
2197 if (!lci) {
2198 wpa_printf(MSG_ERROR,
2199 "CTRL: SET_NEIGHBOR: Bad LCI subelement");
2200 wpabuf_free(nr);
2201 return -1;
2202 }
2203 }
2204
2205 if (!buf)
2206 goto set;
2207
2208 tmp = os_strstr(buf, "civic=");
2209 if (tmp) {
2210 buf = os_strchr(tmp, ' ');
2211 if (buf)
2212 *buf++ = '\0';
2213 civic = wpabuf_parse_bin(tmp + 6);
2214 if (!civic) {
2215 wpa_printf(MSG_ERROR,
2216 "CTRL: SET_NEIGHBOR: Bad civic subelement");
2217 wpabuf_free(nr);
2218 wpabuf_free(lci);
2219 return -1;
2220 }
2221 }
2222
2223set:
2224 ret = hostapd_neighbor_set(hapd, bssid, &ssid, nr, lci, civic);
2225
2226 wpabuf_free(nr);
2227 wpabuf_free(lci);
2228 wpabuf_free(civic);
2229
2230 return ret;
2231}
2232
2233
2234static int hostapd_ctrl_iface_remove_neighbor(struct hostapd_data *hapd,
2235 char *buf)
2236{
2237 struct wpa_ssid_value ssid;
2238 u8 bssid[ETH_ALEN];
2239 char *tmp;
2240
2241 if (hwaddr_aton(buf, bssid)) {
2242 wpa_printf(MSG_ERROR, "CTRL: REMOVE_NEIGHBOR: Bad BSSID");
2243 return -1;
2244 }
2245
2246 tmp = os_strstr(buf, "ssid=");
2247 if (!tmp || ssid_parse(tmp + 5, &ssid)) {
2248 wpa_printf(MSG_ERROR,
2249 "CTRL: REMOVE_NEIGHBORr: Bad or missing SSID");
2250 return -1;
2251 }
2252
2253 return hostapd_neighbor_remove(hapd, bssid, &ssid);
2254}
2255
2256
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07002257static int hostapd_ctrl_driver_flags(struct hostapd_iface *iface, char *buf,
2258 size_t buflen)
2259{
2260 int ret, i;
2261 char *pos, *end;
2262
2263 ret = os_snprintf(buf, buflen, "%016llX:\n",
2264 (long long unsigned) iface->drv_flags);
2265 if (os_snprintf_error(buflen, ret))
2266 return -1;
2267
2268 pos = buf + ret;
2269 end = buf + buflen;
2270
2271 for (i = 0; i < 64; i++) {
2272 if (iface->drv_flags & (1LLU << i)) {
2273 ret = os_snprintf(pos, end - pos, "%s\n",
2274 driver_flag_to_string(1LLU << i));
2275 if (os_snprintf_error(end - pos, ret))
2276 return -1;
2277 pos += ret;
2278 }
2279 }
2280
2281 return pos - buf;
2282}
2283
2284
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002285static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
2286 char *buf, char *reply,
2287 int reply_size,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002288 struct sockaddr_storage *from,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002289 socklen_t fromlen)
2290{
2291 int reply_len, res;
2292
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002293 os_memcpy(reply, "OK\n", 3);
2294 reply_len = 3;
2295
2296 if (os_strcmp(buf, "PING") == 0) {
2297 os_memcpy(reply, "PONG\n", 5);
2298 reply_len = 5;
2299 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
2300 if (wpa_debug_reopen_file() < 0)
2301 reply_len = -1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002302 } else if (os_strcmp(buf, "STATUS") == 0) {
2303 reply_len = hostapd_ctrl_iface_status(hapd, reply,
2304 reply_size);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002305 } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
2306 reply_len = hostapd_drv_status(hapd, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002307 } else if (os_strcmp(buf, "MIB") == 0) {
2308 reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
2309 if (reply_len >= 0) {
2310 res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
2311 reply_size - reply_len);
2312 if (res < 0)
2313 reply_len = -1;
2314 else
2315 reply_len += res;
2316 }
2317 if (reply_len >= 0) {
2318 res = ieee802_1x_get_mib(hapd, reply + reply_len,
2319 reply_size - reply_len);
2320 if (res < 0)
2321 reply_len = -1;
2322 else
2323 reply_len += res;
2324 }
2325#ifndef CONFIG_NO_RADIUS
2326 if (reply_len >= 0) {
2327 res = radius_client_get_mib(hapd->radius,
2328 reply + reply_len,
2329 reply_size - reply_len);
2330 if (res < 0)
2331 reply_len = -1;
2332 else
2333 reply_len += res;
2334 }
2335#endif /* CONFIG_NO_RADIUS */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002336 } else if (os_strncmp(buf, "MIB ", 4) == 0) {
2337 reply_len = hostapd_ctrl_iface_mib(hapd, reply, reply_size,
2338 buf + 4);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002339 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
2340 reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
2341 reply_size);
2342 } else if (os_strncmp(buf, "STA ", 4) == 0) {
2343 reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
2344 reply_size);
2345 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
2346 reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
2347 reply_size);
2348 } else if (os_strcmp(buf, "ATTACH") == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002349 if (hostapd_ctrl_iface_attach(hapd, from, fromlen))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002350 reply_len = -1;
2351 } else if (os_strcmp(buf, "DETACH") == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002352 if (hostapd_ctrl_iface_detach(hapd, from, fromlen))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002353 reply_len = -1;
2354 } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002355 if (hostapd_ctrl_iface_level(hapd, from, fromlen,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002356 buf + 6))
2357 reply_len = -1;
2358 } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
2359 if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
2360 reply_len = -1;
2361 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
2362 if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
2363 reply_len = -1;
2364 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
2365 if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
2366 reply_len = -1;
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002367 } else if (os_strncmp(buf, "POLL_STA ", 9) == 0) {
2368 if (hostapd_ctrl_iface_poll_sta(hapd, buf + 9))
2369 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002370 } else if (os_strcmp(buf, "STOP_AP") == 0) {
2371 if (hostapd_ctrl_iface_stop_ap(hapd))
2372 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002373#ifdef CONFIG_IEEE80211W
2374#ifdef NEED_AP_MLME
2375 } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
2376 if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
2377 reply_len = -1;
2378#endif /* NEED_AP_MLME */
2379#endif /* CONFIG_IEEE80211W */
2380#ifdef CONFIG_WPS
2381 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
2382 if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
2383 reply_len = -1;
2384 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
2385 reply_len = hostapd_ctrl_iface_wps_check_pin(
2386 hapd, buf + 14, reply, reply_size);
2387 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
2388 if (hostapd_wps_button_pushed(hapd, NULL))
2389 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002390 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
2391 if (hostapd_wps_cancel(hapd))
2392 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002393 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
2394 reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
2395 reply, reply_size);
2396 } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
2397 if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
2398 reply_len = -1;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07002399 } else if (os_strncmp(buf, "WPS_GET_STATUS", 13) == 0) {
2400 reply_len = hostapd_ctrl_iface_wps_get_status(hapd, reply,
2401 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002402#ifdef CONFIG_WPS_NFC
2403 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
2404 if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
2405 reply_len = -1;
2406 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
2407 reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
2408 hapd, buf + 21, reply, reply_size);
2409 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
2410 reply_len = hostapd_ctrl_iface_wps_nfc_token(
2411 hapd, buf + 14, reply, reply_size);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08002412 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
2413 reply_len = hostapd_ctrl_iface_nfc_get_handover_sel(
2414 hapd, buf + 21, reply, reply_size);
2415 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
2416 if (hostapd_ctrl_iface_nfc_report_handover(hapd, buf + 20))
2417 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002418#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002419#endif /* CONFIG_WPS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07002420#ifdef CONFIG_INTERWORKING
2421 } else if (os_strncmp(buf, "SET_QOS_MAP_SET ", 16) == 0) {
2422 if (hostapd_ctrl_iface_set_qos_map_set(hapd, buf + 16))
2423 reply_len = -1;
2424 } else if (os_strncmp(buf, "SEND_QOS_MAP_CONF ", 18) == 0) {
2425 if (hostapd_ctrl_iface_send_qos_map_conf(hapd, buf + 18))
2426 reply_len = -1;
2427#endif /* CONFIG_INTERWORKING */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002428#ifdef CONFIG_HS20
2429 } else if (os_strncmp(buf, "HS20_WNM_NOTIF ", 15) == 0) {
2430 if (hostapd_ctrl_iface_hs20_wnm_notif(hapd, buf + 15))
2431 reply_len = -1;
2432 } else if (os_strncmp(buf, "HS20_DEAUTH_REQ ", 16) == 0) {
2433 if (hostapd_ctrl_iface_hs20_deauth_req(hapd, buf + 16))
2434 reply_len = -1;
2435#endif /* CONFIG_HS20 */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002436#ifdef CONFIG_WNM
2437 } else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
2438 if (hostapd_ctrl_iface_disassoc_imminent(hapd, buf + 18))
2439 reply_len = -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002440 } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
2441 if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
2442 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002443 } else if (os_strncmp(buf, "BSS_TM_REQ ", 11) == 0) {
2444 if (hostapd_ctrl_iface_bss_tm_req(hapd, buf + 11))
2445 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002446#endif /* CONFIG_WNM */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002447 } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
2448 reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
2449 reply_size);
2450 } else if (os_strncmp(buf, "SET ", 4) == 0) {
2451 if (hostapd_ctrl_iface_set(hapd, buf + 4))
2452 reply_len = -1;
2453 } else if (os_strncmp(buf, "GET ", 4) == 0) {
2454 reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
2455 reply_size);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002456 } else if (os_strncmp(buf, "ENABLE", 6) == 0) {
2457 if (hostapd_ctrl_iface_enable(hapd->iface))
2458 reply_len = -1;
2459 } else if (os_strncmp(buf, "RELOAD", 6) == 0) {
2460 if (hostapd_ctrl_iface_reload(hapd->iface))
2461 reply_len = -1;
2462 } else if (os_strncmp(buf, "DISABLE", 7) == 0) {
2463 if (hostapd_ctrl_iface_disable(hapd->iface))
2464 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002465 } else if (os_strcmp(buf, "UPDATE_BEACON") == 0) {
2466 if (ieee802_11_set_beacon(hapd))
2467 reply_len = -1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002468#ifdef CONFIG_TESTING_OPTIONS
2469 } else if (os_strncmp(buf, "RADAR ", 6) == 0) {
2470 if (hostapd_ctrl_iface_radar(hapd, buf + 6))
2471 reply_len = -1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002472 } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
2473 if (hostapd_ctrl_iface_mgmt_tx(hapd, buf + 8))
2474 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002475 } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
2476 if (hostapd_ctrl_iface_eapol_rx(hapd, buf + 9) < 0)
2477 reply_len = -1;
2478 } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
2479 if (hostapd_ctrl_iface_data_test_config(hapd, buf + 17) < 0)
2480 reply_len = -1;
2481 } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
2482 if (hostapd_ctrl_iface_data_test_tx(hapd, buf + 13) < 0)
2483 reply_len = -1;
2484 } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
2485 if (hostapd_ctrl_iface_data_test_frame(hapd, buf + 16) < 0)
2486 reply_len = -1;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002487 } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
2488 if (hostapd_ctrl_test_alloc_fail(hapd, buf + 16) < 0)
2489 reply_len = -1;
2490 } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
2491 reply_len = hostapd_ctrl_get_alloc_fail(hapd, reply,
2492 reply_size);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002493 } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
2494 if (hostapd_ctrl_test_fail(hapd, buf + 10) < 0)
2495 reply_len = -1;
2496 } else if (os_strcmp(buf, "GET_FAIL") == 0) {
2497 reply_len = hostapd_ctrl_get_fail(hapd, reply, reply_size);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002498#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002499 } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002500 if (hostapd_ctrl_iface_chan_switch(hapd->iface, buf + 12))
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002501 reply_len = -1;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002502 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
2503 reply_len = hostapd_ctrl_iface_vendor(hapd, buf + 7, reply,
2504 reply_size);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002505 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
2506 ieee802_1x_erp_flush(hapd);
2507#ifdef RADIUS_SERVER
2508 radius_server_erp_flush(hapd->radius_srv);
2509#endif /* RADIUS_SERVER */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002510 } else if (os_strncmp(buf, "EAPOL_REAUTH ", 13) == 0) {
2511 if (hostapd_ctrl_iface_eapol_reauth(hapd, buf + 13))
2512 reply_len = -1;
2513 } else if (os_strncmp(buf, "EAPOL_SET ", 10) == 0) {
2514 if (hostapd_ctrl_iface_eapol_set(hapd, buf + 10))
2515 reply_len = -1;
2516 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
2517 reply_len = hostapd_ctrl_iface_log_level(
2518 hapd, buf + 9, reply, reply_size);
2519#ifdef NEED_AP_MLME
2520 } else if (os_strcmp(buf, "TRACK_STA_LIST") == 0) {
2521 reply_len = hostapd_ctrl_iface_track_sta_list(
2522 hapd, reply, reply_size);
2523#endif /* NEED_AP_MLME */
Dmitry Shmidte4663042016-04-04 10:07:49 -07002524 } else if (os_strcmp(buf, "PMKSA") == 0) {
2525 reply_len = hostapd_ctrl_iface_pmksa_list(hapd, reply,
2526 reply_size);
2527 } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
2528 hostapd_ctrl_iface_pmksa_flush(hapd);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002529 } else if (os_strncmp(buf, "SET_NEIGHBOR ", 13) == 0) {
2530 if (hostapd_ctrl_iface_set_neighbor(hapd, buf + 13))
2531 reply_len = -1;
2532 } else if (os_strncmp(buf, "REMOVE_NEIGHBOR ", 16) == 0) {
2533 if (hostapd_ctrl_iface_remove_neighbor(hapd, buf + 16))
2534 reply_len = -1;
2535 } else if (os_strncmp(buf, "REQ_LCI ", 8) == 0) {
2536 if (hostapd_ctrl_iface_req_lci(hapd, buf + 8))
2537 reply_len = -1;
2538 } else if (os_strncmp(buf, "REQ_RANGE ", 10) == 0) {
2539 if (hostapd_ctrl_iface_req_range(hapd, buf + 10))
2540 reply_len = -1;
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07002541 } else if (os_strcmp(buf, "DRIVER_FLAGS") == 0) {
2542 reply_len = hostapd_ctrl_driver_flags(hapd->iface, reply,
2543 reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002544 } else {
2545 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
2546 reply_len = 16;
2547 }
2548
2549 if (reply_len < 0) {
2550 os_memcpy(reply, "FAIL\n", 5);
2551 reply_len = 5;
2552 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002553
2554 return reply_len;
2555}
2556
2557
2558static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
2559 void *sock_ctx)
2560{
2561 struct hostapd_data *hapd = eloop_ctx;
2562 char buf[4096];
2563 int res;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002564 struct sockaddr_storage from;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002565 socklen_t fromlen = sizeof(from);
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002566 char *reply, *pos = buf;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002567 const int reply_size = 4096;
2568 int reply_len;
2569 int level = MSG_DEBUG;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002570#ifdef CONFIG_CTRL_IFACE_UDP
2571 unsigned char lcookie[COOKIE_LEN];
2572#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002573
2574 res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
2575 (struct sockaddr *) &from, &fromlen);
2576 if (res < 0) {
2577 wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
2578 strerror(errno));
2579 return;
2580 }
2581 buf[res] = '\0';
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002582
2583 reply = os_malloc(reply_size);
2584 if (reply == NULL) {
2585 if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
2586 fromlen) < 0) {
2587 wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
2588 strerror(errno));
2589 }
2590 return;
2591 }
2592
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002593#ifdef CONFIG_CTRL_IFACE_UDP
2594 if (os_strcmp(buf, "GET_COOKIE") == 0) {
2595 os_memcpy(reply, "COOKIE=", 7);
2596 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
2597 cookie, COOKIE_LEN);
2598 reply_len = 7 + 2 * COOKIE_LEN;
2599 goto done;
2600 }
2601
2602 if (os_strncmp(buf, "COOKIE=", 7) != 0 ||
2603 hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
2604 wpa_printf(MSG_DEBUG,
2605 "CTRL: No cookie in the request - drop request");
2606 os_free(reply);
2607 return;
2608 }
2609
2610 if (os_memcmp(cookie, lcookie, COOKIE_LEN) != 0) {
2611 wpa_printf(MSG_DEBUG,
2612 "CTRL: Invalid cookie in the request - drop request");
2613 os_free(reply);
2614 return;
2615 }
2616
2617 pos = buf + 7 + 2 * COOKIE_LEN;
2618 while (*pos == ' ')
2619 pos++;
2620#endif /* CONFIG_CTRL_IFACE_UDP */
2621
2622 if (os_strcmp(pos, "PING") == 0)
2623 level = MSG_EXCESSIVE;
2624 wpa_hexdump_ascii(level, "RX ctrl_iface", pos, res);
2625
2626 reply_len = hostapd_ctrl_iface_receive_process(hapd, pos,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002627 reply, reply_size,
2628 &from, fromlen);
2629
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002630#ifdef CONFIG_CTRL_IFACE_UDP
2631done:
2632#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002633 if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
2634 fromlen) < 0) {
2635 wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
2636 strerror(errno));
2637 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002638 os_free(reply);
2639}
2640
2641
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002642#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002643static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
2644{
2645 char *buf;
2646 size_t len;
2647
2648 if (hapd->conf->ctrl_interface == NULL)
2649 return NULL;
2650
2651 len = os_strlen(hapd->conf->ctrl_interface) +
2652 os_strlen(hapd->conf->iface) + 2;
2653 buf = os_malloc(len);
2654 if (buf == NULL)
2655 return NULL;
2656
2657 os_snprintf(buf, len, "%s/%s",
2658 hapd->conf->ctrl_interface, hapd->conf->iface);
2659 buf[len - 1] = '\0';
2660 return buf;
2661}
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002662#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002663
2664
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002665static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
2666 enum wpa_msg_type type,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002667 const char *txt, size_t len)
2668{
2669 struct hostapd_data *hapd = ctx;
2670 if (hapd == NULL)
2671 return;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02002672 hostapd_ctrl_iface_send(hapd, level, type, txt, len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002673}
2674
2675
2676int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
2677{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002678#ifdef CONFIG_CTRL_IFACE_UDP
2679 int port = HOSTAPD_CTRL_IFACE_PORT;
2680 char p[32] = { 0 };
2681 char port_str[40], *tmp;
2682 char *pos;
2683 struct addrinfo hints = { 0 }, *res, *saveres;
2684 int n;
2685
2686 if (hapd->ctrl_sock > -1) {
2687 wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
2688 return 0;
2689 }
2690
2691 if (hapd->conf->ctrl_interface == NULL)
2692 return 0;
2693
2694 pos = os_strstr(hapd->conf->ctrl_interface, "udp:");
2695 if (pos) {
2696 pos += 4;
2697 port = atoi(pos);
2698 if (port <= 0) {
2699 wpa_printf(MSG_ERROR, "Invalid ctrl_iface UDP port");
2700 goto fail;
2701 }
2702 }
2703
2704 dl_list_init(&hapd->ctrl_dst);
2705 hapd->ctrl_sock = -1;
2706 os_get_random(cookie, COOKIE_LEN);
2707
2708#ifdef CONFIG_CTRL_IFACE_UDP_REMOTE
2709 hints.ai_flags = AI_PASSIVE;
2710#endif /* CONFIG_CTRL_IFACE_UDP_REMOTE */
2711
2712#ifdef CONFIG_CTRL_IFACE_UDP_IPV6
2713 hints.ai_family = AF_INET6;
2714#else /* CONFIG_CTRL_IFACE_UDP_IPV6 */
2715 hints.ai_family = AF_INET;
2716#endif /* CONFIG_CTRL_IFACE_UDP_IPV6 */
2717 hints.ai_socktype = SOCK_DGRAM;
2718
2719try_again:
2720 os_snprintf(p, sizeof(p), "%d", port);
2721 n = getaddrinfo(NULL, p, &hints, &res);
2722 if (n) {
2723 wpa_printf(MSG_ERROR, "getaddrinfo(): %s", gai_strerror(n));
2724 goto fail;
2725 }
2726
2727 saveres = res;
2728 hapd->ctrl_sock = socket(res->ai_family, res->ai_socktype,
2729 res->ai_protocol);
2730 if (hapd->ctrl_sock < 0) {
2731 wpa_printf(MSG_ERROR, "socket(PF_INET): %s", strerror(errno));
2732 goto fail;
2733 }
2734
2735 if (bind(hapd->ctrl_sock, res->ai_addr, res->ai_addrlen) < 0) {
2736 port--;
2737 if ((HOSTAPD_CTRL_IFACE_PORT - port) <
2738 HOSTAPD_CTRL_IFACE_PORT_LIMIT && !pos)
2739 goto try_again;
2740 wpa_printf(MSG_ERROR, "bind(AF_INET): %s", strerror(errno));
2741 goto fail;
2742 }
2743
2744 freeaddrinfo(saveres);
2745
2746 os_snprintf(port_str, sizeof(port_str), "udp:%d", port);
2747 tmp = os_strdup(port_str);
2748 if (tmp) {
2749 os_free(hapd->conf->ctrl_interface);
2750 hapd->conf->ctrl_interface = tmp;
2751 }
2752 wpa_printf(MSG_DEBUG, "ctrl_iface_init UDP port: %d", port);
2753
2754 if (eloop_register_read_sock(hapd->ctrl_sock,
2755 hostapd_ctrl_iface_receive, hapd, NULL) <
2756 0) {
2757 hostapd_ctrl_iface_deinit(hapd);
2758 return -1;
2759 }
2760
2761 hapd->msg_ctx = hapd;
2762 wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
2763
2764 return 0;
2765
2766fail:
2767 if (hapd->ctrl_sock >= 0)
2768 close(hapd->ctrl_sock);
2769 return -1;
2770#else /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002771 struct sockaddr_un addr;
2772 int s = -1;
2773 char *fname = NULL;
2774
Dmitry Shmidt04949592012-07-19 12:16:46 -07002775 if (hapd->ctrl_sock > -1) {
2776 wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
2777 return 0;
2778 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002779
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002780 dl_list_init(&hapd->ctrl_dst);
2781
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002782 if (hapd->conf->ctrl_interface == NULL)
2783 return 0;
2784
2785 if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
2786 if (errno == EEXIST) {
2787 wpa_printf(MSG_DEBUG, "Using existing control "
2788 "interface directory.");
2789 } else {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002790 wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
2791 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002792 goto fail;
2793 }
2794 }
2795
2796 if (hapd->conf->ctrl_interface_gid_set &&
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002797 chown(hapd->conf->ctrl_interface, -1,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002798 hapd->conf->ctrl_interface_gid) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002799 wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
2800 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002801 return -1;
2802 }
2803
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07002804 if (!hapd->conf->ctrl_interface_gid_set &&
2805 hapd->iface->interfaces->ctrl_iface_group &&
2806 chown(hapd->conf->ctrl_interface, -1,
2807 hapd->iface->interfaces->ctrl_iface_group) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002808 wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
2809 strerror(errno));
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07002810 return -1;
2811 }
2812
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002813#ifdef ANDROID
2814 /*
2815 * Android is using umask 0077 which would leave the control interface
2816 * directory without group access. This breaks things since Wi-Fi
2817 * framework assumes that this directory can be accessed by other
2818 * applications in the wifi group. Fix this by adding group access even
2819 * if umask value would prevent this.
2820 */
2821 if (chmod(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
2822 wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
2823 strerror(errno));
2824 /* Try to continue anyway */
2825 }
2826#endif /* ANDROID */
2827
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002828 if (os_strlen(hapd->conf->ctrl_interface) + 1 +
2829 os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
2830 goto fail;
2831
2832 s = socket(PF_UNIX, SOCK_DGRAM, 0);
2833 if (s < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002834 wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002835 goto fail;
2836 }
2837
2838 os_memset(&addr, 0, sizeof(addr));
2839#ifdef __FreeBSD__
2840 addr.sun_len = sizeof(addr);
2841#endif /* __FreeBSD__ */
2842 addr.sun_family = AF_UNIX;
2843 fname = hostapd_ctrl_iface_path(hapd);
2844 if (fname == NULL)
2845 goto fail;
2846 os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
2847 if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
2848 wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
2849 strerror(errno));
2850 if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
2851 wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
2852 " allow connections - assuming it was left"
2853 "over from forced program termination");
2854 if (unlink(fname) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002855 wpa_printf(MSG_ERROR,
2856 "Could not unlink existing ctrl_iface socket '%s': %s",
2857 fname, strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002858 goto fail;
2859 }
2860 if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
2861 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002862 wpa_printf(MSG_ERROR,
2863 "hostapd-ctrl-iface: bind(PF_UNIX): %s",
2864 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002865 goto fail;
2866 }
2867 wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
2868 "ctrl_iface socket '%s'", fname);
2869 } else {
2870 wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
2871 "be in use - cannot override it");
2872 wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
2873 "not used anymore", fname);
2874 os_free(fname);
2875 fname = NULL;
2876 goto fail;
2877 }
2878 }
2879
2880 if (hapd->conf->ctrl_interface_gid_set &&
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002881 chown(fname, -1, hapd->conf->ctrl_interface_gid) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002882 wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
2883 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002884 goto fail;
2885 }
2886
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07002887 if (!hapd->conf->ctrl_interface_gid_set &&
2888 hapd->iface->interfaces->ctrl_iface_group &&
2889 chown(fname, -1, hapd->iface->interfaces->ctrl_iface_group) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002890 wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
2891 strerror(errno));
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07002892 goto fail;
2893 }
2894
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002895 if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002896 wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
2897 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002898 goto fail;
2899 }
2900 os_free(fname);
2901
2902 hapd->ctrl_sock = s;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002903 if (eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
2904 NULL) < 0) {
2905 hostapd_ctrl_iface_deinit(hapd);
2906 return -1;
2907 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002908 hapd->msg_ctx = hapd;
2909 wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
2910
2911 return 0;
2912
2913fail:
2914 if (s >= 0)
2915 close(s);
2916 if (fname) {
2917 unlink(fname);
2918 os_free(fname);
2919 }
2920 return -1;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002921#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002922}
2923
2924
2925void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
2926{
2927 struct wpa_ctrl_dst *dst, *prev;
2928
2929 if (hapd->ctrl_sock > -1) {
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002930#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002931 char *fname;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002932#endif /* !CONFIG_CTRL_IFACE_UDP */
2933
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002934 eloop_unregister_read_sock(hapd->ctrl_sock);
2935 close(hapd->ctrl_sock);
2936 hapd->ctrl_sock = -1;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002937#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002938 fname = hostapd_ctrl_iface_path(hapd);
2939 if (fname)
2940 unlink(fname);
2941 os_free(fname);
2942
2943 if (hapd->conf->ctrl_interface &&
2944 rmdir(hapd->conf->ctrl_interface) < 0) {
2945 if (errno == ENOTEMPTY) {
2946 wpa_printf(MSG_DEBUG, "Control interface "
2947 "directory not empty - leaving it "
2948 "behind");
2949 } else {
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07002950 wpa_printf(MSG_ERROR,
2951 "rmdir[ctrl_interface=%s]: %s",
2952 hapd->conf->ctrl_interface,
2953 strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002954 }
2955 }
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002956#endif /* !CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002957 }
2958
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002959 dl_list_for_each_safe(dst, prev, &hapd->ctrl_dst, struct wpa_ctrl_dst,
2960 list)
2961 os_free(dst);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002962
2963#ifdef CONFIG_TESTING_OPTIONS
2964 l2_packet_deinit(hapd->l2_test);
2965 hapd->l2_test = NULL;
2966#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002967}
2968
2969
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002970static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces,
2971 char *buf)
2972{
2973 if (hostapd_add_iface(interfaces, buf) < 0) {
2974 wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
2975 return -1;
2976 }
2977 return 0;
2978}
2979
2980
2981static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces,
2982 char *buf)
2983{
2984 if (hostapd_remove_iface(interfaces, buf) < 0) {
2985 wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
2986 return -1;
2987 }
2988 return 0;
2989}
2990
2991
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02002992static int hostapd_global_ctrl_iface_attach(struct hapd_interfaces *interfaces,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002993 struct sockaddr_storage *from,
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02002994 socklen_t fromlen)
2995{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08002996 return ctrl_iface_attach(&interfaces->global_ctrl_dst, from, fromlen);
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02002997}
2998
2999
3000static int hostapd_global_ctrl_iface_detach(struct hapd_interfaces *interfaces,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003001 struct sockaddr_storage *from,
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003002 socklen_t fromlen)
3003{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003004 return ctrl_iface_detach(&interfaces->global_ctrl_dst, from, fromlen);
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003005}
3006
3007
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003008static void hostapd_ctrl_iface_flush(struct hapd_interfaces *interfaces)
3009{
3010#ifdef CONFIG_WPS_TESTING
3011 wps_version_number = 0x20;
3012 wps_testing_dummy_cred = 0;
3013 wps_corrupt_pkhash = 0;
3014#endif /* CONFIG_WPS_TESTING */
3015}
3016
3017
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003018#ifdef CONFIG_FST
3019
3020static int
3021hostapd_global_ctrl_iface_fst_attach(struct hapd_interfaces *interfaces,
3022 const char *cmd)
3023{
3024 char ifname[IFNAMSIZ + 1];
3025 struct fst_iface_cfg cfg;
3026 struct hostapd_data *hapd;
3027 struct fst_wpa_obj iface_obj;
3028
3029 if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
3030 hapd = hostapd_get_iface(interfaces, ifname);
3031 if (hapd) {
3032 if (hapd->iface->fst) {
3033 wpa_printf(MSG_INFO, "FST: Already attached");
3034 return -1;
3035 }
3036 fst_hostapd_fill_iface_obj(hapd, &iface_obj);
3037 hapd->iface->fst = fst_attach(ifname, hapd->own_addr,
3038 &iface_obj, &cfg);
3039 if (hapd->iface->fst)
3040 return 0;
3041 }
3042 }
3043
3044 return -EINVAL;
3045}
3046
3047
3048static int
3049hostapd_global_ctrl_iface_fst_detach(struct hapd_interfaces *interfaces,
3050 const char *cmd)
3051{
3052 char ifname[IFNAMSIZ + 1];
3053 struct hostapd_data * hapd;
3054
3055 if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
3056 hapd = hostapd_get_iface(interfaces, ifname);
3057 if (hapd) {
3058 if (!fst_iface_detach(ifname)) {
3059 hapd->iface->fst = NULL;
3060 hapd->iface->fst_ies = NULL;
3061 return 0;
3062 }
3063 }
3064 }
3065
3066 return -EINVAL;
3067}
3068
3069#endif /* CONFIG_FST */
3070
3071
3072static struct hostapd_data *
3073hostapd_interfaces_get_hapd(struct hapd_interfaces *interfaces,
3074 const char *ifname)
3075{
3076 size_t i, j;
3077
3078 for (i = 0; i < interfaces->count; i++) {
3079 struct hostapd_iface *iface = interfaces->iface[i];
3080
3081 for (j = 0; j < iface->num_bss; j++) {
3082 struct hostapd_data *hapd;
3083
3084 hapd = iface->bss[j];
3085 if (os_strcmp(ifname, hapd->conf->iface) == 0)
3086 return hapd;
3087 }
3088 }
3089
3090 return NULL;
3091}
3092
3093
3094static int hostapd_ctrl_iface_dup_param(struct hostapd_data *src_hapd,
3095 struct hostapd_data *dst_hapd,
3096 const char *param)
3097{
3098 int res;
3099 char *value;
3100
3101 value = os_zalloc(HOSTAPD_CLI_DUP_VALUE_MAX_LEN);
3102 if (!value) {
3103 wpa_printf(MSG_ERROR,
3104 "DUP: cannot allocate buffer to stringify %s",
3105 param);
3106 goto error_return;
3107 }
3108
3109 if (os_strcmp(param, "wpa") == 0) {
3110 os_snprintf(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN, "%d",
3111 src_hapd->conf->wpa);
3112 } else if (os_strcmp(param, "wpa_key_mgmt") == 0 &&
3113 src_hapd->conf->wpa_key_mgmt) {
3114 res = hostapd_ctrl_iface_get_key_mgmt(
3115 src_hapd, value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN);
3116 if (os_snprintf_error(HOSTAPD_CLI_DUP_VALUE_MAX_LEN, res))
3117 goto error_stringify;
3118 } else if (os_strcmp(param, "wpa_pairwise") == 0 &&
3119 src_hapd->conf->wpa_pairwise) {
3120 res = wpa_write_ciphers(value,
3121 value + HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
3122 src_hapd->conf->wpa_pairwise, " ");
3123 if (res < 0)
3124 goto error_stringify;
3125 } else if (os_strcmp(param, "rsn_pairwise") == 0 &&
3126 src_hapd->conf->rsn_pairwise) {
3127 res = wpa_write_ciphers(value,
3128 value + HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
3129 src_hapd->conf->rsn_pairwise, " ");
3130 if (res < 0)
3131 goto error_stringify;
3132 } else if (os_strcmp(param, "wpa_passphrase") == 0 &&
3133 src_hapd->conf->ssid.wpa_passphrase) {
3134 os_snprintf(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN, "%s",
3135 src_hapd->conf->ssid.wpa_passphrase);
3136 } else if (os_strcmp(param, "wpa_psk") == 0 &&
3137 src_hapd->conf->ssid.wpa_psk_set) {
3138 wpa_snprintf_hex(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
3139 src_hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
3140 } else {
3141 wpa_printf(MSG_WARNING, "DUP: %s cannot be duplicated", param);
3142 goto error_return;
3143 }
3144
3145 res = hostapd_set_iface(dst_hapd->iconf, dst_hapd->conf, param, value);
3146 os_free(value);
3147 return res;
3148
3149error_stringify:
3150 wpa_printf(MSG_ERROR, "DUP: cannot stringify %s", param);
3151error_return:
3152 os_free(value);
3153 return -1;
3154}
3155
3156
3157static int
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003158hostapd_global_ctrl_iface_interfaces(struct hapd_interfaces *interfaces,
3159 const char *input,
3160 char *reply, int reply_size)
3161{
3162 size_t i, j;
3163 int res;
3164 char *pos, *end;
3165 struct hostapd_iface *iface;
3166 int show_ctrl = 0;
3167
3168 if (input)
3169 show_ctrl = !!os_strstr(input, "ctrl");
3170
3171 pos = reply;
3172 end = reply + reply_size;
3173
3174 for (i = 0; i < interfaces->count; i++) {
3175 iface = interfaces->iface[i];
3176
3177 for (j = 0; j < iface->num_bss; j++) {
3178 struct hostapd_bss_config *conf;
3179
3180 conf = iface->conf->bss[j];
3181 if (show_ctrl)
3182 res = os_snprintf(pos, end - pos,
3183 "%s ctrl_iface=%s\n",
3184 conf->iface,
3185 conf->ctrl_interface ?
3186 conf->ctrl_interface : "N/A");
3187 else
3188 res = os_snprintf(pos, end - pos, "%s\n",
3189 conf->iface);
3190 if (os_snprintf_error(end - pos, res)) {
3191 *pos = '\0';
3192 return pos - reply;
3193 }
3194 pos += res;
3195 }
3196 }
3197
3198 return pos - reply;
3199}
3200
3201
3202static int
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003203hostapd_global_ctrl_iface_dup_network(struct hapd_interfaces *interfaces,
3204 char *cmd)
3205{
3206 char *p_start = cmd, *p_end;
3207 struct hostapd_data *src_hapd, *dst_hapd;
3208
3209 /* cmd: "<src ifname> <dst ifname> <variable name> */
3210
3211 p_end = os_strchr(p_start, ' ');
3212 if (!p_end) {
3213 wpa_printf(MSG_ERROR, "DUP: no src ifname found in cmd: '%s'",
3214 cmd);
3215 return -1;
3216 }
3217
3218 *p_end = '\0';
3219 src_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
3220 if (!src_hapd) {
3221 wpa_printf(MSG_ERROR, "DUP: no src ifname found: '%s'",
3222 p_start);
3223 return -1;
3224 }
3225
3226 p_start = p_end + 1;
3227 p_end = os_strchr(p_start, ' ');
3228 if (!p_end) {
3229 wpa_printf(MSG_ERROR, "DUP: no dst ifname found in cmd: '%s'",
3230 cmd);
3231 return -1;
3232 }
3233
3234 *p_end = '\0';
3235 dst_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
3236 if (!dst_hapd) {
3237 wpa_printf(MSG_ERROR, "DUP: no dst ifname found: '%s'",
3238 p_start);
3239 return -1;
3240 }
3241
3242 p_start = p_end + 1;
3243 return hostapd_ctrl_iface_dup_param(src_hapd, dst_hapd, p_start);
3244}
3245
3246
3247static int hostapd_global_ctrl_iface_ifname(struct hapd_interfaces *interfaces,
3248 const char *ifname,
3249 char *buf, char *reply,
3250 int reply_size,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003251 struct sockaddr_storage *from,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003252 socklen_t fromlen)
3253{
3254 struct hostapd_data *hapd;
3255
3256 hapd = hostapd_interfaces_get_hapd(interfaces, ifname);
3257 if (hapd == NULL) {
3258 int res;
3259
3260 res = os_snprintf(reply, reply_size, "FAIL-NO-IFNAME-MATCH\n");
3261 if (os_snprintf_error(reply_size, res))
3262 return -1;
3263 return res;
3264 }
3265
3266 return hostapd_ctrl_iface_receive_process(hapd, buf, reply,reply_size,
3267 from, fromlen);
3268}
3269
3270
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003271static void hostapd_global_ctrl_iface_receive(int sock, void *eloop_ctx,
3272 void *sock_ctx)
3273{
3274 void *interfaces = eloop_ctx;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003275 char buffer[256], *buf = buffer;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003276 int res;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003277 struct sockaddr_storage from;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003278 socklen_t fromlen = sizeof(from);
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003279 char *reply;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003280 int reply_len;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003281 const int reply_size = 4096;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003282#ifdef CONFIG_CTRL_IFACE_UDP
3283 unsigned char lcookie[COOKIE_LEN];
3284#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003285
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003286 res = recvfrom(sock, buffer, sizeof(buffer) - 1, 0,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003287 (struct sockaddr *) &from, &fromlen);
3288 if (res < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003289 wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
3290 strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003291 return;
3292 }
3293 buf[res] = '\0';
Dmitry Shmidtcce06662013-11-04 18:44:24 -08003294 wpa_printf(MSG_DEBUG, "Global ctrl_iface command: %s", buf);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003295
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003296 reply = os_malloc(reply_size);
3297 if (reply == NULL) {
3298 if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
3299 fromlen) < 0) {
3300 wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
3301 strerror(errno));
3302 }
3303 return;
3304 }
3305
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003306 os_memcpy(reply, "OK\n", 3);
3307 reply_len = 3;
3308
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003309#ifdef CONFIG_CTRL_IFACE_UDP
3310 if (os_strcmp(buf, "GET_COOKIE") == 0) {
3311 os_memcpy(reply, "COOKIE=", 7);
3312 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
3313 gcookie, COOKIE_LEN);
3314 reply_len = 7 + 2 * COOKIE_LEN;
3315 goto send_reply;
3316 }
3317
3318 if (os_strncmp(buf, "COOKIE=", 7) != 0 ||
3319 hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
3320 wpa_printf(MSG_DEBUG,
3321 "CTRL: No cookie in the request - drop request");
3322 os_free(reply);
3323 return;
3324 }
3325
3326 if (os_memcmp(gcookie, lcookie, COOKIE_LEN) != 0) {
3327 wpa_printf(MSG_DEBUG,
3328 "CTRL: Invalid cookie in the request - drop request");
3329 os_free(reply);
3330 return;
3331 }
3332
3333 buf += 7 + 2 * COOKIE_LEN;
3334 while (*buf == ' ')
3335 buf++;
3336#endif /* CONFIG_CTRL_IFACE_UDP */
3337
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003338 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
3339 char *pos = os_strchr(buf + 7, ' ');
3340
3341 if (pos) {
3342 *pos++ = '\0';
3343 reply_len = hostapd_global_ctrl_iface_ifname(
3344 interfaces, buf + 7, pos, reply, reply_size,
3345 &from, fromlen);
3346 goto send_reply;
3347 }
3348 }
3349
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003350 if (os_strcmp(buf, "PING") == 0) {
3351 os_memcpy(reply, "PONG\n", 5);
3352 reply_len = 5;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08003353 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
3354 if (wpa_debug_reopen_file() < 0)
3355 reply_len = -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003356 } else if (os_strcmp(buf, "FLUSH") == 0) {
3357 hostapd_ctrl_iface_flush(interfaces);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003358 } else if (os_strncmp(buf, "ADD ", 4) == 0) {
3359 if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
3360 reply_len = -1;
3361 } else if (os_strncmp(buf, "REMOVE ", 7) == 0) {
3362 if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
3363 reply_len = -1;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003364 } else if (os_strcmp(buf, "ATTACH") == 0) {
3365 if (hostapd_global_ctrl_iface_attach(interfaces, &from,
3366 fromlen))
3367 reply_len = -1;
3368 } else if (os_strcmp(buf, "DETACH") == 0) {
3369 if (hostapd_global_ctrl_iface_detach(interfaces, &from,
3370 fromlen))
3371 reply_len = -1;
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08003372#ifdef CONFIG_MODULE_TESTS
3373 } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08003374 if (hapd_module_tests() < 0)
3375 reply_len = -1;
3376#endif /* CONFIG_MODULE_TESTS */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003377#ifdef CONFIG_FST
3378 } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
3379 if (!hostapd_global_ctrl_iface_fst_attach(interfaces, buf + 11))
3380 reply_len = os_snprintf(reply, reply_size, "OK\n");
3381 else
3382 reply_len = -1;
3383 } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
3384 if (!hostapd_global_ctrl_iface_fst_detach(interfaces, buf + 11))
3385 reply_len = os_snprintf(reply, reply_size, "OK\n");
3386 else
3387 reply_len = -1;
3388 } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
3389 reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
3390#endif /* CONFIG_FST */
3391 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
3392 if (!hostapd_global_ctrl_iface_dup_network(interfaces,
3393 buf + 12))
3394 reply_len = os_snprintf(reply, reply_size, "OK\n");
3395 else
3396 reply_len = -1;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003397 } else if (os_strncmp(buf, "INTERFACES", 10) == 0) {
3398 reply_len = hostapd_global_ctrl_iface_interfaces(
3399 interfaces, buf + 10, reply, sizeof(buffer));
3400 } else if (os_strcmp(buf, "TERMINATE") == 0) {
3401 eloop_terminate();
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003402 } else {
3403 wpa_printf(MSG_DEBUG, "Unrecognized global ctrl_iface command "
3404 "ignored");
3405 reply_len = -1;
3406 }
3407
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003408send_reply:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003409 if (reply_len < 0) {
3410 os_memcpy(reply, "FAIL\n", 5);
3411 reply_len = 5;
3412 }
3413
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003414 if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
3415 fromlen) < 0) {
3416 wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
3417 strerror(errno));
3418 }
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003419 os_free(reply);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003420}
3421
3422
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003423#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003424static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface)
3425{
3426 char *buf;
3427 size_t len;
3428
3429 if (interface->global_iface_path == NULL)
3430 return NULL;
3431
3432 len = os_strlen(interface->global_iface_path) +
3433 os_strlen(interface->global_iface_name) + 2;
3434 buf = os_malloc(len);
3435 if (buf == NULL)
3436 return NULL;
3437
3438 os_snprintf(buf, len, "%s/%s", interface->global_iface_path,
3439 interface->global_iface_name);
3440 buf[len - 1] = '\0';
3441 return buf;
3442}
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003443#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003444
3445
3446int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
3447{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003448#ifdef CONFIG_CTRL_IFACE_UDP
3449 int port = HOSTAPD_GLOBAL_CTRL_IFACE_PORT;
3450 char p[32] = { 0 };
3451 char *pos;
3452 struct addrinfo hints = { 0 }, *res, *saveres;
3453 int n;
3454
3455 if (interface->global_ctrl_sock > -1) {
3456 wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
3457 return 0;
3458 }
3459
3460 if (interface->global_iface_path == NULL)
3461 return 0;
3462
3463 pos = os_strstr(interface->global_iface_path, "udp:");
3464 if (pos) {
3465 pos += 4;
3466 port = atoi(pos);
3467 if (port <= 0) {
3468 wpa_printf(MSG_ERROR, "Invalid global ctrl UDP port");
3469 goto fail;
3470 }
3471 }
3472
3473 dl_list_init(&interface->global_ctrl_dst);
3474 interface->global_ctrl_sock = -1;
3475 os_get_random(gcookie, COOKIE_LEN);
3476
3477#ifdef CONFIG_CTRL_IFACE_UDP_REMOTE
3478 hints.ai_flags = AI_PASSIVE;
3479#endif /* CONFIG_CTRL_IFACE_UDP_REMOTE */
3480
3481#ifdef CONFIG_CTRL_IFACE_UDP_IPV6
3482 hints.ai_family = AF_INET6;
3483#else /* CONFIG_CTRL_IFACE_UDP_IPV6 */
3484 hints.ai_family = AF_INET;
3485#endif /* CONFIG_CTRL_IFACE_UDP_IPV6 */
3486 hints.ai_socktype = SOCK_DGRAM;
3487
3488try_again:
3489 os_snprintf(p, sizeof(p), "%d", port);
3490 n = getaddrinfo(NULL, p, &hints, &res);
3491 if (n) {
3492 wpa_printf(MSG_ERROR, "getaddrinfo(): %s", gai_strerror(n));
3493 goto fail;
3494 }
3495
3496 saveres = res;
3497 interface->global_ctrl_sock = socket(res->ai_family, res->ai_socktype,
3498 res->ai_protocol);
3499 if (interface->global_ctrl_sock < 0) {
3500 wpa_printf(MSG_ERROR, "socket(PF_INET): %s", strerror(errno));
3501 goto fail;
3502 }
3503
3504 if (bind(interface->global_ctrl_sock, res->ai_addr, res->ai_addrlen) <
3505 0) {
3506 port++;
3507 if ((port - HOSTAPD_GLOBAL_CTRL_IFACE_PORT) <
3508 HOSTAPD_GLOBAL_CTRL_IFACE_PORT_LIMIT && !pos)
3509 goto try_again;
3510 wpa_printf(MSG_ERROR, "bind(AF_INET): %s", strerror(errno));
3511 goto fail;
3512 }
3513
3514 freeaddrinfo(saveres);
3515
3516 wpa_printf(MSG_DEBUG, "global ctrl_iface_init UDP port: %d", port);
3517
3518 if (eloop_register_read_sock(interface->global_ctrl_sock,
3519 hostapd_global_ctrl_iface_receive,
3520 interface, NULL) < 0) {
3521 hostapd_global_ctrl_iface_deinit(interface);
3522 return -1;
3523 }
3524
3525 return 0;
3526
3527fail:
3528 if (interface->global_ctrl_sock >= 0)
3529 close(interface->global_ctrl_sock);
3530 return -1;
3531#else /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003532 struct sockaddr_un addr;
3533 int s = -1;
3534 char *fname = NULL;
3535
3536 if (interface->global_iface_path == NULL) {
3537 wpa_printf(MSG_DEBUG, "ctrl_iface not configured!");
3538 return 0;
3539 }
3540
3541 if (mkdir(interface->global_iface_path, S_IRWXU | S_IRWXG) < 0) {
3542 if (errno == EEXIST) {
3543 wpa_printf(MSG_DEBUG, "Using existing control "
3544 "interface directory.");
3545 } else {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003546 wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
3547 strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003548 goto fail;
3549 }
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07003550 } else if (interface->ctrl_iface_group &&
3551 chown(interface->global_iface_path, -1,
3552 interface->ctrl_iface_group) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003553 wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
3554 strerror(errno));
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07003555 goto fail;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003556 }
3557
3558 if (os_strlen(interface->global_iface_path) + 1 +
3559 os_strlen(interface->global_iface_name) >= sizeof(addr.sun_path))
3560 goto fail;
3561
3562 s = socket(PF_UNIX, SOCK_DGRAM, 0);
3563 if (s < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003564 wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003565 goto fail;
3566 }
3567
3568 os_memset(&addr, 0, sizeof(addr));
3569#ifdef __FreeBSD__
3570 addr.sun_len = sizeof(addr);
3571#endif /* __FreeBSD__ */
3572 addr.sun_family = AF_UNIX;
3573 fname = hostapd_global_ctrl_iface_path(interface);
3574 if (fname == NULL)
3575 goto fail;
3576 os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
3577 if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
3578 wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
3579 strerror(errno));
3580 if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
3581 wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
3582 " allow connections - assuming it was left"
3583 "over from forced program termination");
3584 if (unlink(fname) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003585 wpa_printf(MSG_ERROR,
3586 "Could not unlink existing ctrl_iface socket '%s': %s",
3587 fname, strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003588 goto fail;
3589 }
3590 if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
3591 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003592 wpa_printf(MSG_ERROR, "bind(PF_UNIX): %s",
3593 strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003594 goto fail;
3595 }
3596 wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
3597 "ctrl_iface socket '%s'", fname);
3598 } else {
3599 wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
3600 "be in use - cannot override it");
3601 wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
3602 "not used anymore", fname);
3603 os_free(fname);
3604 fname = NULL;
3605 goto fail;
3606 }
3607 }
3608
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07003609 if (interface->ctrl_iface_group &&
3610 chown(fname, -1, interface->ctrl_iface_group) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003611 wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
3612 strerror(errno));
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07003613 goto fail;
3614 }
3615
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003616 if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003617 wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
3618 strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003619 goto fail;
3620 }
3621 os_free(fname);
3622
3623 interface->global_ctrl_sock = s;
3624 eloop_register_read_sock(s, hostapd_global_ctrl_iface_receive,
3625 interface, NULL);
3626
3627 return 0;
3628
3629fail:
3630 if (s >= 0)
3631 close(s);
3632 if (fname) {
3633 unlink(fname);
3634 os_free(fname);
3635 }
3636 return -1;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003637#endif /* CONFIG_CTRL_IFACE_UDP */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003638}
3639
3640
3641void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces)
3642{
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003643#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003644 char *fname = NULL;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003645#endif /* CONFIG_CTRL_IFACE_UDP */
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003646 struct wpa_ctrl_dst *dst, *prev;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003647
3648 if (interfaces->global_ctrl_sock > -1) {
3649 eloop_unregister_read_sock(interfaces->global_ctrl_sock);
3650 close(interfaces->global_ctrl_sock);
3651 interfaces->global_ctrl_sock = -1;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003652#ifndef CONFIG_CTRL_IFACE_UDP
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003653 fname = hostapd_global_ctrl_iface_path(interfaces);
3654 if (fname) {
3655 unlink(fname);
3656 os_free(fname);
3657 }
3658
3659 if (interfaces->global_iface_path &&
3660 rmdir(interfaces->global_iface_path) < 0) {
3661 if (errno == ENOTEMPTY) {
3662 wpa_printf(MSG_DEBUG, "Control interface "
3663 "directory not empty - leaving it "
3664 "behind");
3665 } else {
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07003666 wpa_printf(MSG_ERROR,
3667 "rmdir[ctrl_interface=%s]: %s",
3668 interfaces->global_iface_path,
3669 strerror(errno));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003670 }
3671 }
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003672#endif /* CONFIG_CTRL_IFACE_UDP */
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003673 }
3674
3675 os_free(interfaces->global_iface_path);
3676 interfaces->global_iface_path = NULL;
3677
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003678 dl_list_for_each_safe(dst, prev, &interfaces->global_ctrl_dst,
3679 struct wpa_ctrl_dst, list)
3680 os_free(dst);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003681}
3682
3683
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003684static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003685 enum wpa_msg_type type,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003686 const char *buf, size_t len)
3687{
3688 struct wpa_ctrl_dst *dst, *next;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003689 struct dl_list *ctrl_dst;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003690 struct msghdr msg;
3691 int idx;
3692 struct iovec io[2];
3693 char levelstr[10];
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003694 int s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003695
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003696 if (type != WPA_MSG_ONLY_GLOBAL) {
3697 s = hapd->ctrl_sock;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003698 ctrl_dst = &hapd->ctrl_dst;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003699 } else {
3700 s = hapd->iface->interfaces->global_ctrl_sock;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003701 ctrl_dst = &hapd->iface->interfaces->global_ctrl_dst;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003702 }
3703
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003704 if (s < 0 || dl_list_empty(ctrl_dst))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003705 return;
3706
3707 os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
3708 io[0].iov_base = levelstr;
3709 io[0].iov_len = os_strlen(levelstr);
3710 io[1].iov_base = (char *) buf;
3711 io[1].iov_len = len;
3712 os_memset(&msg, 0, sizeof(msg));
3713 msg.msg_iov = io;
3714 msg.msg_iovlen = 2;
3715
3716 idx = 0;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003717 dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003718 if (level >= dst->debug_level) {
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003719 sockaddr_print(MSG_DEBUG, "CTRL_IFACE monitor send",
3720 &dst->addr, dst->addrlen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003721 msg.msg_name = &dst->addr;
3722 msg.msg_namelen = dst->addrlen;
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003723 if (sendmsg(s, &msg, 0) < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003724 int _errno = errno;
3725 wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
3726 "%d - %s",
3727 idx, errno, strerror(errno));
3728 dst->errors++;
3729 if (dst->errors > 10 || _errno == ENOENT) {
Anton Nayshtutf715e8d2014-11-16 16:52:49 +02003730 if (type != WPA_MSG_ONLY_GLOBAL)
3731 hostapd_ctrl_iface_detach(
3732 hapd, &dst->addr,
3733 dst->addrlen);
3734 else
3735 hostapd_global_ctrl_iface_detach(
3736 hapd->iface->interfaces,
3737 &dst->addr,
3738 dst->addrlen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003739 }
3740 } else
3741 dst->errors = 0;
3742 }
3743 idx++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003744 }
3745}
3746
3747#endif /* CONFIG_NATIVE_WINDOWS */