Branch data Line data Source code
1 : : /*
2 : : * WPA Supplicant / main() function for UNIX like OSes and MinGW
3 : : * Copyright (c) 2003-2013, 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 "includes.h"
10 : : #ifdef __linux__
11 : : #include <fcntl.h>
12 : : #endif /* __linux__ */
13 : :
14 : : #include "common.h"
15 : : #include "wpa_supplicant_i.h"
16 : : #include "driver_i.h"
17 : : #include "p2p_supplicant.h"
18 : :
19 : : extern struct wpa_driver_ops *wpa_drivers[];
20 : :
21 : :
22 : 0 : static void usage(void)
23 : : {
24 : : int i;
25 : 0 : printf("%s\n\n%s\n"
26 : : "usage:\n"
27 : : " wpa_supplicant [-BddhKLqqstuvW] [-P<pid file>] "
28 : : "[-g<global ctrl>] \\\n"
29 : : " [-G<group>] \\\n"
30 : : " -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] "
31 : : "[-p<driver_param>] \\\n"
32 : : " [-b<br_ifname>] [-f<debug file>] [-e<entropy file>] "
33 : : "\\\n"
34 : : " [-o<override driver>] [-O<override ctrl>] \\\n"
35 : : " [-N -i<ifname> -c<conf> [-C<ctrl>] "
36 : : "[-D<driver>] \\\n"
37 : : " [-p<driver_param>] [-b<br_ifname>] [-I<config file>] "
38 : : "...]\n"
39 : : "\n"
40 : : "drivers:\n",
41 : : wpa_supplicant_version, wpa_supplicant_license);
42 : :
43 [ # # ]: 0 : for (i = 0; wpa_drivers[i]; i++) {
44 : 0 : printf(" %s = %s\n",
45 : 0 : wpa_drivers[i]->name,
46 : 0 : wpa_drivers[i]->desc);
47 : : }
48 : :
49 : : #ifndef CONFIG_NO_STDOUT_DEBUG
50 : 0 : printf("options:\n"
51 : : " -b = optional bridge interface name\n"
52 : : " -B = run daemon in the background\n"
53 : : " -c = Configuration file\n"
54 : : " -C = ctrl_interface parameter (only used if -c is not)\n"
55 : : " -i = interface name\n"
56 : : " -I = additional configuration file\n"
57 : : " -d = increase debugging verbosity (-dd even more)\n"
58 : : " -D = driver name (can be multiple drivers: nl80211,wext)\n"
59 : : " -e = entropy file\n");
60 : : #ifdef CONFIG_DEBUG_FILE
61 : 0 : printf(" -f = log output to debug file instead of stdout\n");
62 : : #endif /* CONFIG_DEBUG_FILE */
63 : 0 : printf(" -g = global ctrl_interface\n"
64 : : " -G = global ctrl_interface group\n"
65 : : " -K = include keys (passwords, etc.) in debug output\n");
66 : : #ifdef CONFIG_DEBUG_SYSLOG
67 : : printf(" -s = log output to syslog instead of stdout\n");
68 : : #endif /* CONFIG_DEBUG_SYSLOG */
69 : : #ifdef CONFIG_DEBUG_LINUX_TRACING
70 : 0 : printf(" -T = record to Linux tracing in addition to logging\n");
71 : 0 : printf(" (records all messages regardless of debug verbosity)\n");
72 : : #endif /* CONFIG_DEBUG_LINUX_TRACING */
73 : 0 : printf(" -t = include timestamp in debug messages\n"
74 : : " -h = show this help text\n"
75 : : " -L = show license (BSD)\n"
76 : : " -o = override driver parameter for new interfaces\n"
77 : : " -O = override ctrl_interface parameter for new interfaces\n"
78 : : " -p = driver parameters\n"
79 : : " -P = PID file\n"
80 : : " -q = decrease debugging verbosity (-qq even less)\n");
81 : : #ifdef CONFIG_DBUS
82 : 0 : printf(" -u = enable DBus control interface\n");
83 : : #endif /* CONFIG_DBUS */
84 : 0 : printf(" -v = show version\n"
85 : : " -W = wait for a control interface monitor before starting\n"
86 : : " -N = start describing new interface\n");
87 : :
88 [ # # ]: 0 : printf("example:\n"
89 : : " wpa_supplicant -D%s -iwlan0 -c/etc/wpa_supplicant.conf\n",
90 : 0 : wpa_drivers[0] ? wpa_drivers[0]->name : "nl80211");
91 : : #endif /* CONFIG_NO_STDOUT_DEBUG */
92 : 0 : }
93 : :
94 : :
95 : 0 : static void license(void)
96 : : {
97 : : #ifndef CONFIG_NO_STDOUT_DEBUG
98 : 0 : printf("%s\n\n%s%s%s%s%s\n",
99 : : wpa_supplicant_version,
100 : : wpa_supplicant_full_license1,
101 : : wpa_supplicant_full_license2,
102 : : wpa_supplicant_full_license3,
103 : : wpa_supplicant_full_license4,
104 : : wpa_supplicant_full_license5);
105 : : #endif /* CONFIG_NO_STDOUT_DEBUG */
106 : 0 : }
107 : :
108 : :
109 : 6 : static void wpa_supplicant_fd_workaround(int start)
110 : : {
111 : : #ifdef __linux__
112 : : static int fd[3] = { -1, -1, -1 };
113 : : int i;
114 : : /* When started from pcmcia-cs scripts, wpa_supplicant might start with
115 : : * fd 0, 1, and 2 closed. This will cause some issues because many
116 : : * places in wpa_supplicant are still printing out to stdout. As a
117 : : * workaround, make sure that fd's 0, 1, and 2 are not used for other
118 : : * sockets. */
119 [ + + ]: 6 : if (start) {
120 [ + - ]: 6 : for (i = 0; i < 3; i++) {
121 : 3 : fd[i] = open("/dev/null", O_RDWR);
122 [ + - ]: 3 : if (fd[i] > 2) {
123 : 3 : close(fd[i]);
124 : 3 : fd[i] = -1;
125 : 3 : break;
126 : : }
127 : : }
128 : : } else {
129 [ + + ]: 12 : for (i = 0; i < 3; i++) {
130 [ - + ]: 9 : if (fd[i] >= 0) {
131 : 0 : close(fd[i]);
132 : 0 : fd[i] = -1;
133 : : }
134 : : }
135 : : }
136 : : #endif /* __linux__ */
137 : 6 : }
138 : :
139 : :
140 : 3 : int main(int argc, char *argv[])
141 : : {
142 : : int c, i;
143 : : struct wpa_interface *ifaces, *iface;
144 : 3 : int iface_count, exitcode = -1;
145 : : struct wpa_params params;
146 : : struct wpa_global *global;
147 : :
148 [ - + ]: 3 : if (os_program_init())
149 : 0 : return -1;
150 : :
151 : 3 : os_memset(¶ms, 0, sizeof(params));
152 : 3 : params.wpa_debug_level = MSG_INFO;
153 : :
154 : 3 : iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
155 [ - + ]: 3 : if (ifaces == NULL)
156 : 0 : return -1;
157 : 3 : iface_count = 1;
158 : :
159 : 3 : wpa_supplicant_fd_workaround(1);
160 : :
161 : : for (;;) {
162 : 33 : c = getopt(argc, argv,
163 : : "b:Bc:C:D:de:f:g:G:hi:I:KLNo:O:p:P:qsTtuvW");
164 [ + + ]: 33 : if (c < 0)
165 : 3 : break;
166 [ - - + - : 30 : switch (c) {
+ + - + +
+ - + - +
- - - - -
- - + - -
- - - ]
167 : : case 'b':
168 : 0 : iface->bridge_ifname = optarg;
169 : 0 : break;
170 : : case 'B':
171 : 0 : params.daemonize++;
172 : 0 : break;
173 : : case 'c':
174 : 3 : iface->confname = optarg;
175 : 3 : break;
176 : : case 'C':
177 : 0 : iface->ctrl_interface = optarg;
178 : 0 : break;
179 : : case 'D':
180 : 3 : iface->driver = optarg;
181 : 3 : break;
182 : : case 'd':
183 : : #ifdef CONFIG_NO_STDOUT_DEBUG
184 : : printf("Debugging disabled with "
185 : : "CONFIG_NO_STDOUT_DEBUG=y build time "
186 : : "option.\n");
187 : : goto out;
188 : : #else /* CONFIG_NO_STDOUT_DEBUG */
189 : 6 : params.wpa_debug_level--;
190 : 6 : break;
191 : : #endif /* CONFIG_NO_STDOUT_DEBUG */
192 : : case 'e':
193 : 0 : params.entropy_file = optarg;
194 : 0 : break;
195 : : #ifdef CONFIG_DEBUG_FILE
196 : : case 'f':
197 : 3 : params.wpa_debug_file_path = optarg;
198 : 3 : break;
199 : : #endif /* CONFIG_DEBUG_FILE */
200 : : case 'g':
201 : 3 : params.ctrl_interface = optarg;
202 : 3 : break;
203 : : case 'G':
204 : 3 : params.ctrl_interface_group = optarg;
205 : 3 : break;
206 : : case 'h':
207 : 0 : usage();
208 : 0 : exitcode = 0;
209 : 0 : goto out;
210 : : case 'i':
211 : 3 : iface->ifname = optarg;
212 : 3 : break;
213 : : case 'I':
214 : 0 : iface->confanother = optarg;
215 : 0 : break;
216 : : case 'K':
217 : 3 : params.wpa_debug_show_keys++;
218 : 3 : break;
219 : : case 'L':
220 : 0 : license();
221 : 0 : exitcode = 0;
222 : 0 : goto out;
223 : : case 'o':
224 : 0 : params.override_driver = optarg;
225 : 0 : break;
226 : : case 'O':
227 : 0 : params.override_ctrl_interface = optarg;
228 : 0 : break;
229 : : case 'p':
230 : 0 : iface->driver_param = optarg;
231 : 0 : break;
232 : : case 'P':
233 : 0 : os_free(params.pid_file);
234 : 0 : params.pid_file = os_rel2abs_path(optarg);
235 : 0 : break;
236 : : case 'q':
237 : 0 : params.wpa_debug_level++;
238 : 0 : break;
239 : : #ifdef CONFIG_DEBUG_SYSLOG
240 : : case 's':
241 : : params.wpa_debug_syslog++;
242 : : break;
243 : : #endif /* CONFIG_DEBUG_SYSLOG */
244 : : #ifdef CONFIG_DEBUG_LINUX_TRACING
245 : : case 'T':
246 : 0 : params.wpa_debug_tracing++;
247 : 0 : break;
248 : : #endif /* CONFIG_DEBUG_LINUX_TRACING */
249 : : case 't':
250 : 3 : params.wpa_debug_timestamp++;
251 : 3 : break;
252 : : #ifdef CONFIG_DBUS
253 : : case 'u':
254 : 0 : params.dbus_ctrl_interface = 1;
255 : 0 : break;
256 : : #endif /* CONFIG_DBUS */
257 : : case 'v':
258 : 0 : printf("%s\n", wpa_supplicant_version);
259 : 0 : exitcode = 0;
260 : 0 : goto out;
261 : : case 'W':
262 : 0 : params.wait_for_monitor++;
263 : 0 : break;
264 : : case 'N':
265 : 0 : iface_count++;
266 : 0 : iface = os_realloc_array(ifaces, iface_count,
267 : : sizeof(struct wpa_interface));
268 [ # # ]: 0 : if (iface == NULL)
269 : 0 : goto out;
270 : 0 : ifaces = iface;
271 : 0 : iface = &ifaces[iface_count - 1];
272 : 0 : os_memset(iface, 0, sizeof(*iface));
273 : 0 : break;
274 : : default:
275 : 0 : usage();
276 : 0 : exitcode = 0;
277 : 0 : goto out;
278 : : }
279 : 30 : }
280 : :
281 : 3 : exitcode = 0;
282 : 3 : global = wpa_supplicant_init(¶ms);
283 [ - + ]: 3 : if (global == NULL) {
284 : 0 : wpa_printf(MSG_ERROR, "Failed to initialize wpa_supplicant");
285 : 0 : exitcode = -1;
286 : 0 : goto out;
287 : : } else {
288 : 3 : wpa_printf(MSG_INFO, "Successfully initialized "
289 : : "wpa_supplicant");
290 : : }
291 : :
292 [ + - ][ + + ]: 6 : for (i = 0; exitcode == 0 && i < iface_count; i++) {
293 : : struct wpa_supplicant *wpa_s;
294 : :
295 [ - + ][ # # ]: 3 : if ((ifaces[i].confname == NULL &&
296 [ - + ]: 3 : ifaces[i].ctrl_interface == NULL) ||
297 : 3 : ifaces[i].ifname == NULL) {
298 [ # # ][ # # ]: 0 : if (iface_count == 1 && (params.ctrl_interface ||
[ # # ]
299 : 0 : params.dbus_ctrl_interface))
300 : : break;
301 : 0 : usage();
302 : 0 : exitcode = -1;
303 : 0 : break;
304 : : }
305 : 3 : wpa_s = wpa_supplicant_add_iface(global, &ifaces[i]);
306 [ - + ]: 3 : if (wpa_s == NULL) {
307 : 0 : exitcode = -1;
308 : 0 : break;
309 : : }
310 : : #ifdef CONFIG_P2P
311 [ - + ][ # # ]: 3 : if (wpa_s->global->p2p == NULL &&
312 : 0 : (wpa_s->drv_flags &
313 [ # # ]: 0 : WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
314 : 0 : wpas_p2p_add_p2pdev_interface(wpa_s) < 0)
315 : 0 : exitcode = -1;
316 : : #endif /* CONFIG_P2P */
317 : : }
318 : :
319 [ + - ]: 3 : if (exitcode == 0)
320 : 3 : exitcode = wpa_supplicant_run(global);
321 : :
322 : 3 : wpa_supplicant_deinit(global);
323 : :
324 : : out:
325 : 3 : wpa_supplicant_fd_workaround(0);
326 : 3 : os_free(ifaces);
327 : 3 : os_free(params.pid_file);
328 : :
329 : 3 : os_program_deinit();
330 : :
331 : 3 : return exitcode;
332 : : }
|