2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* hostapd - command line interface for hostapd daemon
|
2016-01-01 12:08:57 +01:00
|
|
|
* Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
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"
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/wpa_ctrl.h"
|
2015-04-07 11:00:13 +02:00
|
|
|
#include "common/ieee802_11_defs.h"
|
2011-07-16 16:37:18 +02:00
|
|
|
#include "utils/common.h"
|
|
|
|
#include "utils/eloop.h"
|
|
|
|
#include "utils/edit.h"
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/version.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2016-03-04 10:20:24 +01:00
|
|
|
#ifndef CONFIG_NO_CTRL_IFACE
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2015-04-24 09:19:53 +02:00
|
|
|
static const char *const hostapd_cli_version =
|
2008-02-28 02:34:43 +01:00
|
|
|
"hostapd_cli v" VERSION_STR "\n"
|
2016-01-01 12:08:57 +01:00
|
|
|
"Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi> and contributors";
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
2015-04-24 09:19:53 +02:00
|
|
|
static const char *const hostapd_cli_license =
|
2012-02-11 13:04:12 +01:00
|
|
|
"This software may be distributed under the terms of the BSD license.\n"
|
|
|
|
"See README for more details.\n";
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2015-04-24 09:19:53 +02:00
|
|
|
static const char *const hostapd_cli_full_license =
|
2012-02-11 13:04:12 +01:00
|
|
|
"This software may be distributed under the terms of the BSD license.\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
"\n"
|
|
|
|
"Redistribution and use in source and binary forms, with or without\n"
|
|
|
|
"modification, are permitted provided that the following conditions are\n"
|
|
|
|
"met:\n"
|
|
|
|
"\n"
|
|
|
|
"1. Redistributions of source code must retain the above copyright\n"
|
|
|
|
" notice, this list of conditions and the following disclaimer.\n"
|
|
|
|
"\n"
|
|
|
|
"2. Redistributions in binary form must reproduce the above copyright\n"
|
|
|
|
" notice, this list of conditions and the following disclaimer in the\n"
|
|
|
|
" documentation and/or other materials provided with the distribution.\n"
|
|
|
|
"\n"
|
|
|
|
"3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
|
|
|
|
" names of its contributors may be used to endorse or promote products\n"
|
|
|
|
" derived from this software without specific prior written permission.\n"
|
|
|
|
"\n"
|
|
|
|
"THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
|
|
|
|
"\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
|
|
|
|
"LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
|
|
|
|
"A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n"
|
|
|
|
"OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
|
|
|
|
"SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
|
|
|
|
"LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
|
|
|
|
"DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
|
|
|
|
"THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
|
|
|
|
"(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
|
|
|
|
"OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
|
|
|
|
"\n";
|
|
|
|
|
2015-04-24 09:19:53 +02:00
|
|
|
static const char *const commands_help =
|
2008-02-28 02:34:43 +01:00
|
|
|
"Commands:\n"
|
|
|
|
" mib get MIB variables (dot1x, dot11, radius)\n"
|
|
|
|
" sta <addr> get MIB variables for one station\n"
|
|
|
|
" all_sta get MIB variables for all stations\n"
|
|
|
|
" new_sta <addr> add a new station\n"
|
2010-04-11 20:00:16 +02:00
|
|
|
" deauthenticate <addr> deauthenticate a station\n"
|
|
|
|
" disassociate <addr> disassociate a station\n"
|
2008-12-30 17:04:29 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
" sa_query <addr> send SA Query to a station\n"
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2008-11-23 18:34:26 +01:00
|
|
|
#ifdef CONFIG_WPS
|
2009-12-12 15:40:10 +01:00
|
|
|
" wps_pin <uuid> <pin> [timeout] [addr] add WPS Enrollee PIN\n"
|
2010-09-23 19:30:52 +02:00
|
|
|
" wps_check_pin <PIN> verify PIN checksum\n"
|
2008-11-23 18:34:26 +01:00
|
|
|
" wps_pbc indicate button pushed to initiate PBC\n"
|
2012-08-24 18:02:56 +02:00
|
|
|
" wps_cancel cancel the pending WPS operation\n"
|
2012-06-27 19:54:56 +02:00
|
|
|
#ifdef CONFIG_WPS_NFC
|
|
|
|
" wps_nfc_tag_read <hexdump> report read NFC tag with WPS data\n"
|
2012-06-28 12:25:48 +02:00
|
|
|
" wps_nfc_config_token <WPS/NDEF> build NFC configuration token\n"
|
2012-06-28 18:43:29 +02:00
|
|
|
" wps_nfc_token <WPS/NDEF/enable/disable> manager NFC password token\n"
|
2012-06-27 19:54:56 +02:00
|
|
|
#endif /* CONFIG_WPS_NFC */
|
2010-08-24 15:35:37 +02:00
|
|
|
" wps_ap_pin <cmd> [params..] enable/disable AP PIN\n"
|
2010-10-21 15:49:41 +02:00
|
|
|
" wps_config <SSID> <auth> <encr> <key> configure AP\n"
|
2013-08-23 15:03:15 +02:00
|
|
|
" wps_get_status show current WPS status\n"
|
2008-11-23 18:34:26 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2010-09-23 21:02:28 +02:00
|
|
|
" get_config show current configuration\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" help show this usage help\n"
|
|
|
|
" interface [ifname] show interfaces/select interface\n"
|
|
|
|
" level <debug level> change debug level\n"
|
|
|
|
" license show full hostapd_cli license\n"
|
|
|
|
" quit exit hostapd_cli\n";
|
|
|
|
|
|
|
|
static struct wpa_ctrl *ctrl_conn;
|
|
|
|
static int hostapd_cli_quit = 0;
|
|
|
|
static int hostapd_cli_attached = 0;
|
2012-09-04 07:12:17 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_CTRL_IFACE_DIR
|
|
|
|
#define CONFIG_CTRL_IFACE_DIR "/var/run/hostapd"
|
|
|
|
#endif /* CONFIG_CTRL_IFACE_DIR */
|
|
|
|
static const char *ctrl_iface_dir = CONFIG_CTRL_IFACE_DIR;
|
2015-08-25 06:34:03 +02:00
|
|
|
static const char *client_socket_dir = NULL;
|
2012-09-04 07:12:17 +02:00
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static char *ctrl_ifname = NULL;
|
2010-04-07 10:14:54 +02:00
|
|
|
static const char *pid_file = NULL;
|
|
|
|
static const char *action_file = NULL;
|
2009-01-20 20:12:00 +01:00
|
|
|
static int ping_interval = 5;
|
2011-07-16 16:37:18 +02:00
|
|
|
static int interactive = 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s\n", hostapd_cli_version);
|
2010-04-07 10:14:54 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"\n"
|
|
|
|
"usage: hostapd_cli [-p<path>] [-i<ifname>] [-hvB] "
|
|
|
|
"[-a<path>] \\\n"
|
2015-06-25 14:42:48 +02:00
|
|
|
" [-P<pid file>] [-G<ping interval>] [command..]\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
" -h help (show this usage text)\n"
|
|
|
|
" -v shown version information\n"
|
|
|
|
" -p<path> path to find control sockets (default: "
|
|
|
|
"/var/run/hostapd)\n"
|
2015-08-25 06:34:03 +02:00
|
|
|
" -s<dir_path> dir path to open client sockets (default: "
|
|
|
|
CONFIG_CTRL_IFACE_DIR ")\n"
|
2010-04-07 10:14:54 +02:00
|
|
|
" -a<file> run in daemon mode executing the action file "
|
|
|
|
"based on events\n"
|
|
|
|
" from hostapd\n"
|
|
|
|
" -B run a daemon in the background\n"
|
2008-02-28 02:34:43 +01:00
|
|
|
" -i<ifname> Interface to listen on (default: first "
|
|
|
|
"interface found in the\n"
|
|
|
|
" socket path)\n\n"
|
|
|
|
"%s",
|
|
|
|
commands_help);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpa_ctrl * hostapd_cli_open_connection(const char *ifname)
|
|
|
|
{
|
2016-03-04 10:20:24 +01:00
|
|
|
#ifndef CONFIG_CTRL_IFACE_UDP
|
2008-02-28 02:34:43 +01:00
|
|
|
char *cfile;
|
|
|
|
int flen;
|
2016-03-04 10:20:24 +01:00
|
|
|
#endif /* !CONFIG_CTRL_IFACE_UDP */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (ifname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-03-04 10:20:24 +01:00
|
|
|
#ifdef CONFIG_CTRL_IFACE_UDP
|
|
|
|
ctrl_conn = wpa_ctrl_open(ifname);
|
|
|
|
return ctrl_conn;
|
|
|
|
#else /* CONFIG_CTRL_IFACE_UDP */
|
2008-02-28 02:34:43 +01:00
|
|
|
flen = strlen(ctrl_iface_dir) + strlen(ifname) + 2;
|
|
|
|
cfile = malloc(flen);
|
|
|
|
if (cfile == NULL)
|
|
|
|
return NULL;
|
|
|
|
snprintf(cfile, flen, "%s/%s", ctrl_iface_dir, ifname);
|
|
|
|
|
2015-08-25 06:34:03 +02:00
|
|
|
if (client_socket_dir && client_socket_dir[0] &&
|
|
|
|
access(client_socket_dir, F_OK) < 0) {
|
|
|
|
perror(client_socket_dir);
|
|
|
|
free(cfile);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctrl_conn = wpa_ctrl_open2(cfile, client_socket_dir);
|
2008-02-28 02:34:43 +01:00
|
|
|
free(cfile);
|
|
|
|
return ctrl_conn;
|
2016-03-04 10:20:24 +01:00
|
|
|
#endif /* CONFIG_CTRL_IFACE_UDP */
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_close_connection(void)
|
|
|
|
{
|
|
|
|
if (ctrl_conn == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hostapd_cli_attached) {
|
|
|
|
wpa_ctrl_detach(ctrl_conn);
|
|
|
|
hostapd_cli_attached = 0;
|
|
|
|
}
|
|
|
|
wpa_ctrl_close(ctrl_conn);
|
|
|
|
ctrl_conn = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_msg_cb(char *msg, size_t len)
|
|
|
|
{
|
|
|
|
printf("%s\n", msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int _wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd, int print)
|
|
|
|
{
|
|
|
|
char buf[4096];
|
|
|
|
size_t len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (ctrl_conn == NULL) {
|
|
|
|
printf("Not connected to hostapd - command dropped.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
len = sizeof(buf) - 1;
|
|
|
|
ret = wpa_ctrl_request(ctrl, cmd, strlen(cmd), buf, &len,
|
|
|
|
hostapd_cli_msg_cb);
|
|
|
|
if (ret == -2) {
|
|
|
|
printf("'%s' command timed out.\n", cmd);
|
|
|
|
return -2;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
printf("'%s' command failed.\n", cmd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (print) {
|
|
|
|
buf[len] = '\0';
|
|
|
|
printf("%s", buf);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd)
|
|
|
|
{
|
|
|
|
return _wpa_ctrl_command(ctrl, cmd, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-21 13:49:44 +01:00
|
|
|
static int write_cmd(char *buf, size_t buflen, const char *cmd, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
int i, res;
|
|
|
|
char *pos, *end;
|
|
|
|
|
|
|
|
pos = buf;
|
|
|
|
end = buf + buflen;
|
|
|
|
|
|
|
|
res = os_snprintf(pos, end - pos, "%s", cmd);
|
|
|
|
if (os_snprintf_error(end - pos, res))
|
|
|
|
goto fail;
|
|
|
|
pos += res;
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
res = os_snprintf(pos, end - pos, " %s", argv[i]);
|
|
|
|
if (os_snprintf_error(end - pos, res))
|
|
|
|
goto fail;
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[buflen - 1] = '\0';
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
printf("Too long command\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd(struct wpa_ctrl *ctrl, const char *cmd,
|
|
|
|
int min_args, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
if (argc < min_args) {
|
|
|
|
printf("Invalid %s command - at least %d argument%s required.\n",
|
|
|
|
cmd, min_args, min_args > 1 ? "s are" : " is");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (write_cmd(buf, sizeof(buf), cmd, argc, argv) < 0)
|
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int hostapd_cli_cmd_ping(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "PING");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-06 19:24:16 +01:00
|
|
|
static int hostapd_cli_cmd_relog(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "RELOG");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-03 17:13:14 +01:00
|
|
|
static int hostapd_cli_cmd_status(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
2014-01-05 20:50:34 +01:00
|
|
|
if (argc > 0 && os_strcmp(argv[0], "driver") == 0)
|
|
|
|
return wpa_ctrl_command(ctrl, "STATUS-DRIVER");
|
2013-11-03 17:13:14 +01:00
|
|
|
return wpa_ctrl_command(ctrl, "STATUS");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int hostapd_cli_cmd_mib(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
2014-01-02 16:19:04 +01:00
|
|
|
if (argc > 0) {
|
|
|
|
char buf[100];
|
|
|
|
os_snprintf(buf, sizeof(buf), "MIB %s", argv[0]);
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
return wpa_ctrl_command(ctrl, "MIB");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
static int hostapd_cli_exec(const char *program, const char *arg1,
|
|
|
|
const char *arg2)
|
|
|
|
{
|
2014-10-06 17:49:01 +02:00
|
|
|
char *arg;
|
2010-04-07 10:14:54 +02:00
|
|
|
size_t len;
|
|
|
|
int res;
|
|
|
|
|
2014-10-06 17:49:01 +02:00
|
|
|
len = os_strlen(arg1) + os_strlen(arg2) + 2;
|
|
|
|
arg = os_malloc(len);
|
|
|
|
if (arg == NULL)
|
2010-04-07 10:14:54 +02:00
|
|
|
return -1;
|
2014-10-06 17:49:01 +02:00
|
|
|
os_snprintf(arg, len, "%s %s", arg1, arg2);
|
|
|
|
res = os_exec(program, arg, 1);
|
|
|
|
os_free(arg);
|
|
|
|
|
|
|
|
return res;
|
2010-04-07 10:14:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_action_process(char *msg, size_t len)
|
|
|
|
{
|
|
|
|
const char *pos;
|
|
|
|
|
|
|
|
pos = msg;
|
|
|
|
if (*pos == '<') {
|
|
|
|
pos = os_strchr(pos, '>');
|
|
|
|
if (pos)
|
|
|
|
pos++;
|
|
|
|
else
|
|
|
|
pos = msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
hostapd_cli_exec(action_file, ctrl_ifname, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int hostapd_cli_cmd_sta(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
2014-01-02 16:49:48 +01:00
|
|
|
if (argc < 1) {
|
|
|
|
printf("Invalid 'sta' command - at least one argument, STA "
|
2008-02-28 02:34:43 +01:00
|
|
|
"address, is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2014-01-02 16:49:48 +01:00
|
|
|
if (argc > 1)
|
|
|
|
snprintf(buf, sizeof(buf), "STA %s %s", argv[0], argv[1]);
|
|
|
|
else
|
|
|
|
snprintf(buf, sizeof(buf), "STA %s", argv[0]);
|
2008-02-28 02:34:43 +01:00
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_new_sta(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'new_sta' command - exactly one argument, STA "
|
|
|
|
"address, is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
snprintf(buf, sizeof(buf), "NEW_STA %s", argv[0]);
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 20:14:57 +02:00
|
|
|
static int hostapd_cli_cmd_deauthenticate(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
2010-03-29 21:01:40 +02:00
|
|
|
if (argc < 1) {
|
2010-03-29 20:14:57 +02:00
|
|
|
printf("Invalid 'deauthenticate' command - exactly one "
|
|
|
|
"argument, STA address, is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2010-03-29 21:01:40 +02:00
|
|
|
if (argc > 1)
|
|
|
|
os_snprintf(buf, sizeof(buf), "DEAUTHENTICATE %s %s",
|
|
|
|
argv[0], argv[1]);
|
|
|
|
else
|
|
|
|
os_snprintf(buf, sizeof(buf), "DEAUTHENTICATE %s", argv[0]);
|
2010-03-29 20:14:57 +02:00
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_disassociate(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
2010-03-29 21:01:40 +02:00
|
|
|
if (argc < 1) {
|
2010-03-29 20:14:57 +02:00
|
|
|
printf("Invalid 'disassociate' command - exactly one "
|
|
|
|
"argument, STA address, is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2010-03-29 21:01:40 +02:00
|
|
|
if (argc > 1)
|
|
|
|
os_snprintf(buf, sizeof(buf), "DISASSOCIATE %s %s",
|
|
|
|
argv[0], argv[1]);
|
|
|
|
else
|
|
|
|
os_snprintf(buf, sizeof(buf), "DISASSOCIATE %s", argv[0]);
|
2010-03-29 20:14:57 +02:00
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-30 17:04:29 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
static int hostapd_cli_cmd_sa_query(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'sa_query' command - exactly one argument, "
|
|
|
|
"STA address, is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
snprintf(buf, sizeof(buf), "SA_QUERY %s", argv[0]);
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
|
|
|
|
|
2008-11-23 18:34:26 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
static int hostapd_cli_cmd_wps_pin(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
2009-12-12 15:40:10 +01:00
|
|
|
char buf[256];
|
2009-05-26 16:44:44 +02:00
|
|
|
if (argc < 2) {
|
|
|
|
printf("Invalid 'wps_pin' command - at least two arguments, "
|
2008-11-23 18:34:26 +01:00
|
|
|
"UUID and PIN, are required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-12-12 15:40:10 +01:00
|
|
|
if (argc > 3)
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_PIN %s %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2], argv[3]);
|
|
|
|
else if (argc > 2)
|
2009-05-26 16:44:44 +02:00
|
|
|
snprintf(buf, sizeof(buf), "WPS_PIN %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2]);
|
|
|
|
else
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_PIN %s %s", argv[0], argv[1]);
|
2008-11-23 18:34:26 +01:00
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-23 19:30:52 +02:00
|
|
|
static int hostapd_cli_cmd_wps_check_pin(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1 && argc != 2) {
|
|
|
|
printf("Invalid WPS_CHECK_PIN command: needs one argument:\n"
|
|
|
|
"- PIN to be verified\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "WPS_CHECK_PIN %s %s",
|
|
|
|
argv[0], argv[1]);
|
|
|
|
else
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "WPS_CHECK_PIN %s",
|
|
|
|
argv[0]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2010-09-23 19:30:52 +02:00
|
|
|
printf("Too long WPS_CHECK_PIN command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-23 18:34:26 +01:00
|
|
|
static int hostapd_cli_cmd_wps_pbc(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "WPS_PBC");
|
|
|
|
}
|
2009-02-26 20:57:38 +01:00
|
|
|
|
|
|
|
|
2012-03-19 07:23:31 +01:00
|
|
|
static int hostapd_cli_cmd_wps_cancel(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "WPS_CANCEL");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-27 19:54:56 +02:00
|
|
|
#ifdef CONFIG_WPS_NFC
|
|
|
|
static int hostapd_cli_cmd_wps_nfc_tag_read(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char *buf;
|
|
|
|
size_t buflen;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'wps_nfc_tag_read' command - one argument "
|
|
|
|
"is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
buflen = 18 + os_strlen(argv[0]);
|
|
|
|
buf = os_malloc(buflen);
|
|
|
|
if (buf == NULL)
|
|
|
|
return -1;
|
|
|
|
os_snprintf(buf, buflen, "WPS_NFC_TAG_READ %s", argv[0]);
|
|
|
|
|
|
|
|
ret = wpa_ctrl_command(ctrl, buf);
|
|
|
|
os_free(buf);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2012-06-28 12:25:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_wps_nfc_config_token(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[64];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'wps_nfc_config_token' command - one argument "
|
|
|
|
"is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "WPS_NFC_CONFIG_TOKEN %s",
|
|
|
|
argv[0]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2012-06-28 12:25:48 +02:00
|
|
|
printf("Too long WPS_NFC_CONFIG_TOKEN command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
2012-06-28 18:43:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_wps_nfc_token(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[64];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'wps_nfc_token' command - one argument is "
|
|
|
|
"required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "WPS_NFC_TOKEN %s", argv[0]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2012-06-28 18:43:29 +02:00
|
|
|
printf("Too long WPS_NFC_TOKEN command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
2013-02-10 16:12:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_nfc_get_handover_sel(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[64];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
printf("Invalid 'nfc_get_handover_sel' command - two arguments "
|
|
|
|
"are required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "NFC_GET_HANDOVER_SEL %s %s",
|
|
|
|
argv[0], argv[1]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2013-02-10 16:12:55 +01:00
|
|
|
printf("Too long NFC_GET_HANDOVER_SEL command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
2012-06-27 19:54:56 +02:00
|
|
|
#endif /* CONFIG_WPS_NFC */
|
|
|
|
|
|
|
|
|
2010-08-24 15:35:37 +02:00
|
|
|
static int hostapd_cli_cmd_wps_ap_pin(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
if (argc < 1) {
|
|
|
|
printf("Invalid 'wps_ap_pin' command - at least one argument "
|
|
|
|
"is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (argc > 2)
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_AP_PIN %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2]);
|
|
|
|
else if (argc > 1)
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_AP_PIN %s %s",
|
|
|
|
argv[0], argv[1]);
|
|
|
|
else
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_AP_PIN %s", argv[0]);
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
2010-10-21 15:49:41 +02:00
|
|
|
|
|
|
|
|
2013-08-23 15:03:15 +02:00
|
|
|
static int hostapd_cli_cmd_wps_get_status(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "WPS_GET_STATUS");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-21 15:49:41 +02:00
|
|
|
static int hostapd_cli_cmd_wps_config(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[256];
|
2015-04-07 11:00:13 +02:00
|
|
|
char ssid_hex[2 * SSID_MAX_LEN + 1];
|
2010-10-21 15:49:41 +02:00
|
|
|
char key_hex[2 * 64 + 1];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
printf("Invalid 'wps_config' command - at least two arguments "
|
|
|
|
"are required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssid_hex[0] = '\0';
|
2015-04-07 11:00:13 +02:00
|
|
|
for (i = 0; i < SSID_MAX_LEN; i++) {
|
2010-10-21 15:49:41 +02:00
|
|
|
if (argv[0][i] == '\0')
|
|
|
|
break;
|
|
|
|
os_snprintf(&ssid_hex[i * 2], 3, "%02x", argv[0][i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
key_hex[0] = '\0';
|
|
|
|
if (argc > 3) {
|
|
|
|
for (i = 0; i < 64; i++) {
|
|
|
|
if (argv[3][i] == '\0')
|
|
|
|
break;
|
|
|
|
os_snprintf(&key_hex[i * 2], 3, "%02x",
|
|
|
|
argv[3][i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 3)
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s %s %s",
|
|
|
|
ssid_hex, argv[1], argv[2], key_hex);
|
|
|
|
else if (argc > 2)
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s %s",
|
|
|
|
ssid_hex, argv[1], argv[2]);
|
|
|
|
else
|
|
|
|
snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s",
|
|
|
|
ssid_hex, argv[1]);
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
2008-11-23 18:34:26 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
|
|
|
|
|
2012-12-22 19:27:30 +01:00
|
|
|
static int hostapd_cli_cmd_disassoc_imminent(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[300];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
|
|
|
printf("Invalid 'disassoc_imminent' command - two arguments "
|
|
|
|
"(STA addr and Disassociation Timer) are needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, sizeof(buf), "DISASSOC_IMMINENT %s %s",
|
|
|
|
argv[0], argv[1]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2012-12-22 19:27:30 +01:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-07 12:33:04 +02:00
|
|
|
static int hostapd_cli_cmd_ess_disassoc(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[300];
|
|
|
|
int res;
|
|
|
|
|
2013-04-05 17:41:26 +02:00
|
|
|
if (argc < 3) {
|
|
|
|
printf("Invalid 'ess_disassoc' command - three arguments (STA "
|
|
|
|
"addr, disassoc timer, and URL) are needed\n");
|
2011-10-07 12:33:04 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-04-05 17:41:26 +02:00
|
|
|
res = os_snprintf(buf, sizeof(buf), "ESS_DISASSOC %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2011-10-07 12:33:04 +02:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-22 10:31:03 +01:00
|
|
|
static int hostapd_cli_cmd_bss_tm_req(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[2000], *tmp;
|
|
|
|
int res, i, total;
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
printf("Invalid 'bss_tm_req' command - at least one argument (STA addr) is needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, sizeof(buf), "BSS_TM_REQ %s", argv[0]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2014-11-22 10:31:03 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
total = res;
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
tmp = &buf[total];
|
|
|
|
res = os_snprintf(tmp, sizeof(buf) - total, " %s", argv[i]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf) - total, res))
|
2014-11-22 10:31:03 +01:00
|
|
|
return -1;
|
|
|
|
total += res;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-23 21:02:28 +02:00
|
|
|
static int hostapd_cli_cmd_get_config(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "GET_CONFIG");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int wpa_ctrl_command_sta(struct wpa_ctrl *ctrl, char *cmd,
|
|
|
|
char *addr, size_t addr_len)
|
|
|
|
{
|
|
|
|
char buf[4096], *pos;
|
|
|
|
size_t len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (ctrl_conn == NULL) {
|
|
|
|
printf("Not connected to hostapd - command dropped.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
len = sizeof(buf) - 1;
|
|
|
|
ret = wpa_ctrl_request(ctrl, cmd, strlen(cmd), buf, &len,
|
|
|
|
hostapd_cli_msg_cb);
|
|
|
|
if (ret == -2) {
|
|
|
|
printf("'%s' command timed out.\n", cmd);
|
|
|
|
return -2;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
printf("'%s' command failed.\n", cmd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[len] = '\0';
|
|
|
|
if (memcmp(buf, "FAIL", 4) == 0)
|
|
|
|
return -1;
|
|
|
|
printf("%s", buf);
|
|
|
|
|
|
|
|
pos = buf;
|
|
|
|
while (*pos != '\0' && *pos != '\n')
|
|
|
|
pos++;
|
|
|
|
*pos = '\0';
|
|
|
|
os_strlcpy(addr, buf, addr_len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_all_sta(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char addr[32], cmd[64];
|
|
|
|
|
|
|
|
if (wpa_ctrl_command_sta(ctrl, "STA-FIRST", addr, sizeof(addr)))
|
|
|
|
return 0;
|
|
|
|
do {
|
|
|
|
snprintf(cmd, sizeof(cmd), "STA-NEXT %s", addr);
|
|
|
|
} while (wpa_ctrl_command_sta(ctrl, cmd, addr, sizeof(addr)) == 0);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_help(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
printf("%s", commands_help);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_license(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
printf("%s\n\n%s\n", hostapd_cli_version, hostapd_cli_full_license);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-24 11:28:20 +02:00
|
|
|
static int hostapd_cli_cmd_set_qos_map_set(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char buf[200];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'set_qos_map_set' command - "
|
|
|
|
"one argument (comma delimited QoS map set) "
|
|
|
|
"is needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, sizeof(buf), "SET_QOS_MAP_SET %s", argv[0]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2013-07-24 11:28:20 +02:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_send_qos_map_conf(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char buf[50];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid 'send_qos_map_conf' command - "
|
|
|
|
"one argument (STA addr) is needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, sizeof(buf), "SEND_QOS_MAP_CONF %s", argv[0]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2013-07-24 11:28:20 +02:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-17 15:03:42 +01:00
|
|
|
static int hostapd_cli_cmd_hs20_wnm_notif(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[300];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
|
|
|
printf("Invalid 'hs20_wnm_notif' command - two arguments (STA "
|
|
|
|
"addr and URL) are needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, sizeof(buf), "HS20_WNM_NOTIF %s %s",
|
|
|
|
argv[0], argv[1]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2013-03-17 15:03:42 +01:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-26 21:13:58 +02:00
|
|
|
static int hostapd_cli_cmd_hs20_deauth_req(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char buf[300];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc < 3) {
|
|
|
|
printf("Invalid 'hs20_deauth_req' command - at least three arguments (STA addr, Code, Re-auth Delay) are needed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 3)
|
|
|
|
res = os_snprintf(buf, sizeof(buf),
|
|
|
|
"HS20_DEAUTH_REQ %s %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2], argv[3]);
|
|
|
|
else
|
|
|
|
res = os_snprintf(buf, sizeof(buf),
|
|
|
|
"HS20_DEAUTH_REQ %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2]);
|
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
|
|
|
if (os_snprintf_error(sizeof(buf), res))
|
2013-07-26 21:13:58 +02:00
|
|
|
return -1;
|
|
|
|
return wpa_ctrl_command(ctrl, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int hostapd_cli_cmd_quit(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
hostapd_cli_quit = 1;
|
2011-07-16 16:37:18 +02:00
|
|
|
if (interactive)
|
|
|
|
eloop_terminate();
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_level(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid LEVEL command: needs one argument (debug "
|
|
|
|
"level)\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
snprintf(cmd, sizeof(cmd), "LEVEL %s", argv[0]);
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_list_interfaces(struct wpa_ctrl *ctrl)
|
|
|
|
{
|
|
|
|
struct dirent *dent;
|
|
|
|
DIR *dir;
|
|
|
|
|
|
|
|
dir = opendir(ctrl_iface_dir);
|
|
|
|
if (dir == NULL) {
|
|
|
|
printf("Control interface directory '%s' could not be "
|
|
|
|
"openned.\n", ctrl_iface_dir);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Available interfaces:\n");
|
|
|
|
while ((dent = readdir(dir))) {
|
|
|
|
if (strcmp(dent->d_name, ".") == 0 ||
|
|
|
|
strcmp(dent->d_name, "..") == 0)
|
|
|
|
continue;
|
|
|
|
printf("%s\n", dent->d_name);
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_interface(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
if (argc < 1) {
|
|
|
|
hostapd_cli_list_interfaces(ctrl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hostapd_cli_close_connection();
|
2014-05-29 23:42:07 +02:00
|
|
|
os_free(ctrl_ifname);
|
|
|
|
ctrl_ifname = os_strdup(argv[0]);
|
2014-08-28 17:25:32 +02:00
|
|
|
if (ctrl_ifname == NULL)
|
|
|
|
return -1;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (hostapd_cli_open_connection(ctrl_ifname)) {
|
|
|
|
printf("Connected to interface '%s.\n", ctrl_ifname);
|
|
|
|
if (wpa_ctrl_attach(ctrl_conn) == 0) {
|
|
|
|
hostapd_cli_attached = 1;
|
|
|
|
} else {
|
|
|
|
printf("Warning: Failed to attach to "
|
|
|
|
"hostapd.\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("Could not connect to interface '%s' - re-trying\n",
|
|
|
|
ctrl_ifname);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-22 04:51:23 +02:00
|
|
|
static int hostapd_cli_cmd_set(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
printf("Invalid SET command: needs two arguments (variable "
|
|
|
|
"name and value)\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "SET %s %s", argv[0], argv[1]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2010-09-22 04:51:23 +02:00
|
|
|
printf("Too long SET command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-31 16:07:31 +01:00
|
|
|
static int hostapd_cli_cmd_get(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid GET command: needs one argument (variable "
|
|
|
|
"name)\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "GET %s", argv[0]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2010-10-31 16:07:31 +01:00
|
|
|
printf("Too long GET command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-21 14:30:48 +01:00
|
|
|
#ifdef CONFIG_FST
|
|
|
|
static int hostapd_cli_cmd_fst(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
int i;
|
|
|
|
int total;
|
|
|
|
|
|
|
|
if (argc <= 0) {
|
|
|
|
printf("FST command: parameters are required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
total = os_snprintf(cmd, sizeof(cmd), "FST-MANAGER");
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
res = os_snprintf(cmd + total, sizeof(cmd) - total, " %s",
|
|
|
|
argv[i]);
|
|
|
|
if (os_snprintf_error(sizeof(cmd) - total, res)) {
|
|
|
|
printf("Too long fst command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
total += res;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_FST */
|
|
|
|
|
|
|
|
|
2013-11-14 11:28:32 +01:00
|
|
|
static int hostapd_cli_cmd_chan_switch(struct wpa_ctrl *ctrl,
|
|
|
|
int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
int i;
|
|
|
|
char *tmp;
|
|
|
|
int total;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
|
|
|
printf("Invalid chan_switch command: needs at least two "
|
|
|
|
"arguments (count and freq)\n"
|
|
|
|
"usage: <cs_count> <freq> [sec_channel_offset=] "
|
|
|
|
"[center_freq1=] [center_freq2=] [bandwidth=] "
|
|
|
|
"[blocktx] [ht|vht]\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "CHAN_SWITCH %s %s",
|
|
|
|
argv[0], argv[1]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2013-11-14 11:28:32 +01:00
|
|
|
printf("Too long CHAN_SWITCH command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
total = res;
|
|
|
|
for (i = 2; i < argc; i++) {
|
|
|
|
tmp = cmd + total;
|
|
|
|
res = os_snprintf(tmp, sizeof(cmd) - total, " %s", argv[i]);
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd) - total, res)) {
|
2013-11-14 11:28:32 +01:00
|
|
|
printf("Too long CHAN_SWITCH command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
total += res;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-29 15:29:14 +02:00
|
|
|
static int hostapd_cli_cmd_enable(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "ENABLE");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_reload(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "RELOAD");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_disable(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "DISABLE");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-27 07:58:31 +01:00
|
|
|
static int hostapd_cli_cmd_vendor(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc < 2 || argc > 3) {
|
|
|
|
printf("Invalid vendor command\n"
|
|
|
|
"usage: <vendor id> <command id> [<hex formatted command argument>]\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "VENDOR %s %s %s", argv[0], argv[1],
|
|
|
|
argc == 3 ? argv[2] : "");
|
Check os_snprintf() result more consistently - automatic 3
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the comparison was 'res > size' instead of
'res >= size - 1'. These changes were done automatically with spatch
using the following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || (size_t) E1 >= E3 - 1)
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:22:52 +01:00
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
2014-03-27 07:58:31 +01:00
|
|
|
printf("Too long VENDOR command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-14 12:31:12 +01:00
|
|
|
static int hostapd_cli_cmd_erp_flush(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "ERP_FLUSH");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-02 11:34:21 +02:00
|
|
|
static int hostapd_cli_cmd_log_level(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "LOG_LEVEL%s%s%s%s",
|
|
|
|
argc >= 1 ? " " : "",
|
|
|
|
argc >= 1 ? argv[0] : "",
|
|
|
|
argc == 2 ? " " : "",
|
|
|
|
argc == 2 ? argv[1] : "");
|
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
|
|
|
printf("Too long option\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-21 13:49:44 +01:00
|
|
|
static int hostapd_cli_cmd_raw(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc == 0)
|
|
|
|
return -1;
|
|
|
|
return hostapd_cli_cmd(ctrl, argv[0], 0, argc - 1, &argv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-09 10:16:12 +01:00
|
|
|
static int hostapd_cli_cmd_pmksa(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "PMKSA");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-09 10:16:13 +01:00
|
|
|
static int hostapd_cli_cmd_pmksa_flush(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
return wpa_ctrl_command(ctrl, "PMKSA_FLUSH");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-06 18:42:07 +02:00
|
|
|
static int hostapd_cli_cmd_set_neighbor(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[2048];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc < 3 || argc > 5) {
|
|
|
|
printf("Invalid set_neighbor command: needs 3-5 arguments\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "SET_NEIGHBOR %s %s %s %s %s",
|
|
|
|
argv[0], argv[1], argv[2], argc >= 4 ? argv[3] : "",
|
|
|
|
argc == 5 ? argv[4] : "");
|
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
|
|
|
printf("Too long SET_NEIGHBOR command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_cli_cmd_remove_neighbor(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[400];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
printf("Invalid remove_neighbor command: needs 2 arguments\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "REMOVE_NEIGHBOR %s %s",
|
|
|
|
argv[0], argv[1]);
|
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
|
|
|
printf("Too long REMOVE_NEIGHBOR command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-06 18:42:11 +02:00
|
|
|
static int hostapd_cli_cmd_req_lci(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (argc != 1) {
|
|
|
|
printf("Invalid req_lci command - requires destination address\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(cmd, sizeof(cmd), "REQ_LCI %s", argv[0]);
|
|
|
|
if (os_snprintf_error(sizeof(cmd), res)) {
|
|
|
|
printf("Too long REQ_LCI command.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return wpa_ctrl_command(ctrl, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-06 18:42:12 +02:00
|
|
|
static int hostapd_cli_cmd_req_range(struct wpa_ctrl *ctrl, int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
if (argc < 4) {
|
|
|
|
printf("Invalid req_range command: needs at least 4 arguments - dest address, randomization interval, min AP count, and 1 to 16 AP addresses\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hostapd_cli_cmd(ctrl, "REQ_RANGE", 4, argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
struct hostapd_cli_cmd {
|
|
|
|
const char *cmd;
|
|
|
|
int (*handler)(struct wpa_ctrl *ctrl, int argc, char *argv[]);
|
|
|
|
};
|
|
|
|
|
2015-04-24 09:19:53 +02:00
|
|
|
static const struct hostapd_cli_cmd hostapd_cli_commands[] = {
|
2008-02-28 02:34:43 +01:00
|
|
|
{ "ping", hostapd_cli_cmd_ping },
|
|
|
|
{ "mib", hostapd_cli_cmd_mib },
|
2011-02-06 19:24:16 +01:00
|
|
|
{ "relog", hostapd_cli_cmd_relog },
|
2013-11-03 17:13:14 +01:00
|
|
|
{ "status", hostapd_cli_cmd_status },
|
2008-02-28 02:34:43 +01:00
|
|
|
{ "sta", hostapd_cli_cmd_sta },
|
|
|
|
{ "all_sta", hostapd_cli_cmd_all_sta },
|
|
|
|
{ "new_sta", hostapd_cli_cmd_new_sta },
|
2010-03-29 20:14:57 +02:00
|
|
|
{ "deauthenticate", hostapd_cli_cmd_deauthenticate },
|
|
|
|
{ "disassociate", hostapd_cli_cmd_disassociate },
|
2008-12-30 17:04:29 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
{ "sa_query", hostapd_cli_cmd_sa_query },
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2008-11-23 18:34:26 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
{ "wps_pin", hostapd_cli_cmd_wps_pin },
|
2010-09-23 19:30:52 +02:00
|
|
|
{ "wps_check_pin", hostapd_cli_cmd_wps_check_pin },
|
2008-11-23 18:34:26 +01:00
|
|
|
{ "wps_pbc", hostapd_cli_cmd_wps_pbc },
|
2012-03-19 07:23:31 +01:00
|
|
|
{ "wps_cancel", hostapd_cli_cmd_wps_cancel },
|
2012-06-27 19:54:56 +02:00
|
|
|
#ifdef CONFIG_WPS_NFC
|
|
|
|
{ "wps_nfc_tag_read", hostapd_cli_cmd_wps_nfc_tag_read },
|
2012-06-28 12:25:48 +02:00
|
|
|
{ "wps_nfc_config_token", hostapd_cli_cmd_wps_nfc_config_token },
|
2012-06-28 18:43:29 +02:00
|
|
|
{ "wps_nfc_token", hostapd_cli_cmd_wps_nfc_token },
|
2013-02-10 16:12:55 +01:00
|
|
|
{ "nfc_get_handover_sel", hostapd_cli_cmd_nfc_get_handover_sel },
|
2012-06-27 19:54:56 +02:00
|
|
|
#endif /* CONFIG_WPS_NFC */
|
2010-08-24 15:35:37 +02:00
|
|
|
{ "wps_ap_pin", hostapd_cli_cmd_wps_ap_pin },
|
2010-10-21 15:49:41 +02:00
|
|
|
{ "wps_config", hostapd_cli_cmd_wps_config },
|
2013-08-23 15:03:15 +02:00
|
|
|
{ "wps_get_status", hostapd_cli_cmd_wps_get_status },
|
2008-11-23 18:34:26 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2012-12-22 19:27:30 +01:00
|
|
|
{ "disassoc_imminent", hostapd_cli_cmd_disassoc_imminent },
|
2011-10-07 12:33:04 +02:00
|
|
|
{ "ess_disassoc", hostapd_cli_cmd_ess_disassoc },
|
2014-11-22 10:31:03 +01:00
|
|
|
{ "bss_tm_req", hostapd_cli_cmd_bss_tm_req },
|
2010-09-23 21:02:28 +02:00
|
|
|
{ "get_config", hostapd_cli_cmd_get_config },
|
2008-02-28 02:34:43 +01:00
|
|
|
{ "help", hostapd_cli_cmd_help },
|
|
|
|
{ "interface", hostapd_cli_cmd_interface },
|
2015-01-21 14:30:48 +01:00
|
|
|
#ifdef CONFIG_FST
|
|
|
|
{ "fst", hostapd_cli_cmd_fst },
|
|
|
|
#endif /* CONFIG_FST */
|
2016-02-21 13:49:44 +01:00
|
|
|
{ "raw", hostapd_cli_cmd_raw },
|
2008-02-28 02:34:43 +01:00
|
|
|
{ "level", hostapd_cli_cmd_level },
|
|
|
|
{ "license", hostapd_cli_cmd_license },
|
|
|
|
{ "quit", hostapd_cli_cmd_quit },
|
2010-09-22 04:51:23 +02:00
|
|
|
{ "set", hostapd_cli_cmd_set },
|
2010-10-31 16:07:31 +01:00
|
|
|
{ "get", hostapd_cli_cmd_get },
|
2013-07-24 11:28:20 +02:00
|
|
|
{ "set_qos_map_set", hostapd_cli_cmd_set_qos_map_set },
|
|
|
|
{ "send_qos_map_conf", hostapd_cli_cmd_send_qos_map_conf },
|
2013-11-14 11:28:32 +01:00
|
|
|
{ "chan_switch", hostapd_cli_cmd_chan_switch },
|
2013-03-17 15:03:42 +01:00
|
|
|
{ "hs20_wnm_notif", hostapd_cli_cmd_hs20_wnm_notif },
|
2013-07-26 21:13:58 +02:00
|
|
|
{ "hs20_deauth_req", hostapd_cli_cmd_hs20_deauth_req },
|
2014-03-27 07:58:31 +01:00
|
|
|
{ "vendor", hostapd_cli_cmd_vendor },
|
2014-04-29 15:29:14 +02:00
|
|
|
{ "enable", hostapd_cli_cmd_enable },
|
|
|
|
{ "reload", hostapd_cli_cmd_reload },
|
|
|
|
{ "disable", hostapd_cli_cmd_disable },
|
2014-12-14 12:31:12 +01:00
|
|
|
{ "erp_flush", hostapd_cli_cmd_erp_flush },
|
2015-08-02 11:34:21 +02:00
|
|
|
{ "log_level", hostapd_cli_cmd_log_level },
|
2016-03-09 10:16:12 +01:00
|
|
|
{ "pmksa", hostapd_cli_cmd_pmksa },
|
2016-03-09 10:16:13 +01:00
|
|
|
{ "pmksa_flush", hostapd_cli_cmd_pmksa_flush },
|
2016-04-06 18:42:07 +02:00
|
|
|
{ "set_neighbor", hostapd_cli_cmd_set_neighbor },
|
|
|
|
{ "remove_neighbor", hostapd_cli_cmd_remove_neighbor },
|
2016-04-06 18:42:11 +02:00
|
|
|
{ "req_lci", hostapd_cli_cmd_req_lci },
|
2016-04-06 18:42:12 +02:00
|
|
|
{ "req_range", hostapd_cli_cmd_req_range },
|
2008-02-28 02:34:43 +01:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_request(struct wpa_ctrl *ctrl, int argc, char *argv[])
|
|
|
|
{
|
2015-04-24 09:19:53 +02:00
|
|
|
const struct hostapd_cli_cmd *cmd, *match = NULL;
|
2008-02-28 02:34:43 +01:00
|
|
|
int count;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
cmd = hostapd_cli_commands;
|
|
|
|
while (cmd->cmd) {
|
|
|
|
if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) == 0) {
|
|
|
|
match = cmd;
|
2010-10-31 16:07:31 +01:00
|
|
|
if (os_strcasecmp(cmd->cmd, argv[0]) == 0) {
|
|
|
|
/* we have an exact match */
|
|
|
|
count = 1;
|
|
|
|
break;
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
cmd++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 1) {
|
|
|
|
printf("Ambiguous command '%s'; possible commands:", argv[0]);
|
|
|
|
cmd = hostapd_cli_commands;
|
|
|
|
while (cmd->cmd) {
|
|
|
|
if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) ==
|
|
|
|
0) {
|
|
|
|
printf(" %s", cmd->cmd);
|
|
|
|
}
|
|
|
|
cmd++;
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
} else if (count == 0) {
|
|
|
|
printf("Unknown command '%s'\n", argv[0]);
|
|
|
|
} else {
|
|
|
|
match->handler(ctrl, argc - 1, &argv[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
static void hostapd_cli_recv_pending(struct wpa_ctrl *ctrl, int in_read,
|
|
|
|
int action_monitor)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
int first = 1;
|
|
|
|
if (ctrl_conn == NULL)
|
|
|
|
return;
|
|
|
|
while (wpa_ctrl_pending(ctrl)) {
|
|
|
|
char buf[256];
|
|
|
|
size_t len = sizeof(buf) - 1;
|
|
|
|
if (wpa_ctrl_recv(ctrl, buf, &len) == 0) {
|
|
|
|
buf[len] = '\0';
|
2010-04-07 10:14:54 +02:00
|
|
|
if (action_monitor)
|
|
|
|
hostapd_cli_action_process(buf, len);
|
|
|
|
else {
|
|
|
|
if (in_read && first)
|
|
|
|
printf("\n");
|
|
|
|
first = 0;
|
|
|
|
printf("%s\n", buf);
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
} else {
|
|
|
|
printf("Could not read pending message.\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
#define max_args 10
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
static int tokenize_cmd(char *cmd, char *argv[])
|
|
|
|
{
|
|
|
|
char *pos;
|
|
|
|
int argc = 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
pos = cmd;
|
|
|
|
for (;;) {
|
|
|
|
while (*pos == ' ')
|
2008-02-28 02:34:43 +01:00
|
|
|
pos++;
|
2011-07-16 16:37:18 +02:00
|
|
|
if (*pos == '\0')
|
|
|
|
break;
|
|
|
|
argv[argc] = pos;
|
|
|
|
argc++;
|
|
|
|
if (argc == max_args)
|
|
|
|
break;
|
|
|
|
if (*pos == '"') {
|
|
|
|
char *pos2 = os_strrchr(pos, '"');
|
|
|
|
if (pos2)
|
|
|
|
pos = pos2 + 1;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
2011-07-16 16:37:18 +02:00
|
|
|
while (*pos != '\0' && *pos != ' ')
|
|
|
|
pos++;
|
|
|
|
if (*pos == ' ')
|
|
|
|
*pos++ = '\0';
|
|
|
|
}
|
2010-04-07 10:14:54 +02:00
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
return argc;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
static void hostapd_cli_ping(void *eloop_ctx, void *timeout_ctx)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
if (ctrl_conn && _wpa_ctrl_command(ctrl_conn, "PING", 0)) {
|
|
|
|
printf("Connection to hostapd lost - trying to reconnect\n");
|
|
|
|
hostapd_cli_close_connection();
|
|
|
|
}
|
|
|
|
if (!ctrl_conn) {
|
|
|
|
ctrl_conn = hostapd_cli_open_connection(ctrl_ifname);
|
|
|
|
if (ctrl_conn) {
|
|
|
|
printf("Connection to hostapd re-established\n");
|
|
|
|
if (wpa_ctrl_attach(ctrl_conn) == 0) {
|
|
|
|
hostapd_cli_attached = 1;
|
|
|
|
} else {
|
|
|
|
printf("Warning: Failed to attach to "
|
|
|
|
"hostapd.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ctrl_conn)
|
2010-04-07 10:14:54 +02:00
|
|
|
hostapd_cli_recv_pending(ctrl_conn, 1, 0);
|
2011-07-16 16:37:18 +02:00
|
|
|
eloop_register_timeout(ping_interval, 0, hostapd_cli_ping, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_eloop_terminate(int sig, void *signal_ctx)
|
|
|
|
{
|
|
|
|
eloop_terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_edit_cmd_cb(void *ctx, char *cmd)
|
|
|
|
{
|
|
|
|
char *argv[max_args];
|
|
|
|
int argc;
|
|
|
|
argc = tokenize_cmd(cmd, argv);
|
|
|
|
if (argc)
|
|
|
|
wpa_request(ctrl_conn, argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_edit_eof_cb(void *ctx)
|
|
|
|
{
|
|
|
|
eloop_terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_interactive(void)
|
|
|
|
{
|
|
|
|
printf("\nInteractive mode\n\n");
|
|
|
|
|
|
|
|
eloop_register_signal_terminate(hostapd_cli_eloop_terminate, NULL);
|
|
|
|
edit_init(hostapd_cli_edit_cmd_cb, hostapd_cli_edit_eof_cb,
|
2012-08-05 19:46:34 +02:00
|
|
|
NULL, NULL, NULL, NULL);
|
2011-07-16 16:37:18 +02:00
|
|
|
eloop_register_timeout(ping_interval, 0, hostapd_cli_ping, NULL, NULL);
|
|
|
|
|
|
|
|
eloop_run();
|
|
|
|
|
|
|
|
edit_deinit(NULL, NULL);
|
|
|
|
eloop_cancel_timeout(hostapd_cli_ping, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_cli_cleanup(void)
|
|
|
|
{
|
|
|
|
hostapd_cli_close_connection();
|
|
|
|
if (pid_file)
|
|
|
|
os_daemonize_terminate(pid_file);
|
|
|
|
|
|
|
|
os_program_deinit();
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
static void hostapd_cli_action(struct wpa_ctrl *ctrl)
|
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
int fd, res;
|
|
|
|
struct timeval tv;
|
|
|
|
char buf[256];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
fd = wpa_ctrl_get_fd(ctrl);
|
|
|
|
|
|
|
|
while (!hostapd_cli_quit) {
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(fd, &rfds);
|
|
|
|
tv.tv_sec = ping_interval;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
res = select(fd + 1, &rfds, NULL, NULL, &tv);
|
|
|
|
if (res < 0 && errno != EINTR) {
|
|
|
|
perror("select");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, &rfds))
|
|
|
|
hostapd_cli_recv_pending(ctrl, 0, 1);
|
|
|
|
else {
|
|
|
|
len = sizeof(buf) - 1;
|
|
|
|
if (wpa_ctrl_request(ctrl, "PING", 4, buf, &len,
|
|
|
|
hostapd_cli_action_process) < 0 ||
|
|
|
|
len < 4 || os_memcmp(buf, "PONG", 4) != 0) {
|
|
|
|
printf("hostapd did not reply to PING "
|
|
|
|
"command - exiting\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int warning_displayed = 0;
|
|
|
|
int c;
|
2010-04-07 10:14:54 +02:00
|
|
|
int daemonize = 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2009-12-19 21:26:36 +01:00
|
|
|
if (os_program_init())
|
|
|
|
return -1;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
for (;;) {
|
2015-08-25 06:34:03 +02:00
|
|
|
c = getopt(argc, argv, "a:BhG:i:p:P:s:v");
|
2008-02-28 02:34:43 +01:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
2010-04-07 10:14:54 +02:00
|
|
|
case 'a':
|
|
|
|
action_file = optarg;
|
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
daemonize = 1;
|
|
|
|
break;
|
2009-01-20 20:12:00 +01:00
|
|
|
case 'G':
|
|
|
|
ping_interval = atoi(optarg);
|
|
|
|
break;
|
2008-02-28 02:34:43 +01:00
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
return 0;
|
|
|
|
case 'v':
|
|
|
|
printf("%s\n", hostapd_cli_version);
|
|
|
|
return 0;
|
|
|
|
case 'i':
|
2010-04-07 10:40:34 +02:00
|
|
|
os_free(ctrl_ifname);
|
|
|
|
ctrl_ifname = os_strdup(optarg);
|
2008-02-28 02:34:43 +01:00
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
ctrl_iface_dir = optarg;
|
|
|
|
break;
|
2015-06-25 14:42:48 +02:00
|
|
|
case 'P':
|
|
|
|
pid_file = optarg;
|
|
|
|
break;
|
2015-08-25 06:34:03 +02:00
|
|
|
case 's':
|
|
|
|
client_socket_dir = optarg;
|
|
|
|
break;
|
2008-02-28 02:34:43 +01:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
interactive = (argc == optind) && (action_file == NULL);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (interactive) {
|
|
|
|
printf("%s\n\n%s\n\n", hostapd_cli_version,
|
|
|
|
hostapd_cli_license);
|
|
|
|
}
|
|
|
|
|
2011-07-16 16:37:18 +02:00
|
|
|
if (eloop_init())
|
|
|
|
return -1;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
for (;;) {
|
|
|
|
if (ctrl_ifname == NULL) {
|
|
|
|
struct dirent *dent;
|
|
|
|
DIR *dir = opendir(ctrl_iface_dir);
|
|
|
|
if (dir) {
|
|
|
|
while ((dent = readdir(dir))) {
|
2010-04-07 10:40:34 +02:00
|
|
|
if (os_strcmp(dent->d_name, ".") == 0
|
|
|
|
||
|
|
|
|
os_strcmp(dent->d_name, "..") == 0)
|
2008-02-28 02:34:43 +01:00
|
|
|
continue;
|
|
|
|
printf("Selected interface '%s'\n",
|
|
|
|
dent->d_name);
|
2010-04-07 10:40:34 +02:00
|
|
|
ctrl_ifname = os_strdup(dent->d_name);
|
2008-02-28 02:34:43 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctrl_conn = hostapd_cli_open_connection(ctrl_ifname);
|
|
|
|
if (ctrl_conn) {
|
|
|
|
if (warning_displayed)
|
|
|
|
printf("Connection established.\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!interactive) {
|
|
|
|
perror("Failed to connect to hostapd - "
|
|
|
|
"wpa_ctrl_open");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!warning_displayed) {
|
|
|
|
printf("Could not connect to hostapd - re-trying\n");
|
|
|
|
warning_displayed = 1;
|
|
|
|
}
|
2010-04-07 10:40:34 +02:00
|
|
|
os_sleep(1, 0);
|
2008-02-28 02:34:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
if (interactive || action_file) {
|
2008-02-28 02:34:43 +01:00
|
|
|
if (wpa_ctrl_attach(ctrl_conn) == 0) {
|
|
|
|
hostapd_cli_attached = 1;
|
|
|
|
} else {
|
|
|
|
printf("Warning: Failed to attach to hostapd.\n");
|
2010-04-07 10:14:54 +02:00
|
|
|
if (action_file)
|
|
|
|
return -1;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
2010-04-07 10:14:54 +02:00
|
|
|
}
|
|
|
|
|
2016-01-22 21:28:25 +01:00
|
|
|
if (daemonize && os_daemonize(pid_file) && eloop_sock_requeue())
|
2010-04-07 10:14:54 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (interactive)
|
2008-02-28 02:34:43 +01:00
|
|
|
hostapd_cli_interactive();
|
2010-04-07 10:14:54 +02:00
|
|
|
else if (action_file)
|
|
|
|
hostapd_cli_action(ctrl_conn);
|
|
|
|
else
|
2008-02-28 02:34:43 +01:00
|
|
|
wpa_request(ctrl_conn, argc - optind, &argv[optind]);
|
|
|
|
|
2010-04-07 10:14:54 +02:00
|
|
|
os_free(ctrl_ifname);
|
2011-07-16 16:37:18 +02:00
|
|
|
eloop_destroy();
|
2010-04-07 10:14:54 +02:00
|
|
|
hostapd_cli_cleanup();
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2016-03-04 10:20:24 +01:00
|
|
|
|
|
|
|
#else /* CONFIG_NO_CTRL_IFACE */
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NO_CTRL_IFACE */
|