2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* WPA Supplicant / main() function for UNIX like OSes and MinGW
|
|
|
|
* Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
#ifdef __linux__
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif /* __linux__ */
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "wpa_supplicant_i.h"
|
2009-03-26 19:37:05 +01:00
|
|
|
#include "driver_i.h"
|
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
extern struct wpa_driver_ops *wpa_drivers[];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
printf("%s\n\n%s\n"
|
|
|
|
"usage:\n"
|
2009-03-02 20:40:44 +01:00
|
|
|
" wpa_supplicant [-BddhKLqqstuvW] [-P<pid file>] "
|
2008-02-28 02:34:43 +01:00
|
|
|
"[-g<global ctrl>] \\\n"
|
|
|
|
" -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] "
|
|
|
|
"[-p<driver_param>] \\\n"
|
2011-05-31 19:07:11 +02:00
|
|
|
" [-b<br_ifname>] [-f<debug file>] [-e<entropy file>] "
|
|
|
|
"\\\n"
|
2009-11-04 19:16:15 +01:00
|
|
|
" [-o<override driver>] [-O<override ctrl>] \\\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" [-N -i<ifname> -c<conf> [-C<ctrl>] "
|
|
|
|
"[-D<driver>] \\\n"
|
|
|
|
" [-p<driver_param>] [-b<br_ifname>] ...]\n"
|
|
|
|
"\n"
|
|
|
|
"drivers:\n",
|
|
|
|
wpa_supplicant_version, wpa_supplicant_license);
|
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
for (i = 0; wpa_drivers[i]; i++) {
|
2008-02-28 02:34:43 +01:00
|
|
|
printf(" %s = %s\n",
|
2009-04-09 12:40:12 +02:00
|
|
|
wpa_drivers[i]->name,
|
|
|
|
wpa_drivers[i]->desc);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_NO_STDOUT_DEBUG
|
|
|
|
printf("options:\n"
|
|
|
|
" -b = optional bridge interface name\n"
|
|
|
|
" -B = run daemon in the background\n"
|
|
|
|
" -c = Configuration file\n"
|
|
|
|
" -C = ctrl_interface parameter (only used if -c is not)\n"
|
|
|
|
" -i = interface name\n"
|
|
|
|
" -d = increase debugging verbosity (-dd even more)\n"
|
2011-05-31 19:07:11 +02:00
|
|
|
" -D = driver name (can be multiple drivers: nl80211,wext)\n"
|
|
|
|
" -e = entropy file\n");
|
2008-02-28 02:34:43 +01:00
|
|
|
#ifdef CONFIG_DEBUG_FILE
|
2009-02-15 13:35:30 +01:00
|
|
|
printf(" -f = log output to debug file instead of stdout\n");
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* CONFIG_DEBUG_FILE */
|
2009-02-15 13:35:30 +01:00
|
|
|
printf(" -g = global ctrl_interface\n"
|
2009-03-02 20:40:44 +01:00
|
|
|
" -K = include keys (passwords, etc.) in debug output\n");
|
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
printf(" -s = log output to syslog instead of stdout\n");
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2012-03-31 12:55:33 +02:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
|
|
|
printf(" -T = record to Linux tracing in addition to logging\n");
|
|
|
|
printf(" (records all messages regardless of debug verbosity)\n");
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2009-03-02 20:40:44 +01:00
|
|
|
printf(" -t = include timestamp in debug messages\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" -h = show this help text\n"
|
2012-02-11 13:04:12 +01:00
|
|
|
" -L = show license (BSD)\n"
|
2009-11-04 19:16:15 +01:00
|
|
|
" -o = override driver parameter for new interfaces\n"
|
|
|
|
" -O = override ctrl_interface parameter for new interfaces\n"
|
2009-02-15 13:35:30 +01:00
|
|
|
" -p = driver parameters\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" -P = PID file\n"
|
2009-02-15 13:35:30 +01:00
|
|
|
" -q = decrease debugging verbosity (-qq even less)\n");
|
2010-01-01 12:26:56 +01:00
|
|
|
#ifdef CONFIG_DBUS
|
2009-02-15 13:35:30 +01:00
|
|
|
printf(" -u = enable DBus control interface\n");
|
2010-01-01 12:26:56 +01:00
|
|
|
#endif /* CONFIG_DBUS */
|
2009-02-15 13:35:30 +01:00
|
|
|
printf(" -v = show version\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" -W = wait for a control interface monitor before starting\n"
|
|
|
|
" -N = start describing new interface\n");
|
|
|
|
|
|
|
|
printf("example:\n"
|
2009-03-02 20:40:44 +01:00
|
|
|
" wpa_supplicant -D%s -iwlan0 -c/etc/wpa_supplicant.conf\n",
|
2009-04-09 12:40:12 +02:00
|
|
|
wpa_drivers[i] ? wpa_drivers[i]->name : "wext");
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* CONFIG_NO_STDOUT_DEBUG */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void license(void)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_NO_STDOUT_DEBUG
|
|
|
|
printf("%s\n\n%s%s%s%s%s\n",
|
|
|
|
wpa_supplicant_version,
|
|
|
|
wpa_supplicant_full_license1,
|
|
|
|
wpa_supplicant_full_license2,
|
|
|
|
wpa_supplicant_full_license3,
|
|
|
|
wpa_supplicant_full_license4,
|
|
|
|
wpa_supplicant_full_license5);
|
|
|
|
#endif /* CONFIG_NO_STDOUT_DEBUG */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_supplicant_fd_workaround(void)
|
|
|
|
{
|
|
|
|
#ifdef __linux__
|
|
|
|
int s, i;
|
|
|
|
/* When started from pcmcia-cs scripts, wpa_supplicant might start with
|
|
|
|
* fd 0, 1, and 2 closed. This will cause some issues because many
|
|
|
|
* places in wpa_supplicant are still printing out to stdout. As a
|
|
|
|
* workaround, make sure that fd's 0, 1, and 2 are not used for other
|
|
|
|
* sockets. */
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
s = open("/dev/null", O_RDWR);
|
|
|
|
if (s > 2) {
|
|
|
|
close(s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* __linux__ */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int c, i;
|
|
|
|
struct wpa_interface *ifaces, *iface;
|
|
|
|
int iface_count, exitcode = -1;
|
|
|
|
struct wpa_params params;
|
|
|
|
struct wpa_global *global;
|
|
|
|
|
|
|
|
if (os_program_init())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
|
|
|
params.wpa_debug_level = MSG_INFO;
|
|
|
|
|
|
|
|
iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
|
|
|
|
if (ifaces == NULL)
|
|
|
|
return -1;
|
|
|
|
iface_count = 1;
|
|
|
|
|
|
|
|
wpa_supplicant_fd_workaround();
|
|
|
|
|
|
|
|
for (;;) {
|
2012-03-31 12:55:33 +02:00
|
|
|
c = getopt(argc, argv,
|
|
|
|
"b:Bc:C:D:de:f:g:hi:KLNo:O:p:P:qsTtuvW");
|
2008-02-28 02:34:43 +01:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
|
|
|
case 'b':
|
|
|
|
iface->bridge_ifname = optarg;
|
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
params.daemonize++;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
iface->confname = optarg;
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
iface->ctrl_interface = optarg;
|
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
iface->driver = optarg;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
#ifdef CONFIG_NO_STDOUT_DEBUG
|
|
|
|
printf("Debugging disabled with "
|
|
|
|
"CONFIG_NO_STDOUT_DEBUG=y build time "
|
|
|
|
"option.\n");
|
|
|
|
goto out;
|
|
|
|
#else /* CONFIG_NO_STDOUT_DEBUG */
|
|
|
|
params.wpa_debug_level--;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_NO_STDOUT_DEBUG */
|
2011-05-31 19:07:11 +02:00
|
|
|
case 'e':
|
|
|
|
params.entropy_file = optarg;
|
|
|
|
break;
|
2008-02-28 02:34:43 +01:00
|
|
|
#ifdef CONFIG_DEBUG_FILE
|
|
|
|
case 'f':
|
|
|
|
params.wpa_debug_file_path = optarg;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_DEBUG_FILE */
|
|
|
|
case 'g':
|
|
|
|
params.ctrl_interface = optarg;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exitcode = 0;
|
|
|
|
goto out;
|
|
|
|
case 'i':
|
|
|
|
iface->ifname = optarg;
|
|
|
|
break;
|
|
|
|
case 'K':
|
|
|
|
params.wpa_debug_show_keys++;
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
license();
|
|
|
|
exitcode = 0;
|
|
|
|
goto out;
|
2009-11-04 19:16:15 +01:00
|
|
|
case 'o':
|
|
|
|
params.override_driver = optarg;
|
|
|
|
break;
|
|
|
|
case 'O':
|
|
|
|
params.override_ctrl_interface = optarg;
|
|
|
|
break;
|
2008-02-28 02:34:43 +01:00
|
|
|
case 'p':
|
|
|
|
iface->driver_param = optarg;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
os_free(params.pid_file);
|
|
|
|
params.pid_file = os_rel2abs_path(optarg);
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
params.wpa_debug_level++;
|
|
|
|
break;
|
2009-03-02 20:40:44 +01:00
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
case 's':
|
|
|
|
params.wpa_debug_syslog++;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2012-03-31 12:55:33 +02:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
|
|
|
case 'T':
|
|
|
|
params.wpa_debug_tracing++;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2008-02-28 02:34:43 +01:00
|
|
|
case 't':
|
|
|
|
params.wpa_debug_timestamp++;
|
|
|
|
break;
|
2010-01-01 12:26:56 +01:00
|
|
|
#ifdef CONFIG_DBUS
|
2008-02-28 02:34:43 +01:00
|
|
|
case 'u':
|
|
|
|
params.dbus_ctrl_interface = 1;
|
|
|
|
break;
|
2010-01-01 12:26:56 +01:00
|
|
|
#endif /* CONFIG_DBUS */
|
2008-02-28 02:34:43 +01:00
|
|
|
case 'v':
|
|
|
|
printf("%s\n", wpa_supplicant_version);
|
|
|
|
exitcode = 0;
|
|
|
|
goto out;
|
|
|
|
case 'W':
|
|
|
|
params.wait_for_monitor++;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
iface_count++;
|
|
|
|
iface = os_realloc(ifaces, iface_count *
|
|
|
|
sizeof(struct wpa_interface));
|
|
|
|
if (iface == NULL)
|
|
|
|
goto out;
|
|
|
|
ifaces = iface;
|
|
|
|
iface = &ifaces[iface_count - 1];
|
|
|
|
os_memset(iface, 0, sizeof(*iface));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
exitcode = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exitcode = 0;
|
|
|
|
global = wpa_supplicant_init(¶ms);
|
|
|
|
if (global == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize wpa_supplicant");
|
|
|
|
exitcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; exitcode == 0 && i < iface_count; i++) {
|
|
|
|
if ((ifaces[i].confname == NULL &&
|
|
|
|
ifaces[i].ctrl_interface == NULL) ||
|
|
|
|
ifaces[i].ifname == NULL) {
|
|
|
|
if (iface_count == 1 && (params.ctrl_interface ||
|
|
|
|
params.dbus_ctrl_interface))
|
|
|
|
break;
|
|
|
|
usage();
|
|
|
|
exitcode = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (wpa_supplicant_add_iface(global, &ifaces[i]) == NULL)
|
|
|
|
exitcode = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exitcode == 0)
|
|
|
|
exitcode = wpa_supplicant_run(global);
|
|
|
|
|
|
|
|
wpa_supplicant_deinit(global);
|
|
|
|
|
|
|
|
out:
|
|
|
|
os_free(ifaces);
|
|
|
|
os_free(params.pid_file);
|
|
|
|
|
|
|
|
os_program_deinit();
|
|
|
|
|
|
|
|
return exitcode;
|
|
|
|
}
|