]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/wpa_supplicant/main.c
add syslog support (committed on vendor branch as it's been sent upstream)
[FreeBSD/FreeBSD.git] / contrib / wpa_supplicant / main.c
1 /*
2  * WPA Supplicant / main() function for UNIX like OSes and MinGW
3  * Copyright (c) 2003-2007, 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 #ifdef __linux__
17 #include <fcntl.h>
18 #endif /* __linux__ */
19
20 #include "common.h"
21 #include "wpa_supplicant_i.h"
22
23
24 extern const char *wpa_supplicant_version;
25 extern const char *wpa_supplicant_license;
26 #ifndef CONFIG_NO_STDOUT_DEBUG
27 extern const char *wpa_supplicant_full_license1;
28 extern const char *wpa_supplicant_full_license2;
29 extern const char *wpa_supplicant_full_license3;
30 extern const char *wpa_supplicant_full_license4;
31 extern const char *wpa_supplicant_full_license5;
32 #endif /* CONFIG_NO_STDOUT_DEBUG */
33
34 extern struct wpa_driver_ops *wpa_supplicant_drivers[];
35
36
37 static void usage(void)
38 {
39         int i;
40         printf("%s\n\n%s\n"
41                "usage:\n"
42                "  wpa_supplicant [-BddhKLqqstuvwW] [-P<pid file>] "
43                "[-g<global ctrl>] \\\n"
44                "        -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] "
45                "[-p<driver_param>] \\\n"
46                "        [-b<br_ifname>] [-f<debug file>] \\\n"
47                "        [-N -i<ifname> -c<conf> [-C<ctrl>] "
48                "[-D<driver>] \\\n"
49                "        [-p<driver_param>] [-b<br_ifname>] ...]\n"
50                "\n"
51                "drivers:\n",
52                wpa_supplicant_version, wpa_supplicant_license);
53
54         for (i = 0; wpa_supplicant_drivers[i]; i++) {
55                 printf("  %s = %s\n",
56                        wpa_supplicant_drivers[i]->name,
57                        wpa_supplicant_drivers[i]->desc);
58         }
59
60 #ifndef CONFIG_NO_STDOUT_DEBUG
61         printf("options:\n"
62                "  -b = optional bridge interface name\n"
63                "  -B = run daemon in the background\n"
64                "  -c = Configuration file\n"
65                "  -C = ctrl_interface parameter (only used if -c is not)\n"
66                "  -i = interface name\n"
67                "  -d = increase debugging verbosity (-dd even more)\n"
68                "  -D = driver name\n"
69 #ifdef CONFIG_DEBUG_FILE
70                "  -f = log output to debug file instead of stdout\n"
71 #endif /* CONFIG_DEBUG_FILE */
72                "  -g = global ctrl_interface\n"
73                "  -K = include keys (passwords, etc.) in debug output\n"
74                "  -t = include timestamp in debug messages\n"
75                "  -h = show this help text\n"
76                "  -L = show license (GPL and BSD)\n");
77         printf("  -p = driver parameters\n"
78                "  -P = PID file\n"
79                "  -q = decrease debugging verbosity (-qq even less)\n"
80 #ifdef CONFIG_DEBUG_SYSLOG
81                "  -s = log output to syslog instead of stdout\n"
82 #endif /* CONFIG_DEBUG_SYSLOG */
83 #ifdef CONFIG_CTRL_IFACE_DBUS
84                "  -u = enable DBus control interface\n"
85 #endif /* CONFIG_CTRL_IFACE_DBUS */
86                "  -v = show version\n"
87                "  -w = wait for interface to be added, if needed\n"
88                "  -W = wait for a control interface monitor before starting\n"
89                "  -N = start describing new interface\n");
90
91         printf("example:\n"
92                "  wpa_supplicant -Dwext -iwlan0 -c/etc/wpa_supplicant.conf\n");
93 #endif /* CONFIG_NO_STDOUT_DEBUG */
94 }
95
96
97 static void license(void)
98 {
99 #ifndef CONFIG_NO_STDOUT_DEBUG
100         printf("%s\n\n%s%s%s%s%s\n",
101                wpa_supplicant_version,
102                wpa_supplicant_full_license1,
103                wpa_supplicant_full_license2,
104                wpa_supplicant_full_license3,
105                wpa_supplicant_full_license4,
106                wpa_supplicant_full_license5);
107 #endif /* CONFIG_NO_STDOUT_DEBUG */
108 }
109
110
111 static void wpa_supplicant_fd_workaround(void)
112 {
113 #ifdef __linux__
114         int s, i;
115         /* When started from pcmcia-cs scripts, wpa_supplicant might start with
116          * fd 0, 1, and 2 closed. This will cause some issues because many
117          * places in wpa_supplicant are still printing out to stdout. As a
118          * workaround, make sure that fd's 0, 1, and 2 are not used for other
119          * sockets. */
120         for (i = 0; i < 3; i++) {
121                 s = open("/dev/null", O_RDWR);
122                 if (s > 2) {
123                         close(s);
124                         break;
125                 }
126         }
127 #endif /* __linux__ */
128 }
129
130
131 int main(int argc, char *argv[])
132 {
133         int c, i;
134         struct wpa_interface *ifaces, *iface;
135         int iface_count, exitcode = -1;
136         struct wpa_params params;
137         struct wpa_global *global;
138
139         if (os_program_init())
140                 return -1;
141
142         os_memset(&params, 0, sizeof(params));
143         params.wpa_debug_level = MSG_INFO;
144
145         iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
146         if (ifaces == NULL)
147                 return -1;
148         iface_count = 1;
149
150         wpa_supplicant_fd_workaround();
151
152         for (;;) {
153                 c = getopt(argc, argv, "b:Bc:C:D:df:g:hi:KLNp:P:qstuvwW");
154                 if (c < 0)
155                         break;
156                 switch (c) {
157                 case 'b':
158                         iface->bridge_ifname = optarg;
159                         break;
160                 case 'B':
161                         params.daemonize++;
162                         break;
163                 case 'c':
164                         iface->confname = optarg;
165                         break;
166                 case 'C':
167                         iface->ctrl_interface = optarg;
168                         break;
169                 case 'D':
170                         iface->driver = optarg;
171                         break;
172                 case 'd':
173 #ifdef CONFIG_NO_STDOUT_DEBUG
174                         printf("Debugging disabled with "
175                                "CONFIG_NO_STDOUT_DEBUG=y build time "
176                                "option.\n");
177                         goto out;
178 #else /* CONFIG_NO_STDOUT_DEBUG */
179                         params.wpa_debug_level--;
180                         break;
181 #endif /* CONFIG_NO_STDOUT_DEBUG */
182 #ifdef CONFIG_DEBUG_FILE
183                 case 'f':
184                         params.wpa_debug_file_path = optarg;
185                         break;
186 #endif /* CONFIG_DEBUG_FILE */
187                 case 'g':
188                         params.ctrl_interface = optarg;
189                         break;
190                 case 'h':
191                         usage();
192                         exitcode = 0;
193                         goto out;
194                 case 'i':
195                         iface->ifname = optarg;
196                         break;
197                 case 'K':
198                         params.wpa_debug_show_keys++;
199                         break;
200                 case 'L':
201                         license();
202                         exitcode = 0;
203                         goto out;
204                 case 'p':
205                         iface->driver_param = optarg;
206                         break;
207                 case 'P':
208                         os_free(params.pid_file);
209                         params.pid_file = os_rel2abs_path(optarg);
210                         break;
211                 case 'q':
212                         params.wpa_debug_level++;
213                         break;
214 #ifdef CONFIG_DEBUG_SYSLOG
215                 case 's':
216                         params.wpa_debug_syslog++;
217                         break;
218 #endif /* CONFIG_DEBUG_SYSLOG */
219                 case 't':
220                         params.wpa_debug_timestamp++;
221                         break;
222 #ifdef CONFIG_CTRL_IFACE_DBUS
223                 case 'u':
224                         params.dbus_ctrl_interface = 1;
225                         break;
226 #endif /* CONFIG_CTRL_IFACE_DBUS */
227                 case 'v':
228                         printf("%s\n", wpa_supplicant_version);
229                         exitcode = 0;
230                         goto out;
231                 case 'w':
232                         params.wait_for_interface++;
233                         break;
234                 case 'W':
235                         params.wait_for_monitor++;
236                         break;
237                 case 'N':
238                         iface_count++;
239                         iface = os_realloc(ifaces, iface_count *
240                                            sizeof(struct wpa_interface));
241                         if (iface == NULL)
242                                 goto out;
243                         ifaces = iface;
244                         iface = &ifaces[iface_count - 1]; 
245                         os_memset(iface, 0, sizeof(*iface));
246                         break;
247                 default:
248                         usage();
249                         exitcode = 0;
250                         goto out;
251                 }
252         }
253
254         exitcode = 0;
255         global = wpa_supplicant_init(&params);
256         if (global == NULL) {
257                 printf("Failed to initialize wpa_supplicant\n");
258                 exitcode = -1;
259                 goto out;
260         }
261
262         for (i = 0; exitcode == 0 && i < iface_count; i++) {
263                 if ((ifaces[i].confname == NULL &&
264                      ifaces[i].ctrl_interface == NULL) ||
265                     ifaces[i].ifname == NULL) {
266                         if (iface_count == 1 && (params.ctrl_interface ||
267                                                  params.dbus_ctrl_interface))
268                                 break;
269                         usage();
270                         exitcode = -1;
271                         break;
272                 }
273                 if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL)
274                         exitcode = -1;
275         }
276
277         if (exitcode == 0)
278                 exitcode = wpa_supplicant_run(global);
279
280         wpa_supplicant_deinit(global);
281
282 out:
283         os_free(ifaces);
284         os_free(params.pid_file);
285
286         os_program_deinit();
287
288         return exitcode;
289 }