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