2 * hostapd - command line interface for hostapd daemon
3 * Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
23 static const char *hostapd_cli_version
=
24 "hostapd_cli v" VERSION_STR
"\n"
25 "Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi> and contributors";
28 static const char *hostapd_cli_license
=
29 "This program is free software. You can distribute it and/or modify it\n"
30 "under the terms of the GNU General Public License version 2.\n"
32 "Alternatively, this software may be distributed under the terms of the\n"
33 "BSD license. See README and COPYING for more details.\n";
35 static const char *hostapd_cli_full_license
=
36 "This program is free software; you can redistribute it and/or modify\n"
37 "it under the terms of the GNU General Public License version 2 as\n"
38 "published by the Free Software Foundation.\n"
40 "This program is distributed in the hope that it will be useful,\n"
41 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
42 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
43 "GNU General Public License for more details.\n"
45 "You should have received a copy of the GNU General Public License\n"
46 "along with this program; if not, write to the Free Software\n"
47 "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
49 "Alternatively, this software may be distributed under the terms of the\n"
52 "Redistribution and use in source and binary forms, with or without\n"
53 "modification, are permitted provided that the following conditions are\n"
56 "1. Redistributions of source code must retain the above copyright\n"
57 " notice, this list of conditions and the following disclaimer.\n"
59 "2. Redistributions in binary form must reproduce the above copyright\n"
60 " notice, this list of conditions and the following disclaimer in the\n"
61 " documentation and/or other materials provided with the distribution.\n"
63 "3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
64 " names of its contributors may be used to endorse or promote products\n"
65 " derived from this software without specific prior written permission.\n"
67 "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
68 "\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
69 "LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
70 "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n"
71 "OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
72 "SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
73 "LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
74 "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
75 "THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
76 "(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
77 "OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
80 static const char *commands_help
=
82 " mib get MIB variables (dot1x, dot11, radius)\n"
83 " sta <addr> get MIB variables for one station\n"
84 " all_sta get MIB variables for all stations\n"
85 " new_sta <addr> add a new station\n"
86 " help show this usage help\n"
87 " interface [ifname] show interfaces/select interface\n"
88 " level <debug level> change debug level\n"
89 " license show full hostapd_cli license\n"
90 " quit exit hostapd_cli\n";
92 static struct wpa_ctrl
*ctrl_conn
;
93 static int hostapd_cli_quit
= 0;
94 static int hostapd_cli_attached
= 0;
95 static const char *ctrl_iface_dir
= "/var/run/hostapd";
96 static char *ctrl_ifname
= NULL
;
99 static void usage(void)
101 fprintf(stderr
, "%s\n", hostapd_cli_version
);
104 "usage: hostapd_cli [-p<path>] [-i<ifname>] [-hv] "
108 " -h help (show this usage text)\n"
109 " -v shown version information\n"
110 " -p<path> path to find control sockets (default: "
111 "/var/run/hostapd)\n"
112 " -i<ifname> Interface to listen on (default: first "
113 "interface found in the\n"
120 static struct wpa_ctrl
* hostapd_cli_open_connection(const char *ifname
)
128 flen
= strlen(ctrl_iface_dir
) + strlen(ifname
) + 2;
129 cfile
= malloc(flen
);
132 snprintf(cfile
, flen
, "%s/%s", ctrl_iface_dir
, ifname
);
134 ctrl_conn
= wpa_ctrl_open(cfile
);
140 static void hostapd_cli_close_connection(void)
142 if (ctrl_conn
== NULL
)
145 if (hostapd_cli_attached
) {
146 wpa_ctrl_detach(ctrl_conn
);
147 hostapd_cli_attached
= 0;
149 wpa_ctrl_close(ctrl_conn
);
154 static void hostapd_cli_msg_cb(char *msg
, size_t len
)
160 static int _wpa_ctrl_command(struct wpa_ctrl
*ctrl
, char *cmd
, int print
)
166 if (ctrl_conn
== NULL
) {
167 printf("Not connected to hostapd - command dropped.\n");
170 len
= sizeof(buf
) - 1;
171 ret
= wpa_ctrl_request(ctrl
, cmd
, strlen(cmd
), buf
, &len
,
174 printf("'%s' command timed out.\n", cmd
);
176 } else if (ret
< 0) {
177 printf("'%s' command failed.\n", cmd
);
188 static inline int wpa_ctrl_command(struct wpa_ctrl
*ctrl
, char *cmd
)
190 return _wpa_ctrl_command(ctrl
, cmd
, 1);
194 static int hostapd_cli_cmd_ping(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
196 return wpa_ctrl_command(ctrl
, "PING");
200 static int hostapd_cli_cmd_mib(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
202 return wpa_ctrl_command(ctrl
, "MIB");
206 static int hostapd_cli_cmd_sta(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
210 printf("Invalid 'sta' command - exactly one argument, STA "
211 "address, is required.\n");
214 snprintf(buf
, sizeof(buf
), "STA %s", argv
[0]);
215 return wpa_ctrl_command(ctrl
, buf
);
219 static int hostapd_cli_cmd_new_sta(struct wpa_ctrl
*ctrl
, int argc
,
224 printf("Invalid 'new_sta' command - exactly one argument, STA "
225 "address, is required.\n");
228 snprintf(buf
, sizeof(buf
), "NEW_STA %s", argv
[0]);
229 return wpa_ctrl_command(ctrl
, buf
);
233 static int wpa_ctrl_command_sta(struct wpa_ctrl
*ctrl
, char *cmd
,
234 char *addr
, size_t addr_len
)
236 char buf
[4096], *pos
;
240 if (ctrl_conn
== NULL
) {
241 printf("Not connected to hostapd - command dropped.\n");
244 len
= sizeof(buf
) - 1;
245 ret
= wpa_ctrl_request(ctrl
, cmd
, strlen(cmd
), buf
, &len
,
248 printf("'%s' command timed out.\n", cmd
);
250 } else if (ret
< 0) {
251 printf("'%s' command failed.\n", cmd
);
256 if (memcmp(buf
, "FAIL", 4) == 0)
261 while (*pos
!= '\0' && *pos
!= '\n')
264 os_strlcpy(addr
, buf
, addr_len
);
269 static int hostapd_cli_cmd_all_sta(struct wpa_ctrl
*ctrl
, int argc
,
272 char addr
[32], cmd
[64];
274 if (wpa_ctrl_command_sta(ctrl
, "STA-FIRST", addr
, sizeof(addr
)))
277 snprintf(cmd
, sizeof(cmd
), "STA-NEXT %s", addr
);
278 } while (wpa_ctrl_command_sta(ctrl
, cmd
, addr
, sizeof(addr
)) == 0);
284 static int hostapd_cli_cmd_help(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
286 printf("%s", commands_help
);
291 static int hostapd_cli_cmd_license(struct wpa_ctrl
*ctrl
, int argc
,
294 printf("%s\n\n%s\n", hostapd_cli_version
, hostapd_cli_full_license
);
299 static int hostapd_cli_cmd_quit(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
301 hostapd_cli_quit
= 1;
306 static int hostapd_cli_cmd_level(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
310 printf("Invalid LEVEL command: needs one argument (debug "
314 snprintf(cmd
, sizeof(cmd
), "LEVEL %s", argv
[0]);
315 return wpa_ctrl_command(ctrl
, cmd
);
319 static void hostapd_cli_list_interfaces(struct wpa_ctrl
*ctrl
)
324 dir
= opendir(ctrl_iface_dir
);
326 printf("Control interface directory '%s' could not be "
327 "openned.\n", ctrl_iface_dir
);
331 printf("Available interfaces:\n");
332 while ((dent
= readdir(dir
))) {
333 if (strcmp(dent
->d_name
, ".") == 0 ||
334 strcmp(dent
->d_name
, "..") == 0)
336 printf("%s\n", dent
->d_name
);
342 static int hostapd_cli_cmd_interface(struct wpa_ctrl
*ctrl
, int argc
,
346 hostapd_cli_list_interfaces(ctrl
);
350 hostapd_cli_close_connection();
352 ctrl_ifname
= strdup(argv
[0]);
354 if (hostapd_cli_open_connection(ctrl_ifname
)) {
355 printf("Connected to interface '%s.\n", ctrl_ifname
);
356 if (wpa_ctrl_attach(ctrl_conn
) == 0) {
357 hostapd_cli_attached
= 1;
359 printf("Warning: Failed to attach to "
363 printf("Could not connect to interface '%s' - re-trying\n",
370 struct hostapd_cli_cmd
{
372 int (*handler
)(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[]);
375 static struct hostapd_cli_cmd hostapd_cli_commands
[] = {
376 { "ping", hostapd_cli_cmd_ping
},
377 { "mib", hostapd_cli_cmd_mib
},
378 { "sta", hostapd_cli_cmd_sta
},
379 { "all_sta", hostapd_cli_cmd_all_sta
},
380 { "new_sta", hostapd_cli_cmd_new_sta
},
381 { "help", hostapd_cli_cmd_help
},
382 { "interface", hostapd_cli_cmd_interface
},
383 { "level", hostapd_cli_cmd_level
},
384 { "license", hostapd_cli_cmd_license
},
385 { "quit", hostapd_cli_cmd_quit
},
390 static void wpa_request(struct wpa_ctrl
*ctrl
, int argc
, char *argv
[])
392 struct hostapd_cli_cmd
*cmd
, *match
= NULL
;
396 cmd
= hostapd_cli_commands
;
398 if (strncasecmp(cmd
->cmd
, argv
[0], strlen(argv
[0])) == 0) {
406 printf("Ambiguous command '%s'; possible commands:", argv
[0]);
407 cmd
= hostapd_cli_commands
;
409 if (strncasecmp(cmd
->cmd
, argv
[0], strlen(argv
[0])) ==
411 printf(" %s", cmd
->cmd
);
416 } else if (count
== 0) {
417 printf("Unknown command '%s'\n", argv
[0]);
419 match
->handler(ctrl
, argc
- 1, &argv
[1]);
424 static void hostapd_cli_recv_pending(struct wpa_ctrl
*ctrl
, int in_read
)
427 if (ctrl_conn
== NULL
)
429 while (wpa_ctrl_pending(ctrl
)) {
431 size_t len
= sizeof(buf
) - 1;
432 if (wpa_ctrl_recv(ctrl
, buf
, &len
) == 0) {
434 if (in_read
&& first
)
439 printf("Could not read pending message.\n");
446 static void hostapd_cli_interactive(void)
449 char cmd
[256], *res
, *argv
[max_args
], *pos
;
452 printf("\nInteractive mode\n\n");
455 hostapd_cli_recv_pending(ctrl_conn
, 0);
458 res
= fgets(cmd
, sizeof(cmd
), stdin
);
463 while (*pos
!= '\0') {
479 if (argc
== max_args
)
481 while (*pos
!= '\0' && *pos
!= ' ')
487 wpa_request(ctrl_conn
, argc
, argv
);
488 } while (!hostapd_cli_quit
);
492 static void hostapd_cli_terminate(int sig
)
494 hostapd_cli_close_connection();
499 static void hostapd_cli_alarm(int sig
)
501 if (ctrl_conn
&& _wpa_ctrl_command(ctrl_conn
, "PING", 0)) {
502 printf("Connection to hostapd lost - trying to reconnect\n");
503 hostapd_cli_close_connection();
506 ctrl_conn
= hostapd_cli_open_connection(ctrl_ifname
);
508 printf("Connection to hostapd re-established\n");
509 if (wpa_ctrl_attach(ctrl_conn
) == 0) {
510 hostapd_cli_attached
= 1;
512 printf("Warning: Failed to attach to "
518 hostapd_cli_recv_pending(ctrl_conn
, 1);
523 int main(int argc
, char *argv
[])
526 int warning_displayed
= 0;
530 c
= getopt(argc
, argv
, "hi:p:v");
538 printf("%s\n", hostapd_cli_version
);
542 ctrl_ifname
= strdup(optarg
);
545 ctrl_iface_dir
= optarg
;
553 interactive
= argc
== optind
;
556 printf("%s\n\n%s\n\n", hostapd_cli_version
,
557 hostapd_cli_license
);
561 if (ctrl_ifname
== NULL
) {
563 DIR *dir
= opendir(ctrl_iface_dir
);
565 while ((dent
= readdir(dir
))) {
566 if (strcmp(dent
->d_name
, ".") == 0 ||
567 strcmp(dent
->d_name
, "..") == 0)
569 printf("Selected interface '%s'\n",
571 ctrl_ifname
= strdup(dent
->d_name
);
577 ctrl_conn
= hostapd_cli_open_connection(ctrl_ifname
);
579 if (warning_displayed
)
580 printf("Connection established.\n");
585 perror("Failed to connect to hostapd - "
590 if (!warning_displayed
) {
591 printf("Could not connect to hostapd - re-trying\n");
592 warning_displayed
= 1;
598 signal(SIGINT
, hostapd_cli_terminate
);
599 signal(SIGTERM
, hostapd_cli_terminate
);
600 signal(SIGALRM
, hostapd_cli_alarm
);
603 if (wpa_ctrl_attach(ctrl_conn
) == 0) {
604 hostapd_cli_attached
= 1;
606 printf("Warning: Failed to attach to hostapd.\n");
608 hostapd_cli_interactive();
610 wpa_request(ctrl_conn
, argc
- optind
, &argv
[optind
]);
613 hostapd_cli_close_connection();