fe7a3c52c0689b37b7f277e7e5839e06502364fa
[libeap.git] / src / ap / hostapd.c
1 /*
2  * hostapd / Initialization and configuration
3  * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16
17 #include "common.h"
18 #include "eloop.h"
19 #include "common/ieee802_11_defs.h"
20 #include "radius/radius_client.h"
21 #include "ap/hostapd.h"
22 #include "ap/authsrv.h"
23 #include "ap/sta_info.h"
24 #include "ap/accounting.h"
25 #include "ap/ap_list.h"
26 #include "ap/beacon.h"
27 #include "ap/iapp.h"
28 #include "ap/ieee802_1x.h"
29 #include "ap/ieee802_11_auth.h"
30 #include "ap/vlan_init.h"
31 #include "ap/wpa.h"
32 #include "ap/wps_hostapd.h"
33 #include "hw_features.h"
34 #include "driver_i.h"
35 #include "wpa_auth_glue.h"
36 #include "ap_drv_ops.h"
37
38
39 static int hostapd_flush_old_stations(struct hostapd_data *hapd);
40 static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
41
42 extern int wpa_debug_level;
43
44
45 int hostapd_reload_config(struct hostapd_iface *iface)
46 {
47         struct hostapd_data *hapd = iface->bss[0];
48         struct hostapd_config *newconf, *oldconf;
49         size_t j;
50
51         if (iface->config_read_cb == NULL)
52                 return -1;
53         newconf = iface->config_read_cb(iface->config_fname);
54         if (newconf == NULL)
55                 return -1;
56
57         /*
58          * Deauthenticate all stations since the new configuration may not
59          * allow them to use the BSS anymore.
60          */
61         for (j = 0; j < iface->num_bss; j++)
62                 hostapd_flush_old_stations(iface->bss[j]);
63
64 #ifndef CONFIG_NO_RADIUS
65         /* TODO: update dynamic data based on changed configuration
66          * items (e.g., open/close sockets, etc.) */
67         radius_client_flush(hapd->radius, 0);
68 #endif /* CONFIG_NO_RADIUS */
69
70         oldconf = hapd->iconf;
71         hapd->iconf = newconf;
72         hapd->conf = &newconf->bss[0];
73         iface->conf = newconf;
74
75         if (hostapd_setup_wpa_psk(hapd->conf)) {
76                 wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
77                            "after reloading configuration");
78         }
79
80         if (hapd->conf->wpa && hapd->wpa_auth == NULL)
81                 hostapd_setup_wpa(hapd);
82         else if (hapd->conf->wpa)
83                 hostapd_reconfig_wpa(hapd);
84         else if (hapd->wpa_auth) {
85                 wpa_deinit(hapd->wpa_auth);
86                 hapd->wpa_auth = NULL;
87                 hostapd_set_privacy(hapd, 0);
88                 hostapd_setup_encryption(hapd->conf->iface, hapd);
89         }
90
91         ieee802_11_set_beacon(hapd);
92
93         if (hapd->conf->ssid.ssid_set &&
94             hostapd_set_ssid(hapd, (u8 *) hapd->conf->ssid.ssid,
95                              hapd->conf->ssid.ssid_len)) {
96                 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
97                 /* try to continue */
98         }
99
100         if (hapd->conf->ieee802_1x || hapd->conf->wpa)
101                 hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
102         else
103                 hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
104
105         hostapd_config_free(oldconf);
106
107         wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
108
109         return 0;
110 }
111
112
113 static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
114                                               char *ifname)
115 {
116         int i;
117
118         for (i = 0; i < NUM_WEP_KEYS; i++) {
119                 if (hapd->drv.set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
120                                       i == 0 ? 1 : 0, NULL, 0, NULL, 0)) {
121                         wpa_printf(MSG_DEBUG, "Failed to clear default "
122                                    "encryption keys (ifname=%s keyidx=%d)",
123                                    ifname, i);
124                 }
125         }
126 #ifdef CONFIG_IEEE80211W
127         if (hapd->conf->ieee80211w) {
128                 for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
129                         if (hapd->drv.set_key(ifname, hapd, WPA_ALG_NONE, NULL,
130                                               i, i == 0 ? 1 : 0, NULL, 0,
131                                               NULL, 0)) {
132                                 wpa_printf(MSG_DEBUG, "Failed to clear "
133                                            "default mgmt encryption keys "
134                                            "(ifname=%s keyidx=%d)", ifname, i);
135                         }
136                 }
137         }
138 #endif /* CONFIG_IEEE80211W */
139 }
140
141
142 static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
143 {
144         hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
145         return 0;
146 }
147
148
149 static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
150 {
151         int errors = 0, idx;
152         struct hostapd_ssid *ssid = &hapd->conf->ssid;
153
154         idx = ssid->wep.idx;
155         if (ssid->wep.default_len &&
156             hapd->drv.set_key(hapd->conf->iface,
157                               hapd, WPA_ALG_WEP, NULL, idx,
158                               idx == ssid->wep.idx,
159                               NULL, 0, ssid->wep.key[idx],
160                               ssid->wep.len[idx])) {
161                 wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
162                 errors++;
163         }
164
165         if (ssid->dyn_vlan_keys) {
166                 size_t i;
167                 for (i = 0; i <= ssid->max_dyn_vlan_keys; i++) {
168                         const char *ifname;
169                         struct hostapd_wep_keys *key = ssid->dyn_vlan_keys[i];
170                         if (key == NULL)
171                                 continue;
172                         ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan,
173                                                             i);
174                         if (ifname == NULL)
175                                 continue;
176
177                         idx = key->idx;
178                         if (hapd->drv.set_key(ifname, hapd, WPA_ALG_WEP, NULL,
179                                               idx, idx == key->idx, NULL, 0,
180                                               key->key[idx], key->len[idx])) {
181                                 wpa_printf(MSG_WARNING, "Could not set "
182                                            "dynamic VLAN WEP encryption.");
183                                 errors++;
184                         }
185                 }
186         }
187
188         return errors;
189 }
190
191 /**
192  * hostapd_cleanup - Per-BSS cleanup (deinitialization)
193  * @hapd: Pointer to BSS data
194  *
195  * This function is used to free all per-BSS data structures and resources.
196  * This gets called in a loop for each BSS between calls to
197  * hostapd_cleanup_iface_pre() and hostapd_cleanup_iface() when an interface
198  * is deinitialized. Most of the modules that are initialized in
199  * hostapd_setup_bss() are deinitialized here.
200  */
201 static void hostapd_cleanup(struct hostapd_data *hapd)
202 {
203         if (hapd->iface->ctrl_iface_deinit)
204                 hapd->iface->ctrl_iface_deinit(hapd);
205
206         iapp_deinit(hapd->iapp);
207         hapd->iapp = NULL;
208         accounting_deinit(hapd);
209         hostapd_deinit_wpa(hapd);
210         vlan_deinit(hapd);
211         hostapd_acl_deinit(hapd);
212 #ifndef CONFIG_NO_RADIUS
213         radius_client_deinit(hapd->radius);
214         hapd->radius = NULL;
215 #endif /* CONFIG_NO_RADIUS */
216
217         hostapd_deinit_wps(hapd);
218
219         authsrv_deinit(hapd);
220
221         if (hapd->interface_added &&
222             hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
223                 wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
224                            hapd->conf->iface);
225         }
226
227         os_free(hapd->probereq_cb);
228         hapd->probereq_cb = NULL;
229 }
230
231
232 /**
233  * hostapd_cleanup_iface_pre - Preliminary per-interface cleanup
234  * @iface: Pointer to interface data
235  *
236  * This function is called before per-BSS data structures are deinitialized
237  * with hostapd_cleanup().
238  */
239 static void hostapd_cleanup_iface_pre(struct hostapd_iface *iface)
240 {
241 }
242
243
244 /**
245  * hostapd_cleanup_iface - Complete per-interface cleanup
246  * @iface: Pointer to interface data
247  *
248  * This function is called after per-BSS data structures are deinitialized
249  * with hostapd_cleanup().
250  */
251 static void hostapd_cleanup_iface(struct hostapd_iface *iface)
252 {
253         hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
254         iface->hw_features = NULL;
255         os_free(iface->current_rates);
256         iface->current_rates = NULL;
257         ap_list_deinit(iface);
258         hostapd_config_free(iface->conf);
259         iface->conf = NULL;
260
261         os_free(iface->config_fname);
262         os_free(iface->bss);
263         os_free(iface);
264 }
265
266
267 static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
268 {
269         int i;
270
271         hostapd_broadcast_wep_set(hapd);
272
273         if (hapd->conf->ssid.wep.default_len) {
274                 hostapd_set_privacy(hapd, 1);
275                 return 0;
276         }
277
278         for (i = 0; i < 4; i++) {
279                 if (hapd->conf->ssid.wep.key[i] &&
280                     hapd->drv.set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
281                                       i == hapd->conf->ssid.wep.idx, NULL, 0,
282                                       hapd->conf->ssid.wep.key[i],
283                                       hapd->conf->ssid.wep.len[i])) {
284                         wpa_printf(MSG_WARNING, "Could not set WEP "
285                                    "encryption.");
286                         return -1;
287                 }
288                 if (hapd->conf->ssid.wep.key[i] &&
289                     i == hapd->conf->ssid.wep.idx)
290                         hostapd_set_privacy(hapd, 1);
291         }
292
293         return 0;
294 }
295
296
297 static int hostapd_flush_old_stations(struct hostapd_data *hapd)
298 {
299         int ret = 0;
300
301         if (hostapd_drv_none(hapd))
302                 return 0;
303
304         wpa_printf(MSG_DEBUG, "Flushing old station entries");
305         if (hostapd_flush(hapd)) {
306                 wpa_printf(MSG_WARNING, "Could not connect to kernel driver.");
307                 ret = -1;
308         }
309         wpa_printf(MSG_DEBUG, "Deauthenticate all stations");
310
311         /* New Prism2.5/3 STA firmware versions seem to have issues with this
312          * broadcast deauth frame. This gets the firmware in odd state where
313          * nothing works correctly, so let's skip sending this for the hostap
314          * driver. */
315         if (hapd->driver && os_strcmp(hapd->driver->name, "hostap") != 0) {
316                 u8 addr[ETH_ALEN];
317                 os_memset(addr, 0xff, ETH_ALEN);
318                 hapd->drv.sta_deauth(hapd, addr,
319                                      WLAN_REASON_PREV_AUTH_NOT_VALID);
320         }
321
322         return ret;
323 }
324
325
326 /**
327  * hostapd_validate_bssid_configuration - Validate BSSID configuration
328  * @iface: Pointer to interface data
329  * Returns: 0 on success, -1 on failure
330  *
331  * This function is used to validate that the configured BSSIDs are valid.
332  */
333 static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
334 {
335         u8 mask[ETH_ALEN] = { 0 };
336         struct hostapd_data *hapd = iface->bss[0];
337         unsigned int i = iface->conf->num_bss, bits = 0, j;
338         int res;
339         int auto_addr = 0;
340
341         if (hostapd_drv_none(hapd))
342                 return 0;
343
344         /* Generate BSSID mask that is large enough to cover the BSSIDs. */
345
346         /* Determine the bits necessary to cover the number of BSSIDs. */
347         for (i--; i; i >>= 1)
348                 bits++;
349
350         /* Determine the bits necessary to any configured BSSIDs,
351            if they are higher than the number of BSSIDs. */
352         for (j = 0; j < iface->conf->num_bss; j++) {
353                 if (hostapd_mac_comp_empty(iface->conf->bss[j].bssid) == 0) {
354                         if (j)
355                                 auto_addr++;
356                         continue;
357                 }
358
359                 for (i = 0; i < ETH_ALEN; i++) {
360                         mask[i] |=
361                                 iface->conf->bss[j].bssid[i] ^
362                                 hapd->own_addr[i];
363                 }
364         }
365
366         if (!auto_addr)
367                 goto skip_mask_ext;
368
369         for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
370                 ;
371         j = 0;
372         if (i < ETH_ALEN) {
373                 j = (5 - i) * 8;
374
375                 while (mask[i] != 0) {
376                         mask[i] >>= 1;
377                         j++;
378                 }
379         }
380
381         if (bits < j)
382                 bits = j;
383
384         if (bits > 40) {
385                 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
386                            bits);
387                 return -1;
388         }
389
390         os_memset(mask, 0xff, ETH_ALEN);
391         j = bits / 8;
392         for (i = 5; i > 5 - j; i--)
393                 mask[i] = 0;
394         j = bits % 8;
395         while (j--)
396                 mask[i] <<= 1;
397
398 skip_mask_ext:
399         wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
400                    (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
401
402         res = hostapd_valid_bss_mask(hapd, hapd->own_addr, mask);
403         if (res == 0)
404                 return 0;
405
406         if (res < 0) {
407                 wpa_printf(MSG_ERROR, "Driver did not accept BSSID mask "
408                            MACSTR " for start address " MACSTR ".",
409                            MAC2STR(mask), MAC2STR(hapd->own_addr));
410                 return -1;
411         }
412
413         if (!auto_addr)
414                 return 0;
415
416         for (i = 0; i < ETH_ALEN; i++) {
417                 if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
418                         wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
419                                    " for start address " MACSTR ".",
420                                    MAC2STR(mask), MAC2STR(hapd->own_addr));
421                         wpa_printf(MSG_ERROR, "Start address must be the "
422                                    "first address in the block (i.e., addr "
423                                    "AND mask == addr).");
424                         return -1;
425                 }
426         }
427
428         return 0;
429 }
430
431
432 static int mac_in_conf(struct hostapd_config *conf, const void *a)
433 {
434         size_t i;
435
436         for (i = 0; i < conf->num_bss; i++) {
437                 if (hostapd_mac_comp(conf->bss[i].bssid, a) == 0) {
438                         return 1;
439                 }
440         }
441
442         return 0;
443 }
444
445
446
447
448 /**
449  * hostapd_setup_bss - Per-BSS setup (initialization)
450  * @hapd: Pointer to BSS data
451  * @first: Whether this BSS is the first BSS of an interface
452  *
453  * This function is used to initialize all per-BSS data structures and
454  * resources. This gets called in a loop for each BSS when an interface is
455  * initialized. Most of the modules that are initialized here will be
456  * deinitialized in hostapd_cleanup().
457  */
458 static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
459 {
460         struct hostapd_bss_config *conf = hapd->conf;
461         u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
462         int ssid_len, set_ssid;
463
464         if (!first) {
465                 if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
466                         /* Allocate the next available BSSID. */
467                         do {
468                                 inc_byte_array(hapd->own_addr, ETH_ALEN);
469                         } while (mac_in_conf(hapd->iconf, hapd->own_addr));
470                 } else {
471                         /* Allocate the configured BSSID. */
472                         os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
473
474                         if (hostapd_mac_comp(hapd->own_addr,
475                                              hapd->iface->bss[0]->own_addr) ==
476                             0) {
477                                 wpa_printf(MSG_ERROR, "BSS '%s' may not have "
478                                            "BSSID set to the MAC address of "
479                                            "the radio", hapd->conf->iface);
480                                 return -1;
481                         }
482                 }
483
484                 hapd->interface_added = 1;
485                 if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
486                                    hapd->conf->iface, hapd->own_addr, hapd)) {
487                         wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
488                                    MACSTR ")", MAC2STR(hapd->own_addr));
489                         return -1;
490                 }
491         }
492
493         hostapd_flush_old_stations(hapd);
494         hostapd_set_privacy(hapd, 0);
495
496         hostapd_broadcast_wep_clear(hapd);
497         if (hostapd_setup_encryption(hapd->conf->iface, hapd))
498                 return -1;
499
500         /*
501          * Fetch the SSID from the system and use it or,
502          * if one was specified in the config file, verify they
503          * match.
504          */
505         ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
506         if (ssid_len < 0) {
507                 wpa_printf(MSG_ERROR, "Could not read SSID from system");
508                 return -1;
509         }
510         if (conf->ssid.ssid_set) {
511                 /*
512                  * If SSID is specified in the config file and it differs
513                  * from what is being used then force installation of the
514                  * new SSID.
515                  */
516                 set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
517                             os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
518         } else {
519                 /*
520                  * No SSID in the config file; just use the one we got
521                  * from the system.
522                  */
523                 set_ssid = 0;
524                 conf->ssid.ssid_len = ssid_len;
525                 os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
526                 conf->ssid.ssid[conf->ssid.ssid_len] = '\0';
527         }
528
529         if (!hostapd_drv_none(hapd)) {
530                 wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
531                            " and ssid '%s'",
532                            hapd->conf->iface, MAC2STR(hapd->own_addr),
533                            hapd->conf->ssid.ssid);
534         }
535
536         if (hostapd_setup_wpa_psk(conf)) {
537                 wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
538                 return -1;
539         }
540
541         /* Set SSID for the kernel driver (to be used in beacon and probe
542          * response frames) */
543         if (set_ssid && hostapd_set_ssid(hapd, (u8 *) conf->ssid.ssid,
544                                          conf->ssid.ssid_len)) {
545                 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
546                 return -1;
547         }
548
549         if (wpa_debug_level == MSG_MSGDUMP)
550                 conf->radius->msg_dumps = 1;
551 #ifndef CONFIG_NO_RADIUS
552         hapd->radius = radius_client_init(hapd, conf->radius);
553         if (hapd->radius == NULL) {
554                 wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
555                 return -1;
556         }
557 #endif /* CONFIG_NO_RADIUS */
558
559         if (hostapd_acl_init(hapd)) {
560                 wpa_printf(MSG_ERROR, "ACL initialization failed.");
561                 return -1;
562         }
563         if (hostapd_init_wps(hapd, conf))
564                 return -1;
565
566         if (ieee802_1x_init(hapd)) {
567                 wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
568                 return -1;
569         }
570
571         if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
572                 return -1;
573
574         if (accounting_init(hapd)) {
575                 wpa_printf(MSG_ERROR, "Accounting initialization failed.");
576                 return -1;
577         }
578
579         if (hapd->conf->ieee802_11f &&
580             (hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
581                 wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
582                            "failed.");
583                 return -1;
584         }
585
586         if (hapd->iface->ctrl_iface_init &&
587             hapd->iface->ctrl_iface_init(hapd)) {
588                 wpa_printf(MSG_ERROR, "Failed to setup control interface");
589                 return -1;
590         }
591
592         if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
593                 wpa_printf(MSG_ERROR, "VLAN initialization failed.");
594                 return -1;
595         }
596
597         ieee802_11_set_beacon(hapd);
598
599         if (authsrv_init(hapd) < 0)
600                 return -1;
601
602         return 0;
603 }
604
605
606 static void hostapd_tx_queue_params(struct hostapd_iface *iface)
607 {
608         struct hostapd_data *hapd = iface->bss[0];
609         int i;
610         struct hostapd_tx_queue_params *p;
611
612         for (i = 0; i < NUM_TX_QUEUES; i++) {
613                 p = &iface->conf->tx_queue[i];
614
615                 if (!p->configured)
616                         continue;
617
618                 if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
619                                                 p->cwmax, p->burst)) {
620                         wpa_printf(MSG_DEBUG, "Failed to set TX queue "
621                                    "parameters for queue %d.", i);
622                         /* Continue anyway */
623                 }
624         }
625 }
626
627
628 static int setup_interface(struct hostapd_iface *iface)
629 {
630         struct hostapd_data *hapd = iface->bss[0];
631         size_t i;
632         char country[4];
633
634         /*
635          * Make sure that all BSSes get configured with a pointer to the same
636          * driver interface.
637          */
638         for (i = 1; i < iface->num_bss; i++) {
639                 iface->bss[i]->driver = hapd->driver;
640                 iface->bss[i]->drv_priv = hapd->drv_priv;
641         }
642
643         if (hostapd_validate_bssid_configuration(iface))
644                 return -1;
645
646         if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
647                 os_memcpy(country, hapd->iconf->country, 3);
648                 country[3] = '\0';
649                 if (hostapd_set_country(hapd, country) < 0) {
650                         wpa_printf(MSG_ERROR, "Failed to set country code");
651                         return -1;
652                 }
653         }
654
655         if (hostapd_get_hw_features(iface)) {
656                 /* Not all drivers support this yet, so continue without hw
657                  * feature data. */
658         } else {
659                 int ret = hostapd_select_hw_mode(iface);
660                 if (ret < 0) {
661                         wpa_printf(MSG_ERROR, "Could not select hw_mode and "
662                                    "channel. (%d)", ret);
663                         return -1;
664                 }
665                 ret = hostapd_check_ht_capab(iface);
666                 if (ret < 0)
667                         return -1;
668                 if (ret == 1) {
669                         wpa_printf(MSG_DEBUG, "Interface initialization will "
670                                    "be completed in a callback");
671                         return 0;
672                 }
673         }
674         return hostapd_setup_interface_complete(iface, 0);
675 }
676
677
678 int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
679 {
680         struct hostapd_data *hapd = iface->bss[0];
681         int freq;
682         size_t j;
683         u8 *prev_addr;
684
685         if (err) {
686                 wpa_printf(MSG_ERROR, "Interface initialization failed");
687                 eloop_terminate();
688                 return -1;
689         }
690
691         wpa_printf(MSG_DEBUG, "Completing interface initialization");
692         if (hapd->iconf->channel) {
693                 freq = hostapd_hw_get_freq(hapd, hapd->iconf->channel);
694                 wpa_printf(MSG_DEBUG, "Mode: %s  Channel: %d  "
695                            "Frequency: %d MHz",
696                            hostapd_hw_mode_txt(hapd->iconf->hw_mode),
697                            hapd->iconf->channel, freq);
698
699                 if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, freq,
700                                      hapd->iconf->channel,
701                                      hapd->iconf->ieee80211n,
702                                      hapd->iconf->secondary_channel)) {
703                         wpa_printf(MSG_ERROR, "Could not set channel for "
704                                    "kernel driver");
705                         return -1;
706                 }
707         }
708
709         if (hapd->iconf->rts_threshold > -1 &&
710             hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
711                 wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
712                            "kernel driver");
713                 return -1;
714         }
715
716         if (hapd->iconf->fragm_threshold > -1 &&
717             hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
718                 wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
719                            "for kernel driver");
720                 return -1;
721         }
722
723         prev_addr = hapd->own_addr;
724
725         for (j = 0; j < iface->num_bss; j++) {
726                 hapd = iface->bss[j];
727                 if (j)
728                         os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
729                 if (hostapd_setup_bss(hapd, j == 0))
730                         return -1;
731                 if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
732                         prev_addr = hapd->own_addr;
733         }
734
735         hostapd_tx_queue_params(iface);
736
737         ap_list_init(iface);
738
739         if (hostapd_driver_commit(hapd) < 0) {
740                 wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
741                            "configuration", __func__);
742                 return -1;
743         }
744
745         wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
746                    iface->bss[0]->conf->iface);
747
748         return 0;
749 }
750
751
752 /**
753  * hostapd_setup_interface - Setup of an interface
754  * @iface: Pointer to interface data.
755  * Returns: 0 on success, -1 on failure
756  *
757  * Initializes the driver interface, validates the configuration,
758  * and sets driver parameters based on the configuration.
759  * Flushes old stations, sets the channel, encryption,
760  * beacons, and WDS links based on the configuration.
761  */
762 int hostapd_setup_interface(struct hostapd_iface *iface)
763 {
764         int ret;
765
766         ret = setup_interface(iface);
767         if (ret) {
768                 wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
769                            iface->bss[0]->conf->iface);
770                 return -1;
771         }
772
773         return 0;
774 }
775
776
777 /**
778  * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
779  * @hapd_iface: Pointer to interface data
780  * @conf: Pointer to per-interface configuration
781  * @bss: Pointer to per-BSS configuration for this BSS
782  * Returns: Pointer to allocated BSS data
783  *
784  * This function is used to allocate per-BSS data structure. This data will be
785  * freed after hostapd_cleanup() is called for it during interface
786  * deinitialization.
787  */
788 struct hostapd_data *
789 hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
790                        struct hostapd_config *conf,
791                        struct hostapd_bss_config *bss)
792 {
793         struct hostapd_data *hapd;
794
795         hapd = os_zalloc(sizeof(*hapd));
796         if (hapd == NULL)
797                 return NULL;
798
799         hostapd_set_driver_ops(&hapd->drv);
800         hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
801         hapd->iconf = conf;
802         hapd->conf = bss;
803         hapd->iface = hapd_iface;
804         hapd->driver = hapd->iconf->driver;
805
806         return hapd;
807 }
808
809
810 void hostapd_interface_deinit(struct hostapd_iface *iface)
811 {
812         size_t j;
813
814         if (iface == NULL)
815                 return;
816
817         hostapd_cleanup_iface_pre(iface);
818         for (j = 0; j < iface->num_bss; j++) {
819                 struct hostapd_data *hapd = iface->bss[j];
820                 hostapd_free_stas(hapd);
821                 hostapd_flush_old_stations(hapd);
822                 hostapd_cleanup(hapd);
823         }
824         for (j = 0; j < iface->num_bss; j++)
825                 os_free(iface->bss[j]);
826         hostapd_cleanup_iface(iface);
827 }
828
829
830 /**
831  * hostapd_new_assoc_sta - Notify that a new station associated with the AP
832  * @hapd: Pointer to BSS data
833  * @sta: Pointer to the associated STA data
834  * @reassoc: 1 to indicate this was a re-association; 0 = first association
835  *
836  * This function will be called whenever a station associates with the AP. It
837  * can be called from ieee802_11.c for drivers that export MLME to hostapd and
838  * from drv_callbacks.c based on driver events for drivers that take care of
839  * management frames (IEEE 802.11 authentication and association) internally.
840  */
841 void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
842                            int reassoc)
843 {
844         if (hapd->tkip_countermeasures) {
845                 hapd->drv.sta_deauth(hapd, sta->addr,
846                                      WLAN_REASON_MICHAEL_MIC_FAILURE);
847                 return;
848         }
849
850         hostapd_prune_associations(hapd, sta->addr);
851
852         /* IEEE 802.11F (IAPP) */
853         if (hapd->conf->ieee802_11f)
854                 iapp_new_station(hapd->iapp, sta);
855
856         /* Start accounting here, if IEEE 802.1X and WPA are not used.
857          * IEEE 802.1X/WPA code will start accounting after the station has
858          * been authorized. */
859         if (!hapd->conf->ieee802_1x && !hapd->conf->wpa)
860                 accounting_sta_start(hapd, sta);
861
862         /* Start IEEE 802.1X authentication process for new stations */
863         ieee802_1x_new_station(hapd, sta);
864         if (reassoc) {
865                 if (sta->auth_alg != WLAN_AUTH_FT &&
866                     !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
867                         wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
868         } else
869                 wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
870 }