1 // L2TPNS Command Line Interface
4 char const *cvs_name
= "$Name: $";
5 char const *cvs_id_cli
= "$Id: cli.c,v 1.60 2005-06-02 11:32:30 bodea Exp $";
18 #include <arpa/inet.h>
20 #include <sys/socket.h>
21 #include <sys/types.h>
36 extern tunnelt
*tunnel
;
37 extern sessiont
*session
;
38 extern radiust
*radius
;
39 extern ippoolt
*ip_address_pool
;
40 extern struct Tstats
*_statistics
;
41 static struct cli_def
*cli
= NULL
;
42 extern configt
*config
;
43 extern config_descriptt config_values
[];
45 extern struct Tringbuffer
*ringbuffer
;
47 extern struct cli_session_actions
*cli_session_actions
;
48 extern struct cli_tunnel_actions
*cli_tunnel_actions
;
49 extern tbft
*filter_list
;
50 extern ip_filtert
*ip_filters
;
52 static char *debug_levels
[] = {
71 static int debug_session
;
72 static int debug_tunnel
;
73 static int debug_rb_tail
;
75 static int cmd_show_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
76 static int cmd_show_tunnels(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
77 static int cmd_show_users(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
78 static int cmd_show_radius(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
79 static int cmd_show_counters(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
80 static int cmd_show_version(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
81 static int cmd_show_pool(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
82 static int cmd_show_run(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
83 static int cmd_show_banana(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
84 static int cmd_show_plugins(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
85 static int cmd_show_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
86 static int cmd_write_memory(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
87 static int cmd_clear_counters(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
88 static int cmd_drop_user(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
89 static int cmd_drop_tunnel(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
90 static int cmd_drop_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
91 static int cmd_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
92 static int cmd_no_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
93 static int cmd_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
94 static int cmd_no_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
95 static int cmd_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
96 static int cmd_no_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
97 static int cmd_set(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
98 static int cmd_load_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
99 static int cmd_remove_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
100 static int cmd_uptime(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
102 static int regular_stuff(struct cli_def
*cli
);
103 static void parsemac(char *string
, char mac
[6]);
106 #define MODE_CONFIG_BGP 8
107 static int cmd_router_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
108 static int cmd_router_bgp_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
109 static int cmd_router_bgp_no_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
110 static int cmd_show_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
111 static int cmd_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
112 static int cmd_no_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
113 static int cmd_restart_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
116 #define MODE_CONFIG_NACL 9
117 static int cmd_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
118 static int cmd_no_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
119 static int cmd_ip_access_list_rule(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
120 static int cmd_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
121 static int cmd_no_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
122 static int cmd_show_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
124 /* match if b is a substr of a */
125 #define MATCH(a,b) (!strncmp((a), (b), strlen(b)))
127 void init_cli(char *hostname
)
131 struct cli_command
*c
;
132 struct cli_command
*c2
;
134 struct sockaddr_in addr
;
137 if (hostname
&& *hostname
)
138 cli_set_hostname(cli
, hostname
);
140 cli_set_hostname(cli
, "l2tpns");
142 c
= cli_register_command(cli
, NULL
, "show", NULL
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, NULL
);
143 cli_register_command(cli
, c
, "banana", cmd_show_banana
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show a banana");
145 cli_register_command(cli
, c
, "bgp", cmd_show_bgp
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show BGP status");
147 cli_register_command(cli
, c
, "cluster", cmd_show_cluster
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show cluster information");
148 cli_register_command(cli
, c
, "ipcache", cmd_show_ipcache
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show contents of the IP cache");
149 cli_register_command(cli
, c
, "plugins", cmd_show_plugins
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "List all installed plugins");
150 cli_register_command(cli
, c
, "pool", cmd_show_pool
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show the IP address allocation pool");
151 cli_register_command(cli
, c
, "radius", cmd_show_radius
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show active radius queries");
152 cli_register_command(cli
, c
, "running-config", cmd_show_run
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Show the currently running configuration");
153 cli_register_command(cli
, c
, "session", cmd_show_session
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show a list of sessions or details for a single session");
154 cli_register_command(cli
, c
, "tbf", cmd_show_tbf
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "List all token bucket filters in use");
155 cli_register_command(cli
, c
, "throttle", cmd_show_throttle
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "List all throttled sessions and associated TBFs");
156 cli_register_command(cli
, c
, "tunnels", cmd_show_tunnels
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show a list of tunnels or details for a single tunnel");
157 cli_register_command(cli
, c
, "users", cmd_show_users
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show a list of all connected users or details of selected user");
158 cli_register_command(cli
, c
, "version", cmd_show_version
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show currently running software version");
159 cli_register_command(cli
, c
, "access-list", cmd_show_access_list
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show named access-list");
161 c2
= cli_register_command(cli
, c
, "histogram", NULL
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, NULL
);
162 cli_register_command(cli
, c2
, "idle", cmd_show_hist_idle
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show histogram of session idle times");
163 cli_register_command(cli
, c2
, "open", cmd_show_hist_open
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show histogram of session durations");
166 cli_register_command(cli
, c
, "counters", cmd_show_counters
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Display all the internal counters and running totals");
168 c
= cli_register_command(cli
, NULL
, "clear", NULL
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, NULL
);
169 cli_register_command(cli
, c
, "counters", cmd_clear_counters
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Clear internal counters");
172 cli_register_command(cli
, NULL
, "uptime", cmd_uptime
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show uptime and bandwidth utilisation");
174 c
= cli_register_command(cli
, NULL
, "write", NULL
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, NULL
);
175 cli_register_command(cli
, c
, "memory", cmd_write_memory
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Save the running config to flash");
176 cli_register_command(cli
, c
, "terminal", cmd_show_run
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Show the running config");
178 cli_register_command(cli
, NULL
, "snoop", cmd_snoop
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Enable interception of a session");
179 cli_register_command(cli
, NULL
, "throttle", cmd_throttle
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Enable throttling of a session");
180 cli_register_command(cli
, NULL
, "filter", cmd_filter
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Add filtering to a session");
181 cli_register_command(cli
, NULL
, "debug", cmd_debug
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Set the level of logging that is shown on the console");
184 c
= cli_register_command(cli
, NULL
, "suspend", NULL
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, NULL
);
185 cli_register_command(cli
, c
, "bgp", cmd_suspend_bgp
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Withdraw routes from BGP neighbour");
188 c
= cli_register_command(cli
, NULL
, "no", NULL
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, NULL
);
189 cli_register_command(cli
, c
, "snoop", cmd_no_snoop
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Disable interception of a session");
190 cli_register_command(cli
, c
, "throttle", cmd_no_throttle
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Disable throttling of a session");
191 cli_register_command(cli
, c
, "filter", cmd_no_filter
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Remove filtering from a session");
192 cli_register_command(cli
, c
, "debug", cmd_no_debug
, PRIVILEGE_UNPRIVILEGED
, MODE_EXEC
, "Turn off logging of a certain level of debugging");
195 c2
= cli_register_command(cli
, c
, "suspend", NULL
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, NULL
);
196 cli_register_command(cli
, c2
, "bgp", cmd_no_suspend_bgp
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Advertise routes to BGP neighbour");
198 c
= cli_register_command(cli
, NULL
, "restart", NULL
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, NULL
);
199 cli_register_command(cli
, c
, "bgp", cmd_restart_bgp
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Restart BGP");
201 c
= cli_register_command(cli
, NULL
, "router", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, NULL
);
202 cli_register_command(cli
, c
, "bgp", cmd_router_bgp
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Configure BGP");
204 cli_register_command(cli
, NULL
, "neighbour", cmd_router_bgp_neighbour
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG_BGP
, "Configure BGP neighbour");
206 c
= cli_register_command(cli
, NULL
, "no", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG_BGP
, NULL
);
207 cli_register_command(cli
, c
, "neighbour", cmd_router_bgp_no_neighbour
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG_BGP
, "Remove BGP neighbour");
210 c
= cli_register_command(cli
, NULL
, "drop", NULL
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, NULL
);
211 cli_register_command(cli
, c
, "user", cmd_drop_user
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Disconnect a user");
212 cli_register_command(cli
, c
, "tunnel", cmd_drop_tunnel
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Disconnect a tunnel and all sessions on that tunnel");
213 cli_register_command(cli
, c
, "session", cmd_drop_session
, PRIVILEGE_PRIVILEGED
, MODE_EXEC
, "Disconnect a session");
215 c
= cli_register_command(cli
, NULL
, "load", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, NULL
);
216 cli_register_command(cli
, c
, "plugin", cmd_load_plugin
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Load a plugin");
218 c
= cli_register_command(cli
, NULL
, "remove", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, NULL
);
219 cli_register_command(cli
, c
, "plugin", cmd_remove_plugin
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Remove a plugin");
221 cli_register_command(cli
, NULL
, "set", cmd_set
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Set a configuration variable");
223 c
= cli_register_command(cli
, NULL
, "ip", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, NULL
);
224 cli_register_command(cli
, c
, "access-list", cmd_ip_access_list
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Add named access-list");
226 cli_register_command(cli
, NULL
, "permit", cmd_ip_access_list_rule
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG_NACL
, "Permit rule");
227 cli_register_command(cli
, NULL
, "deny", cmd_ip_access_list_rule
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG_NACL
, "Deny rule");
229 c
= cli_register_command(cli
, NULL
, "no", NULL
, PRIVILEGE_UNPRIVILEGED
, MODE_CONFIG
, NULL
);
230 c2
= cli_register_command(cli
, c
, "ip", NULL
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, NULL
);
231 cli_register_command(cli
, c2
, "access-list", cmd_no_ip_access_list
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
, "Remove named access-list");
233 // Enable regular processing
234 cli_regular(cli
, regular_stuff
);
236 if (!(f
= fopen(CLIUSERS
, "r")))
238 LOG(0, 0, 0, "WARNING! No users specified. Command-line access is open to all\n");
242 while (fgets(buf
, 4096, f
))
245 if (*buf
== '#') continue;
246 if ((p
= strchr(buf
, '\r'))) *p
= 0;
247 if ((p
= strchr(buf
, '\n'))) *p
= 0;
249 if (!(p
= strchr((char *)buf
, ':'))) continue;
251 if (!strcmp(buf
, "enable"))
253 cli_allow_enable(cli
, p
);
254 LOG(3, 0, 0, "Setting enable password\n");
258 cli_allow_user(cli
, buf
, p
);
259 LOG(3, 0, 0, "Allowing user %s to connect to the CLI\n", buf
);
265 memset(&addr
, 0, sizeof(addr
));
266 clifd
= socket(PF_INET
, SOCK_STREAM
, 6);
267 setsockopt(clifd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
270 // Set cli fd as non-blocking
271 flags
= fcntl(clifd
, F_GETFL
, 0);
272 fcntl(clifd
, F_SETFL
, flags
| O_NONBLOCK
);
274 addr
.sin_family
= AF_INET
;
275 addr
.sin_port
= htons(23);
276 if (bind(clifd
, (void *) &addr
, sizeof(addr
)) < 0)
278 LOG(0, 0, 0, "Error listening on cli port 23: %s\n", strerror(errno
));
284 void cli_do(int sockfd
)
286 int require_auth
= 1;
287 struct sockaddr_in addr
;
288 int l
= sizeof(addr
);
290 if (fork_and_close()) return;
291 if (getpeername(sockfd
, (struct sockaddr
*)&addr
, &l
) == 0)
293 require_auth
= addr
.sin_addr
.s_addr
!= inet_addr("127.0.0.1");
294 LOG(require_auth
? 3 : 4, 0, 0, "Accepted connection to CLI from %s\n",
295 fmtaddr(addr
.sin_addr
.s_addr
, 0));
298 LOG(0, 0, 0, "getpeername() failed on cli socket. Requiring authentication: %s\n", strerror(errno
));
302 LOG(3, 0, 0, "CLI is remote, requiring authentication\n");
303 if (!cli
->users
) /* paranoia */
305 LOG(0, 0, 0, "No users for remote authentication! Exiting CLI\n");
311 /* no username/pass required */
318 debug_rb_tail
= ringbuffer
->tail
;
320 memset(&debug_flags
, 0, sizeof(debug_flags
));
321 debug_flags
.critical
= 1;
323 cli_loop(cli
, sockfd
);
326 LOG(require_auth
? 3 : 4, 0, 0, "Closed CLI connection from %s\n",
327 fmtaddr(addr
.sin_addr
.s_addr
, 0));
332 static void cli_print_log(struct cli_def
*cli
, char *string
)
334 LOG(3, 0, 0, "%s\n", string
);
337 void cli_do_file(FILE *fh
)
339 LOG(3, 0, 0, "Reading configuration file\n");
340 cli_print_callback(cli
, cli_print_log
);
341 cli_file(cli
, fh
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
);
342 cli_print_callback(cli
, NULL
);
345 int cli_arg_help(struct cli_def
*cli
, int cr_ok
, char *entry
, ...)
356 if ((p
= strchr(entry
, '%')) && !strchr(p
+1, '%') && p
[1] == 'd')
358 int v
= va_arg(ap
, int);
359 snprintf(buf
, sizeof(buf
), entry
, v
);
365 desc
= va_arg(ap
, char *);
367 cli_error(cli
, " %-20s %s", p
, desc
);
369 cli_error(cli
, " %s", p
);
371 entry
= desc
? va_arg(ap
, char *) : 0;
376 cli_error(cli
, " <cr>");
381 static int cmd_show_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
385 if (CLI_HELP_REQUESTED
)
386 return cli_arg_help(cli
, 1,
387 "<1-%d>", MAXSESSION
-1, "Show specific session by id",
393 // Show individual session
394 for (i
= 0; i
< argc
; i
++)
396 unsigned int s
, b_in
, b_out
;
398 if (s
<= 0 || s
>= MAXSESSION
)
400 cli_print(cli
, "Invalid session id \"%s\"", argv
[i
]);
403 cli_print(cli
, "\r\nSession %d:", s
);
404 cli_print(cli
, "\tUser:\t\t%s", session
[s
].user
[0] ? session
[s
].user
: "none");
405 cli_print(cli
, "\tCalling Num:\t%s", session
[s
].calling
);
406 cli_print(cli
, "\tCalled Num:\t%s", session
[s
].called
);
407 cli_print(cli
, "\tTunnel ID:\t%d", session
[s
].tunnel
);
408 cli_print(cli
, "\tIP address:\t%s", fmtaddr(htonl(session
[s
].ip
), 0));
409 cli_print(cli
, "\tUnique SID:\t%u", session
[s
].unique_id
);
410 cli_print(cli
, "\tOpened:\t\t%u seconds", abs(time_now
- session
[s
].opened
));
411 cli_print(cli
, "\tIdle time:\t%u seconds", abs(time_now
- session
[s
].last_packet
));
412 cli_print(cli
, "\tNext Recv:\t%u", session
[s
].nr
);
413 cli_print(cli
, "\tNext Send:\t%u", session
[s
].ns
);
414 cli_print(cli
, "\tBytes In/Out:\t%u/%u", session
[s
].cout
, session
[s
].cin
);
415 cli_print(cli
, "\tPkts In/Out:\t%u/%u", session
[s
].pout
, session
[s
].pin
);
416 cli_print(cli
, "\tMRU:\t\t%d", session
[s
].mru
);
417 cli_print(cli
, "\tRx Speed:\t%u", session
[s
].rx_connect_speed
);
418 cli_print(cli
, "\tTx Speed:\t%u", session
[s
].tx_connect_speed
);
419 if (session
[s
].filter_in
&& session
[s
].filter_in
<= MAXFILTER
)
420 cli_print(cli
, "\tFilter in:\t%u (%s)", session
[s
].filter_in
, ip_filters
[session
[s
].filter_in
- 1].name
);
421 if (session
[s
].filter_out
&& session
[s
].filter_out
<= MAXFILTER
)
422 cli_print(cli
, "\tFilter out:\t%u (%s)", session
[s
].filter_out
, ip_filters
[session
[s
].filter_out
- 1].name
);
423 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
424 cli_print(cli
, "\tIntercepted:\t%s:%d", fmtaddr(session
[s
].snoop_ip
, 0), session
[s
] .snoop_port
);
426 cli_print(cli
, "\tIntercepted:\tno");
428 cli_print(cli
, "\tWalled Garden:\t%s", session
[s
].walled_garden
? "YES" : "no");
430 int t
= (session
[s
].throttle_in
|| session
[s
].throttle_out
);
431 cli_print(cli
, "\tThrottled:\t%s%s%.0d%s%s%.0d%s%s",
432 t
? "YES" : "no", t
? " (" : "",
433 session
[s
].throttle_in
, session
[s
].throttle_in
? "kbps" : t
? "-" : "",
435 session
[s
].throttle_out
, session
[s
].throttle_out
? "kbps" : t
? "-" : "",
439 b_in
= session
[s
].tbf_in
;
440 b_out
= session
[s
].tbf_out
;
442 cli_print(cli
, "\t\t\t%5s %6s %6s | %7s %7s %8s %8s %8s %8s",
443 "Rate", "Credit", "Queued", "ByteIn", "PackIn",
444 "ByteSent", "PackSent", "PackDrop", "PackDelay");
447 cli_print(cli
, "\tTBFI#%d%1s%s\t%5d %6d %6d | %7d %7d %8d %8d %8d %8d",
449 (filter_list
[b_in
].next
? "*" : " "),
450 (b_in
< 100 ? "\t" : ""),
451 filter_list
[b_in
].rate
* 8,
452 filter_list
[b_in
].credit
,
453 filter_list
[b_in
].queued
,
454 filter_list
[b_in
].b_queued
,
455 filter_list
[b_in
].p_queued
,
456 filter_list
[b_in
].b_sent
,
457 filter_list
[b_in
].p_sent
,
458 filter_list
[b_in
].p_dropped
,
459 filter_list
[b_in
].p_delayed
);
462 cli_print(cli
, "\tTBFO#%d%1s%s\t%5d %6d %6d | %7d %7d %8d %8d %8d %8d",
464 (filter_list
[b_out
].next
? "*" : " "),
465 (b_out
< 100 ? "\t" : ""),
466 filter_list
[b_out
].rate
* 8,
467 filter_list
[b_out
].credit
,
468 filter_list
[b_out
].queued
,
469 filter_list
[b_out
].b_queued
,
470 filter_list
[b_out
].p_queued
,
471 filter_list
[b_out
].b_sent
,
472 filter_list
[b_out
].p_sent
,
473 filter_list
[b_out
].p_dropped
,
474 filter_list
[b_out
].p_delayed
);
481 cli_print(cli
, "%5s %4s %-32s %-15s %s %s %s %s %10s %10s %10s %4s %-15s %s",
497 for (i
= 1; i
< MAXSESSION
; i
++)
499 if (!session
[i
].opened
) continue;
500 cli_print(cli
, "%5d %4d %-32s %-15s %s %s %s %s %10u %10lu %10lu %4u %-15s %s",
503 session
[i
].user
[0] ? session
[i
].user
: "*",
504 fmtaddr(htonl(session
[i
].ip
), 0),
505 (session
[i
].snoop_ip
&& session
[i
].snoop_port
) ? "Y" : "N",
506 (session
[i
].throttle_in
|| session
[i
].throttle_out
) ? "Y" : "N",
507 (session
[i
].walled_garden
) ? "Y" : "N",
508 (session
[i
].flags
& SF_IPV6CP_ACKED
) ? "Y" : "N",
509 abs(time_now
- (unsigned long)session
[i
].opened
),
510 (unsigned long)session
[i
].cout
,
511 (unsigned long)session
[i
].cin
,
512 abs(time_now
- (session
[i
].last_packet
? session
[i
].last_packet
: time_now
)),
513 fmtaddr(htonl(tunnel
[ session
[i
].tunnel
].ip
), 1),
514 session
[i
].calling
[0] ? session
[i
].calling
: "*");
519 static int cmd_show_tunnels(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
521 int i
, x
, show_all
= 0;
529 if (CLI_HELP_REQUESTED
)
532 return cli_arg_help(cli
, 1,
533 "<1-%d>", MAXTUNNEL
-1, "Show specific tunnel by id",
536 return cli_arg_help(cli
, 1,
537 "all", "Show all tunnels, including unused",
538 "<1-%d>", MAXTUNNEL
-1, "Show specific tunnel by id",
545 if (strcmp(argv
[0], "all") == 0)
551 // Show individual tunnel
552 for (i
= 0; i
< argc
; i
++)
557 if (t
<= 0 || t
>= MAXTUNNEL
)
559 cli_print(cli
, "Invalid tunnel id \"%s\"", argv
[i
]);
562 cli_print(cli
, "\r\nTunnel %d:", t
);
563 cli_print(cli
, "\tState:\t\t%s", states
[tunnel
[t
].state
]);
564 cli_print(cli
, "\tHostname:\t%s", tunnel
[t
].hostname
[0] ? tunnel
[t
].hostname
: "(none)");
565 cli_print(cli
, "\tRemote IP:\t%s", fmtaddr(htonl(tunnel
[t
].ip
), 0));
566 cli_print(cli
, "\tRemote Port:\t%d", tunnel
[t
].port
);
567 cli_print(cli
, "\tRx Window:\t%u", tunnel
[t
].window
);
568 cli_print(cli
, "\tNext Recv:\t%u", tunnel
[t
].nr
);
569 cli_print(cli
, "\tNext Send:\t%u", tunnel
[t
].ns
);
570 cli_print(cli
, "\tQueue Len:\t%u", tunnel
[t
].controlc
);
571 cli_print(cli
, "\tLast Packet Age:%u", (unsigned)(time_now
- tunnel
[t
].last
));
573 for (x
= 0; x
< MAXSESSION
; x
++)
574 if (session
[x
].tunnel
== t
&& session
[x
].opened
&& !session
[x
].die
)
575 sprintf(s
, "%s%u ", s
, x
);
577 cli_print(cli
, "\tSessions:\t%s", s
);
583 // Show tunnel summary
584 cli_print(cli
, "%4s %20s %20s %6s %s",
591 for (i
= 1; i
< MAXTUNNEL
; i
++)
594 if (!show_all
&& (!tunnel
[i
].ip
|| tunnel
[i
].die
)) continue;
596 for (x
= 0; x
< MAXSESSION
; x
++) if (session
[x
].tunnel
== i
&& session
[x
].opened
&& !session
[x
].die
) sessions
++;
597 cli_print(cli
, "%4d %20s %20s %6s %6d",
599 *tunnel
[i
].hostname
? tunnel
[i
].hostname
: "(null)",
600 fmtaddr(htonl(tunnel
[i
].ip
), 0),
601 states
[tunnel
[i
].state
],
608 static int cmd_show_users(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
615 if (CLI_HELP_REQUESTED
)
616 return cli_arg_help(cli
, 1,
617 "USER", "Show details for specific username",
620 for (i
= 0; i
< MAXSESSION
; i
++)
622 if (!session
[i
].opened
) continue;
623 if (!session
[i
].user
[0]) continue;
627 for (j
= 0; j
< argc
&& sargc
< 32; j
++)
629 if (strcmp(argv
[j
], session
[i
].user
) == 0)
631 snprintf(sid
[sargc
], sizeof(sid
[0]), "%d", i
);
632 sargv
[sargc
] = sid
[sargc
];
640 cli_print(cli
, "%s", session
[i
].user
);
644 return cmd_show_session(cli
, "users", sargv
, sargc
);
649 static int cmd_show_counters(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
651 if (CLI_HELP_REQUESTED
)
652 return CLI_HELP_NO_ARGS
;
654 cli_print(cli
, "%-10s %10s %10s %10s %10s", "Ethernet", "Bytes", "Packets", "Errors", "Dropped");
655 cli_print(cli
, "%-10s %10u %10u %10u %10u", "RX",
656 GET_STAT(tun_rx_bytes
),
657 GET_STAT(tun_rx_packets
),
658 GET_STAT(tun_rx_errors
),
659 GET_STAT(tun_rx_dropped
));
660 cli_print(cli
, "%-10s %10u %10u %10u", "TX",
661 GET_STAT(tun_tx_bytes
),
662 GET_STAT(tun_tx_packets
),
663 GET_STAT(tun_tx_errors
));
666 cli_print(cli
, "%-10s %10s %10s %10s %10s", "Tunnel", "Bytes", "Packets", "Errors", "Retries");
667 cli_print(cli
, "%-10s %10u %10u %10u", "RX",
668 GET_STAT(tunnel_rx_bytes
),
669 GET_STAT(tunnel_rx_packets
),
670 GET_STAT(tunnel_rx_errors
));
671 cli_print(cli
, "%-10s %10u %10u %10u %10u", "TX",
672 GET_STAT(tunnel_tx_bytes
),
673 GET_STAT(tunnel_tx_packets
),
674 GET_STAT(tunnel_tx_errors
),
675 GET_STAT(tunnel_retries
));
678 cli_print(cli
, "%-30s%-10s", "Counter", "Value");
679 cli_print(cli
, "-----------------------------------------");
680 cli_print(cli
, "%-30s%u", "radius_retries", GET_STAT(radius_retries
));
681 cli_print(cli
, "%-30s%u", "arp_sent", GET_STAT(arp_sent
));
682 cli_print(cli
, "%-30s%u", "packets_snooped", GET_STAT(packets_snooped
));
683 cli_print(cli
, "%-30s%u", "tunnel_created", GET_STAT(tunnel_created
));
684 cli_print(cli
, "%-30s%u", "session_created", GET_STAT(session_created
));
685 cli_print(cli
, "%-30s%u", "tunnel_timeout", GET_STAT(tunnel_timeout
));
686 cli_print(cli
, "%-30s%u", "session_timeout", GET_STAT(session_timeout
));
687 cli_print(cli
, "%-30s%u", "radius_timeout", GET_STAT(radius_timeout
));
688 cli_print(cli
, "%-30s%u", "radius_overflow", GET_STAT(radius_overflow
));
689 cli_print(cli
, "%-30s%u", "tunnel_overflow", GET_STAT(tunnel_overflow
));
690 cli_print(cli
, "%-30s%u", "session_overflow", GET_STAT(session_overflow
));
691 cli_print(cli
, "%-30s%u", "ip_allocated", GET_STAT(ip_allocated
));
692 cli_print(cli
, "%-30s%u", "ip_freed", GET_STAT(ip_freed
));
693 cli_print(cli
, "%-30s%u", "cluster_forwarded", GET_STAT(c_forwarded
));
694 cli_print(cli
, "%-30s%u", "recv_forward", GET_STAT(recv_forward
));
695 cli_print(cli
, "%-30s%u", "select_called", GET_STAT(select_called
));
696 cli_print(cli
, "%-30s%u", "multi_read_used", GET_STAT(multi_read_used
));
697 cli_print(cli
, "%-30s%u", "multi_read_exceeded", GET_STAT(multi_read_exceeded
));
701 cli_print(cli
, "\n%-30s%-10s", "Counter", "Value");
702 cli_print(cli
, "-----------------------------------------");
703 cli_print(cli
, "%-30s%u", "call_processtun", GET_STAT(call_processtun
));
704 cli_print(cli
, "%-30s%u", "call_processipout", GET_STAT(call_processipout
));
705 cli_print(cli
, "%-30s%u", "call_processipv6out", GET_STAT(call_processipv6out
));
706 cli_print(cli
, "%-30s%u", "call_processudp", GET_STAT(call_processudp
));
707 cli_print(cli
, "%-30s%u", "call_processpap", GET_STAT(call_processpap
));
708 cli_print(cli
, "%-30s%u", "call_processchap", GET_STAT(call_processchap
));
709 cli_print(cli
, "%-30s%u", "call_processlcp", GET_STAT(call_processlcp
));
710 cli_print(cli
, "%-30s%u", "call_processipcp", GET_STAT(call_processipcp
));
711 cli_print(cli
, "%-30s%u", "call_processipv6cp", GET_STAT(call_processipv6cp
));
712 cli_print(cli
, "%-30s%u", "call_processipin", GET_STAT(call_processipin
));
713 cli_print(cli
, "%-30s%u", "call_processipv6in", GET_STAT(call_processipv6in
));
714 cli_print(cli
, "%-30s%u", "call_processccp", GET_STAT(call_processccp
));
715 cli_print(cli
, "%-30s%u", "call_processrad", GET_STAT(call_processrad
));
716 cli_print(cli
, "%-30s%u", "call_sendarp", GET_STAT(call_sendarp
));
717 cli_print(cli
, "%-30s%u", "call_sendipcp", GET_STAT(call_sendipcp
));
718 cli_print(cli
, "%-30s%u", "call_sendchap", GET_STAT(call_sendchap
));
719 cli_print(cli
, "%-30s%u", "call_sessionbyip", GET_STAT(call_sessionbyip
));
720 cli_print(cli
, "%-30s%u", "call_sessionbyipv6", GET_STAT(call_sessionbyipv6
));
721 cli_print(cli
, "%-30s%u", "call_sessionbyuser", GET_STAT(call_sessionbyuser
));
722 cli_print(cli
, "%-30s%u", "call_tunnelsend", GET_STAT(call_tunnelsend
));
723 cli_print(cli
, "%-30s%u", "call_tunnelkill", GET_STAT(call_tunnelkill
));
724 cli_print(cli
, "%-30s%u", "call_tunnelshutdown", GET_STAT(call_tunnelshutdown
));
725 cli_print(cli
, "%-30s%u", "call_sessionkill", GET_STAT(call_sessionkill
));
726 cli_print(cli
, "%-30s%u", "call_sessionshutdown", GET_STAT(call_sessionshutdown
));
727 cli_print(cli
, "%-30s%u", "call_sessionsetup", GET_STAT(call_sessionsetup
));
728 cli_print(cli
, "%-30s%u", "call_assign_ip_address", GET_STAT(call_assign_ip_address
));
729 cli_print(cli
, "%-30s%u", "call_free_ip_address", GET_STAT(call_free_ip_address
));
730 cli_print(cli
, "%-30s%u", "call_dump_acct_info", GET_STAT(call_dump_acct_info
));
731 cli_print(cli
, "%-30s%u", "call_radiussend", GET_STAT(call_radiussend
));
732 cli_print(cli
, "%-30s%u", "call_radiusretry", GET_STAT(call_radiusretry
));
733 cli_print(cli
, "%-30s%u", "call_random_data", GET_STAT(call_random_data
));
737 time_t l
= GET_STAT(last_reset
);
739 char *p
= strchr(t
, '\n');
743 cli_print(cli
, "Last counter reset %s", t
);
749 static int cmd_show_version(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
755 if (CLI_HELP_REQUESTED
)
756 return cli_arg_help(cli
, 1,
757 "tag", "Include CVS release tag",
758 "file", "Include file versions",
761 for (i
= 0; i
< argc
; i
++)
762 if (!strcmp(argv
[i
], "tag"))
764 else if (!strcmp(argv
[i
], "file"))
767 cli_print(cli
, "L2TPNS %s", VERSION
);
770 char const *p
= strchr(cvs_name
, ':');
782 e
= strpbrk(p
, " \t$");
783 cli_print(cli
, "Tag: %.*s", (int) (e
? e
- p
+ 1 : strlen(p
)), p
);
788 extern linked_list
*loaded_plugins
;
791 cli_print(cli
, "Files:");
792 cli_print(cli
, " %s", cvs_id_arp
);
794 cli_print(cli
, " %s", cvs_id_bgp
);
796 cli_print(cli
, " %s", cvs_id_cli
);
797 cli_print(cli
, " %s", cvs_id_cluster
);
798 cli_print(cli
, " %s", cvs_id_constants
);
799 cli_print(cli
, " %s", cvs_id_control
);
800 cli_print(cli
, " %s", cvs_id_icmp
);
801 cli_print(cli
, " %s", cvs_id_l2tpns
);
802 cli_print(cli
, " %s", cvs_id_ll
);
803 cli_print(cli
, " %s", cvs_id_md5
);
804 cli_print(cli
, " %s", cvs_id_ppp
);
805 cli_print(cli
, " %s", cvs_id_radius
);
806 cli_print(cli
, " %s", cvs_id_tbf
);
807 cli_print(cli
, " %s", cvs_id_util
);
809 ll_reset(loaded_plugins
);
810 while ((p
= ll_next(loaded_plugins
)))
812 char const **id
= dlsym(p
, "cvs_id");
814 cli_print(cli
, " %s", *id
);
821 static int cmd_show_pool(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
824 int used
= 0, free
= 0, show_all
= 0;
826 if (!config
->cluster_iam_master
)
828 cli_print(cli
, "Can't do this on a slave. Do it on %s",
829 fmtaddr(config
->cluster_master_address
, 0));
834 if (CLI_HELP_REQUESTED
)
837 return cli_arg_help(cli
, 1, NULL
);
839 return cli_arg_help(cli
, 1,
840 "all", "Show all pool addresses, including unused",
844 if (argc
> 0 && strcmp(argv
[0], "all") == 0)
848 cli_print(cli
, "%-15s %4s %8s %s", "IP Address", "Used", "Session", "User");
849 for (i
= 0; i
< MAXIPPOOL
; i
++)
851 if (!ip_address_pool
[i
].address
) continue;
852 if (ip_address_pool
[i
].assigned
)
854 cli_print(cli
, "%-15s\tY %8d %s",
855 fmtaddr(htonl(ip_address_pool
[i
].address
), 0),
856 ip_address_pool
[i
].session
,
857 session
[ip_address_pool
[i
].session
].user
);
863 if (ip_address_pool
[i
].last
)
864 cli_print(cli
, "%-15s\tN %8s [%s] %ds",
865 fmtaddr(htonl(ip_address_pool
[i
].address
), 0), "",
866 ip_address_pool
[i
].user
, (int) time_now
- ip_address_pool
[i
].last
);
869 cli_print(cli
, "%-15s\tN", fmtaddr(htonl(ip_address_pool
[i
].address
), 0));
876 cli_print(cli
, "(Not displaying unused addresses)");
878 cli_print(cli
, "\r\nFree: %d\r\nUsed: %d", free
, used
);
882 static FILE *save_config_fh
= 0;
883 static void print_save_config(struct cli_def
*cli
, char *string
)
886 fprintf(save_config_fh
, "%s\n", string
);
889 static int cmd_write_memory(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
891 if (CLI_HELP_REQUESTED
)
892 return CLI_HELP_NO_ARGS
;
894 if ((save_config_fh
= fopen(config
->config_file
, "w")))
896 cli_print(cli
, "Writing configuration");
897 cli_print_callback(cli
, print_save_config
);
898 cmd_show_run(cli
, command
, argv
, argc
);
899 cli_print_callback(cli
, NULL
);
900 fclose(save_config_fh
);
905 cli_error(cli
, "Error writing configuration: %s", strerror(errno
));
910 static char const *show_access_list_rule(int extended
, ip_filter_rulet
*rule
);
912 static int cmd_show_run(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
915 char ipv6addr
[INET6_ADDRSTRLEN
];
917 if (CLI_HELP_REQUESTED
)
918 return CLI_HELP_NO_ARGS
;
920 cli_print(cli
, "# Current configuration:");
922 for (i
= 0; config_values
[i
].key
; i
++)
924 void *value
= ((void *)config
) + config_values
[i
].offset
;
925 if (config_values
[i
].type
== STRING
)
926 cli_print(cli
, "set %s \"%.*s\"", config_values
[i
].key
, config_values
[i
].size
, (char *) value
);
927 else if (config_values
[i
].type
== IPv4
)
928 cli_print(cli
, "set %s %s", config_values
[i
].key
, fmtaddr(*(in_addr_t
*) value
, 0));
929 else if (config_values
[i
].type
== IPv6
)
930 cli_print(cli
, "set %s %s", config_values
[i
].key
, inet_ntop(AF_INET6
, value
, ipv6addr
, INET6_ADDRSTRLEN
));
931 else if (config_values
[i
].type
== SHORT
)
932 cli_print(cli
, "set %s %hu", config_values
[i
].key
, *(short *) value
);
933 else if (config_values
[i
].type
== BOOL
)
934 cli_print(cli
, "set %s %s", config_values
[i
].key
, (*(int *) value
) ? "yes" : "no");
935 else if (config_values
[i
].type
== INT
)
936 cli_print(cli
, "set %s %d", config_values
[i
].key
, *(int *) value
);
937 else if (config_values
[i
].type
== UNSIGNED_LONG
)
938 cli_print(cli
, "set %s %lu", config_values
[i
].key
, *(unsigned long *) value
);
939 else if (config_values
[i
].type
== MAC
)
940 cli_print(cli
, "set %s %02x%02x.%02x%02x.%02x%02x", config_values
[i
].key
,
941 *(unsigned short *) (value
+ 0),
942 *(unsigned short *) (value
+ 1),
943 *(unsigned short *) (value
+ 2),
944 *(unsigned short *) (value
+ 3),
945 *(unsigned short *) (value
+ 4),
946 *(unsigned short *) (value
+ 5));
949 cli_print(cli
, "# Plugins");
950 for (i
= 0; i
< MAXPLUGINS
; i
++)
952 if (*config
->plugins
[i
])
954 cli_print(cli
, "load plugin \"%s\"", config
->plugins
[i
]);
959 if (config
->as_number
)
964 cli_print(cli
, "# BGP");
965 cli_print(cli
, "router bgp %u", config
->as_number
);
966 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
968 if (!config
->neighbour
[i
].name
[0])
971 cli_print(cli
, " neighbour %s remote-as %u", config
->neighbour
[i
].name
, config
->neighbour
[i
].as
);
973 k
= config
->neighbour
[i
].keepalive
;
974 h
= config
->neighbour
[i
].hold
;
981 k
= BGP_KEEPALIVE_TIME
;
987 cli_print(cli
, " neighbour %s timers %d %d", config
->neighbour
[i
].name
, k
, h
);
992 cli_print(cli
, "# Filters");
993 for (i
= 0; i
< MAXFILTER
; i
++)
995 ip_filter_rulet
*rules
;
996 if (!*ip_filters
[i
].name
)
999 cli_print(cli
, "ip access-list %s %s",
1000 ip_filters
[i
].extended
? "extended" : "standard",
1001 ip_filters
[i
].name
);
1003 rules
= ip_filters
[i
].rules
;
1004 while (rules
->action
)
1005 cli_print(cli
, "%s", show_access_list_rule(ip_filters
[i
].extended
, rules
++));
1008 cli_print(cli
, "# end");
1012 static int cmd_show_radius(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1014 int i
, free
= 0, used
= 0, show_all
= 0;
1026 if (CLI_HELP_REQUESTED
)
1029 return cli_arg_help(cli
, 1, NULL
);
1031 return cli_arg_help(cli
, 1,
1032 "all", "Show all RADIUS sessions, including unused",
1036 cli_print(cli
, "%6s%7s%5s%6s%9s%9s%4s", "ID", "Radius", "Sock", "State", "Session", "Retry", "Try");
1040 if (argc
> 0 && strcmp(argv
[0], "all") == 0)
1043 for (i
= 1; i
< MAXRADIUS
; i
++)
1045 if (radius
[i
].state
== RADIUSNULL
)
1050 if (!show_all
&& radius
[i
].state
== RADIUSNULL
) continue;
1052 cli_print(cli
, "%6d%7d%5d%6s%9d%9u%4d",
1056 states
[radius
[i
].state
],
1062 cli_print(cli
, "\r\nFree: %d\r\nUsed: %d", free
, used
);
1067 static int cmd_show_plugins(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1071 if (CLI_HELP_REQUESTED
)
1072 return CLI_HELP_NO_ARGS
;
1074 cli_print(cli
, "Plugins currently loaded:");
1075 for (i
= 0; i
< MAXPLUGINS
; i
++)
1076 if (*config
->plugins
[i
])
1077 cli_print(cli
, " %s", config
->plugins
[i
]);
1082 static int cmd_show_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1086 if (CLI_HELP_REQUESTED
)
1087 return CLI_HELP_NO_ARGS
;
1089 cli_print(cli
, "%5s %4s %-32s %7s %6s %6s %6s",
1098 for (i
= 0; i
< MAXSESSION
; i
++)
1100 if (session
[i
].throttle_in
|| session
[i
].throttle_out
)
1101 cli_print(cli
, "%5d %4d %-32s %6d %6d %6d %6d",
1105 session
[i
].throttle_in
,
1106 session
[i
].throttle_out
,
1108 session
[i
].tbf_out
);
1114 static int cmd_show_banana(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1116 if (CLI_HELP_REQUESTED
)
1117 return CLI_HELP_NO_ARGS
;
1119 cli_print(cli
, " _\n"
1125 " ( \\ `. `-. _,.-:\\\n"
1126 " \\ \\ `. `-._ __..--' ,-';/\n"
1127 " \\ `. `-. `-..___..---' _.--' ,'/\n"
1128 " `. `. `-._ __..--' ,' /\n"
1129 " `. `-_ ``--..'' _.-' ,'\n"
1130 " `-_ `-.___ __,--' ,'\n"
1131 " `-.__ `----\"\"\" __.-'\n"
1132 "hh `--..____..--'");
1137 static int cmd_clear_counters(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1139 if (CLI_HELP_REQUESTED
)
1140 return CLI_HELP_NO_ARGS
;
1142 memset(_statistics
, 0, sizeof(struct Tstats
));
1143 SET_STAT(last_reset
, time(NULL
));
1145 cli_print(cli
, "Counters cleared");
1149 static int cmd_drop_user(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1154 if (CLI_HELP_REQUESTED
)
1155 return cli_arg_help(cli
, argc
> 1,
1156 "USER", "Username of session to drop", NULL
);
1158 if (!config
->cluster_iam_master
)
1160 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1161 fmtaddr(config
->cluster_master_address
, 0));
1168 cli_error(cli
, "Specify a user to drop");
1172 for (i
= 0; i
< argc
; i
++)
1174 if (!(s
= sessionbyuser(argv
[i
])))
1176 cli_error(cli
, "User %s is not connected", argv
[i
]);
1180 if (session
[s
].ip
&& session
[s
].opened
&& !session
[s
].die
)
1182 cli_print(cli
, "Dropping user %s", session
[s
].user
);
1183 cli_session_actions
[s
].action
|= CLI_SESS_KILL
;
1190 static int cmd_drop_tunnel(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1195 if (CLI_HELP_REQUESTED
)
1196 return cli_arg_help(cli
, argc
> 1,
1197 "<1-%d>", MAXTUNNEL
-1, "Tunnel id to drop", NULL
);
1199 if (!config
->cluster_iam_master
)
1201 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1202 fmtaddr(config
->cluster_master_address
, 0));
1209 cli_error(cli
, "Specify a tunnel to drop");
1213 for (i
= 0; i
< argc
; i
++)
1215 if ((t
= atol(argv
[i
])) <= 0 || (t
>= MAXTUNNEL
))
1217 cli_error(cli
, "Invalid tunnel ID (1-%d)", MAXTUNNEL
-1);
1223 cli_error(cli
, "Tunnel %d is not connected", t
);
1229 cli_error(cli
, "Tunnel %d is already being shut down", t
);
1233 cli_print(cli
, "Tunnel %d shut down (%s)", t
, tunnel
[t
].hostname
);
1234 cli_tunnel_actions
[t
].action
|= CLI_TUN_KILL
;
1240 static int cmd_drop_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1245 if (CLI_HELP_REQUESTED
)
1246 return cli_arg_help(cli
, argc
> 1,
1247 "<1-%d>", MAXSESSION
-1, "Session id to drop", NULL
);
1249 if (!config
->cluster_iam_master
)
1251 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1252 fmtaddr(config
->cluster_master_address
, 0));
1259 cli_error(cli
, "Specify a session id to drop");
1263 for (i
= 0; i
< argc
; i
++)
1265 if ((s
= atol(argv
[i
])) <= 0 || (s
> MAXSESSION
))
1267 cli_error(cli
, "Invalid session ID (1-%d)", MAXSESSION
-1);
1271 if (session
[s
].ip
&& session
[s
].opened
&& !session
[s
].die
)
1273 cli_print(cli
, "Dropping session %d", s
);
1274 cli_session_actions
[s
].action
|= CLI_SESS_KILL
;
1278 cli_error(cli
, "Session %d is not active.", s
);
1285 static int cmd_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1291 if (CLI_HELP_REQUESTED
)
1296 return cli_arg_help(cli
, 0,
1297 "USER", "Username of session to snoop", NULL
);
1300 return cli_arg_help(cli
, 0,
1301 "A.B.C.D", "IP address of snoop destination", NULL
);
1304 return cli_arg_help(cli
, 0,
1305 "N", "Port of snoop destination", NULL
);
1309 return cli_arg_help(cli
, 1, NULL
);
1316 if (!config
->cluster_iam_master
)
1318 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1319 fmtaddr(config
->cluster_master_address
, 0));
1326 cli_error(cli
, "Specify username, ip and port");
1330 if (!(s
= sessionbyuser(argv
[0])))
1332 cli_error(cli
, "User %s is not connected", argv
[0]);
1336 ip
= inet_addr(argv
[1]);
1337 if (!ip
|| ip
== INADDR_NONE
)
1339 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[1]);
1343 port
= atoi(argv
[2]);
1346 cli_error(cli
, "Invalid port %s", argv
[2]);
1350 cli_print(cli
, "Snooping user %s to %s:%d", argv
[0], fmtaddr(ip
, 0), port
);
1351 cli_session_actions
[s
].snoop_ip
= ip
;
1352 cli_session_actions
[s
].snoop_port
= port
;
1353 cli_session_actions
[s
].action
|= CLI_SESS_SNOOP
;
1358 static int cmd_no_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1363 if (CLI_HELP_REQUESTED
)
1364 return cli_arg_help(cli
, argc
> 1,
1365 "USER", "Username of session to unsnoop", NULL
);
1367 if (!config
->cluster_iam_master
)
1369 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1370 fmtaddr(config
->cluster_master_address
, 0));
1377 cli_error(cli
, "Specify a user to unsnoop");
1381 for (i
= 0; i
< argc
; i
++)
1383 if (!(s
= sessionbyuser(argv
[i
])))
1385 cli_error(cli
, "User %s is not connected", argv
[i
]);
1389 cli_print(cli
, "Not snooping user %s", argv
[i
]);
1390 cli_session_actions
[s
].action
|= CLI_SESS_NOSNOOP
;
1396 static int cmd_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1403 throttle USER - throttle in/out to default rate
1404 throttle USER RATE - throttle in/out to default rate
1405 throttle USER in RATE - throttle input only
1406 throttle USER out RATE - throttle output only
1407 throttle USER in RATE out RATE - throttle both
1410 if (CLI_HELP_REQUESTED
)
1415 return cli_arg_help(cli
, 0,
1416 "USER", "Username of session to throttle", NULL
);
1419 return cli_arg_help(cli
, 1,
1420 "RATE", "Rate in kbps (in and out)",
1421 "in", "Select incoming rate",
1422 "out", "Select outgoing rate", NULL
);
1425 return cli_arg_help(cli
, 1,
1426 "in", "Select incoming rate",
1427 "out", "Select outgoing rate", NULL
);
1430 if (isdigit(argv
[1][0]))
1431 return cli_arg_help(cli
, 1, NULL
);
1434 return cli_arg_help(cli
, 0, "RATE", "Rate in kbps", NULL
);
1437 return cli_arg_help(cli
, argc
> 1, NULL
);
1441 if (!config
->cluster_iam_master
)
1443 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1444 fmtaddr(config
->cluster_master_address
, 0));
1451 cli_error(cli
, "Specify a user to throttle");
1455 if (!(s
= sessionbyuser(argv
[0])))
1457 cli_error(cli
, "User %s is not connected", argv
[0]);
1463 rate_in
= rate_out
= config
->rl_rate
;
1467 rate_in
= rate_out
= atoi(argv
[1]);
1470 cli_error(cli
, "Invalid rate \"%s\"", argv
[1]);
1474 else if (argc
== 3 || argc
== 5)
1477 for (i
= 1; i
< argc
- 1; i
+= 2)
1480 if (MATCH("in", argv
[i
]))
1481 r
= rate_in
= atoi(argv
[i
+1]);
1482 else if (MATCH("out", argv
[i
]))
1483 r
= rate_out
= atoi(argv
[i
+1]);
1487 cli_error(cli
, "Invalid rate specification \"%s %s\"", argv
[i
], argv
[i
+1]);
1494 cli_error(cli
, "Invalid arguments");
1498 if ((rate_in
&& session
[s
].throttle_in
) || (rate_out
&& session
[s
].throttle_out
))
1500 cli_error(cli
, "User %s already throttled, unthrottle first", argv
[0]);
1504 cli_session_actions
[s
].throttle_in
= cli_session_actions
[s
].throttle_out
= -1;
1505 if (rate_in
&& session
[s
].throttle_in
!= rate_in
)
1506 cli_session_actions
[s
].throttle_in
= rate_in
;
1508 if (rate_out
&& session
[s
].throttle_out
!= rate_out
)
1509 cli_session_actions
[s
].throttle_out
= rate_out
;
1511 if (cli_session_actions
[s
].throttle_in
== -1 &&
1512 cli_session_actions
[s
].throttle_out
== -1)
1514 cli_error(cli
, "User %s already throttled at this rate", argv
[0]);
1518 cli_print(cli
, "Throttling user %s", argv
[0]);
1519 cli_session_actions
[s
].action
|= CLI_SESS_THROTTLE
;
1524 static int cmd_no_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1529 if (CLI_HELP_REQUESTED
)
1530 return cli_arg_help(cli
, argc
> 1,
1531 "USER", "Username of session to unthrottle", NULL
);
1533 if (!config
->cluster_iam_master
)
1535 cli_error(cli
, "Can't do this on a slave. Do it on %s",
1536 fmtaddr(config
->cluster_master_address
, 0));
1543 cli_error(cli
, "Specify a user to unthrottle");
1547 for (i
= 0; i
< argc
; i
++)
1549 if (!(s
= sessionbyuser(argv
[i
])))
1551 cli_error(cli
, "User %s is not connected", argv
[i
]);
1555 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
1557 cli_print(cli
, "Unthrottling user %s", argv
[i
]);
1558 cli_session_actions
[s
].action
|= CLI_SESS_NOTHROTTLE
;
1562 cli_error(cli
, "User %s not throttled", argv
[i
]);
1569 static int cmd_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1573 if (CLI_HELP_REQUESTED
)
1574 return cli_arg_help(cli
, 1,
1575 "all", "Enable debugging for all except \"data\"",
1576 "critical", "", // FIXME: add descriptions
1586 char *p
= (char *) &debug_flags
;
1587 for (i
= 0; i
< sizeof(debug_flags
); i
++)
1591 cli_print(cli
, "Currently debugging:%s%s%s%s%s%s",
1592 (debug_flags
.critical
) ? " critical" : "",
1593 (debug_flags
.error
) ? " error" : "",
1594 (debug_flags
.warning
) ? " warning" : "",
1595 (debug_flags
.info
) ? " info" : "",
1596 (debug_flags
.calls
) ? " calls" : "",
1597 (debug_flags
.data
) ? " data" : "");
1603 cli_print(cli
, "Debugging off");
1607 for (i
= 0; i
< argc
; i
++)
1609 int len
= strlen(argv
[i
]);
1611 if (argv
[i
][0] == 'c' && len
< 2)
1612 len
= 2; /* distinguish [cr]itical from [ca]lls */
1614 if (!strncmp("critical", argv
[i
], len
)) { debug_flags
.critical
= 1; continue; }
1615 if (!strncmp("error", argv
[i
], len
)) { debug_flags
.error
= 1; continue; }
1616 if (!strncmp("warning", argv
[i
], len
)) { debug_flags
.warning
= 1; continue; }
1617 if (!strncmp("info", argv
[i
], len
)) { debug_flags
.info
= 1; continue; }
1618 if (!strncmp("calls", argv
[i
], len
)) { debug_flags
.calls
= 1; continue; }
1619 if (!strncmp("data", argv
[i
], len
)) { debug_flags
.data
= 1; continue; }
1620 if (!strncmp("all", argv
[i
], len
))
1622 memset(&debug_flags
, 1, sizeof(debug_flags
));
1623 debug_flags
.data
= 0;
1627 cli_error(cli
, "Invalid debugging flag \"%s\"", argv
[i
]);
1633 static int cmd_no_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1637 if (CLI_HELP_REQUESTED
)
1638 return cli_arg_help(cli
, 1,
1639 "all", "Disable all debugging",
1640 "critical", "", // FIXME: add descriptions
1650 memset(&debug_flags
, 0, sizeof(debug_flags
));
1654 for (i
= 0; i
< argc
; i
++)
1656 int len
= strlen(argv
[i
]);
1658 if (argv
[i
][0] == 'c' && len
< 2)
1659 len
= 2; /* distinguish [cr]itical from [ca]lls */
1661 if (!strncmp("critical", argv
[i
], len
)) { debug_flags
.critical
= 0; continue; }
1662 if (!strncmp("error", argv
[i
], len
)) { debug_flags
.error
= 0; continue; }
1663 if (!strncmp("warning", argv
[i
], len
)) { debug_flags
.warning
= 0; continue; }
1664 if (!strncmp("info", argv
[i
], len
)) { debug_flags
.info
= 0; continue; }
1665 if (!strncmp("calls", argv
[i
], len
)) { debug_flags
.calls
= 0; continue; }
1666 if (!strncmp("data", argv
[i
], len
)) { debug_flags
.data
= 0; continue; }
1667 if (!strncmp("all", argv
[i
], len
))
1669 memset(&debug_flags
, 0, sizeof(debug_flags
));
1673 cli_error(cli
, "Invalid debugging flag \"%s\"", argv
[i
]);
1679 static int cmd_load_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1681 int i
, firstfree
= 0;
1683 if (CLI_HELP_REQUESTED
)
1684 return cli_arg_help(cli
, argc
> 1,
1685 "PLUGIN", "Name of plugin to load", NULL
);
1689 cli_error(cli
, "Specify a plugin to load");
1693 for (i
= 0; i
< MAXPLUGINS
; i
++)
1695 if (!*config
->plugins
[i
] && !firstfree
)
1697 if (strcmp(config
->plugins
[i
], argv
[0]) == 0)
1699 cli_error(cli
, "Plugin is already loaded");
1706 strncpy(config
->plugins
[firstfree
], argv
[0], sizeof(config
->plugins
[firstfree
]) - 1);
1707 config
->reload_config
= 1;
1708 cli_print(cli
, "Loading plugin %s", argv
[0]);
1714 static int cmd_remove_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1718 if (CLI_HELP_REQUESTED
)
1719 return cli_arg_help(cli
, argc
> 1,
1720 "PLUGIN", "Name of plugin to unload", NULL
);
1724 cli_error(cli
, "Specify a plugin to remove");
1728 for (i
= 0; i
< MAXPLUGINS
; i
++)
1730 if (strcmp(config
->plugins
[i
], argv
[0]) == 0)
1732 config
->reload_config
= 1;
1733 memset(config
->plugins
[i
], 0, sizeof(config
->plugins
[i
]));
1738 cli_error(cli
, "Plugin is not loaded");
1742 static char *duration(time_t secs
)
1744 static char *buf
= NULL
;
1747 if (!buf
) buf
= calloc(64, 1);
1751 int days
= secs
/ 86400;
1752 p
= sprintf(buf
, "%d day%s, ", days
, days
> 1 ? "s" : "");
1758 int mins
= secs
/ 60;
1759 int hrs
= mins
/ 60;
1762 sprintf(buf
+ p
, "%d:%02d", hrs
, mins
);
1764 else if (secs
>= 60)
1766 int mins
= secs
/ 60;
1767 sprintf(buf
+ p
, "%d min%s", mins
, mins
> 1 ? "s" : "");
1770 sprintf(buf
, "%ld sec%s", secs
, secs
> 1 ? "s" : "");
1775 static int cmd_uptime(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1778 char buf
[100], *p
= buf
, *loads
[3];
1779 int i
, num_sessions
= 0;
1781 if (CLI_HELP_REQUESTED
)
1782 return CLI_HELP_NO_ARGS
;
1784 fh
= fopen("/proc/loadavg", "r");
1785 fgets(buf
, 100, fh
);
1788 for (i
= 0; i
< 3; i
++)
1789 loads
[i
] = strdup(strsep(&p
, " "));
1792 strftime(buf
, 99, "%H:%M:%S", localtime(&time_now
));
1794 for (i
= 1; i
< MAXSESSION
; i
++)
1795 if (session
[i
].opened
) num_sessions
++;
1797 cli_print(cli
, "%s up %s, %d users, load average: %s, %s, %s",
1799 duration(time_now
- config
->start_time
),
1801 loads
[0], loads
[1], loads
[2]
1803 for (i
= 0; i
< 3; i
++)
1804 if (loads
[i
]) free(loads
[i
]);
1806 cli_print(cli
, "Bandwidth: %s", config
->bandwidth
);
1811 static int cmd_set(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1815 if (CLI_HELP_REQUESTED
)
1821 int len
= strlen(argv
[0])-1;
1822 for (i
= 0; config_values
[i
].key
; i
++)
1823 if (!len
|| !strncmp(config_values
[i
].key
, argv
[0], len
))
1824 cli_error(cli
, " %s", config_values
[i
].key
);
1830 return cli_arg_help(cli
, 0,
1831 "VALUE", "Value for variable", NULL
);
1835 return cli_arg_help(cli
, 1, NULL
);
1844 cli_error(cli
, "Specify variable and value");
1848 for (i
= 0; config_values
[i
].key
; i
++)
1850 void *value
= ((void *) config
) + config_values
[i
].offset
;
1851 if (strcmp(config_values
[i
].key
, argv
[0]) == 0)
1853 // Found a value to set
1854 cli_print(cli
, "Setting \"%s\" to \"%s\"", argv
[0], argv
[1]);
1855 switch (config_values
[i
].type
)
1858 snprintf((char *) value
, config_values
[i
].size
, "%s", argv
[1]);
1861 *(int *) value
= atoi(argv
[1]);
1864 *(unsigned long *) value
= atol(argv
[1]);
1867 *(short *) value
= atoi(argv
[1]);
1870 *(in_addr_t
*) value
= inet_addr(argv
[1]);
1873 inet_pton(AF_INET6
, argv
[1], value
);
1876 parsemac(argv
[1], (char *)value
);
1879 if (strcasecmp(argv
[1], "yes") == 0 || strcasecmp(argv
[1], "true") == 0 || strcasecmp(argv
[1], "1") == 0)
1885 cli_error(cli
, "Unknown variable type");
1888 config
->reload_config
= 1;
1893 cli_error(cli
, "Unknown variable \"%s\"", argv
[0]);
1897 int regular_stuff(struct cli_def
*cli
)
1903 for (i
= debug_rb_tail
; i
!= ringbuffer
->tail
; i
= (i
+ 1) % RINGBUFFER_SIZE
)
1905 char *m
= ringbuffer
->buffer
[i
].message
;
1911 switch (ringbuffer
->buffer
[i
].level
)
1913 case 0: show
= debug_flags
.critical
; break;
1914 case 1: show
= debug_flags
.error
; break;
1915 case 2: show
= debug_flags
.warning
; break;
1916 case 3: show
= debug_flags
.info
; break;
1917 case 4: show
= debug_flags
.calls
; break;
1918 case 5: show
= debug_flags
.data
; break;
1921 if (!show
) continue;
1923 if (!(p
= strchr(m
, '\n')))
1926 cli_error(cli
, "\r%s-%u-%u %.*s",
1927 debug_levels
[(int)ringbuffer
->buffer
[i
].level
],
1928 ringbuffer
->buffer
[i
].tunnel
,
1929 ringbuffer
->buffer
[i
].session
,
1935 debug_rb_tail
= ringbuffer
->tail
;
1943 static int cmd_router_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1947 if (CLI_HELP_REQUESTED
)
1948 return cli_arg_help(cli
, argc
> 1,
1949 "<1-65535>", "Autonomous system number", NULL
);
1951 if (argc
!= 1 || (as
= atoi(argv
[0])) < 1 || as
> 65535)
1953 cli_error(cli
, "Invalid autonomous system number");
1957 if (bgp_configured
&& as
!= config
->as_number
)
1959 cli_error(cli
, "Can't change local AS on a running system");
1963 config
->as_number
= as
;
1964 cli_set_configmode(cli
, MODE_CONFIG_BGP
, "router");
1969 static int find_bgp_neighbour(char const *name
)
1974 in_addr_t addrs
[4] = { 0 };
1977 if (!(h
= gethostbyname(name
)) || h
->h_addrtype
!= AF_INET
)
1980 for (i
= 0; i
< sizeof(addrs
) / sizeof(*addrs
) && h
->h_addr_list
[i
]; i
++)
1981 memcpy(&addrs
[i
], h
->h_addr_list
[i
], sizeof(*addrs
));
1983 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
1985 if (!config
->neighbour
[i
].name
[0])
1987 if (new == -1) new = i
;
1991 if (!strcmp(name
, config
->neighbour
[i
].name
))
1994 if (!(h
= gethostbyname(config
->neighbour
[i
].name
)) || h
->h_addrtype
!= AF_INET
)
1997 for (a
= h
->h_addr_list
; *a
; a
++)
2000 for (j
= 0; j
< sizeof(addrs
) / sizeof(*addrs
) && addrs
[j
]; j
++)
2001 if (!memcmp(&addrs
[j
], *a
, sizeof(*addrs
)))
2009 static int cmd_router_bgp_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2015 if (CLI_HELP_REQUESTED
)
2020 return cli_arg_help(cli
, 0,
2021 "A.B.C.D", "BGP neighbour address",
2022 "NAME", "BGP neighbour name",
2026 return cli_arg_help(cli
, 0,
2027 "remote-as", "Set remote autonomous system number",
2028 "timers", "Set timers",
2032 if (MATCH("remote-as", argv
[1]))
2033 return cli_arg_help(cli
, argv
[2][1], "<1-65535>", "Autonomous system number", NULL
);
2035 if (MATCH("timers", argv
[1]))
2038 return cli_arg_help(cli
, 0, "<1-65535>", "Keepalive time", NULL
);
2041 return cli_arg_help(cli
, argv
[3][1], "<3-65535>", "Hold time", NULL
);
2043 if (argc
== 5 && !argv
[4][1])
2044 return cli_arg_help(cli
, 1, NULL
);
2053 cli_error(cli
, "Invalid arguments");
2057 if ((i
= find_bgp_neighbour(argv
[0])) == -2)
2059 cli_error(cli
, "Invalid neighbour");
2065 cli_error(cli
, "Too many neighbours (max %d)", BGP_NUM_PEERS
);
2069 if (MATCH("remote-as", argv
[1]))
2071 int as
= atoi(argv
[2]);
2072 if (as
< 0 || as
> 65535)
2074 cli_error(cli
, "Invalid autonomous system number");
2078 if (!config
->neighbour
[i
].name
[0])
2080 snprintf(config
->neighbour
[i
].name
, sizeof(config
->neighbour
[i
].name
), "%s", argv
[0]);
2081 config
->neighbour
[i
].keepalive
= -1;
2082 config
->neighbour
[i
].hold
= -1;
2085 config
->neighbour
[i
].as
= as
;
2089 if (argc
!= 4 || !MATCH("timers", argv
[1]))
2091 cli_error(cli
, "Invalid arguments");
2095 if (!config
->neighbour
[i
].name
[0])
2097 cli_error(cli
, "Specify remote-as first");
2101 keepalive
= atoi(argv
[2]);
2102 hold
= atoi(argv
[3]);
2104 if (keepalive
< 1 || keepalive
> 65535)
2106 cli_error(cli
, "Invalid keepalive time");
2110 if (hold
< 3 || hold
> 65535)
2112 cli_error(cli
, "Invalid hold time");
2116 if (keepalive
== BGP_KEEPALIVE_TIME
)
2117 keepalive
= -1; // using default value
2119 if (hold
== BGP_HOLD_TIME
)
2122 config
->neighbour
[i
].keepalive
= keepalive
;
2123 config
->neighbour
[i
].hold
= hold
;
2128 static int cmd_router_bgp_no_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2132 if (CLI_HELP_REQUESTED
)
2133 return cli_arg_help(cli
, argc
> 0,
2134 "A.B.C.D", "BGP neighbour address",
2135 "NAME", "BGP neighbour name",
2140 cli_error(cli
, "Specify a BGP neighbour");
2144 if ((i
= find_bgp_neighbour(argv
[0])) == -2)
2146 cli_error(cli
, "Invalid neighbour");
2150 if (i
< 0 || !config
->neighbour
[i
].name
[0])
2152 cli_error(cli
, "Neighbour %s not configured", argv
[0]);
2156 memset(&config
->neighbour
[i
], 0, sizeof(config
->neighbour
[i
]));
2160 static int cmd_show_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2166 if (!bgp_configured
)
2169 if (CLI_HELP_REQUESTED
)
2170 return cli_arg_help(cli
, 1,
2171 "A.B.C.D", "BGP neighbour address",
2172 "NAME", "BGP neighbour name",
2175 cli_print(cli
, "BGPv%d router identifier %s, local AS number %d",
2176 BGP_VERSION
, fmtaddr(my_address
, 0), (int) config
->as_number
);
2180 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2182 if (!*bgp_peers
[i
].name
)
2185 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2186 if (argc
&& strcmp(addr
, argv
[0]) &&
2187 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2193 cli_print(cli
, "Peer AS Address "
2194 "State Retries Retry in Route Pend Timers");
2195 cli_print(cli
, "------------------ ----- --------------- "
2196 "----------- ------- -------- ----- ---- ---------");
2199 cli_print(cli
, "%-18.18s %5d %15s %-11s %7d %7lds %5s %4s %4d %4d",
2203 bgp_state_str(bgp_peers
[i
].state
),
2204 bgp_peers
[i
].retry_count
,
2205 bgp_peers
[i
].retry_time
? bgp_peers
[i
].retry_time
- time_now
: 0,
2206 bgp_peers
[i
].routing
? "yes" : "no",
2207 bgp_peers
[i
].update_routes
? "yes" : "no",
2208 bgp_peers
[i
].keepalive
,
2215 static int cmd_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2220 if (!bgp_configured
)
2223 if (CLI_HELP_REQUESTED
)
2224 return cli_arg_help(cli
, 1,
2225 "A.B.C.D", "BGP neighbour address",
2226 "NAME", "BGP neighbour name",
2229 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2231 if (bgp_peers
[i
].state
!= Established
)
2234 if (!bgp_peers
[i
].routing
)
2237 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2238 if (argc
&& strcmp(addr
, argv
[0]) && strcmp(bgp_peers
[i
].name
, argv
[0]))
2241 bgp_peers
[i
].cli_flag
= BGP_CLI_SUSPEND
;
2242 cli_print(cli
, "Suspending peer %s", bgp_peers
[i
].name
);
2248 static int cmd_no_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2253 if (!bgp_configured
)
2256 if (CLI_HELP_REQUESTED
)
2257 return cli_arg_help(cli
, 1,
2258 "A.B.C.D", "BGP neighbour address",
2259 "NAME", "BGP neighbour name",
2262 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2264 if (bgp_peers
[i
].state
!= Established
)
2267 if (bgp_peers
[i
].routing
)
2270 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2271 if (argc
&& strcmp(addr
, argv
[0]) &&
2272 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2275 bgp_peers
[i
].cli_flag
= BGP_CLI_ENABLE
;
2276 cli_print(cli
, "Un-suspending peer %s", bgp_peers
[i
].name
);
2282 static int cmd_restart_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2287 if (!bgp_configured
)
2290 if (CLI_HELP_REQUESTED
)
2291 return cli_arg_help(cli
, 1,
2292 "A.B.C.D", "BGP neighbour address",
2293 "NAME", "BGP neighbour name",
2296 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2298 if (!*bgp_peers
[i
].name
)
2301 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2302 if (argc
&& strcmp(addr
, argv
[0]) &&
2303 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2306 bgp_peers
[i
].cli_flag
= BGP_CLI_RESTART
;
2307 cli_print(cli
, "Restarting peer %s", bgp_peers
[i
].name
);
2315 static int find_access_list(char const *name
)
2319 for (i
= 0; i
< MAXFILTER
; i
++)
2320 if (!(*ip_filters
[i
].name
&& strcmp(ip_filters
[i
].name
, name
)))
2326 static int access_list(struct cli_def
*cli
, char **argv
, int argc
, int add
)
2330 if (CLI_HELP_REQUESTED
)
2335 return cli_arg_help(cli
, 0,
2336 "standard", "Standard syntax",
2337 "extended", "Extended syntax",
2341 return cli_arg_help(cli
, argv
[1][1],
2342 "NAME", "Access-list name",
2346 if (argc
== 3 && !argv
[2][1])
2347 return cli_arg_help(cli
, 1, NULL
);
2355 cli_error(cli
, "Specify access-list type and name");
2359 if (MATCH("standard", argv
[0]))
2361 else if (MATCH("extended", argv
[0]))
2365 cli_error(cli
, "Invalid access-list type");
2369 if (strlen(argv
[1]) > sizeof(ip_filters
[0].name
) - 1 ||
2370 strspn(argv
[1], "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-") != strlen(argv
[1]))
2372 cli_error(cli
, "Invalid access-list name");
2376 filt
= find_access_list(argv
[1]);
2381 cli_error(cli
, "Too many access-lists");
2386 if (!*ip_filters
[filt
].name
)
2388 memset(&ip_filters
[filt
], 0, sizeof(ip_filters
[filt
]));
2389 strcpy(ip_filters
[filt
].name
, argv
[1]);
2390 ip_filters
[filt
].extended
= extended
;
2392 else if (ip_filters
[filt
].extended
!= extended
)
2394 cli_error(cli
, "Access-list is %s",
2395 ip_filters
[filt
].extended
? "extended" : "standard");
2400 cli_set_configmode(cli
, MODE_CONFIG_NACL
, extended
? "ext-nacl" : "std-nacl");
2404 if (filt
< 0 || !*ip_filters
[filt
].name
)
2406 cli_error(cli
, "Access-list not defined");
2411 if (ip_filters
[filt
].used
)
2413 cli_error(cli
, "Access-list in use");
2417 memset(&ip_filters
[filt
], 0, sizeof(ip_filters
[filt
]));
2421 static int cmd_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2423 return access_list(cli
, argv
, argc
, 1);
2426 static int cmd_no_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2428 return access_list(cli
, argv
, argc
, 0);
2431 static int show_ip_wild(char *buf
, in_addr_t ip
, in_addr_t wild
)
2433 if (ip
== INADDR_ANY
&& wild
== INADDR_BROADCAST
)
2434 return sprintf(buf
, " any");
2436 if (wild
== INADDR_ANY
)
2437 return sprintf(buf
, " host %s", fmtaddr(ip
, 0));
2439 return sprintf(buf
, " %s %s", fmtaddr(ip
, 0), fmtaddr(wild
, 1));
2442 static int show_ports(char *buf
, ip_filter_portt
*ports
)
2446 case FILTER_PORT_OP_EQ
: return sprintf(buf
, " eq %u", ports
->port
);
2447 case FILTER_PORT_OP_NEQ
: return sprintf(buf
, " neq %u", ports
->port
);
2448 case FILTER_PORT_OP_GT
: return sprintf(buf
, " gt %u", ports
->port
);
2449 case FILTER_PORT_OP_LT
: return sprintf(buf
, " lt %u", ports
->port
);
2450 case FILTER_PORT_OP_RANGE
: return sprintf(buf
, " range %u %u", ports
->port
, ports
->port2
);
2456 static char const *show_access_list_rule(int extended
, ip_filter_rulet
*rule
)
2458 static char buf
[256];
2461 p
+= sprintf(p
, " %s", rule
->action
== FILTER_ACTION_PERMIT
? "permit" : "deny");
2464 struct protoent
*proto
= getprotobynumber(rule
->proto
);
2465 p
+= sprintf(p
, " %s", proto
? proto
->p_name
: "ERR");
2468 p
+= show_ip_wild(p
, rule
->src_ip
, rule
->src_wild
);
2472 if (rule
->proto
== IPPROTO_TCP
|| rule
->proto
== IPPROTO_UDP
)
2473 p
+= show_ports(p
, &rule
->src_ports
);
2475 p
+= show_ip_wild(p
, rule
->dst_ip
, rule
->dst_wild
);
2476 if (rule
->proto
== IPPROTO_TCP
|| rule
->proto
== IPPROTO_UDP
)
2477 p
+= show_ports(p
, &rule
->dst_ports
);
2479 if (rule
->proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
)
2481 switch (rule
->tcp_flag_op
)
2483 case FILTER_FLAG_OP_EST
:
2484 p
+= sprintf(p
, " established");
2487 case FILTER_FLAG_OP_ANY
:
2488 case FILTER_FLAG_OP_ALL
:
2489 p
+= sprintf(p
, " match-%s", rule
->tcp_flag_op
== FILTER_FLAG_OP_ALL
? "all" : "any");
2490 if (rule
->tcp_sflags
& TCP_FLAG_FIN
) p
+= sprintf(p
, " +fin");
2491 if (rule
->tcp_cflags
& TCP_FLAG_FIN
) p
+= sprintf(p
, " -fin");
2492 if (rule
->tcp_sflags
& TCP_FLAG_SYN
) p
+= sprintf(p
, " +syn");
2493 if (rule
->tcp_cflags
& TCP_FLAG_SYN
) p
+= sprintf(p
, " -syn");
2494 if (rule
->tcp_sflags
& TCP_FLAG_RST
) p
+= sprintf(p
, " +rst");
2495 if (rule
->tcp_cflags
& TCP_FLAG_RST
) p
+= sprintf(p
, " -rst");
2496 if (rule
->tcp_sflags
& TCP_FLAG_PSH
) p
+= sprintf(p
, " +psh");
2497 if (rule
->tcp_cflags
& TCP_FLAG_PSH
) p
+= sprintf(p
, " -psh");
2498 if (rule
->tcp_sflags
& TCP_FLAG_ACK
) p
+= sprintf(p
, " +ack");
2499 if (rule
->tcp_cflags
& TCP_FLAG_ACK
) p
+= sprintf(p
, " -ack");
2500 if (rule
->tcp_sflags
& TCP_FLAG_URG
) p
+= sprintf(p
, " +urg");
2501 if (rule
->tcp_cflags
& TCP_FLAG_URG
) p
+= sprintf(p
, " -urg");
2507 p
+= sprintf(p
, " fragments");
2512 static ip_filter_rulet
*access_list_rule_ext(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2514 static ip_filter_rulet rule
;
2515 struct in_addr addr
;
2519 if (CLI_HELP_REQUESTED
)
2523 cli_arg_help(cli
, 0,
2524 "ip", "Match IP packets",
2525 "tcp", "Match TCP packets",
2526 "udp", "Match UDP packets",
2532 // *sigh*, too darned complex
2533 cli_arg_help(cli
, 0, "RULE", "SOURCE [PORTS] DEST [PORTS] FLAGS", NULL
);
2539 cli_error(cli
, "Specify rule details");
2543 memset(&rule
, 0, sizeof(rule
));
2544 rule
.action
= (command
[0] == 'p')
2545 ? FILTER_ACTION_PERMIT
2546 : FILTER_ACTION_DENY
;
2548 if (MATCH("ip", argv
[0]))
2549 rule
.proto
= IPPROTO_IP
;
2550 else if (MATCH("udp", argv
[0]))
2551 rule
.proto
= IPPROTO_UDP
;
2552 else if (MATCH("tcp", argv
[0]))
2553 rule
.proto
= IPPROTO_TCP
;
2556 cli_error(cli
, "Invalid protocol \"%s\"", argv
[0]);
2560 for (a
= 1, i
= 0; i
< 2; i
++)
2564 ip_filter_portt
*port
;
2569 wild
= &rule
.src_wild
;
2570 port
= &rule
.src_ports
;
2575 wild
= &rule
.dst_wild
;
2576 port
= &rule
.dst_ports
;
2579 cli_error(cli
, "Specify destination");
2584 if (MATCH("any", argv
[a
]))
2587 *wild
= INADDR_BROADCAST
;
2590 else if (MATCH("host", argv
[a
]))
2594 cli_error(cli
, "Specify host ip address");
2598 if (!inet_aton(argv
[a
], &addr
))
2600 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2612 cli_error(cli
, "Specify %s ip address and wildcard", i
? "destination" : "source");
2616 if (!inet_aton(argv
[a
], &addr
))
2618 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2624 if (!inet_aton(argv
[++a
], &addr
))
2626 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2630 *wild
= addr
.s_addr
;
2634 if (rule
.proto
== IPPROTO_IP
|| a
>= argc
)
2638 if (MATCH("eq", argv
[a
]))
2639 port
->op
= FILTER_PORT_OP_EQ
;
2640 else if (MATCH("neq", argv
[a
]))
2641 port
->op
= FILTER_PORT_OP_NEQ
;
2642 else if (MATCH("gt", argv
[a
]))
2643 port
->op
= FILTER_PORT_OP_GT
;
2644 else if (MATCH("lt", argv
[a
]))
2645 port
->op
= FILTER_PORT_OP_LT
;
2646 else if (MATCH("range", argv
[a
]))
2647 port
->op
= FILTER_PORT_OP_RANGE
;
2654 cli_error(cli
, "Specify port");
2658 if (!(port
->port
= atoi(argv
[a
])))
2660 cli_error(cli
, "Invalid port \"%s\"", argv
[a
]);
2665 if (port
->op
!= FILTER_PORT_OP_RANGE
)
2670 cli_error(cli
, "Specify port");
2674 if (!(port
->port2
= atoi(argv
[a
])) || port
->port2
< port
->port
)
2676 cli_error(cli
, "Invalid port \"%s\"", argv
[a
]);
2683 if (rule
.proto
== IPPROTO_TCP
&& a
< argc
)
2685 if (MATCH("established", argv
[a
]))
2687 rule
.tcp_flag_op
= FILTER_FLAG_OP_EST
;
2690 else if (!strcmp(argv
[a
], "match-any") || !strcmp(argv
[a
], "match-an") ||
2691 !strcmp(argv
[a
], "match-all") || !strcmp(argv
[a
], "match-al"))
2693 rule
.tcp_flag_op
= argv
[a
][7] == 'n'
2694 ? FILTER_FLAG_OP_ANY
2695 : FILTER_FLAG_OP_ALL
;
2699 cli_error(cli
, "Specify tcp flags");
2703 while (a
< argc
&& (argv
[a
][0] == '+' || argv
[a
][0] == '-'))
2707 f
= (argv
[a
][0] == '+') ? &rule
.tcp_sflags
: &rule
.tcp_cflags
;
2709 if (MATCH("fin", &argv
[a
][1])) *f
|= TCP_FLAG_FIN
;
2710 else if (MATCH("syn", &argv
[a
][1])) *f
|= TCP_FLAG_SYN
;
2711 else if (MATCH("rst", &argv
[a
][1])) *f
|= TCP_FLAG_RST
;
2712 else if (MATCH("psh", &argv
[a
][1])) *f
|= TCP_FLAG_PSH
;
2713 else if (MATCH("ack", &argv
[a
][1])) *f
|= TCP_FLAG_ACK
;
2714 else if (MATCH("urg", &argv
[a
][1])) *f
|= TCP_FLAG_URG
;
2717 cli_error(cli
, "Invalid tcp flag \"%s\"", argv
[a
]);
2726 if (a
< argc
&& MATCH("fragments", argv
[a
]))
2728 if (rule
.src_ports
.op
|| rule
.dst_ports
.op
|| rule
.tcp_flag_op
)
2730 cli_error(cli
, "Can't specify \"fragments\" on rules with layer 4 matches");
2740 cli_error(cli
, "Invalid flag \"%s\"", argv
[a
]);
2747 static ip_filter_rulet
*access_list_rule_std(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2749 static ip_filter_rulet rule
;
2750 struct in_addr addr
;
2752 if (CLI_HELP_REQUESTED
)
2756 cli_arg_help(cli
, argv
[0][1],
2757 "A.B.C.D", "Source address",
2758 "any", "Any source address",
2759 "host", "Source host",
2765 if (MATCH("any", argv
[0]))
2767 if (argc
== 2 && !argv
[1][1])
2768 cli_arg_help(cli
, 1, NULL
);
2770 else if (MATCH("host", argv
[0]))
2774 cli_arg_help(cli
, argv
[1][1],
2775 "A.B.C.D", "Host address",
2778 else if (argc
== 3 && !argv
[2][1])
2779 cli_arg_help(cli
, 1, NULL
);
2785 cli_arg_help(cli
, 1,
2786 "A.B.C.D", "Wildcard bits",
2789 else if (argc
== 3 && !argv
[2][1])
2790 cli_arg_help(cli
, 1, NULL
);
2798 cli_error(cli
, "Specify rule details");
2802 memset(&rule
, 0, sizeof(rule
));
2803 rule
.action
= (command
[0] == 'p')
2804 ? FILTER_ACTION_PERMIT
2805 : FILTER_ACTION_DENY
;
2807 rule
.proto
= IPPROTO_IP
;
2808 if (MATCH("any", argv
[0]))
2810 rule
.src_ip
= INADDR_ANY
;
2811 rule
.src_wild
= INADDR_BROADCAST
;
2813 else if (MATCH("host", argv
[0]))
2817 cli_error(cli
, "Specify host ip address");
2821 if (!inet_aton(argv
[1], &addr
))
2823 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[1]);
2827 rule
.src_ip
= addr
.s_addr
;
2828 rule
.src_wild
= INADDR_ANY
;
2834 cli_error(cli
, "Specify source ip address and wildcard");
2838 if (!inet_aton(argv
[0], &addr
))
2840 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[0]);
2844 rule
.src_ip
= addr
.s_addr
;
2848 if (!inet_aton(argv
[1], &addr
))
2850 cli_error(cli
, "Cannot parse IP \"%s\"", argv
[1]);
2854 rule
.src_wild
= addr
.s_addr
;
2857 rule
.src_wild
= INADDR_ANY
;
2863 static int cmd_ip_access_list_rule(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2866 ip_filter_rulet
*rule
= ip_filters
[filt
].extended
2867 ? access_list_rule_ext(cli
, command
, argv
, argc
)
2868 : access_list_rule_std(cli
, command
, argv
, argc
);
2873 for (i
= 0; i
< MAXFILTER_RULES
- 1; i
++) // -1: list always terminated by empty rule
2875 if (!ip_filters
[filt
].rules
[i
].action
)
2877 memcpy(&ip_filters
[filt
].rules
[i
], rule
, sizeof(*rule
));
2881 if (!memcmp(&ip_filters
[filt
].rules
[i
], rule
, sizeof(*rule
)))
2885 cli_error(cli
, "Too many rules");
2889 static int cmd_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2894 /* filter USER {in|out} FILTER ... */
2895 if (CLI_HELP_REQUESTED
)
2900 return cli_arg_help(cli
, 0,
2901 "USER", "Username of session to filter", NULL
);
2905 return cli_arg_help(cli
, 0,
2906 "in", "Set incoming filter",
2907 "out", "Set outgoing filter", NULL
);
2911 return cli_arg_help(cli
, argc
== 5 && argv
[4][1],
2912 "NAME", "Filter name", NULL
);
2915 return cli_arg_help(cli
, argc
> 1, NULL
);
2919 if (!config
->cluster_iam_master
)
2921 cli_error(cli
, "Can't do this on a slave. Do it on %s",
2922 fmtaddr(config
->cluster_master_address
, 0));
2927 if (argc
!= 3 && argc
!= 5)
2929 cli_error(cli
, "Specify a user and filters");
2933 if (!(s
= sessionbyuser(argv
[0])))
2935 cli_error(cli
, "User %s is not connected", argv
[0]);
2939 cli_session_actions
[s
].filter_in
= cli_session_actions
[s
].filter_out
= -1;
2940 for (i
= 1; i
< argc
; i
+= 2)
2945 if (MATCH("in", argv
[i
]))
2947 if (session
[s
].filter_in
)
2949 cli_error(cli
, "Input already filtered");
2952 f
= &cli_session_actions
[s
].filter_in
;
2954 else if (MATCH("out", argv
[i
]))
2956 if (session
[s
].filter_out
)
2958 cli_error(cli
, "Output already filtered");
2961 f
= &cli_session_actions
[s
].filter_out
;
2965 cli_error(cli
, "Invalid filter specification");
2969 v
= find_access_list(argv
[i
+1]);
2970 if (v
< 0 || !*ip_filters
[v
].name
)
2972 cli_error(cli
, "Access-list %s not defined", argv
[i
+1]);
2979 cli_print(cli
, "Filtering user %s", argv
[0]);
2980 cli_session_actions
[s
].action
|= CLI_SESS_FILTER
;
2985 static int cmd_no_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2990 if (CLI_HELP_REQUESTED
)
2991 return cli_arg_help(cli
, argc
> 1,
2992 "USER", "Username of session to remove filters from", NULL
);
2994 if (!config
->cluster_iam_master
)
2996 cli_error(cli
, "Can't do this on a slave. Do it on %s",
2997 fmtaddr(config
->cluster_master_address
, 0));
3004 cli_error(cli
, "Specify a user to remove filters from");
3008 for (i
= 0; i
< argc
; i
++)
3010 if (!(s
= sessionbyuser(argv
[i
])))
3012 cli_error(cli
, "User %s is not connected", argv
[i
]);
3016 if (session
[s
].filter_in
|| session
[s
].filter_out
)
3018 cli_print(cli
, "Removing filters from user %s", argv
[i
]);
3019 cli_session_actions
[s
].action
|= CLI_SESS_NOFILTER
;
3023 cli_error(cli
, "User %s not filtered", argv
[i
]);
3030 static int cmd_show_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
3034 if (CLI_HELP_REQUESTED
)
3035 return cli_arg_help(cli
, argc
> 1, "NAME", "Filter name", NULL
);
3039 cli_error(cli
, "Specify a filter name");
3043 for (i
= 0; i
< argc
; i
++)
3045 int f
= find_access_list(argv
[i
]);
3046 ip_filter_rulet
*rules
;
3048 if (f
< 0 || !*ip_filters
[f
].name
)
3050 cli_error(cli
, "Access-list %s not defined", argv
[i
]);
3057 cli_print(cli
, "%s IP access list %s",
3058 ip_filters
[f
].extended
? "Extended" : "Standard",
3059 ip_filters
[f
].name
);
3061 for (rules
= ip_filters
[f
].rules
; rules
->action
; rules
++)
3063 char const *r
= show_access_list_rule(ip_filters
[f
].extended
, rules
);
3065 cli_print(cli
, "%s (%d match%s)", r
,
3066 rules
->counter
, rules
->counter
> 1 ? "es" : "");
3068 cli_print(cli
, "%s", r
);
3075 // Convert a string in the form of abcd.ef12.3456 into char[6]
3076 void parsemac(char *string
, char mac
[6])
3078 if (sscanf(string
, "%02x%02x.%02x%02x.%02x%02x", (unsigned int *)&mac
[0], (unsigned int *)&mac
[1], (unsigned int *)&mac
[2], (unsigned int *)&mac
[3], (unsigned int *)&mac
[4], (unsigned int *)&mac
[5]) == 6)
3080 if (sscanf(string
, "%02x%02x:%02x%02x:%02x%02x", (unsigned int *)&mac
[0], (unsigned int *)&mac
[1], (unsigned int *)&mac
[2], (unsigned int *)&mac
[3], (unsigned int *)&mac
[4], (unsigned int *)&mac
[5]) == 6)