hostapd: Use helper function to avoid duplicate deinit calls
[mech_eap.git] / src / ap / hostapd.c
1 /*
2  * hostapd / Initialization and configuration
3  * Copyright (c) 2002-2014, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "utils/includes.h"
10
11 #include "utils/common.h"
12 #include "utils/eloop.h"
13 #include "common/ieee802_11_defs.h"
14 #include "common/wpa_ctrl.h"
15 #include "radius/radius_client.h"
16 #include "radius/radius_das.h"
17 #include "eap_server/tncs.h"
18 #include "hostapd.h"
19 #include "authsrv.h"
20 #include "sta_info.h"
21 #include "accounting.h"
22 #include "ap_list.h"
23 #include "beacon.h"
24 #include "iapp.h"
25 #include "ieee802_1x.h"
26 #include "ieee802_11_auth.h"
27 #include "vlan_init.h"
28 #include "wpa_auth.h"
29 #include "wps_hostapd.h"
30 #include "hw_features.h"
31 #include "wpa_auth_glue.h"
32 #include "ap_drv_ops.h"
33 #include "ap_config.h"
34 #include "p2p_hostapd.h"
35 #include "gas_serv.h"
36 #include "dfs.h"
37 #include "ieee802_11.h"
38
39
40 static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason);
41 static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
42 static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd);
43 static int setup_interface2(struct hostapd_iface *iface);
44 static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx);
45
46
47 int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
48                                int (*cb)(struct hostapd_iface *iface,
49                                          void *ctx), void *ctx)
50 {
51         size_t i;
52         int ret;
53
54         for (i = 0; i < interfaces->count; i++) {
55                 ret = cb(interfaces->iface[i], ctx);
56                 if (ret)
57                         return ret;
58         }
59
60         return 0;
61 }
62
63
64 static void hostapd_reload_bss(struct hostapd_data *hapd)
65 {
66         struct hostapd_ssid *ssid;
67
68 #ifndef CONFIG_NO_RADIUS
69         radius_client_reconfig(hapd->radius, hapd->conf->radius);
70 #endif /* CONFIG_NO_RADIUS */
71
72         ssid = &hapd->conf->ssid;
73         if (!ssid->wpa_psk_set && ssid->wpa_psk && !ssid->wpa_psk->next &&
74             ssid->wpa_passphrase_set && ssid->wpa_passphrase) {
75                 /*
76                  * Force PSK to be derived again since SSID or passphrase may
77                  * have changed.
78                  */
79                 os_free(ssid->wpa_psk);
80                 ssid->wpa_psk = NULL;
81         }
82         if (hostapd_setup_wpa_psk(hapd->conf)) {
83                 wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
84                            "after reloading configuration");
85         }
86
87         if (hapd->conf->ieee802_1x || hapd->conf->wpa)
88                 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
89         else
90                 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
91
92         if ((hapd->conf->wpa || hapd->conf->osen) && hapd->wpa_auth == NULL) {
93                 hostapd_setup_wpa(hapd);
94                 if (hapd->wpa_auth)
95                         wpa_init_keys(hapd->wpa_auth);
96         } else if (hapd->conf->wpa) {
97                 const u8 *wpa_ie;
98                 size_t wpa_ie_len;
99                 hostapd_reconfig_wpa(hapd);
100                 wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
101                 if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len))
102                         wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
103                                    "the kernel driver.");
104         } else if (hapd->wpa_auth) {
105                 wpa_deinit(hapd->wpa_auth);
106                 hapd->wpa_auth = NULL;
107                 hostapd_set_privacy(hapd, 0);
108                 hostapd_setup_encryption(hapd->conf->iface, hapd);
109                 hostapd_set_generic_elem(hapd, (u8 *) "", 0);
110         }
111
112         ieee802_11_set_beacon(hapd);
113         hostapd_update_wps(hapd);
114
115         if (hapd->conf->ssid.ssid_set &&
116             hostapd_set_ssid(hapd, hapd->conf->ssid.ssid,
117                              hapd->conf->ssid.ssid_len)) {
118                 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
119                 /* try to continue */
120         }
121         wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
122 }
123
124
125 static void hostapd_clear_old(struct hostapd_iface *iface)
126 {
127         size_t j;
128
129         /*
130          * Deauthenticate all stations since the new configuration may not
131          * allow them to use the BSS anymore.
132          */
133         for (j = 0; j < iface->num_bss; j++) {
134                 hostapd_flush_old_stations(iface->bss[j],
135                                            WLAN_REASON_PREV_AUTH_NOT_VALID);
136                 hostapd_broadcast_wep_clear(iface->bss[j]);
137
138 #ifndef CONFIG_NO_RADIUS
139                 /* TODO: update dynamic data based on changed configuration
140                  * items (e.g., open/close sockets, etc.) */
141                 radius_client_flush(iface->bss[j]->radius, 0);
142 #endif /* CONFIG_NO_RADIUS */
143         }
144 }
145
146
147 int hostapd_reload_config(struct hostapd_iface *iface)
148 {
149         struct hostapd_data *hapd = iface->bss[0];
150         struct hostapd_config *newconf, *oldconf;
151         size_t j;
152
153         if (iface->config_fname == NULL) {
154                 /* Only in-memory config in use - assume it has been updated */
155                 hostapd_clear_old(iface);
156                 for (j = 0; j < iface->num_bss; j++)
157                         hostapd_reload_bss(iface->bss[j]);
158                 return 0;
159         }
160
161         if (iface->interfaces == NULL ||
162             iface->interfaces->config_read_cb == NULL)
163                 return -1;
164         newconf = iface->interfaces->config_read_cb(iface->config_fname);
165         if (newconf == NULL)
166                 return -1;
167
168         hostapd_clear_old(iface);
169
170         oldconf = hapd->iconf;
171         iface->conf = newconf;
172
173         for (j = 0; j < iface->num_bss; j++) {
174                 hapd = iface->bss[j];
175                 hapd->iconf = newconf;
176                 hapd->iconf->channel = oldconf->channel;
177                 hapd->iconf->secondary_channel = oldconf->secondary_channel;
178                 hapd->iconf->ieee80211n = oldconf->ieee80211n;
179                 hapd->iconf->ieee80211ac = oldconf->ieee80211ac;
180                 hapd->iconf->ht_capab = oldconf->ht_capab;
181                 hapd->iconf->vht_capab = oldconf->vht_capab;
182                 hapd->iconf->vht_oper_chwidth = oldconf->vht_oper_chwidth;
183                 hapd->iconf->vht_oper_centr_freq_seg0_idx =
184                         oldconf->vht_oper_centr_freq_seg0_idx;
185                 hapd->iconf->vht_oper_centr_freq_seg1_idx =
186                         oldconf->vht_oper_centr_freq_seg1_idx;
187                 hapd->conf = newconf->bss[j];
188                 hostapd_reload_bss(hapd);
189         }
190
191         hostapd_config_free(oldconf);
192
193
194         return 0;
195 }
196
197
198 static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
199                                               char *ifname)
200 {
201         int i;
202
203         for (i = 0; i < NUM_WEP_KEYS; i++) {
204                 if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
205                                         0, NULL, 0, NULL, 0)) {
206                         wpa_printf(MSG_DEBUG, "Failed to clear default "
207                                    "encryption keys (ifname=%s keyidx=%d)",
208                                    ifname, i);
209                 }
210         }
211 #ifdef CONFIG_IEEE80211W
212         if (hapd->conf->ieee80211w) {
213                 for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
214                         if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE,
215                                                 NULL, i, 0, NULL,
216                                                 0, NULL, 0)) {
217                                 wpa_printf(MSG_DEBUG, "Failed to clear "
218                                            "default mgmt encryption keys "
219                                            "(ifname=%s keyidx=%d)", ifname, i);
220                         }
221                 }
222         }
223 #endif /* CONFIG_IEEE80211W */
224 }
225
226
227 static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
228 {
229         hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
230         return 0;
231 }
232
233
234 static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
235 {
236         int errors = 0, idx;
237         struct hostapd_ssid *ssid = &hapd->conf->ssid;
238
239         idx = ssid->wep.idx;
240         if (ssid->wep.default_len &&
241             hostapd_drv_set_key(hapd->conf->iface,
242                                 hapd, WPA_ALG_WEP, broadcast_ether_addr, idx,
243                                 1, NULL, 0, ssid->wep.key[idx],
244                                 ssid->wep.len[idx])) {
245                 wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
246                 errors++;
247         }
248
249         return errors;
250 }
251
252
253 static void hostapd_free_hapd_data(struct hostapd_data *hapd)
254 {
255         if (!hapd->started) {
256                 wpa_printf(MSG_ERROR, "%s: Interface %s wasn't started",
257                            __func__, hapd->conf->iface);
258                 return;
259         }
260         hapd->started = 0;
261
262         wpa_printf(MSG_DEBUG, "%s(%s)", __func__, hapd->conf->iface);
263         iapp_deinit(hapd->iapp);
264         hapd->iapp = NULL;
265         accounting_deinit(hapd);
266         hostapd_deinit_wpa(hapd);
267         vlan_deinit(hapd);
268         hostapd_acl_deinit(hapd);
269 #ifndef CONFIG_NO_RADIUS
270         radius_client_deinit(hapd->radius);
271         hapd->radius = NULL;
272         radius_das_deinit(hapd->radius_das);
273         hapd->radius_das = NULL;
274 #endif /* CONFIG_NO_RADIUS */
275
276         hostapd_deinit_wps(hapd);
277
278         authsrv_deinit(hapd);
279
280         if (hapd->interface_added) {
281                 hapd->interface_added = 0;
282                 if (hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
283                         wpa_printf(MSG_WARNING,
284                                    "Failed to remove BSS interface %s",
285                                    hapd->conf->iface);
286                         hapd->interface_added = 1;
287                 }
288         }
289
290         os_free(hapd->probereq_cb);
291         hapd->probereq_cb = NULL;
292
293 #ifdef CONFIG_P2P
294         wpabuf_free(hapd->p2p_beacon_ie);
295         hapd->p2p_beacon_ie = NULL;
296         wpabuf_free(hapd->p2p_probe_resp_ie);
297         hapd->p2p_probe_resp_ie = NULL;
298 #endif /* CONFIG_P2P */
299
300         wpabuf_free(hapd->time_adv);
301
302 #ifdef CONFIG_INTERWORKING
303         gas_serv_deinit(hapd);
304 #endif /* CONFIG_INTERWORKING */
305
306 #ifdef CONFIG_SQLITE
307         os_free(hapd->tmp_eap_user.identity);
308         os_free(hapd->tmp_eap_user.password);
309 #endif /* CONFIG_SQLITE */
310 }
311
312
313 /**
314  * hostapd_cleanup - Per-BSS cleanup (deinitialization)
315  * @hapd: Pointer to BSS data
316  *
317  * This function is used to free all per-BSS data structures and resources.
318  * Most of the modules that are initialized in hostapd_setup_bss() are
319  * deinitialized here.
320  */
321 static void hostapd_cleanup(struct hostapd_data *hapd)
322 {
323         wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s))", __func__, hapd,
324                    hapd->conf->iface);
325         if (hapd->iface->interfaces &&
326             hapd->iface->interfaces->ctrl_iface_deinit)
327                 hapd->iface->interfaces->ctrl_iface_deinit(hapd);
328         hostapd_free_hapd_data(hapd);
329 }
330
331
332 static void hostapd_cleanup_iface_partial(struct hostapd_iface *iface)
333 {
334         wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
335         hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
336         iface->hw_features = NULL;
337         os_free(iface->current_rates);
338         iface->current_rates = NULL;
339         os_free(iface->basic_rates);
340         iface->basic_rates = NULL;
341         ap_list_deinit(iface);
342 }
343
344
345 /**
346  * hostapd_cleanup_iface - Complete per-interface cleanup
347  * @iface: Pointer to interface data
348  *
349  * This function is called after per-BSS data structures are deinitialized
350  * with hostapd_cleanup().
351  */
352 static void hostapd_cleanup_iface(struct hostapd_iface *iface)
353 {
354         wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
355         eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
356
357         hostapd_cleanup_iface_partial(iface);
358         hostapd_config_free(iface->conf);
359         iface->conf = NULL;
360
361         os_free(iface->config_fname);
362         os_free(iface->bss);
363         wpa_printf(MSG_DEBUG, "%s: free iface=%p", __func__, iface);
364         os_free(iface);
365 }
366
367
368 static void hostapd_clear_wep(struct hostapd_data *hapd)
369 {
370         if (hapd->drv_priv && !hapd->iface->driver_ap_teardown) {
371                 hostapd_set_privacy(hapd, 0);
372                 hostapd_broadcast_wep_clear(hapd);
373         }
374 }
375
376
377 static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
378 {
379         int i;
380
381         hostapd_broadcast_wep_set(hapd);
382
383         if (hapd->conf->ssid.wep.default_len) {
384                 hostapd_set_privacy(hapd, 1);
385                 return 0;
386         }
387
388         /*
389          * When IEEE 802.1X is not enabled, the driver may need to know how to
390          * set authentication algorithms for static WEP.
391          */
392         hostapd_drv_set_authmode(hapd, hapd->conf->auth_algs);
393
394         for (i = 0; i < 4; i++) {
395                 if (hapd->conf->ssid.wep.key[i] &&
396                     hostapd_drv_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
397                                         i == hapd->conf->ssid.wep.idx, NULL, 0,
398                                         hapd->conf->ssid.wep.key[i],
399                                         hapd->conf->ssid.wep.len[i])) {
400                         wpa_printf(MSG_WARNING, "Could not set WEP "
401                                    "encryption.");
402                         return -1;
403                 }
404                 if (hapd->conf->ssid.wep.key[i] &&
405                     i == hapd->conf->ssid.wep.idx)
406                         hostapd_set_privacy(hapd, 1);
407         }
408
409         return 0;
410 }
411
412
413 static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason)
414 {
415         int ret = 0;
416         u8 addr[ETH_ALEN];
417
418         if (hostapd_drv_none(hapd) || hapd->drv_priv == NULL)
419                 return 0;
420
421         if (!hapd->iface->driver_ap_teardown) {
422                 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
423                         "Flushing old station entries");
424
425                 if (hostapd_flush(hapd)) {
426                         wpa_msg(hapd->msg_ctx, MSG_WARNING,
427                                 "Could not connect to kernel driver");
428                         ret = -1;
429                 }
430         }
431         wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Deauthenticate all stations");
432         os_memset(addr, 0xff, ETH_ALEN);
433         hostapd_drv_sta_deauth(hapd, addr, reason);
434         hostapd_free_stas(hapd);
435
436         return ret;
437 }
438
439
440 static void hostapd_bss_deinit_no_free(struct hostapd_data *hapd)
441 {
442         hostapd_free_stas(hapd);
443         hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
444         hostapd_clear_wep(hapd);
445 }
446
447
448 /**
449  * hostapd_validate_bssid_configuration - Validate BSSID configuration
450  * @iface: Pointer to interface data
451  * Returns: 0 on success, -1 on failure
452  *
453  * This function is used to validate that the configured BSSIDs are valid.
454  */
455 static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
456 {
457         u8 mask[ETH_ALEN] = { 0 };
458         struct hostapd_data *hapd = iface->bss[0];
459         unsigned int i = iface->conf->num_bss, bits = 0, j;
460         int auto_addr = 0;
461
462         if (hostapd_drv_none(hapd))
463                 return 0;
464
465         /* Generate BSSID mask that is large enough to cover the BSSIDs. */
466
467         /* Determine the bits necessary to cover the number of BSSIDs. */
468         for (i--; i; i >>= 1)
469                 bits++;
470
471         /* Determine the bits necessary to any configured BSSIDs,
472            if they are higher than the number of BSSIDs. */
473         for (j = 0; j < iface->conf->num_bss; j++) {
474                 if (hostapd_mac_comp_empty(iface->conf->bss[j]->bssid) == 0) {
475                         if (j)
476                                 auto_addr++;
477                         continue;
478                 }
479
480                 for (i = 0; i < ETH_ALEN; i++) {
481                         mask[i] |=
482                                 iface->conf->bss[j]->bssid[i] ^
483                                 hapd->own_addr[i];
484                 }
485         }
486
487         if (!auto_addr)
488                 goto skip_mask_ext;
489
490         for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
491                 ;
492         j = 0;
493         if (i < ETH_ALEN) {
494                 j = (5 - i) * 8;
495
496                 while (mask[i] != 0) {
497                         mask[i] >>= 1;
498                         j++;
499                 }
500         }
501
502         if (bits < j)
503                 bits = j;
504
505         if (bits > 40) {
506                 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
507                            bits);
508                 return -1;
509         }
510
511         os_memset(mask, 0xff, ETH_ALEN);
512         j = bits / 8;
513         for (i = 5; i > 5 - j; i--)
514                 mask[i] = 0;
515         j = bits % 8;
516         while (j--)
517                 mask[i] <<= 1;
518
519 skip_mask_ext:
520         wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
521                    (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
522
523         if (!auto_addr)
524                 return 0;
525
526         for (i = 0; i < ETH_ALEN; i++) {
527                 if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
528                         wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
529                                    " for start address " MACSTR ".",
530                                    MAC2STR(mask), MAC2STR(hapd->own_addr));
531                         wpa_printf(MSG_ERROR, "Start address must be the "
532                                    "first address in the block (i.e., addr "
533                                    "AND mask == addr).");
534                         return -1;
535                 }
536         }
537
538         return 0;
539 }
540
541
542 static int mac_in_conf(struct hostapd_config *conf, const void *a)
543 {
544         size_t i;
545
546         for (i = 0; i < conf->num_bss; i++) {
547                 if (hostapd_mac_comp(conf->bss[i]->bssid, a) == 0) {
548                         return 1;
549                 }
550         }
551
552         return 0;
553 }
554
555
556 #ifndef CONFIG_NO_RADIUS
557
558 static int hostapd_das_nas_mismatch(struct hostapd_data *hapd,
559                                     struct radius_das_attrs *attr)
560 {
561         if (attr->nas_identifier &&
562             (!hapd->conf->nas_identifier ||
563              os_strlen(hapd->conf->nas_identifier) !=
564              attr->nas_identifier_len ||
565              os_memcmp(hapd->conf->nas_identifier, attr->nas_identifier,
566                        attr->nas_identifier_len) != 0)) {
567                 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-Identifier mismatch");
568                 return 1;
569         }
570
571         if (attr->nas_ip_addr &&
572             (hapd->conf->own_ip_addr.af != AF_INET ||
573              os_memcmp(&hapd->conf->own_ip_addr.u.v4, attr->nas_ip_addr, 4) !=
574              0)) {
575                 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-IP-Address mismatch");
576                 return 1;
577         }
578
579 #ifdef CONFIG_IPV6
580         if (attr->nas_ipv6_addr &&
581             (hapd->conf->own_ip_addr.af != AF_INET6 ||
582              os_memcmp(&hapd->conf->own_ip_addr.u.v6, attr->nas_ipv6_addr, 16)
583              != 0)) {
584                 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-IPv6-Address mismatch");
585                 return 1;
586         }
587 #endif /* CONFIG_IPV6 */
588
589         return 0;
590 }
591
592
593 static struct sta_info * hostapd_das_find_sta(struct hostapd_data *hapd,
594                                               struct radius_das_attrs *attr)
595 {
596         struct sta_info *sta = NULL;
597         char buf[128];
598
599         if (attr->sta_addr)
600                 sta = ap_get_sta(hapd, attr->sta_addr);
601
602         if (sta == NULL && attr->acct_session_id &&
603             attr->acct_session_id_len == 17) {
604                 for (sta = hapd->sta_list; sta; sta = sta->next) {
605                         os_snprintf(buf, sizeof(buf), "%08X-%08X",
606                                     sta->acct_session_id_hi,
607                                     sta->acct_session_id_lo);
608                         if (os_memcmp(attr->acct_session_id, buf, 17) == 0)
609                                 break;
610                 }
611         }
612
613         if (sta == NULL && attr->cui) {
614                 for (sta = hapd->sta_list; sta; sta = sta->next) {
615                         struct wpabuf *cui;
616                         cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
617                         if (cui && wpabuf_len(cui) == attr->cui_len &&
618                             os_memcmp(wpabuf_head(cui), attr->cui,
619                                       attr->cui_len) == 0)
620                                 break;
621                 }
622         }
623
624         if (sta == NULL && attr->user_name) {
625                 for (sta = hapd->sta_list; sta; sta = sta->next) {
626                         u8 *identity;
627                         size_t identity_len;
628                         identity = ieee802_1x_get_identity(sta->eapol_sm,
629                                                            &identity_len);
630                         if (identity &&
631                             identity_len == attr->user_name_len &&
632                             os_memcmp(identity, attr->user_name, identity_len)
633                             == 0)
634                                 break;
635                 }
636         }
637
638         return sta;
639 }
640
641
642 static enum radius_das_res
643 hostapd_das_disconnect(void *ctx, struct radius_das_attrs *attr)
644 {
645         struct hostapd_data *hapd = ctx;
646         struct sta_info *sta;
647
648         if (hostapd_das_nas_mismatch(hapd, attr))
649                 return RADIUS_DAS_NAS_MISMATCH;
650
651         sta = hostapd_das_find_sta(hapd, attr);
652         if (sta == NULL)
653                 return RADIUS_DAS_SESSION_NOT_FOUND;
654
655         wpa_auth_pmksa_remove(hapd->wpa_auth, sta->addr);
656
657         hostapd_drv_sta_deauth(hapd, sta->addr,
658                                WLAN_REASON_PREV_AUTH_NOT_VALID);
659         ap_sta_deauthenticate(hapd, sta, WLAN_REASON_PREV_AUTH_NOT_VALID);
660
661         return RADIUS_DAS_SUCCESS;
662 }
663
664 #endif /* CONFIG_NO_RADIUS */
665
666
667 /**
668  * hostapd_setup_bss - Per-BSS setup (initialization)
669  * @hapd: Pointer to BSS data
670  * @first: Whether this BSS is the first BSS of an interface; -1 = not first,
671  *      but interface may exist
672  *
673  * This function is used to initialize all per-BSS data structures and
674  * resources. This gets called in a loop for each BSS when an interface is
675  * initialized. Most of the modules that are initialized here will be
676  * deinitialized in hostapd_cleanup().
677  */
678 static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
679 {
680         struct hostapd_bss_config *conf = hapd->conf;
681         u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
682         int ssid_len, set_ssid;
683         char force_ifname[IFNAMSIZ];
684         u8 if_addr[ETH_ALEN];
685
686         wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s), first=%d)",
687                    __func__, hapd, hapd->conf->iface, first);
688
689 #ifdef EAP_SERVER_TNC
690         if (hapd->conf->tnc && tncs_global_init() < 0) {
691                 wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
692                 return -1;
693         }
694 #endif /* EAP_SERVER_TNC */
695
696         if (hapd->started) {
697                 wpa_printf(MSG_ERROR, "%s: Interface %s was already started",
698                            __func__, hapd->conf->iface);
699                 return -1;
700         }
701         hapd->started = 1;
702
703         if (!first || first == -1) {
704                 if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
705                         /* Allocate the next available BSSID. */
706                         do {
707                                 inc_byte_array(hapd->own_addr, ETH_ALEN);
708                         } while (mac_in_conf(hapd->iconf, hapd->own_addr));
709                 } else {
710                         /* Allocate the configured BSSID. */
711                         os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
712
713                         if (hostapd_mac_comp(hapd->own_addr,
714                                              hapd->iface->bss[0]->own_addr) ==
715                             0) {
716                                 wpa_printf(MSG_ERROR, "BSS '%s' may not have "
717                                            "BSSID set to the MAC address of "
718                                            "the radio", hapd->conf->iface);
719                                 return -1;
720                         }
721                 }
722
723                 hapd->interface_added = 1;
724                 if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
725                                    hapd->conf->iface, hapd->own_addr, hapd,
726                                    &hapd->drv_priv, force_ifname, if_addr,
727                                    hapd->conf->bridge[0] ? hapd->conf->bridge :
728                                    NULL, first == -1)) {
729                         wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
730                                    MACSTR ")", MAC2STR(hapd->own_addr));
731                         hapd->interface_added = 0;
732                         return -1;
733                 }
734         }
735
736         if (conf->wmm_enabled < 0)
737                 conf->wmm_enabled = hapd->iconf->ieee80211n;
738
739         hostapd_flush_old_stations(hapd, WLAN_REASON_PREV_AUTH_NOT_VALID);
740         hostapd_set_privacy(hapd, 0);
741
742         hostapd_broadcast_wep_clear(hapd);
743         if (hostapd_setup_encryption(hapd->conf->iface, hapd))
744                 return -1;
745
746         /*
747          * Fetch the SSID from the system and use it or,
748          * if one was specified in the config file, verify they
749          * match.
750          */
751         ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
752         if (ssid_len < 0) {
753                 wpa_printf(MSG_ERROR, "Could not read SSID from system");
754                 return -1;
755         }
756         if (conf->ssid.ssid_set) {
757                 /*
758                  * If SSID is specified in the config file and it differs
759                  * from what is being used then force installation of the
760                  * new SSID.
761                  */
762                 set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
763                             os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
764         } else {
765                 /*
766                  * No SSID in the config file; just use the one we got
767                  * from the system.
768                  */
769                 set_ssid = 0;
770                 conf->ssid.ssid_len = ssid_len;
771                 os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
772         }
773
774         if (!hostapd_drv_none(hapd)) {
775                 wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
776                            " and ssid \"%s\"",
777                            hapd->conf->iface, MAC2STR(hapd->own_addr),
778                            wpa_ssid_txt(hapd->conf->ssid.ssid,
779                                         hapd->conf->ssid.ssid_len));
780         }
781
782         if (hostapd_setup_wpa_psk(conf)) {
783                 wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
784                 return -1;
785         }
786
787         /* Set SSID for the kernel driver (to be used in beacon and probe
788          * response frames) */
789         if (set_ssid && hostapd_set_ssid(hapd, conf->ssid.ssid,
790                                          conf->ssid.ssid_len)) {
791                 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
792                 return -1;
793         }
794
795         if (wpa_debug_level <= MSG_MSGDUMP)
796                 conf->radius->msg_dumps = 1;
797 #ifndef CONFIG_NO_RADIUS
798         hapd->radius = radius_client_init(hapd, conf->radius);
799         if (hapd->radius == NULL) {
800                 wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
801                 return -1;
802         }
803
804         if (hapd->conf->radius_das_port) {
805                 struct radius_das_conf das_conf;
806                 os_memset(&das_conf, 0, sizeof(das_conf));
807                 das_conf.port = hapd->conf->radius_das_port;
808                 das_conf.shared_secret = hapd->conf->radius_das_shared_secret;
809                 das_conf.shared_secret_len =
810                         hapd->conf->radius_das_shared_secret_len;
811                 das_conf.client_addr = &hapd->conf->radius_das_client_addr;
812                 das_conf.time_window = hapd->conf->radius_das_time_window;
813                 das_conf.require_event_timestamp =
814                         hapd->conf->radius_das_require_event_timestamp;
815                 das_conf.ctx = hapd;
816                 das_conf.disconnect = hostapd_das_disconnect;
817                 hapd->radius_das = radius_das_init(&das_conf);
818                 if (hapd->radius_das == NULL) {
819                         wpa_printf(MSG_ERROR, "RADIUS DAS initialization "
820                                    "failed.");
821                         return -1;
822                 }
823         }
824 #endif /* CONFIG_NO_RADIUS */
825
826         if (hostapd_acl_init(hapd)) {
827                 wpa_printf(MSG_ERROR, "ACL initialization failed.");
828                 return -1;
829         }
830         if (hostapd_init_wps(hapd, conf))
831                 return -1;
832
833         if (authsrv_init(hapd) < 0)
834                 return -1;
835
836         if (ieee802_1x_init(hapd)) {
837                 wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
838                 return -1;
839         }
840
841         if ((hapd->conf->wpa || hapd->conf->osen) && hostapd_setup_wpa(hapd))
842                 return -1;
843
844         if (accounting_init(hapd)) {
845                 wpa_printf(MSG_ERROR, "Accounting initialization failed.");
846                 return -1;
847         }
848
849         if (hapd->conf->ieee802_11f &&
850             (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
851                 wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
852                            "failed.");
853                 return -1;
854         }
855
856 #ifdef CONFIG_INTERWORKING
857         if (gas_serv_init(hapd)) {
858                 wpa_printf(MSG_ERROR, "GAS server initialization failed");
859                 return -1;
860         }
861
862         if (conf->qos_map_set_len &&
863             hostapd_drv_set_qos_map(hapd, conf->qos_map_set,
864                                     conf->qos_map_set_len)) {
865                 wpa_printf(MSG_ERROR, "Failed to initialize QoS Map");
866                 return -1;
867         }
868 #endif /* CONFIG_INTERWORKING */
869
870         if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
871                 wpa_printf(MSG_ERROR, "VLAN initialization failed.");
872                 return -1;
873         }
874
875         if (!hapd->conf->start_disabled && ieee802_11_set_beacon(hapd) < 0)
876                 return -1;
877
878         if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
879                 return -1;
880
881         if (hapd->driver && hapd->driver->set_operstate)
882                 hapd->driver->set_operstate(hapd->drv_priv, 1);
883
884         return 0;
885 }
886
887
888 static void hostapd_tx_queue_params(struct hostapd_iface *iface)
889 {
890         struct hostapd_data *hapd = iface->bss[0];
891         int i;
892         struct hostapd_tx_queue_params *p;
893
894         for (i = 0; i < NUM_TX_QUEUES; i++) {
895                 p = &iface->conf->tx_queue[i];
896
897                 if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
898                                                 p->cwmax, p->burst)) {
899                         wpa_printf(MSG_DEBUG, "Failed to set TX queue "
900                                    "parameters for queue %d.", i);
901                         /* Continue anyway */
902                 }
903         }
904 }
905
906
907 static int hostapd_set_acl_list(struct hostapd_data *hapd,
908                                 struct mac_acl_entry *mac_acl,
909                                 int n_entries, u8 accept_acl)
910 {
911         struct hostapd_acl_params *acl_params;
912         int i, err;
913
914         acl_params = os_zalloc(sizeof(*acl_params) +
915                                (n_entries * sizeof(acl_params->mac_acl[0])));
916         if (!acl_params)
917                 return -ENOMEM;
918
919         for (i = 0; i < n_entries; i++)
920                 os_memcpy(acl_params->mac_acl[i].addr, mac_acl[i].addr,
921                           ETH_ALEN);
922
923         acl_params->acl_policy = accept_acl;
924         acl_params->num_mac_acl = n_entries;
925
926         err = hostapd_drv_set_acl(hapd, acl_params);
927
928         os_free(acl_params);
929
930         return err;
931 }
932
933
934 static void hostapd_set_acl(struct hostapd_data *hapd)
935 {
936         struct hostapd_config *conf = hapd->iconf;
937         int err;
938         u8 accept_acl;
939
940         if (hapd->iface->drv_max_acl_mac_addrs == 0)
941                 return;
942         if (!(conf->bss[0]->num_accept_mac || conf->bss[0]->num_deny_mac))
943                 return;
944
945         if (conf->bss[0]->macaddr_acl == DENY_UNLESS_ACCEPTED) {
946                 if (conf->bss[0]->num_accept_mac) {
947                         accept_acl = 1;
948                         err = hostapd_set_acl_list(hapd,
949                                                    conf->bss[0]->accept_mac,
950                                                    conf->bss[0]->num_accept_mac,
951                                                    accept_acl);
952                         if (err) {
953                                 wpa_printf(MSG_DEBUG, "Failed to set accept acl");
954                                 return;
955                         }
956                 } else {
957                         wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
958                 }
959         } else if (conf->bss[0]->macaddr_acl == ACCEPT_UNLESS_DENIED) {
960                 if (conf->bss[0]->num_deny_mac) {
961                         accept_acl = 0;
962                         err = hostapd_set_acl_list(hapd, conf->bss[0]->deny_mac,
963                                                    conf->bss[0]->num_deny_mac,
964                                                    accept_acl);
965                         if (err) {
966                                 wpa_printf(MSG_DEBUG, "Failed to set deny acl");
967                                 return;
968                         }
969                 } else {
970                         wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
971                 }
972         }
973 }
974
975
976 static int start_ctrl_iface_bss(struct hostapd_data *hapd)
977 {
978         if (!hapd->iface->interfaces ||
979             !hapd->iface->interfaces->ctrl_iface_init)
980                 return 0;
981
982         if (hapd->iface->interfaces->ctrl_iface_init(hapd)) {
983                 wpa_printf(MSG_ERROR,
984                            "Failed to setup control interface for %s",
985                            hapd->conf->iface);
986                 return -1;
987         }
988
989         return 0;
990 }
991
992
993 static int start_ctrl_iface(struct hostapd_iface *iface)
994 {
995         size_t i;
996
997         if (!iface->interfaces || !iface->interfaces->ctrl_iface_init)
998                 return 0;
999
1000         for (i = 0; i < iface->num_bss; i++) {
1001                 struct hostapd_data *hapd = iface->bss[i];
1002                 if (iface->interfaces->ctrl_iface_init(hapd)) {
1003                         wpa_printf(MSG_ERROR,
1004                                    "Failed to setup control interface for %s",
1005                                    hapd->conf->iface);
1006                         return -1;
1007                 }
1008         }
1009
1010         return 0;
1011 }
1012
1013
1014 static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx)
1015 {
1016         struct hostapd_iface *iface = eloop_ctx;
1017
1018         if (!iface->wait_channel_update) {
1019                 wpa_printf(MSG_INFO, "Channel list update timeout, but interface was not waiting for it");
1020                 return;
1021         }
1022
1023         /*
1024          * It is possible that the existing channel list is acceptable, so try
1025          * to proceed.
1026          */
1027         wpa_printf(MSG_DEBUG, "Channel list update timeout - try to continue anyway");
1028         setup_interface2(iface);
1029 }
1030
1031
1032 void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator)
1033 {
1034         if (!iface->wait_channel_update || initiator != REGDOM_SET_BY_USER)
1035                 return;
1036
1037         wpa_printf(MSG_DEBUG, "Channel list updated - continue setup");
1038         eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
1039         setup_interface2(iface);
1040 }
1041
1042
1043 static int setup_interface(struct hostapd_iface *iface)
1044 {
1045         struct hostapd_data *hapd = iface->bss[0];
1046         size_t i;
1047
1048         /*
1049          * It is possible that setup_interface() is called after the interface
1050          * was disabled etc., in which case driver_ap_teardown is possibly set
1051          * to 1. Clear it here so any other key/station deletion, which is not
1052          * part of a teardown flow, would also call the relevant driver
1053          * callbacks.
1054          */
1055         iface->driver_ap_teardown = 0;
1056
1057         if (!iface->phy[0]) {
1058                 const char *phy = hostapd_drv_get_radio_name(hapd);
1059                 if (phy) {
1060                         wpa_printf(MSG_DEBUG, "phy: %s", phy);
1061                         os_strlcpy(iface->phy, phy, sizeof(iface->phy));
1062                 }
1063         }
1064
1065         /*
1066          * Make sure that all BSSes get configured with a pointer to the same
1067          * driver interface.
1068          */
1069         for (i = 1; i < iface->num_bss; i++) {
1070                 iface->bss[i]->driver = hapd->driver;
1071                 iface->bss[i]->drv_priv = hapd->drv_priv;
1072         }
1073
1074         if (hostapd_validate_bssid_configuration(iface))
1075                 return -1;
1076
1077         /*
1078          * Initialize control interfaces early to allow external monitoring of
1079          * channel setup operations that may take considerable amount of time
1080          * especially for DFS cases.
1081          */
1082         if (start_ctrl_iface(iface))
1083                 return -1;
1084
1085         if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
1086                 char country[4], previous_country[4];
1087
1088                 hostapd_set_state(iface, HAPD_IFACE_COUNTRY_UPDATE);
1089                 if (hostapd_get_country(hapd, previous_country) < 0)
1090                         previous_country[0] = '\0';
1091
1092                 os_memcpy(country, hapd->iconf->country, 3);
1093                 country[3] = '\0';
1094                 if (hostapd_set_country(hapd, country) < 0) {
1095                         wpa_printf(MSG_ERROR, "Failed to set country code");
1096                         return -1;
1097                 }
1098
1099                 wpa_printf(MSG_DEBUG, "Previous country code %s, new country code %s",
1100                            previous_country, country);
1101
1102                 if (os_strncmp(previous_country, country, 2) != 0) {
1103                         wpa_printf(MSG_DEBUG, "Continue interface setup after channel list update");
1104                         iface->wait_channel_update = 1;
1105                         eloop_register_timeout(5, 0,
1106                                                channel_list_update_timeout,
1107                                                iface, NULL);
1108                         return 0;
1109                 }
1110         }
1111
1112         return setup_interface2(iface);
1113 }
1114
1115
1116 static int setup_interface2(struct hostapd_iface *iface)
1117 {
1118         iface->wait_channel_update = 0;
1119
1120         if (hostapd_get_hw_features(iface)) {
1121                 /* Not all drivers support this yet, so continue without hw
1122                  * feature data. */
1123         } else {
1124                 int ret = hostapd_select_hw_mode(iface);
1125                 if (ret < 0) {
1126                         wpa_printf(MSG_ERROR, "Could not select hw_mode and "
1127                                    "channel. (%d)", ret);
1128                         goto fail;
1129                 }
1130                 if (ret == 1) {
1131                         wpa_printf(MSG_DEBUG, "Interface initialization will be completed in a callback (ACS)");
1132                         return 0;
1133                 }
1134                 ret = hostapd_check_ht_capab(iface);
1135                 if (ret < 0)
1136                         goto fail;
1137                 if (ret == 1) {
1138                         wpa_printf(MSG_DEBUG, "Interface initialization will "
1139                                    "be completed in a callback");
1140                         return 0;
1141                 }
1142
1143                 if (iface->conf->ieee80211h)
1144                         wpa_printf(MSG_DEBUG, "DFS support is enabled");
1145         }
1146         return hostapd_setup_interface_complete(iface, 0);
1147
1148 fail:
1149         hostapd_set_state(iface, HAPD_IFACE_DISABLED);
1150         wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
1151         if (iface->interfaces && iface->interfaces->terminate_on_error)
1152                 eloop_terminate();
1153         return -1;
1154 }
1155
1156
1157 /**
1158  * hostapd_setup_interface_complete - Complete interface setup
1159  *
1160  * This function is called when previous steps in the interface setup has been
1161  * completed. This can also start operations, e.g., DFS, that will require
1162  * additional processing before interface is ready to be enabled. Such
1163  * operations will call this function from eloop callbacks when finished.
1164  */
1165 int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
1166 {
1167         struct hostapd_data *hapd = iface->bss[0];
1168         size_t j;
1169         u8 *prev_addr;
1170
1171         if (err)
1172                 goto fail;
1173
1174         wpa_printf(MSG_DEBUG, "Completing interface initialization");
1175         if (iface->conf->channel) {
1176 #ifdef NEED_AP_MLME
1177                 int res;
1178 #endif /* NEED_AP_MLME */
1179
1180                 iface->freq = hostapd_hw_get_freq(hapd, iface->conf->channel);
1181                 wpa_printf(MSG_DEBUG, "Mode: %s  Channel: %d  "
1182                            "Frequency: %d MHz",
1183                            hostapd_hw_mode_txt(iface->conf->hw_mode),
1184                            iface->conf->channel, iface->freq);
1185
1186 #ifdef NEED_AP_MLME
1187                 /* Check DFS */
1188                 res = hostapd_handle_dfs(iface);
1189                 if (res <= 0) {
1190                         if (res < 0)
1191                                 goto fail;
1192                         return res;
1193                 }
1194 #endif /* NEED_AP_MLME */
1195
1196                 if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, iface->freq,
1197                                      hapd->iconf->channel,
1198                                      hapd->iconf->ieee80211n,
1199                                      hapd->iconf->ieee80211ac,
1200                                      hapd->iconf->secondary_channel,
1201                                      hapd->iconf->vht_oper_chwidth,
1202                                      hapd->iconf->vht_oper_centr_freq_seg0_idx,
1203                                      hapd->iconf->vht_oper_centr_freq_seg1_idx)) {
1204                         wpa_printf(MSG_ERROR, "Could not set channel for "
1205                                    "kernel driver");
1206                         goto fail;
1207                 }
1208         }
1209
1210         if (iface->current_mode) {
1211                 if (hostapd_prepare_rates(iface, iface->current_mode)) {
1212                         wpa_printf(MSG_ERROR, "Failed to prepare rates "
1213                                    "table.");
1214                         hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
1215                                        HOSTAPD_LEVEL_WARNING,
1216                                        "Failed to prepare rates table.");
1217                         goto fail;
1218                 }
1219         }
1220
1221         if (hapd->iconf->rts_threshold > -1 &&
1222             hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
1223                 wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
1224                            "kernel driver");
1225                 goto fail;
1226         }
1227
1228         if (hapd->iconf->fragm_threshold > -1 &&
1229             hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
1230                 wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
1231                            "for kernel driver");
1232                 goto fail;
1233         }
1234
1235         prev_addr = hapd->own_addr;
1236
1237         for (j = 0; j < iface->num_bss; j++) {
1238                 hapd = iface->bss[j];
1239                 if (j)
1240                         os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
1241                 if (hostapd_setup_bss(hapd, j == 0)) {
1242                         do {
1243                                 hapd = iface->bss[j];
1244                                 hostapd_bss_deinit_no_free(hapd);
1245                                 hostapd_free_hapd_data(hapd);
1246                         } while (j-- > 0);
1247                         goto fail;
1248                 }
1249                 if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
1250                         prev_addr = hapd->own_addr;
1251         }
1252         hapd = iface->bss[0];
1253
1254         hostapd_tx_queue_params(iface);
1255
1256         ap_list_init(iface);
1257
1258         hostapd_set_acl(hapd);
1259
1260         if (hostapd_driver_commit(hapd) < 0) {
1261                 wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
1262                            "configuration", __func__);
1263                 goto fail;
1264         }
1265
1266         /*
1267          * WPS UPnP module can be initialized only when the "upnp_iface" is up.
1268          * If "interface" and "upnp_iface" are the same (e.g., non-bridge
1269          * mode), the interface is up only after driver_commit, so initialize
1270          * WPS after driver_commit.
1271          */
1272         for (j = 0; j < iface->num_bss; j++) {
1273                 if (hostapd_init_wps_complete(iface->bss[j]))
1274                         goto fail;
1275         }
1276
1277         hostapd_set_state(iface, HAPD_IFACE_ENABLED);
1278         wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_ENABLED);
1279         if (hapd->setup_complete_cb)
1280                 hapd->setup_complete_cb(hapd->setup_complete_cb_ctx);
1281
1282         wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
1283                    iface->bss[0]->conf->iface);
1284         if (iface->interfaces && iface->interfaces->terminate_on_error > 0)
1285                 iface->interfaces->terminate_on_error--;
1286
1287         return 0;
1288
1289 fail:
1290         wpa_printf(MSG_ERROR, "Interface initialization failed");
1291         hostapd_set_state(iface, HAPD_IFACE_DISABLED);
1292         wpa_msg(hapd->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
1293         if (iface->interfaces && iface->interfaces->terminate_on_error)
1294                 eloop_terminate();
1295         return -1;
1296 }
1297
1298
1299 /**
1300  * hostapd_setup_interface - Setup of an interface
1301  * @iface: Pointer to interface data.
1302  * Returns: 0 on success, -1 on failure
1303  *
1304  * Initializes the driver interface, validates the configuration,
1305  * and sets driver parameters based on the configuration.
1306  * Flushes old stations, sets the channel, encryption,
1307  * beacons, and WDS links based on the configuration.
1308  *
1309  * If interface setup requires more time, e.g., to perform HT co-ex scans, ACS,
1310  * or DFS operations, this function returns 0 before such operations have been
1311  * completed. The pending operations are registered into eloop and will be
1312  * completed from eloop callbacks. Those callbacks end up calling
1313  * hostapd_setup_interface_complete() once setup has been completed.
1314  */
1315 int hostapd_setup_interface(struct hostapd_iface *iface)
1316 {
1317         int ret;
1318
1319         ret = setup_interface(iface);
1320         if (ret) {
1321                 wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
1322                            iface->bss[0]->conf->iface);
1323                 return -1;
1324         }
1325
1326         return 0;
1327 }
1328
1329
1330 /**
1331  * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
1332  * @hapd_iface: Pointer to interface data
1333  * @conf: Pointer to per-interface configuration
1334  * @bss: Pointer to per-BSS configuration for this BSS
1335  * Returns: Pointer to allocated BSS data
1336  *
1337  * This function is used to allocate per-BSS data structure. This data will be
1338  * freed after hostapd_cleanup() is called for it during interface
1339  * deinitialization.
1340  */
1341 struct hostapd_data *
1342 hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
1343                        struct hostapd_config *conf,
1344                        struct hostapd_bss_config *bss)
1345 {
1346         struct hostapd_data *hapd;
1347
1348         hapd = os_zalloc(sizeof(*hapd));
1349         if (hapd == NULL)
1350                 return NULL;
1351
1352         hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
1353         hapd->iconf = conf;
1354         hapd->conf = bss;
1355         hapd->iface = hapd_iface;
1356         hapd->driver = hapd->iconf->driver;
1357         hapd->ctrl_sock = -1;
1358
1359         return hapd;
1360 }
1361
1362
1363 static void hostapd_bss_deinit(struct hostapd_data *hapd)
1364 {
1365         wpa_printf(MSG_DEBUG, "%s: deinit bss %s", __func__,
1366                    hapd->conf->iface);
1367         hostapd_bss_deinit_no_free(hapd);
1368         hostapd_cleanup(hapd);
1369 }
1370
1371
1372 void hostapd_interface_deinit(struct hostapd_iface *iface)
1373 {
1374         int j;
1375
1376         wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
1377         if (iface == NULL)
1378                 return;
1379
1380 #ifdef CONFIG_IEEE80211N
1381 #ifdef NEED_AP_MLME
1382         hostapd_stop_setup_timers(iface);
1383         eloop_cancel_timeout(ap_ht2040_timeout, iface, NULL);
1384 #endif /* NEED_AP_MLME */
1385 #endif /* CONFIG_IEEE80211N */
1386         eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
1387         iface->wait_channel_update = 0;
1388
1389         for (j = iface->num_bss - 1; j >= 0; j--)
1390                 hostapd_bss_deinit(iface->bss[j]);
1391 }
1392
1393
1394 void hostapd_interface_free(struct hostapd_iface *iface)
1395 {
1396         size_t j;
1397         wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
1398         for (j = 0; j < iface->num_bss; j++) {
1399                 wpa_printf(MSG_DEBUG, "%s: free hapd %p",
1400                            __func__, iface->bss[j]);
1401                 os_free(iface->bss[j]);
1402         }
1403         hostapd_cleanup_iface(iface);
1404 }
1405
1406
1407 /**
1408  * hostapd_init - Allocate and initialize per-interface data
1409  * @config_file: Path to the configuration file
1410  * Returns: Pointer to the allocated interface data or %NULL on failure
1411  *
1412  * This function is used to allocate main data structures for per-interface
1413  * data. The allocated data buffer will be freed by calling
1414  * hostapd_cleanup_iface().
1415  */
1416 struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
1417                                     const char *config_file)
1418 {
1419         struct hostapd_iface *hapd_iface = NULL;
1420         struct hostapd_config *conf = NULL;
1421         struct hostapd_data *hapd;
1422         size_t i;
1423
1424         hapd_iface = os_zalloc(sizeof(*hapd_iface));
1425         if (hapd_iface == NULL)
1426                 goto fail;
1427
1428         hapd_iface->config_fname = os_strdup(config_file);
1429         if (hapd_iface->config_fname == NULL)
1430                 goto fail;
1431
1432         conf = interfaces->config_read_cb(hapd_iface->config_fname);
1433         if (conf == NULL)
1434                 goto fail;
1435         hapd_iface->conf = conf;
1436
1437         hapd_iface->num_bss = conf->num_bss;
1438         hapd_iface->bss = os_calloc(conf->num_bss,
1439                                     sizeof(struct hostapd_data *));
1440         if (hapd_iface->bss == NULL)
1441                 goto fail;
1442
1443         for (i = 0; i < conf->num_bss; i++) {
1444                 hapd = hapd_iface->bss[i] =
1445                         hostapd_alloc_bss_data(hapd_iface, conf,
1446                                                conf->bss[i]);
1447                 if (hapd == NULL)
1448                         goto fail;
1449                 hapd->msg_ctx = hapd;
1450         }
1451
1452         return hapd_iface;
1453
1454 fail:
1455         wpa_printf(MSG_ERROR, "Failed to set up interface with %s",
1456                    config_file);
1457         if (conf)
1458                 hostapd_config_free(conf);
1459         if (hapd_iface) {
1460                 os_free(hapd_iface->config_fname);
1461                 os_free(hapd_iface->bss);
1462                 wpa_printf(MSG_DEBUG, "%s: free iface %p",
1463                            __func__, hapd_iface);
1464                 os_free(hapd_iface);
1465         }
1466         return NULL;
1467 }
1468
1469
1470 static int ifname_in_use(struct hapd_interfaces *interfaces, const char *ifname)
1471 {
1472         size_t i, j;
1473
1474         for (i = 0; i < interfaces->count; i++) {
1475                 struct hostapd_iface *iface = interfaces->iface[i];
1476                 for (j = 0; j < iface->num_bss; j++) {
1477                         struct hostapd_data *hapd = iface->bss[j];
1478                         if (os_strcmp(ifname, hapd->conf->iface) == 0)
1479                                 return 1;
1480                 }
1481         }
1482
1483         return 0;
1484 }
1485
1486
1487 /**
1488  * hostapd_interface_init_bss - Read configuration file and init BSS data
1489  *
1490  * This function is used to parse configuration file for a BSS. This BSS is
1491  * added to an existing interface sharing the same radio (if any) or a new
1492  * interface is created if this is the first interface on a radio. This
1493  * allocate memory for the BSS. No actual driver operations are started.
1494  *
1495  * This is similar to hostapd_interface_init(), but for a case where the
1496  * configuration is used to add a single BSS instead of all BSSes for a radio.
1497  */
1498 struct hostapd_iface *
1499 hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
1500                            const char *config_fname, int debug)
1501 {
1502         struct hostapd_iface *new_iface = NULL, *iface = NULL;
1503         struct hostapd_data *hapd;
1504         int k;
1505         size_t i, bss_idx;
1506
1507         if (!phy || !*phy)
1508                 return NULL;
1509
1510         for (i = 0; i < interfaces->count; i++) {
1511                 if (os_strcmp(interfaces->iface[i]->phy, phy) == 0) {
1512                         iface = interfaces->iface[i];
1513                         break;
1514                 }
1515         }
1516
1517         wpa_printf(MSG_INFO, "Configuration file: %s (phy %s)%s",
1518                    config_fname, phy, iface ? "" : " --> new PHY");
1519         if (iface) {
1520                 struct hostapd_config *conf;
1521                 struct hostapd_bss_config **tmp_conf;
1522                 struct hostapd_data **tmp_bss;
1523                 struct hostapd_bss_config *bss;
1524                 const char *ifname;
1525
1526                 /* Add new BSS to existing iface */
1527                 conf = interfaces->config_read_cb(config_fname);
1528                 if (conf == NULL)
1529                         return NULL;
1530                 if (conf->num_bss > 1) {
1531                         wpa_printf(MSG_ERROR, "Multiple BSSes specified in BSS-config");
1532                         hostapd_config_free(conf);
1533                         return NULL;
1534                 }
1535
1536                 ifname = conf->bss[0]->iface;
1537                 if (ifname[0] != '\0' && ifname_in_use(interfaces, ifname)) {
1538                         wpa_printf(MSG_ERROR,
1539                                    "Interface name %s already in use", ifname);
1540                         hostapd_config_free(conf);
1541                         return NULL;
1542                 }
1543
1544                 tmp_conf = os_realloc_array(
1545                         iface->conf->bss, iface->conf->num_bss + 1,
1546                         sizeof(struct hostapd_bss_config *));
1547                 tmp_bss = os_realloc_array(iface->bss, iface->num_bss + 1,
1548                                            sizeof(struct hostapd_data *));
1549                 if (tmp_bss)
1550                         iface->bss = tmp_bss;
1551                 if (tmp_conf) {
1552                         iface->conf->bss = tmp_conf;
1553                         iface->conf->last_bss = tmp_conf[0];
1554                 }
1555                 if (tmp_bss == NULL || tmp_conf == NULL) {
1556                         hostapd_config_free(conf);
1557                         return NULL;
1558                 }
1559                 bss = iface->conf->bss[iface->conf->num_bss] = conf->bss[0];
1560                 iface->conf->num_bss++;
1561
1562                 hapd = hostapd_alloc_bss_data(iface, iface->conf, bss);
1563                 if (hapd == NULL) {
1564                         iface->conf->num_bss--;
1565                         hostapd_config_free(conf);
1566                         return NULL;
1567                 }
1568                 iface->conf->last_bss = bss;
1569                 iface->bss[iface->num_bss] = hapd;
1570                 hapd->msg_ctx = hapd;
1571
1572                 bss_idx = iface->num_bss++;
1573                 conf->num_bss--;
1574                 conf->bss[0] = NULL;
1575                 hostapd_config_free(conf);
1576         } else {
1577                 /* Add a new iface with the first BSS */
1578                 new_iface = iface = hostapd_init(interfaces, config_fname);
1579                 if (!iface)
1580                         return NULL;
1581                 os_strlcpy(iface->phy, phy, sizeof(iface->phy));
1582                 iface->interfaces = interfaces;
1583                 bss_idx = 0;
1584         }
1585
1586         for (k = 0; k < debug; k++) {
1587                 if (iface->bss[bss_idx]->conf->logger_stdout_level > 0)
1588                         iface->bss[bss_idx]->conf->logger_stdout_level--;
1589         }
1590
1591         if (iface->conf->bss[bss_idx]->iface[0] == '\0' &&
1592             !hostapd_drv_none(iface->bss[bss_idx])) {
1593                 wpa_printf(MSG_ERROR, "Interface name not specified in %s",
1594                            config_fname);
1595                 if (new_iface)
1596                         hostapd_interface_deinit_free(new_iface);
1597                 return NULL;
1598         }
1599
1600         return iface;
1601 }
1602
1603
1604 void hostapd_interface_deinit_free(struct hostapd_iface *iface)
1605 {
1606         const struct wpa_driver_ops *driver;
1607         void *drv_priv;
1608
1609         wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
1610         if (iface == NULL)
1611                 return;
1612         wpa_printf(MSG_DEBUG, "%s: num_bss=%u conf->num_bss=%u",
1613                    __func__, (unsigned int) iface->num_bss,
1614                    (unsigned int) iface->conf->num_bss);
1615         driver = iface->bss[0]->driver;
1616         drv_priv = iface->bss[0]->drv_priv;
1617         hostapd_interface_deinit(iface);
1618         wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
1619                    __func__, driver, drv_priv);
1620         if (driver && driver->hapd_deinit && drv_priv)
1621                 driver->hapd_deinit(drv_priv);
1622         hostapd_interface_free(iface);
1623 }
1624
1625
1626 static void hostapd_deinit_driver(const struct wpa_driver_ops *driver,
1627                                   void *drv_priv,
1628                                   struct hostapd_iface *hapd_iface)
1629 {
1630         size_t j;
1631
1632         wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
1633                    __func__, driver, drv_priv);
1634         if (driver && driver->hapd_deinit && drv_priv) {
1635                 driver->hapd_deinit(drv_priv);
1636                 for (j = 0; j < hapd_iface->num_bss; j++) {
1637                         wpa_printf(MSG_DEBUG, "%s:bss[%d]->drv_priv=%p",
1638                                    __func__, (int) j,
1639                                    hapd_iface->bss[j]->drv_priv);
1640                         if (hapd_iface->bss[j]->drv_priv == drv_priv)
1641                                 hapd_iface->bss[j]->drv_priv = NULL;
1642                 }
1643         }
1644 }
1645
1646
1647 int hostapd_enable_iface(struct hostapd_iface *hapd_iface)
1648 {
1649         size_t j;
1650
1651         if (hapd_iface->bss[0]->drv_priv != NULL) {
1652                 wpa_printf(MSG_ERROR, "Interface %s already enabled",
1653                            hapd_iface->conf->bss[0]->iface);
1654                 return -1;
1655         }
1656
1657         wpa_printf(MSG_DEBUG, "Enable interface %s",
1658                    hapd_iface->conf->bss[0]->iface);
1659
1660         for (j = 0; j < hapd_iface->num_bss; j++)
1661                 hostapd_set_security_params(hapd_iface->conf->bss[j], 1);
1662         if (hostapd_config_check(hapd_iface->conf, 1) < 0) {
1663                 wpa_printf(MSG_INFO, "Invalid configuration - cannot enable");
1664                 return -1;
1665         }
1666
1667         if (hapd_iface->interfaces == NULL ||
1668             hapd_iface->interfaces->driver_init == NULL ||
1669             hapd_iface->interfaces->driver_init(hapd_iface))
1670                 return -1;
1671
1672         if (hostapd_setup_interface(hapd_iface)) {
1673                 hostapd_deinit_driver(hapd_iface->bss[0]->driver,
1674                                       hapd_iface->bss[0]->drv_priv,
1675                                       hapd_iface);
1676                 return -1;
1677         }
1678
1679         return 0;
1680 }
1681
1682
1683 int hostapd_reload_iface(struct hostapd_iface *hapd_iface)
1684 {
1685         size_t j;
1686
1687         wpa_printf(MSG_DEBUG, "Reload interface %s",
1688                    hapd_iface->conf->bss[0]->iface);
1689         for (j = 0; j < hapd_iface->num_bss; j++)
1690                 hostapd_set_security_params(hapd_iface->conf->bss[j], 1);
1691         if (hostapd_config_check(hapd_iface->conf, 1) < 0) {
1692                 wpa_printf(MSG_ERROR, "Updated configuration is invalid");
1693                 return -1;
1694         }
1695         hostapd_clear_old(hapd_iface);
1696         for (j = 0; j < hapd_iface->num_bss; j++)
1697                 hostapd_reload_bss(hapd_iface->bss[j]);
1698
1699         return 0;
1700 }
1701
1702
1703 int hostapd_disable_iface(struct hostapd_iface *hapd_iface)
1704 {
1705         size_t j;
1706         const struct wpa_driver_ops *driver;
1707         void *drv_priv;
1708
1709         if (hapd_iface == NULL)
1710                 return -1;
1711
1712         if (hapd_iface->bss[0]->drv_priv == NULL) {
1713                 wpa_printf(MSG_INFO, "Interface %s already disabled",
1714                            hapd_iface->conf->bss[0]->iface);
1715                 return -1;
1716         }
1717
1718         wpa_msg(hapd_iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
1719         driver = hapd_iface->bss[0]->driver;
1720         drv_priv = hapd_iface->bss[0]->drv_priv;
1721
1722         hapd_iface->driver_ap_teardown =
1723                 !!(hapd_iface->drv_flags &
1724                    WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
1725
1726         /* same as hostapd_interface_deinit without deinitializing ctrl-iface */
1727         for (j = 0; j < hapd_iface->num_bss; j++) {
1728                 struct hostapd_data *hapd = hapd_iface->bss[j];
1729                 hostapd_bss_deinit_no_free(hapd);
1730                 hostapd_free_hapd_data(hapd);
1731         }
1732
1733         hostapd_deinit_driver(driver, drv_priv, hapd_iface);
1734
1735         /* From hostapd_cleanup_iface: These were initialized in
1736          * hostapd_setup_interface and hostapd_setup_interface_complete
1737          */
1738         hostapd_cleanup_iface_partial(hapd_iface);
1739
1740         wpa_printf(MSG_DEBUG, "Interface %s disabled",
1741                    hapd_iface->bss[0]->conf->iface);
1742         hostapd_set_state(hapd_iface, HAPD_IFACE_DISABLED);
1743         return 0;
1744 }
1745
1746
1747 static struct hostapd_iface *
1748 hostapd_iface_alloc(struct hapd_interfaces *interfaces)
1749 {
1750         struct hostapd_iface **iface, *hapd_iface;
1751
1752         iface = os_realloc_array(interfaces->iface, interfaces->count + 1,
1753                                  sizeof(struct hostapd_iface *));
1754         if (iface == NULL)
1755                 return NULL;
1756         interfaces->iface = iface;
1757         hapd_iface = interfaces->iface[interfaces->count] =
1758                 os_zalloc(sizeof(*hapd_iface));
1759         if (hapd_iface == NULL) {
1760                 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
1761                            "the interface", __func__);
1762                 return NULL;
1763         }
1764         interfaces->count++;
1765         hapd_iface->interfaces = interfaces;
1766
1767         return hapd_iface;
1768 }
1769
1770
1771 static struct hostapd_config *
1772 hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname,
1773                      const char *ctrl_iface)
1774 {
1775         struct hostapd_bss_config *bss;
1776         struct hostapd_config *conf;
1777
1778         /* Allocates memory for bss and conf */
1779         conf = hostapd_config_defaults();
1780         if (conf == NULL) {
1781                  wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
1782                                 "configuration", __func__);
1783                 return NULL;
1784         }
1785
1786         conf->driver = wpa_drivers[0];
1787         if (conf->driver == NULL) {
1788                 wpa_printf(MSG_ERROR, "No driver wrappers registered!");
1789                 hostapd_config_free(conf);
1790                 return NULL;
1791         }
1792
1793         bss = conf->last_bss = conf->bss[0];
1794
1795         os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
1796         bss->ctrl_interface = os_strdup(ctrl_iface);
1797         if (bss->ctrl_interface == NULL) {
1798                 hostapd_config_free(conf);
1799                 return NULL;
1800         }
1801
1802         /* Reading configuration file skipped, will be done in SET!
1803          * From reading the configuration till the end has to be done in
1804          * SET
1805          */
1806         return conf;
1807 }
1808
1809
1810 static struct hostapd_iface * hostapd_data_alloc(
1811         struct hapd_interfaces *interfaces, struct hostapd_config *conf)
1812 {
1813         size_t i;
1814         struct hostapd_iface *hapd_iface =
1815                 interfaces->iface[interfaces->count - 1];
1816         struct hostapd_data *hapd;
1817
1818         hapd_iface->conf = conf;
1819         hapd_iface->num_bss = conf->num_bss;
1820
1821         hapd_iface->bss = os_zalloc(conf->num_bss *
1822                                     sizeof(struct hostapd_data *));
1823         if (hapd_iface->bss == NULL)
1824                 return NULL;
1825
1826         for (i = 0; i < conf->num_bss; i++) {
1827                 hapd = hapd_iface->bss[i] =
1828                         hostapd_alloc_bss_data(hapd_iface, conf, conf->bss[i]);
1829                 if (hapd == NULL)
1830                         return NULL;
1831                 hapd->msg_ctx = hapd;
1832         }
1833
1834         hapd_iface->interfaces = interfaces;
1835
1836         return hapd_iface;
1837 }
1838
1839
1840 int hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf)
1841 {
1842         struct hostapd_config *conf = NULL;
1843         struct hostapd_iface *hapd_iface = NULL, *new_iface = NULL;
1844         struct hostapd_data *hapd;
1845         char *ptr;
1846         size_t i, j;
1847         const char *conf_file = NULL, *phy_name = NULL;
1848
1849         if (os_strncmp(buf, "bss_config=", 11) == 0) {
1850                 char *pos;
1851                 phy_name = buf + 11;
1852                 pos = os_strchr(phy_name, ':');
1853                 if (!pos)
1854                         return -1;
1855                 *pos++ = '\0';
1856                 conf_file = pos;
1857                 if (!os_strlen(conf_file))
1858                         return -1;
1859
1860                 hapd_iface = hostapd_interface_init_bss(interfaces, phy_name,
1861                                                         conf_file, 0);
1862                 if (!hapd_iface)
1863                         return -1;
1864                 for (j = 0; j < interfaces->count; j++) {
1865                         if (interfaces->iface[j] == hapd_iface)
1866                                 break;
1867                 }
1868                 if (j == interfaces->count) {
1869                         struct hostapd_iface **tmp;
1870                         tmp = os_realloc_array(interfaces->iface,
1871                                                interfaces->count + 1,
1872                                                sizeof(struct hostapd_iface *));
1873                         if (!tmp) {
1874                                 hostapd_interface_deinit_free(hapd_iface);
1875                                 return -1;
1876                         }
1877                         interfaces->iface = tmp;
1878                         interfaces->iface[interfaces->count++] = hapd_iface;
1879                         new_iface = hapd_iface;
1880                 }
1881
1882                 if (new_iface) {
1883                         if (interfaces->driver_init(hapd_iface) ||
1884                             hostapd_setup_interface(hapd_iface)) {
1885                                 interfaces->count--;
1886                                 goto fail;
1887                         }
1888                 } else {
1889                         /* Assign new BSS with bss[0]'s driver info */
1890                         hapd = hapd_iface->bss[hapd_iface->num_bss - 1];
1891                         hapd->driver = hapd_iface->bss[0]->driver;
1892                         hapd->drv_priv = hapd_iface->bss[0]->drv_priv;
1893                         os_memcpy(hapd->own_addr, hapd_iface->bss[0]->own_addr,
1894                                   ETH_ALEN);
1895
1896                         if (start_ctrl_iface_bss(hapd) < 0 ||
1897                             (hapd_iface->state == HAPD_IFACE_ENABLED &&
1898                              hostapd_setup_bss(hapd, -1))) {
1899                                 hostapd_cleanup(hapd);
1900                                 hapd_iface->bss[hapd_iface->num_bss - 1] = NULL;
1901                                 hapd_iface->conf->num_bss--;
1902                                 hapd_iface->num_bss--;
1903                                 wpa_printf(MSG_DEBUG, "%s: free hapd %p %s",
1904                                            __func__, hapd, hapd->conf->iface);
1905                                 os_free(hapd);
1906                                 return -1;
1907                         }
1908                 }
1909                 return 0;
1910         }
1911
1912         ptr = os_strchr(buf, ' ');
1913         if (ptr == NULL)
1914                 return -1;
1915         *ptr++ = '\0';
1916
1917         if (os_strncmp(ptr, "config=", 7) == 0)
1918                 conf_file = ptr + 7;
1919
1920         for (i = 0; i < interfaces->count; i++) {
1921                 if (!os_strcmp(interfaces->iface[i]->conf->bss[0]->iface,
1922                                buf)) {
1923                         wpa_printf(MSG_INFO, "Cannot add interface - it "
1924                                    "already exists");
1925                         return -1;
1926                 }
1927         }
1928
1929         hapd_iface = hostapd_iface_alloc(interfaces);
1930         if (hapd_iface == NULL) {
1931                 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
1932                            "for interface", __func__);
1933                 goto fail;
1934         }
1935
1936         if (conf_file && interfaces->config_read_cb) {
1937                 conf = interfaces->config_read_cb(conf_file);
1938                 if (conf && conf->bss)
1939                         os_strlcpy(conf->bss[0]->iface, buf,
1940                                    sizeof(conf->bss[0]->iface));
1941         } else
1942                 conf = hostapd_config_alloc(interfaces, buf, ptr);
1943         if (conf == NULL || conf->bss == NULL) {
1944                 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
1945                            "for configuration", __func__);
1946                 goto fail;
1947         }
1948
1949         hapd_iface = hostapd_data_alloc(interfaces, conf);
1950         if (hapd_iface == NULL) {
1951                 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
1952                            "for hostapd", __func__);
1953                 goto fail;
1954         }
1955
1956         if (start_ctrl_iface(hapd_iface) < 0)
1957                 goto fail;
1958
1959         wpa_printf(MSG_INFO, "Add interface '%s'", conf->bss[0]->iface);
1960
1961         return 0;
1962
1963 fail:
1964         if (conf)
1965                 hostapd_config_free(conf);
1966         if (hapd_iface) {
1967                 if (hapd_iface->bss) {
1968                         for (i = 0; i < hapd_iface->num_bss; i++) {
1969                                 hapd = hapd_iface->bss[i];
1970                                 if (!hapd)
1971                                         continue;
1972                                 if (hapd_iface->interfaces &&
1973                                     hapd_iface->interfaces->ctrl_iface_deinit)
1974                                         hapd_iface->interfaces->
1975                                                 ctrl_iface_deinit(hapd);
1976                                 wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
1977                                            __func__, hapd_iface->bss[i],
1978                                            hapd->conf->iface);
1979                                 os_free(hapd);
1980                                 hapd_iface->bss[i] = NULL;
1981                         }
1982                         os_free(hapd_iface->bss);
1983                 }
1984                 wpa_printf(MSG_DEBUG, "%s: free iface %p",
1985                            __func__, hapd_iface);
1986                 os_free(hapd_iface);
1987         }
1988         return -1;
1989 }
1990
1991
1992 static int hostapd_remove_bss(struct hostapd_iface *iface, unsigned int idx)
1993 {
1994         size_t i;
1995
1996         wpa_printf(MSG_INFO, "Remove BSS '%s'", iface->conf->bss[idx]->iface);
1997
1998         /* Remove hostapd_data only if it has already been initialized */
1999         if (idx < iface->num_bss) {
2000                 struct hostapd_data *hapd = iface->bss[idx];
2001
2002                 hostapd_bss_deinit(hapd);
2003                 wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
2004                            __func__, hapd, hapd->conf->iface);
2005                 hostapd_config_free_bss(hapd->conf);
2006                 os_free(hapd);
2007
2008                 iface->num_bss--;
2009
2010                 for (i = idx; i < iface->num_bss; i++)
2011                         iface->bss[i] = iface->bss[i + 1];
2012         } else {
2013                 hostapd_config_free_bss(iface->conf->bss[idx]);
2014                 iface->conf->bss[idx] = NULL;
2015         }
2016
2017         iface->conf->num_bss--;
2018         for (i = idx; i < iface->conf->num_bss; i++)
2019                 iface->conf->bss[i] = iface->conf->bss[i + 1];
2020
2021         return 0;
2022 }
2023
2024
2025 int hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf)
2026 {
2027         struct hostapd_iface *hapd_iface;
2028         size_t i, j, k = 0;
2029
2030         for (i = 0; i < interfaces->count; i++) {
2031                 hapd_iface = interfaces->iface[i];
2032                 if (hapd_iface == NULL)
2033                         return -1;
2034                 if (!os_strcmp(hapd_iface->conf->bss[0]->iface, buf)) {
2035                         wpa_printf(MSG_INFO, "Remove interface '%s'", buf);
2036                         hapd_iface->driver_ap_teardown =
2037                                 !!(hapd_iface->drv_flags &
2038                                    WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
2039
2040                         hostapd_interface_deinit_free(hapd_iface);
2041                         k = i;
2042                         while (k < (interfaces->count - 1)) {
2043                                 interfaces->iface[k] =
2044                                         interfaces->iface[k + 1];
2045                                 k++;
2046                         }
2047                         interfaces->count--;
2048                         return 0;
2049                 }
2050
2051                 for (j = 0; j < hapd_iface->conf->num_bss; j++) {
2052                         if (!os_strcmp(hapd_iface->conf->bss[j]->iface, buf)) {
2053                                 hapd_iface->driver_ap_teardown =
2054                                         !(hapd_iface->drv_flags &
2055                                           WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
2056                                 return hostapd_remove_bss(hapd_iface, j);
2057                         }
2058                 }
2059         }
2060         return -1;
2061 }
2062
2063
2064 /**
2065  * hostapd_new_assoc_sta - Notify that a new station associated with the AP
2066  * @hapd: Pointer to BSS data
2067  * @sta: Pointer to the associated STA data
2068  * @reassoc: 1 to indicate this was a re-association; 0 = first association
2069  *
2070  * This function will be called whenever a station associates with the AP. It
2071  * can be called from ieee802_11.c for drivers that export MLME to hostapd and
2072  * from drv_callbacks.c based on driver events for drivers that take care of
2073  * management frames (IEEE 802.11 authentication and association) internally.
2074  */
2075 void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
2076                            int reassoc)
2077 {
2078         if (hapd->tkip_countermeasures) {
2079                 hostapd_drv_sta_deauth(hapd, sta->addr,
2080                                        WLAN_REASON_MICHAEL_MIC_FAILURE);
2081                 return;
2082         }
2083
2084         hostapd_prune_associations(hapd, sta->addr);
2085
2086         /* IEEE 802.11F (IAPP) */
2087         if (hapd->conf->ieee802_11f)
2088                 iapp_new_station(hapd->iapp, sta);
2089
2090 #ifdef CONFIG_P2P
2091         if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
2092                 sta->no_p2p_set = 1;
2093                 hapd->num_sta_no_p2p++;
2094                 if (hapd->num_sta_no_p2p == 1)
2095                         hostapd_p2p_non_p2p_sta_connected(hapd);
2096         }
2097 #endif /* CONFIG_P2P */
2098
2099         /* Start accounting here, if IEEE 802.1X and WPA are not used.
2100          * IEEE 802.1X/WPA code will start accounting after the station has
2101          * been authorized. */
2102         if (!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen) {
2103                 ap_sta_set_authorized(hapd, sta, 1);
2104                 os_get_reltime(&sta->connected_time);
2105                 accounting_sta_start(hapd, sta);
2106         }
2107
2108         /* Start IEEE 802.1X authentication process for new stations */
2109         ieee802_1x_new_station(hapd, sta);
2110         if (reassoc) {
2111                 if (sta->auth_alg != WLAN_AUTH_FT &&
2112                     !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
2113                         wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
2114         } else
2115                 wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
2116
2117         if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)) {
2118                 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
2119                            "for " MACSTR " (%d seconds - ap_max_inactivity)",
2120                            __func__, MAC2STR(sta->addr),
2121                            hapd->conf->ap_max_inactivity);
2122                 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
2123                 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
2124                                        ap_handle_timer, hapd, sta);
2125         }
2126 }
2127
2128
2129 const char * hostapd_state_text(enum hostapd_iface_state s)
2130 {
2131         switch (s) {
2132         case HAPD_IFACE_UNINITIALIZED:
2133                 return "UNINITIALIZED";
2134         case HAPD_IFACE_DISABLED:
2135                 return "DISABLED";
2136         case HAPD_IFACE_COUNTRY_UPDATE:
2137                 return "COUNTRY_UPDATE";
2138         case HAPD_IFACE_ACS:
2139                 return "ACS";
2140         case HAPD_IFACE_HT_SCAN:
2141                 return "HT_SCAN";
2142         case HAPD_IFACE_DFS:
2143                 return "DFS";
2144         case HAPD_IFACE_ENABLED:
2145                 return "ENABLED";
2146         }
2147
2148         return "UNKNOWN";
2149 }
2150
2151
2152 void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s)
2153 {
2154         wpa_printf(MSG_INFO, "%s: interface state %s->%s",
2155                    iface->conf->bss[0]->iface, hostapd_state_text(iface->state),
2156                    hostapd_state_text(s));
2157         iface->state = s;
2158 }
2159
2160
2161 #ifdef NEED_AP_MLME
2162
2163 static void free_beacon_data(struct beacon_data *beacon)
2164 {
2165         os_free(beacon->head);
2166         beacon->head = NULL;
2167         os_free(beacon->tail);
2168         beacon->tail = NULL;
2169         os_free(beacon->probe_resp);
2170         beacon->probe_resp = NULL;
2171         os_free(beacon->beacon_ies);
2172         beacon->beacon_ies = NULL;
2173         os_free(beacon->proberesp_ies);
2174         beacon->proberesp_ies = NULL;
2175         os_free(beacon->assocresp_ies);
2176         beacon->assocresp_ies = NULL;
2177 }
2178
2179
2180 static int hostapd_build_beacon_data(struct hostapd_iface *iface,
2181                                      struct beacon_data *beacon)
2182 {
2183         struct wpabuf *beacon_extra, *proberesp_extra, *assocresp_extra;
2184         struct wpa_driver_ap_params params;
2185         int ret;
2186         struct hostapd_data *hapd = iface->bss[0];
2187
2188         os_memset(beacon, 0, sizeof(*beacon));
2189         ret = ieee802_11_build_ap_params(hapd, &params);
2190         if (ret < 0)
2191                 return ret;
2192
2193         ret = hostapd_build_ap_extra_ies(hapd, &beacon_extra,
2194                                          &proberesp_extra,
2195                                          &assocresp_extra);
2196         if (ret)
2197                 goto free_ap_params;
2198
2199         ret = -1;
2200         beacon->head = os_malloc(params.head_len);
2201         if (!beacon->head)
2202                 goto free_ap_extra_ies;
2203
2204         os_memcpy(beacon->head, params.head, params.head_len);
2205         beacon->head_len = params.head_len;
2206
2207         beacon->tail = os_malloc(params.tail_len);
2208         if (!beacon->tail)
2209                 goto free_beacon;
2210
2211         os_memcpy(beacon->tail, params.tail, params.tail_len);
2212         beacon->tail_len = params.tail_len;
2213
2214         if (params.proberesp != NULL) {
2215                 beacon->probe_resp = os_malloc(params.proberesp_len);
2216                 if (!beacon->probe_resp)
2217                         goto free_beacon;
2218
2219                 os_memcpy(beacon->probe_resp, params.proberesp,
2220                           params.proberesp_len);
2221                 beacon->probe_resp_len = params.proberesp_len;
2222         }
2223
2224         /* copy the extra ies */
2225         if (beacon_extra) {
2226                 beacon->beacon_ies = os_malloc(wpabuf_len(beacon_extra));
2227                 if (!beacon->beacon_ies)
2228                         goto free_beacon;
2229
2230                 os_memcpy(beacon->beacon_ies,
2231                           beacon_extra->buf, wpabuf_len(beacon_extra));
2232                 beacon->beacon_ies_len = wpabuf_len(beacon_extra);
2233         }
2234
2235         if (proberesp_extra) {
2236                 beacon->proberesp_ies =
2237                         os_malloc(wpabuf_len(proberesp_extra));
2238                 if (!beacon->proberesp_ies)
2239                         goto free_beacon;
2240
2241                 os_memcpy(beacon->proberesp_ies, proberesp_extra->buf,
2242                           wpabuf_len(proberesp_extra));
2243                 beacon->proberesp_ies_len = wpabuf_len(proberesp_extra);
2244         }
2245
2246         if (assocresp_extra) {
2247                 beacon->assocresp_ies =
2248                         os_malloc(wpabuf_len(assocresp_extra));
2249                 if (!beacon->assocresp_ies)
2250                         goto free_beacon;
2251
2252                 os_memcpy(beacon->assocresp_ies, assocresp_extra->buf,
2253                           wpabuf_len(assocresp_extra));
2254                 beacon->assocresp_ies_len = wpabuf_len(assocresp_extra);
2255         }
2256
2257         ret = 0;
2258 free_beacon:
2259         /* if the function fails, the caller should not free beacon data */
2260         if (ret)
2261                 free_beacon_data(beacon);
2262
2263 free_ap_extra_ies:
2264         hostapd_free_ap_extra_ies(hapd, beacon_extra, proberesp_extra,
2265                                   assocresp_extra);
2266 free_ap_params:
2267         ieee802_11_free_ap_params(&params);
2268         return ret;
2269 }
2270
2271
2272 /*
2273  * TODO: This flow currently supports only changing frequency within the
2274  * same hw_mode. Any other changes to MAC parameters or provided settings (even
2275  * width) are not supported.
2276  */
2277 static int hostapd_change_config_freq(struct hostapd_data *hapd,
2278                                       struct hostapd_config *conf,
2279                                       struct hostapd_freq_params *params,
2280                                       struct hostapd_freq_params *old_params)
2281 {
2282         int channel;
2283
2284         if (!params->channel) {
2285                 /* check if the new channel is supported by hw */
2286                 channel = hostapd_hw_get_channel(hapd, params->freq);
2287                 if (!channel)
2288                         return -1;
2289         } else {
2290                 channel = params->channel;
2291         }
2292
2293         /* if a pointer to old_params is provided we save previous state */
2294         if (old_params) {
2295                 old_params->channel = conf->channel;
2296                 old_params->ht_enabled = conf->ieee80211n;
2297                 old_params->sec_channel_offset = conf->secondary_channel;
2298         }
2299
2300         conf->channel = channel;
2301         conf->ieee80211n = params->ht_enabled;
2302         conf->secondary_channel = params->sec_channel_offset;
2303
2304         /* TODO: maybe call here hostapd_config_check here? */
2305
2306         return 0;
2307 }
2308
2309
2310 static int hostapd_fill_csa_settings(struct hostapd_iface *iface,
2311                                      struct csa_settings *settings)
2312 {
2313         struct hostapd_freq_params old_freq;
2314         int ret;
2315
2316         os_memset(&old_freq, 0, sizeof(old_freq));
2317         if (!iface || !iface->freq || iface->csa_in_progress)
2318                 return -1;
2319
2320         ret = hostapd_change_config_freq(iface->bss[0], iface->conf,
2321                                          &settings->freq_params,
2322                                          &old_freq);
2323         if (ret)
2324                 return ret;
2325
2326         ret = hostapd_build_beacon_data(iface, &settings->beacon_after);
2327
2328         /* change back the configuration */
2329         hostapd_change_config_freq(iface->bss[0], iface->conf,
2330                                    &old_freq, NULL);
2331
2332         if (ret)
2333                 return ret;
2334
2335         /* set channel switch parameters for csa ie */
2336         iface->cs_freq_params = settings->freq_params;
2337         iface->cs_count = settings->cs_count;
2338         iface->cs_block_tx = settings->block_tx;
2339
2340         ret = hostapd_build_beacon_data(iface, &settings->beacon_csa);
2341         if (ret) {
2342                 free_beacon_data(&settings->beacon_after);
2343                 return ret;
2344         }
2345
2346         settings->counter_offset_beacon = iface->cs_c_off_beacon;
2347         settings->counter_offset_presp = iface->cs_c_off_proberesp;
2348
2349         return 0;
2350 }
2351
2352
2353 void hostapd_cleanup_cs_params(struct hostapd_data *hapd)
2354 {
2355         os_memset(&hapd->iface->cs_freq_params, 0,
2356                   sizeof(hapd->iface->cs_freq_params));
2357         hapd->iface->cs_count = 0;
2358         hapd->iface->cs_block_tx = 0;
2359         hapd->iface->cs_c_off_beacon = 0;
2360         hapd->iface->cs_c_off_proberesp = 0;
2361         hapd->iface->csa_in_progress = 0;
2362 }
2363
2364
2365 int hostapd_switch_channel(struct hostapd_data *hapd,
2366                            struct csa_settings *settings)
2367 {
2368         int ret;
2369         ret = hostapd_fill_csa_settings(hapd->iface, settings);
2370         if (ret)
2371                 return ret;
2372
2373         ret = hostapd_drv_switch_channel(hapd, settings);
2374         free_beacon_data(&settings->beacon_csa);
2375         free_beacon_data(&settings->beacon_after);
2376
2377         if (ret) {
2378                 /* if we failed, clean cs parameters */
2379                 hostapd_cleanup_cs_params(hapd);
2380                 return ret;
2381         }
2382
2383         hapd->iface->csa_in_progress = 1;
2384         return 0;
2385 }
2386
2387 #endif /* NEED_AP_MLME */