Move authentication server setup into separate file
[libeap.git] / hostapd / main.c
1 /*
2  * hostapd / main()
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 #ifndef CONFIG_NATIVE_WINDOWS
17 #include <syslog.h>
18 #endif /* CONFIG_NATIVE_WINDOWS */
19
20 #include "common.h"
21 #include "eloop.h"
22 #include "crypto/tls.h"
23 #include "common/version.h"
24 #include "drivers/driver.h"
25 #include "eap_server/eap.h"
26 #include "eap_server/tncs.h"
27 #include "ap/hostapd.h"
28 #include "ap/config.h"
29 #include "config_file.h"
30
31
32 extern int wpa_debug_level;
33 extern int wpa_debug_show_keys;
34 extern int wpa_debug_timestamp;
35
36
37 struct hapd_interfaces {
38         size_t count;
39         struct hostapd_iface **iface;
40 };
41
42
43 int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
44                                int (*cb)(struct hostapd_iface *iface,
45                                          void *ctx), void *ctx)
46 {
47         size_t i;
48         int ret;
49
50         for (i = 0; i < interfaces->count; i++) {
51                 ret = cb(interfaces->iface[i], ctx);
52                 if (ret)
53                         return ret;
54         }
55
56         return 0;
57 }
58
59
60 #ifndef CONFIG_NO_HOSTAPD_LOGGER
61 static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
62                               int level, const char *txt, size_t len)
63 {
64         struct hostapd_data *hapd = ctx;
65         char *format, *module_str;
66         int maxlen;
67         int conf_syslog_level, conf_stdout_level;
68         unsigned int conf_syslog, conf_stdout;
69
70         maxlen = len + 100;
71         format = os_malloc(maxlen);
72         if (!format)
73                 return;
74
75         if (hapd && hapd->conf) {
76                 conf_syslog_level = hapd->conf->logger_syslog_level;
77                 conf_stdout_level = hapd->conf->logger_stdout_level;
78                 conf_syslog = hapd->conf->logger_syslog;
79                 conf_stdout = hapd->conf->logger_stdout;
80         } else {
81                 conf_syslog_level = conf_stdout_level = 0;
82                 conf_syslog = conf_stdout = (unsigned int) -1;
83         }
84
85         switch (module) {
86         case HOSTAPD_MODULE_IEEE80211:
87                 module_str = "IEEE 802.11";
88                 break;
89         case HOSTAPD_MODULE_IEEE8021X:
90                 module_str = "IEEE 802.1X";
91                 break;
92         case HOSTAPD_MODULE_RADIUS:
93                 module_str = "RADIUS";
94                 break;
95         case HOSTAPD_MODULE_WPA:
96                 module_str = "WPA";
97                 break;
98         case HOSTAPD_MODULE_DRIVER:
99                 module_str = "DRIVER";
100                 break;
101         case HOSTAPD_MODULE_IAPP:
102                 module_str = "IAPP";
103                 break;
104         case HOSTAPD_MODULE_MLME:
105                 module_str = "MLME";
106                 break;
107         default:
108                 module_str = NULL;
109                 break;
110         }
111
112         if (hapd && hapd->conf && addr)
113                 os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
114                             hapd->conf->iface, MAC2STR(addr),
115                             module_str ? " " : "", module_str, txt);
116         else if (hapd && hapd->conf)
117                 os_snprintf(format, maxlen, "%s:%s%s %s",
118                             hapd->conf->iface, module_str ? " " : "",
119                             module_str, txt);
120         else if (addr)
121                 os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
122                             MAC2STR(addr), module_str ? " " : "",
123                             module_str, txt);
124         else
125                 os_snprintf(format, maxlen, "%s%s%s",
126                             module_str, module_str ? ": " : "", txt);
127
128         if ((conf_stdout & module) && level >= conf_stdout_level) {
129                 wpa_debug_print_timestamp();
130                 printf("%s\n", format);
131         }
132
133 #ifndef CONFIG_NATIVE_WINDOWS
134         if ((conf_syslog & module) && level >= conf_syslog_level) {
135                 int priority;
136                 switch (level) {
137                 case HOSTAPD_LEVEL_DEBUG_VERBOSE:
138                 case HOSTAPD_LEVEL_DEBUG:
139                         priority = LOG_DEBUG;
140                         break;
141                 case HOSTAPD_LEVEL_INFO:
142                         priority = LOG_INFO;
143                         break;
144                 case HOSTAPD_LEVEL_NOTICE:
145                         priority = LOG_NOTICE;
146                         break;
147                 case HOSTAPD_LEVEL_WARNING:
148                         priority = LOG_WARNING;
149                         break;
150                 default:
151                         priority = LOG_INFO;
152                         break;
153                 }
154                 syslog(priority, "%s", format);
155         }
156 #endif /* CONFIG_NATIVE_WINDOWS */
157
158         os_free(format);
159 }
160 #endif /* CONFIG_NO_HOSTAPD_LOGGER */
161
162
163 /**
164  * hostapd_init - Allocate and initialize per-interface data
165  * @config_file: Path to the configuration file
166  * Returns: Pointer to the allocated interface data or %NULL on failure
167  *
168  * This function is used to allocate main data structures for per-interface
169  * data. The allocated data buffer will be freed by calling
170  * hostapd_cleanup_iface().
171  */
172 static struct hostapd_iface * hostapd_init(const char *config_file)
173 {
174         struct hostapd_iface *hapd_iface = NULL;
175         struct hostapd_config *conf = NULL;
176         struct hostapd_data *hapd;
177         size_t i;
178
179         hapd_iface = os_zalloc(sizeof(*hapd_iface));
180         if (hapd_iface == NULL)
181                 goto fail;
182
183         hapd_iface->reload_config = hostapd_reload_config;
184         hapd_iface->config_read_cb = hostapd_config_read;
185         hapd_iface->config_fname = os_strdup(config_file);
186         if (hapd_iface->config_fname == NULL)
187                 goto fail;
188
189         conf = hostapd_config_read(hapd_iface->config_fname);
190         if (conf == NULL)
191                 goto fail;
192         hapd_iface->conf = conf;
193
194         hapd_iface->num_bss = conf->num_bss;
195         hapd_iface->bss = os_zalloc(conf->num_bss *
196                                     sizeof(struct hostapd_data *));
197         if (hapd_iface->bss == NULL)
198                 goto fail;
199
200         for (i = 0; i < conf->num_bss; i++) {
201                 hapd = hapd_iface->bss[i] =
202                         hostapd_alloc_bss_data(hapd_iface, conf,
203                                                &conf->bss[i]);
204                 if (hapd == NULL)
205                         goto fail;
206         }
207
208         return hapd_iface;
209
210 fail:
211         if (conf)
212                 hostapd_config_free(conf);
213         if (hapd_iface) {
214                 os_free(hapd_iface->config_fname);
215                 os_free(hapd_iface->bss);
216                 os_free(hapd_iface);
217         }
218         return NULL;
219 }
220
221
222 static int hostapd_driver_init(struct hostapd_iface *iface)
223 {
224         struct wpa_init_params params;
225         size_t i;
226         struct hostapd_data *hapd = iface->bss[0];
227         struct hostapd_bss_config *conf = hapd->conf;
228         u8 *b = conf->bssid;
229
230         if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) {
231                 wpa_printf(MSG_ERROR, "No hostapd driver wrapper available");
232                 return -1;
233         }
234
235         /* Initialize the driver interface */
236         if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
237                 b = NULL;
238
239         os_memset(&params, 0, sizeof(params));
240         params.bssid = b;
241         params.ifname = hapd->conf->iface;
242         params.ssid = (const u8 *) hapd->conf->ssid.ssid;
243         params.ssid_len = hapd->conf->ssid.ssid_len;
244         params.test_socket = hapd->conf->test_socket;
245         params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
246
247         params.num_bridge = hapd->iface->num_bss;
248         params.bridge = os_zalloc(hapd->iface->num_bss * sizeof(char *));
249         if (params.bridge == NULL)
250                 return -1;
251         for (i = 0; i < hapd->iface->num_bss; i++) {
252                 struct hostapd_data *bss = hapd->iface->bss[i];
253                 if (bss->conf->bridge[0])
254                         params.bridge[i] = bss->conf->bridge;
255         }
256
257         params.own_addr = hapd->own_addr;
258
259         hapd->drv_priv = hapd->driver->hapd_init(hapd, &params);
260         os_free(params.bridge);
261         if (hapd->drv_priv == NULL) {
262                 wpa_printf(MSG_ERROR, "%s driver initialization failed.",
263                            hapd->driver->name);
264                 hapd->driver = NULL;
265                 return -1;
266         }
267
268         return 0;
269 }
270
271
272 static struct hostapd_iface *
273 hostapd_interface_init(struct hapd_interfaces *interfaces,
274                        const char *config_fname, int debug)
275 {
276         struct hostapd_iface *iface;
277         int k;
278
279         wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
280         iface = hostapd_init(config_fname);
281         if (!iface)
282                 return NULL;
283         iface->interfaces = interfaces;
284
285         for (k = 0; k < debug; k++) {
286                 if (iface->bss[0]->conf->logger_stdout_level > 0)
287                         iface->bss[0]->conf->logger_stdout_level--;
288         }
289
290         if (hostapd_driver_init(iface) ||
291             hostapd_setup_interface(iface)) {
292                 hostapd_interface_deinit(iface);
293                 return NULL;
294         }
295
296         return iface;
297 }
298
299
300 /**
301  * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
302  */
303 static void handle_term(int sig, void *signal_ctx)
304 {
305         wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
306         eloop_terminate();
307 }
308
309
310 #ifndef CONFIG_NATIVE_WINDOWS
311 /**
312  * handle_reload - SIGHUP handler to reload configuration
313  */
314 static void handle_reload(int sig, void *signal_ctx)
315 {
316         struct hapd_interfaces *interfaces = signal_ctx;
317         wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
318                    sig);
319         hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
320 }
321
322
323 static void handle_dump_state(int sig, void *signal_ctx)
324 {
325 #ifdef HOSTAPD_DUMP_STATE
326         struct hapd_interfaces *interfaces = signal_ctx;
327         hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
328 #endif /* HOSTAPD_DUMP_STATE */
329 }
330 #endif /* CONFIG_NATIVE_WINDOWS */
331
332
333 static int hostapd_global_init(struct hapd_interfaces *interfaces)
334 {
335         hostapd_logger_register_cb(hostapd_logger_cb);
336
337         if (eap_server_register_methods()) {
338                 wpa_printf(MSG_ERROR, "Failed to register EAP methods");
339                 return -1;
340         }
341
342         if (eloop_init()) {
343                 wpa_printf(MSG_ERROR, "Failed to initialize event loop");
344                 return -1;
345         }
346
347 #ifndef CONFIG_NATIVE_WINDOWS
348         eloop_register_signal(SIGHUP, handle_reload, interfaces);
349         eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
350 #endif /* CONFIG_NATIVE_WINDOWS */
351         eloop_register_signal_terminate(handle_term, interfaces);
352
353 #ifndef CONFIG_NATIVE_WINDOWS
354         openlog("hostapd", 0, LOG_DAEMON);
355 #endif /* CONFIG_NATIVE_WINDOWS */
356
357         return 0;
358 }
359
360
361 static void hostapd_global_deinit(const char *pid_file)
362 {
363 #ifdef EAP_SERVER_TNC
364         tncs_global_deinit();
365 #endif /* EAP_SERVER_TNC */
366
367         eloop_destroy();
368
369 #ifndef CONFIG_NATIVE_WINDOWS
370         closelog();
371 #endif /* CONFIG_NATIVE_WINDOWS */
372
373         eap_server_unregister_methods();
374
375         os_daemonize_terminate(pid_file);
376 }
377
378
379 static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
380                               const char *pid_file)
381 {
382 #ifdef EAP_SERVER_TNC
383         int tnc = 0;
384         size_t i, k;
385
386         for (i = 0; !tnc && i < ifaces->count; i++) {
387                 for (k = 0; k < ifaces->iface[i]->num_bss; k++) {
388                         if (ifaces->iface[i]->bss[0]->conf->tnc) {
389                                 tnc++;
390                                 break;
391                         }
392                 }
393         }
394
395         if (tnc && tncs_global_init() < 0) {
396                 wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
397                 return -1;
398         }
399 #endif /* EAP_SERVER_TNC */
400
401         if (daemonize && os_daemonize(pid_file)) {
402                 perror("daemon");
403                 return -1;
404         }
405
406         eloop_run();
407
408         return 0;
409 }
410
411
412 static void show_version(void)
413 {
414         fprintf(stderr,
415                 "hostapd v" VERSION_STR "\n"
416                 "User space daemon for IEEE 802.11 AP management,\n"
417                 "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
418                 "Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> "
419                 "and contributors\n");
420 }
421
422
423 static void usage(void)
424 {
425         show_version();
426         fprintf(stderr,
427                 "\n"
428                 "usage: hostapd [-hdBKtv] [-P <PID file>] "
429                 "<configuration file(s)>\n"
430                 "\n"
431                 "options:\n"
432                 "   -h   show this usage\n"
433                 "   -d   show more debug messages (-dd for even more)\n"
434                 "   -B   run daemon in the background\n"
435                 "   -P   PID file\n"
436                 "   -K   include key data in debug messages\n"
437                 "   -t   include timestamps in some debug messages\n"
438                 "   -v   show hostapd version\n");
439
440         exit(1);
441 }
442
443
444 int main(int argc, char *argv[])
445 {
446         struct hapd_interfaces interfaces;
447         int ret = 1;
448         size_t i;
449         int c, debug = 0, daemonize = 0;
450         char *pid_file = NULL;
451
452         if (os_program_init())
453                 return -1;
454
455         for (;;) {
456                 c = getopt(argc, argv, "BdhKP:tv");
457                 if (c < 0)
458                         break;
459                 switch (c) {
460                 case 'h':
461                         usage();
462                         break;
463                 case 'd':
464                         debug++;
465                         if (wpa_debug_level > 0)
466                                 wpa_debug_level--;
467                         break;
468                 case 'B':
469                         daemonize++;
470                         break;
471                 case 'K':
472                         wpa_debug_show_keys++;
473                         break;
474                 case 'P':
475                         os_free(pid_file);
476                         pid_file = os_rel2abs_path(optarg);
477                         break;
478                 case 't':
479                         wpa_debug_timestamp++;
480                         break;
481                 case 'v':
482                         show_version();
483                         exit(1);
484                         break;
485
486                 default:
487                         usage();
488                         break;
489                 }
490         }
491
492         if (optind == argc)
493                 usage();
494
495         interfaces.count = argc - optind;
496         interfaces.iface = os_malloc(interfaces.count *
497                                      sizeof(struct hostapd_iface *));
498         if (interfaces.iface == NULL) {
499                 wpa_printf(MSG_ERROR, "malloc failed\n");
500                 return -1;
501         }
502
503         if (hostapd_global_init(&interfaces))
504                 return -1;
505
506         /* Initialize interfaces */
507         for (i = 0; i < interfaces.count; i++) {
508                 interfaces.iface[i] = hostapd_interface_init(&interfaces,
509                                                              argv[optind + i],
510                                                              debug);
511                 if (!interfaces.iface[i])
512                         goto out;
513         }
514
515         if (hostapd_global_run(&interfaces, daemonize, pid_file))
516                 goto out;
517
518         ret = 0;
519
520  out:
521         /* Deinitialize all interfaces */
522         for (i = 0; i < interfaces.count; i++)
523                 hostapd_interface_deinit(interfaces.iface[i]);
524         os_free(interfaces.iface);
525
526         hostapd_global_deinit(pid_file);
527         os_free(pid_file);
528
529         os_program_deinit();
530
531         return ret;
532 }