1 // L2TPNS Command Line Interface
4 char const *cvs_name
= "$Name: $";
5 char const *cvs_id_cli
= "$Id: cli.c,v 1.44 2004/12/18 01:20:05 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_UNPRIVILEGED
, 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 LOG(3, 0, 0, "Accepted connection to CLI from %s\n", fmtaddr(addr
.sin_addr
.s_addr
, 0));
294 require_auth
= addr
.sin_addr
.s_addr
!= inet_addr("127.0.0.1");
297 LOG(0, 0, 0, "getpeername() failed on cli socket. Requiring authentication: %s\n", strerror(errno
));
301 LOG(3, 0, 0, "CLI is remote, requiring authentication\n");
302 if (!cli
->users
) /* paranoia */
304 LOG(0, 0, 0, "No users for remote authentication! Exiting CLI\n");
310 /* no username/pass required */
317 debug_rb_tail
= ringbuffer
->tail
;
319 memset(&debug_flags
, 0, sizeof(debug_flags
));
320 debug_flags
.critical
= 1;
322 cli_loop(cli
, sockfd
);
325 LOG(3, 0, 0, "Closed CLI connection from %s\n", fmtaddr(addr
.sin_addr
.s_addr
, 0));
329 static void cli_print_log(struct cli_def
*cli
, char *string
)
331 LOG(3, 0, 0, "%s\n", string
);
334 void cli_do_file(FILE *fh
)
336 LOG(3, 0, 0, "Reading configuration file\n");
337 cli_print_callback(cli
, cli_print_log
);
338 cli_file(cli
, fh
, PRIVILEGE_PRIVILEGED
, MODE_CONFIG
);
339 cli_print_callback(cli
, NULL
);
342 int cli_arg_help(struct cli_def
*cli
, int cr_ok
, char *entry
, ...)
353 if ((p
= strchr(entry
, '%')) && !strchr(p
+1, '%') && p
[1] == 'd')
355 int v
= va_arg(ap
, int);
356 snprintf(buf
, sizeof(buf
), entry
, v
);
362 desc
= va_arg(ap
, char *);
364 cli_print(cli
, " %-20s %s", p
, desc
);
366 cli_print(cli
, " %s", p
);
368 entry
= desc
? va_arg(ap
, char *) : 0;
373 cli_print(cli
, " <cr>");
378 static int cmd_show_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
382 if (CLI_HELP_REQUESTED
)
383 return cli_arg_help(cli
, 1,
384 "<1-%d>", MAXSESSION
-1, "Show specific session by id",
390 // Show individual session
391 for (i
= 0; i
< argc
; i
++)
393 unsigned int s
, b_in
, b_out
;
395 if (s
<= 0 || s
>= MAXSESSION
)
397 cli_print(cli
, "Invalid session id \"%s\"", argv
[i
]);
400 cli_print(cli
, "\r\nSession %d:", s
);
401 cli_print(cli
, "\tUser:\t\t%s", session
[s
].user
[0] ? session
[s
].user
: "none");
402 cli_print(cli
, "\tCalling Num:\t%s", session
[s
].calling
);
403 cli_print(cli
, "\tCalled Num:\t%s", session
[s
].called
);
404 cli_print(cli
, "\tTunnel ID:\t%d", session
[s
].tunnel
);
405 cli_print(cli
, "\tIP address:\t%s", fmtaddr(htonl(session
[s
].ip
), 0));
406 cli_print(cli
, "\tUnique SID:\t%lu", session
[s
].unique_id
);
407 cli_print(cli
, "\tIdle time:\t%u seconds", abs(time_now
- session
[s
].last_packet
));
408 cli_print(cli
, "\tNext Recv:\t%u", session
[s
].nr
);
409 cli_print(cli
, "\tNext Send:\t%u", session
[s
].ns
);
410 cli_print(cli
, "\tBytes In/Out:\t%u/%u", session
[s
].total_cout
, session
[s
].total_cin
);
411 cli_print(cli
, "\tPkts In/Out:\t%u/%u", session
[s
].pout
, session
[s
].pin
);
412 cli_print(cli
, "\tMRU:\t\t%d", session
[s
].mru
);
413 cli_print(cli
, "\tRadius Session:\t%u", session
[s
].radius
);
414 cli_print(cli
, "\tRx Speed:\t%u", session
[s
].rx_connect_speed
);
415 cli_print(cli
, "\tTx Speed:\t%u", session
[s
].tx_connect_speed
);
416 if (session
[s
].filter_in
&& session
[s
].filter_in
<= MAXFILTER
)
417 cli_print(cli
, "\tFilter in:\t%u (%s)", session
[s
].filter_in
, ip_filters
[session
[s
].filter_in
- 1].name
);
418 if (session
[s
].filter_out
&& session
[s
].filter_out
<= MAXFILTER
)
419 cli_print(cli
, "\tFilter out:\t%u (%s)", session
[s
].filter_out
, ip_filters
[session
[s
].filter_out
- 1].name
);
420 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
421 cli_print(cli
, "\tIntercepted:\t%s:%d", fmtaddr(session
[s
].snoop_ip
, 0), session
[s
] .snoop_port
);
423 cli_print(cli
, "\tIntercepted:\tno");
425 cli_print(cli
, "\tWalled Garden:\t%s", session
[s
].walled_garden
? "YES" : "no");
427 int t
= (session
[s
].throttle_in
|| session
[s
].throttle_out
);
428 cli_print(cli
, "\tThrottled:\t%s%s%.0d%s%s%.0d%s%s",
429 t
? "YES" : "no", t
? " (" : "",
430 session
[s
].throttle_in
, session
[s
].throttle_in
? "kbps" : t
? "-" : "",
432 session
[s
].throttle_out
, session
[s
].throttle_out
? "kbps" : t
? "-" : "",
436 b_in
= session
[s
].tbf_in
;
437 b_out
= session
[s
].tbf_out
;
439 cli_print(cli
, "\t\t\t%5s %6s %6s | %7s %7s %8s %8s %8s %8s",
440 "Rate", "Credit", "Queued", "ByteIn", "PackIn",
441 "ByteSent", "PackSent", "PackDrop", "PackDelay");
444 cli_print(cli
, "\tTBFI#%d%1s%s\t%5d %6d %6d | %7d %7d %8d %8d %8d %8d",
446 (filter_list
[b_in
].next
? "*" : " "),
447 (b_in
< 100 ? "\t" : ""),
448 filter_list
[b_in
].rate
* 8,
449 filter_list
[b_in
].credit
,
450 filter_list
[b_in
].queued
,
451 filter_list
[b_in
].b_queued
,
452 filter_list
[b_in
].p_queued
,
453 filter_list
[b_in
].b_sent
,
454 filter_list
[b_in
].p_sent
,
455 filter_list
[b_in
].p_dropped
,
456 filter_list
[b_in
].p_delayed
);
459 cli_print(cli
, "\tTBFO#%d%1s%s\t%5d %6d %6d | %7d %7d %8d %8d %8d %8d",
461 (filter_list
[b_out
].next
? "*" : " "),
462 (b_out
< 100 ? "\t" : ""),
463 filter_list
[b_out
].rate
* 8,
464 filter_list
[b_out
].credit
,
465 filter_list
[b_out
].queued
,
466 filter_list
[b_out
].b_queued
,
467 filter_list
[b_out
].p_queued
,
468 filter_list
[b_out
].b_sent
,
469 filter_list
[b_out
].p_sent
,
470 filter_list
[b_out
].p_dropped
,
471 filter_list
[b_out
].p_delayed
);
478 cli_print(cli
, "%5s %4s %-32s %-15s %s %s %s %10s %10s %10s %4s %-15s %s",
493 for (i
= 1; i
< MAXSESSION
; i
++)
495 if (!session
[i
].opened
) continue;
496 cli_print(cli
, "%5d %4d %-32s %-15s %s %s %s %10u %10lu %10lu %4u %-15s %s",
499 session
[i
].user
[0] ? session
[i
].user
: "*",
500 fmtaddr(htonl(session
[i
].ip
), 0),
501 (session
[i
].snoop_ip
&& session
[i
].snoop_port
) ? "Y" : "N",
502 (session
[i
].throttle_in
|| session
[i
].throttle_out
) ? "Y" : "N",
503 (session
[i
].walled_garden
) ? "Y" : "N",
504 abs(time_now
- (unsigned long)session
[i
].opened
),
505 (unsigned long)session
[i
].total_cout
,
506 (unsigned long)session
[i
].total_cin
,
507 abs(time_now
- (session
[i
].last_packet
? session
[i
].last_packet
: time_now
)),
508 fmtaddr(htonl(tunnel
[ session
[i
].tunnel
].ip
), 1),
509 session
[i
].calling
[0] ? session
[i
].calling
: "*");
514 static int cmd_show_tunnels(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
516 int i
, x
, show_all
= 0;
524 if (CLI_HELP_REQUESTED
)
527 return cli_arg_help(cli
, 1,
528 "<1-%d>", MAXTUNNEL
-1, "Show specific tunnel by id",
531 return cli_arg_help(cli
, 1,
532 "all", "Show all tunnels, including unused",
533 "<1-%d>", MAXTUNNEL
-1, "Show specific tunnel by id",
540 if (strcmp(argv
[0], "all") == 0)
546 // Show individual tunnel
547 for (i
= 0; i
< argc
; i
++)
552 if (t
<= 0 || t
>= MAXTUNNEL
)
554 cli_print(cli
, "Invalid tunnel id \"%s\"", argv
[i
]);
557 cli_print(cli
, "\r\nTunnel %d:", t
);
558 cli_print(cli
, "\tState:\t\t%s", states
[tunnel
[t
].state
]);
559 cli_print(cli
, "\tHostname:\t%s", tunnel
[t
].hostname
[0] ? tunnel
[t
].hostname
: "(none)");
560 cli_print(cli
, "\tRemote IP:\t%s", fmtaddr(htonl(tunnel
[t
].ip
), 0));
561 cli_print(cli
, "\tRemote Port:\t%d", tunnel
[t
].port
);
562 cli_print(cli
, "\tRx Window:\t%u", tunnel
[t
].window
);
563 cli_print(cli
, "\tNext Recv:\t%u", tunnel
[t
].nr
);
564 cli_print(cli
, "\tNext Send:\t%u", tunnel
[t
].ns
);
565 cli_print(cli
, "\tQueue Len:\t%u", tunnel
[t
].controlc
);
566 cli_print(cli
, "\tLast Packet Age:%u", (unsigned)(time_now
- tunnel
[t
].last
));
568 for (x
= 0; x
< MAXSESSION
; x
++)
569 if (session
[x
].tunnel
== t
&& session
[x
].opened
&& !session
[x
].die
)
570 sprintf(s
, "%s%u ", s
, x
);
572 cli_print(cli
, "\tSessions:\t%s", s
);
578 // Show tunnel summary
579 cli_print(cli
, "%4s %20s %20s %6s %s",
586 for (i
= 1; i
< MAXTUNNEL
; i
++)
589 if (!show_all
&& (!tunnel
[i
].ip
|| tunnel
[i
].die
)) continue;
591 for (x
= 0; x
< MAXSESSION
; x
++) if (session
[x
].tunnel
== i
&& session
[x
].opened
&& !session
[x
].die
) sessions
++;
592 cli_print(cli
, "%4d %20s %20s %6s %6d",
594 *tunnel
[i
].hostname
? tunnel
[i
].hostname
: "(null)",
595 fmtaddr(htonl(tunnel
[i
].ip
), 0),
596 states
[tunnel
[i
].state
],
603 static int cmd_show_users(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
610 if (CLI_HELP_REQUESTED
)
611 return cli_arg_help(cli
, 1,
612 "USER", "Show details for specific username",
615 for (i
= 0; i
< MAXSESSION
; i
++)
617 if (!session
[i
].opened
) continue;
618 if (!session
[i
].user
[0]) continue;
622 for (j
= 0; j
< argc
&& sargc
< 32; j
++)
624 if (strcmp(argv
[j
], session
[i
].user
) == 0)
626 snprintf(sid
[sargc
], sizeof(sid
[0]), "%d", i
);
627 sargv
[sargc
] = sid
[sargc
];
635 cli_print(cli
, "%s", session
[i
].user
);
639 return cmd_show_session(cli
, "users", sargv
, sargc
);
644 static int cmd_show_counters(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
646 if (CLI_HELP_REQUESTED
)
647 return CLI_HELP_NO_ARGS
;
649 cli_print(cli
, "%-10s %-8s %-10s %-8s", "Ethernet", "Bytes", "Packets", "Errors");
650 cli_print(cli
, "%-10s %8u %8u %8u", "RX",
651 GET_STAT(tun_rx_bytes
),
652 GET_STAT(tun_rx_packets
),
653 GET_STAT(tun_rx_errors
));
654 cli_print(cli
, "%-10s %8u %8u %8u", "TX",
655 GET_STAT(tun_tx_bytes
),
656 GET_STAT(tun_tx_packets
),
657 GET_STAT(tun_tx_errors
));
660 cli_print(cli
, "%-10s %-8s %-10s %-8s %-8s", "Tunnel", "Bytes", "Packets", "Errors", "Retries");
661 cli_print(cli
, "%-10s %8u %8u %8u", "RX",
662 GET_STAT(tunnel_rx_bytes
),
663 GET_STAT(tunnel_rx_packets
),
664 GET_STAT(tunnel_rx_errors
));
665 cli_print(cli
, "%-10s %8u %8u %8u %8u", "TX",
666 GET_STAT(tunnel_tx_bytes
),
667 GET_STAT(tunnel_tx_packets
),
668 GET_STAT(tunnel_tx_errors
),
669 GET_STAT(tunnel_retries
));
672 cli_print(cli
, "%-30s%-10s", "Counter", "Value");
673 cli_print(cli
, "-----------------------------------------");
674 cli_print(cli
, "%-30s%u", "radius_retries", GET_STAT(radius_retries
));
675 cli_print(cli
, "%-30s%u", "arp_sent", GET_STAT(arp_sent
));
676 cli_print(cli
, "%-30s%u", "packets_snooped", GET_STAT(packets_snooped
));
677 cli_print(cli
, "%-30s%u", "tunnel_created", GET_STAT(tunnel_created
));
678 cli_print(cli
, "%-30s%u", "session_created", GET_STAT(session_created
));
679 cli_print(cli
, "%-30s%u", "tunnel_timeout", GET_STAT(tunnel_timeout
));
680 cli_print(cli
, "%-30s%u", "session_timeout", GET_STAT(session_timeout
));
681 cli_print(cli
, "%-30s%u", "radius_timeout", GET_STAT(radius_timeout
));
682 cli_print(cli
, "%-30s%u", "radius_overflow", GET_STAT(radius_overflow
));
683 cli_print(cli
, "%-30s%u", "tunnel_overflow", GET_STAT(tunnel_overflow
));
684 cli_print(cli
, "%-30s%u", "session_overflow", GET_STAT(session_overflow
));
685 cli_print(cli
, "%-30s%u", "ip_allocated", GET_STAT(ip_allocated
));
686 cli_print(cli
, "%-30s%u", "ip_freed", GET_STAT(ip_freed
));
687 cli_print(cli
, "%-30s%u", "cluster_forwarded", GET_STAT(c_forwarded
));
688 cli_print(cli
, "%-30s%u", "recv_forward", GET_STAT(recv_forward
));
689 cli_print(cli
, "%-30s%u", "select_called", GET_STAT(select_called
));
690 cli_print(cli
, "%-30s%u", "multi_read_used", GET_STAT(multi_read_used
));
691 cli_print(cli
, "%-30s%u", "multi_read_exceeded", GET_STAT(multi_read_exceeded
));
695 cli_print(cli
, "\n%-30s%-10s", "Counter", "Value");
696 cli_print(cli
, "-----------------------------------------");
697 cli_print(cli
, "%-30s%u", "call_processtun", GET_STAT(call_processtun
));
698 cli_print(cli
, "%-30s%u", "call_processipout", GET_STAT(call_processipout
));
699 cli_print(cli
, "%-30s%u", "call_processudp", GET_STAT(call_processudp
));
700 cli_print(cli
, "%-30s%u", "call_processpap", GET_STAT(call_processpap
));
701 cli_print(cli
, "%-30s%u", "call_processchap", GET_STAT(call_processchap
));
702 cli_print(cli
, "%-30s%u", "call_processlcp", GET_STAT(call_processlcp
));
703 cli_print(cli
, "%-30s%u", "call_processipcp", GET_STAT(call_processipcp
));
704 cli_print(cli
, "%-30s%u", "call_processipin", GET_STAT(call_processipin
));
705 cli_print(cli
, "%-30s%u", "call_processccp", GET_STAT(call_processccp
));
706 cli_print(cli
, "%-30s%u", "call_processrad", GET_STAT(call_processrad
));
707 cli_print(cli
, "%-30s%u", "call_sendarp", GET_STAT(call_sendarp
));
708 cli_print(cli
, "%-30s%u", "call_sendipcp", GET_STAT(call_sendipcp
));
709 cli_print(cli
, "%-30s%u", "call_sendchap", GET_STAT(call_sendchap
));
710 cli_print(cli
, "%-30s%u", "call_sessionbyip", GET_STAT(call_sessionbyip
));
711 cli_print(cli
, "%-30s%u", "call_sessionbyuser", GET_STAT(call_sessionbyuser
));
712 cli_print(cli
, "%-30s%u", "call_tunnelsend", GET_STAT(call_tunnelsend
));
713 cli_print(cli
, "%-30s%u", "call_tunnelkill", GET_STAT(call_tunnelkill
));
714 cli_print(cli
, "%-30s%u", "call_tunnelshutdown", GET_STAT(call_tunnelshutdown
));
715 cli_print(cli
, "%-30s%u", "call_sessionkill", GET_STAT(call_sessionkill
));
716 cli_print(cli
, "%-30s%u", "call_sessionshutdown", GET_STAT(call_sessionshutdown
));
717 cli_print(cli
, "%-30s%u", "call_sessionsetup", GET_STAT(call_sessionsetup
));
718 cli_print(cli
, "%-30s%u", "call_assign_ip_address", GET_STAT(call_assign_ip_address
));
719 cli_print(cli
, "%-30s%u", "call_free_ip_address", GET_STAT(call_free_ip_address
));
720 cli_print(cli
, "%-30s%u", "call_dump_acct_info", GET_STAT(call_dump_acct_info
));
721 cli_print(cli
, "%-30s%u", "call_radiussend", GET_STAT(call_radiussend
));
722 cli_print(cli
, "%-30s%u", "call_radiusretry", GET_STAT(call_radiusretry
));
727 static int cmd_show_version(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
733 if (CLI_HELP_REQUESTED
)
734 return cli_arg_help(cli
, 1,
735 "tag", "Include CVS release tag",
736 "file", "Include file versions",
739 for (i
= 0; i
< argc
; i
++)
740 if (!strcmp(argv
[i
], "tag"))
742 else if (!strcmp(argv
[i
], "file"))
745 cli_print(cli
, "L2TPNS %s", VERSION
);
748 char const *p
= strchr(cvs_name
, ':');
760 e
= strpbrk(p
, " \t$");
761 cli_print(cli
, "Tag: %.*s", (int) (e
? e
- p
+ 1 : strlen(p
)), p
);
766 extern linked_list
*loaded_plugins
;
769 cli_print(cli
, "Files:");
770 cli_print(cli
, " %s", cvs_id_arp
);
772 cli_print(cli
, " %s", cvs_id_bgp
);
774 cli_print(cli
, " %s", cvs_id_cli
);
775 cli_print(cli
, " %s", cvs_id_cluster
);
776 cli_print(cli
, " %s", cvs_id_constants
);
777 cli_print(cli
, " %s", cvs_id_control
);
778 cli_print(cli
, " %s", cvs_id_icmp
);
779 cli_print(cli
, " %s", cvs_id_l2tpns
);
780 cli_print(cli
, " %s", cvs_id_ll
);
781 cli_print(cli
, " %s", cvs_id_md5
);
782 cli_print(cli
, " %s", cvs_id_ppp
);
783 cli_print(cli
, " %s", cvs_id_radius
);
784 cli_print(cli
, " %s", cvs_id_tbf
);
785 cli_print(cli
, " %s", cvs_id_util
);
787 ll_reset(loaded_plugins
);
788 while ((p
= ll_next(loaded_plugins
)))
790 char const **id
= dlsym(p
, "cvs_id");
792 cli_print(cli
, " %s", *id
);
799 static int cmd_show_pool(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
802 int used
= 0, free
= 0, show_all
= 0;
804 if (!config
->cluster_iam_master
)
806 cli_print(cli
, "Can't do this on a slave. Do it on %s",
807 fmtaddr(config
->cluster_master_address
, 0));
812 if (CLI_HELP_REQUESTED
)
815 return cli_arg_help(cli
, 1, NULL
);
817 return cli_arg_help(cli
, 1,
818 "all", "Show all pool addresses, including unused",
822 if (argc
> 0 && strcmp(argv
[0], "all") == 0)
826 cli_print(cli
, "%-15s %4s %8s %s", "IP Address", "Used", "Session", "User");
827 for (i
= 0; i
< MAXIPPOOL
; i
++)
829 if (!ip_address_pool
[i
].address
) continue;
830 if (ip_address_pool
[i
].assigned
)
832 cli_print(cli
, "%-15s\tY %8d %s",
833 fmtaddr(htonl(ip_address_pool
[i
].address
), 0),
834 ip_address_pool
[i
].session
,
835 session
[ip_address_pool
[i
].session
].user
);
841 if (ip_address_pool
[i
].last
)
842 cli_print(cli
, "%-15s\tN %8s [%s] %ds",
843 fmtaddr(htonl(ip_address_pool
[i
].address
), 0), "",
844 ip_address_pool
[i
].user
, (int) time_now
- ip_address_pool
[i
].last
);
847 cli_print(cli
, "%-15s\tN", fmtaddr(htonl(ip_address_pool
[i
].address
), 0));
854 cli_print(cli
, "(Not displaying unused addresses)");
856 cli_print(cli
, "\r\nFree: %d\r\nUsed: %d", free
, used
);
860 static FILE *save_config_fh
= 0;
861 static void print_save_config(struct cli_def
*cli
, char *string
)
864 fprintf(save_config_fh
, "%s\n", string
);
867 static int cmd_write_memory(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
869 if (CLI_HELP_REQUESTED
)
870 return CLI_HELP_NO_ARGS
;
872 if ((save_config_fh
= fopen(config
->config_file
, "w")))
874 cli_print(cli
, "Writing configuration");
875 cli_print_callback(cli
, print_save_config
);
876 cmd_show_run(cli
, command
, argv
, argc
);
877 cli_print_callback(cli
, NULL
);
878 fclose(save_config_fh
);
883 cli_print(cli
, "Error writing configuration: %s", strerror(errno
));
888 static char const *show_access_list_rule(int extended
, ip_filter_rulet
*rule
);
890 static int cmd_show_run(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
893 char ipv6addr
[INET6_ADDRSTRLEN
];
895 if (CLI_HELP_REQUESTED
)
896 return CLI_HELP_NO_ARGS
;
898 cli_print(cli
, "# Current configuration:");
900 for (i
= 0; config_values
[i
].key
; i
++)
902 void *value
= ((void *)config
) + config_values
[i
].offset
;
903 if (config_values
[i
].type
== STRING
)
904 cli_print(cli
, "set %s \"%.*s\"", config_values
[i
].key
, config_values
[i
].size
, (char *) value
);
905 else if (config_values
[i
].type
== IPv4
)
906 cli_print(cli
, "set %s %s", config_values
[i
].key
, fmtaddr(*(in_addr_t
*) value
, 0));
907 else if (config_values
[i
].type
== IPv6
)
908 cli_print(cli
, "set %s %s", config_values
[i
].key
, inet_ntop(AF_INET6
, value
, ipv6addr
, INET6_ADDRSTRLEN
));
909 else if (config_values
[i
].type
== SHORT
)
910 cli_print(cli
, "set %s %hu", config_values
[i
].key
, *(short *) value
);
911 else if (config_values
[i
].type
== BOOL
)
912 cli_print(cli
, "set %s %s", config_values
[i
].key
, (*(int *) value
) ? "yes" : "no");
913 else if (config_values
[i
].type
== INT
)
914 cli_print(cli
, "set %s %d", config_values
[i
].key
, *(int *) value
);
915 else if (config_values
[i
].type
== UNSIGNED_LONG
)
916 cli_print(cli
, "set %s %lu", config_values
[i
].key
, *(unsigned long *) value
);
917 else if (config_values
[i
].type
== MAC
)
918 cli_print(cli
, "set %s %02x%02x.%02x%02x.%02x%02x", config_values
[i
].key
,
919 *(unsigned short *) (value
+ 0),
920 *(unsigned short *) (value
+ 1),
921 *(unsigned short *) (value
+ 2),
922 *(unsigned short *) (value
+ 3),
923 *(unsigned short *) (value
+ 4),
924 *(unsigned short *) (value
+ 5));
927 cli_print(cli
, "# Plugins");
928 for (i
= 0; i
< MAXPLUGINS
; i
++)
930 if (*config
->plugins
[i
])
932 cli_print(cli
, "load plugin \"%s\"", config
->plugins
[i
]);
937 if (config
->as_number
)
942 cli_print(cli
, "# BGP");
943 cli_print(cli
, "router bgp %u", config
->as_number
);
944 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
946 if (!config
->neighbour
[i
].name
[0])
949 cli_print(cli
, " neighbour %s remote-as %u", config
->neighbour
[i
].name
, config
->neighbour
[i
].as
);
951 k
= config
->neighbour
[i
].keepalive
;
952 h
= config
->neighbour
[i
].hold
;
959 k
= BGP_KEEPALIVE_TIME
;
965 cli_print(cli
, " neighbour %s timers %d %d", config
->neighbour
[i
].name
, k
, h
);
970 cli_print(cli
, "# Filters");
971 for (i
= 0; i
< MAXFILTER
; i
++)
973 ip_filter_rulet
*rules
;
974 if (!*ip_filters
[i
].name
)
977 cli_print(cli
, "ip access-list %s %s",
978 ip_filters
[i
].extended
? "extended" : "standard",
981 rules
= ip_filters
[i
].rules
;
982 while (rules
->action
)
983 cli_print(cli
, "%s", show_access_list_rule(ip_filters
[i
].extended
, rules
++));
986 cli_print(cli
, "# end");
990 static int cmd_show_radius(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
992 int i
, free
= 0, used
= 0, show_all
= 0;
1003 if (CLI_HELP_REQUESTED
)
1006 return cli_arg_help(cli
, 1, NULL
);
1008 return cli_arg_help(cli
, 1,
1009 "all", "Show all RADIUS sessions, including unused",
1013 cli_print(cli
, "%6s%7s%5s%6s%9s%9s%4s", "ID", "Radius", "Sock", "State", "Session", "Retry", "Try");
1017 if (argc
> 0 && strcmp(argv
[0], "all") == 0)
1020 for (i
= 1; i
< MAXRADIUS
; i
++)
1022 if (radius
[i
].state
== RADIUSNULL
)
1027 if (!show_all
&& radius
[i
].state
== RADIUSNULL
) continue;
1029 cli_print(cli
, "%6d%7d%5d%6s%9d%9u%4d",
1033 states
[radius
[i
].state
],
1039 cli_print(cli
, "\r\nFree: %d\r\nUsed: %d", free
, used
);
1044 static int cmd_show_plugins(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1048 if (CLI_HELP_REQUESTED
)
1049 return CLI_HELP_NO_ARGS
;
1051 cli_print(cli
, "Plugins currently loaded:");
1052 for (i
= 0; i
< MAXPLUGINS
; i
++)
1053 if (*config
->plugins
[i
])
1054 cli_print(cli
, " %s", config
->plugins
[i
]);
1059 static int cmd_show_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1063 if (CLI_HELP_REQUESTED
)
1064 return CLI_HELP_NO_ARGS
;
1066 cli_print(cli
, "%5s %4s %-32s %7s %6s %6s %6s",
1075 for (i
= 0; i
< MAXSESSION
; i
++)
1077 if (session
[i
].throttle_in
|| session
[i
].throttle_out
)
1078 cli_print(cli
, "%5d %4d %-32s %6d %6d %6d %6d",
1082 session
[i
].throttle_in
,
1083 session
[i
].throttle_out
,
1085 session
[i
].tbf_out
);
1091 static int cmd_show_banana(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1093 if (CLI_HELP_REQUESTED
)
1094 return CLI_HELP_NO_ARGS
;
1096 cli_print(cli
, " _\n"
1102 " ( \\ `. `-. _,.-:\\\n"
1103 " \\ \\ `. `-._ __..--' ,-';/\n"
1104 " \\ `. `-. `-..___..---' _.--' ,'/\n"
1105 " `. `. `-._ __..--' ,' /\n"
1106 " `. `-_ ``--..'' _.-' ,'\n"
1107 " `-_ `-.___ __,--' ,'\n"
1108 " `-.__ `----\"\"\" __.-'\n"
1109 "hh `--..____..--'");
1114 static int cmd_clear_counters(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
, "Counters cleared");
1120 SET_STAT(last_reset
, time(NULL
));
1124 static int cmd_drop_user(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1129 if (CLI_HELP_REQUESTED
)
1130 return cli_arg_help(cli
, argc
> 1,
1131 "USER", "Username of session to drop", NULL
);
1133 if (!config
->cluster_iam_master
)
1135 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1136 fmtaddr(config
->cluster_master_address
, 0));
1143 cli_print(cli
, "Specify a user to drop");
1147 for (i
= 0; i
< argc
; i
++)
1149 if (!(s
= sessionbyuser(argv
[i
])))
1151 cli_print(cli
, "User %s is not connected", argv
[i
]);
1155 if (session
[s
].ip
&& session
[s
].opened
&& !session
[s
].die
)
1157 cli_print(cli
, "Dropping user %s", session
[s
].user
);
1158 cli_session_actions
[s
].action
|= CLI_SESS_KILL
;
1165 static int cmd_drop_tunnel(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1170 if (CLI_HELP_REQUESTED
)
1171 return cli_arg_help(cli
, argc
> 1,
1172 "<1-%d>", MAXTUNNEL
-1, "Tunnel id to drop", NULL
);
1174 if (!config
->cluster_iam_master
)
1176 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1177 fmtaddr(config
->cluster_master_address
, 0));
1184 cli_print(cli
, "Specify a tunnel to drop");
1188 for (i
= 0; i
< argc
; i
++)
1190 if ((t
= atol(argv
[i
])) <= 0 || (t
>= MAXTUNNEL
))
1192 cli_print(cli
, "Invalid tunnel ID (1-%d)", MAXTUNNEL
-1);
1198 cli_print(cli
, "Tunnel %d is not connected", t
);
1204 cli_print(cli
, "Tunnel %d is already being shut down", t
);
1208 cli_print(cli
, "Tunnel %d shut down (%s)", t
, tunnel
[t
].hostname
);
1209 cli_tunnel_actions
[t
].action
|= CLI_TUN_KILL
;
1215 static int cmd_drop_session(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1220 if (CLI_HELP_REQUESTED
)
1221 return cli_arg_help(cli
, argc
> 1,
1222 "<1-%d>", MAXSESSION
-1, "Session id to drop", NULL
);
1224 if (!config
->cluster_iam_master
)
1226 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1227 fmtaddr(config
->cluster_master_address
, 0));
1234 cli_print(cli
, "Specify a session id to drop");
1238 for (i
= 0; i
< argc
; i
++)
1240 if ((s
= atol(argv
[i
])) <= 0 || (s
> MAXSESSION
))
1242 cli_print(cli
, "Invalid session ID (1-%d)", MAXSESSION
-1);
1246 if (session
[s
].ip
&& session
[s
].opened
&& !session
[s
].die
)
1248 cli_print(cli
, "Dropping session %d", s
);
1249 cli_session_actions
[s
].action
|= CLI_SESS_KILL
;
1253 cli_print(cli
, "Session %d is not active.", s
);
1260 static int cmd_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1266 if (CLI_HELP_REQUESTED
)
1271 return cli_arg_help(cli
, 0,
1272 "USER", "Username of session to snoop", NULL
);
1275 return cli_arg_help(cli
, 0,
1276 "A.B.C.D", "IP address of snoop destination", NULL
);
1279 return cli_arg_help(cli
, 0,
1280 "N", "Port of snoop destination", NULL
);
1284 return cli_arg_help(cli
, 1, NULL
);
1291 if (!config
->cluster_iam_master
)
1293 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1294 fmtaddr(config
->cluster_master_address
, 0));
1301 cli_print(cli
, "Specify username, ip and port");
1305 if (!(s
= sessionbyuser(argv
[0])))
1307 cli_print(cli
, "User %s is not connected", argv
[0]);
1311 ip
= inet_addr(argv
[1]);
1312 if (!ip
|| ip
== INADDR_NONE
)
1314 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[1]);
1318 port
= atoi(argv
[2]);
1321 cli_print(cli
, "Invalid port %s", argv
[2]);
1325 cli_print(cli
, "Snooping user %s to %s:%d", argv
[0], fmtaddr(ip
, 0), port
);
1326 cli_session_actions
[s
].snoop_ip
= ip
;
1327 cli_session_actions
[s
].snoop_port
= port
;
1328 cli_session_actions
[s
].action
|= CLI_SESS_SNOOP
;
1333 static int cmd_no_snoop(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1338 if (CLI_HELP_REQUESTED
)
1339 return cli_arg_help(cli
, argc
> 1,
1340 "USER", "Username of session to unsnoop", NULL
);
1342 if (!config
->cluster_iam_master
)
1344 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1345 fmtaddr(config
->cluster_master_address
, 0));
1352 cli_print(cli
, "Specify a user to unsnoop");
1356 for (i
= 0; i
< argc
; i
++)
1358 if (!(s
= sessionbyuser(argv
[i
])))
1360 cli_print(cli
, "User %s is not connected", argv
[i
]);
1364 cli_print(cli
, "Not snooping user %s", argv
[i
]);
1365 cli_session_actions
[s
].action
|= CLI_SESS_NOSNOOP
;
1371 static int cmd_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1378 throttle USER - throttle in/out to default rate
1379 throttle USER RATE - throttle in/out to default rate
1380 throttle USER in RATE - throttle input only
1381 throttle USER out RATE - throttle output only
1382 throttle USER in RATE out RATE - throttle both
1385 if (CLI_HELP_REQUESTED
)
1390 return cli_arg_help(cli
, 0,
1391 "USER", "Username of session to throttle", NULL
);
1394 return cli_arg_help(cli
, 1,
1395 "RATE", "Rate in kbps (in and out)",
1396 "in", "Select incoming rate",
1397 "out", "Select outgoing rate", NULL
);
1400 return cli_arg_help(cli
, 1,
1401 "in", "Select incoming rate",
1402 "out", "Select outgoing rate", NULL
);
1405 if (isdigit(argv
[1][0]))
1406 return cli_arg_help(cli
, 1, NULL
);
1409 return cli_arg_help(cli
, 0, "RATE", "Rate in kbps", NULL
);
1412 return cli_arg_help(cli
, argc
> 1, NULL
);
1416 if (!config
->cluster_iam_master
)
1418 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1419 fmtaddr(config
->cluster_master_address
, 0));
1426 cli_print(cli
, "Specify a user to throttle");
1430 if (!(s
= sessionbyuser(argv
[0])))
1432 cli_print(cli
, "User %s is not connected", argv
[0]);
1438 rate_in
= rate_out
= config
->rl_rate
;
1442 rate_in
= rate_out
= atoi(argv
[1]);
1445 cli_print(cli
, "Invalid rate \"%s\"", argv
[1]);
1449 else if (argc
== 3 || argc
== 5)
1452 for (i
= 1; i
< argc
- 1; i
+= 2)
1455 if (MATCH("in", argv
[i
]))
1456 r
= rate_in
= atoi(argv
[i
+1]);
1457 else if (MATCH("out", argv
[i
]))
1458 r
= rate_out
= atoi(argv
[i
+1]);
1462 cli_print(cli
, "Invalid rate specification \"%s %s\"", argv
[i
], argv
[i
+1]);
1469 cli_print(cli
, "Invalid arguments");
1473 if ((rate_in
&& session
[s
].throttle_in
) || (rate_out
&& session
[s
].throttle_out
))
1475 cli_print(cli
, "User %s already throttled, unthrottle first", argv
[0]);
1479 cli_session_actions
[s
].throttle_in
= cli_session_actions
[s
].throttle_out
= -1;
1480 if (rate_in
&& session
[s
].throttle_in
!= rate_in
)
1481 cli_session_actions
[s
].throttle_in
= rate_in
;
1483 if (rate_out
&& session
[s
].throttle_out
!= rate_out
)
1484 cli_session_actions
[s
].throttle_out
= rate_out
;
1486 if (cli_session_actions
[s
].throttle_in
== -1 &&
1487 cli_session_actions
[s
].throttle_out
== -1)
1489 cli_print(cli
, "User %s already throttled at this rate", argv
[0]);
1493 cli_print(cli
, "Throttling user %s", argv
[0]);
1494 cli_session_actions
[s
].action
|= CLI_SESS_THROTTLE
;
1499 static int cmd_no_throttle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1504 if (CLI_HELP_REQUESTED
)
1505 return cli_arg_help(cli
, argc
> 1,
1506 "USER", "Username of session to unthrottle", NULL
);
1508 if (!config
->cluster_iam_master
)
1510 cli_print(cli
, "Can't do this on a slave. Do it on %s",
1511 fmtaddr(config
->cluster_master_address
, 0));
1518 cli_print(cli
, "Specify a user to unthrottle");
1522 for (i
= 0; i
< argc
; i
++)
1524 if (!(s
= sessionbyuser(argv
[i
])))
1526 cli_print(cli
, "User %s is not connected", argv
[i
]);
1530 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
1532 cli_print(cli
, "Unthrottling user %s", argv
[i
]);
1533 cli_session_actions
[s
].action
|= CLI_SESS_NOTHROTTLE
;
1537 cli_print(cli
, "User %s not throttled", argv
[i
]);
1544 static int cmd_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1548 if (CLI_HELP_REQUESTED
)
1549 return cli_arg_help(cli
, 1,
1550 "all", "Enable debugging for all except \"data\"",
1551 "critical", "", // FIXME: add descriptions
1561 char *p
= (char *) &debug_flags
;
1562 for (i
= 0; i
< sizeof(debug_flags
); i
++)
1566 cli_print(cli
, "Currently debugging:%s%s%s%s%s%s",
1567 (debug_flags
.critical
) ? " critical" : "",
1568 (debug_flags
.error
) ? " error" : "",
1569 (debug_flags
.warning
) ? " warning" : "",
1570 (debug_flags
.info
) ? " info" : "",
1571 (debug_flags
.calls
) ? " calls" : "",
1572 (debug_flags
.data
) ? " data" : "");
1578 cli_print(cli
, "Debugging off");
1582 for (i
= 0; i
< argc
; i
++)
1584 int len
= strlen(argv
[i
]);
1586 if (argv
[i
][0] == 'c' && len
< 2)
1587 len
= 2; /* distinguish [cr]itical from [ca]lls */
1589 if (!strncmp("critical", argv
[i
], len
)) { debug_flags
.critical
= 1; continue; }
1590 if (!strncmp("error", argv
[i
], len
)) { debug_flags
.error
= 1; continue; }
1591 if (!strncmp("warning", argv
[i
], len
)) { debug_flags
.warning
= 1; continue; }
1592 if (!strncmp("info", argv
[i
], len
)) { debug_flags
.info
= 1; continue; }
1593 if (!strncmp("calls", argv
[i
], len
)) { debug_flags
.calls
= 1; continue; }
1594 if (!strncmp("data", argv
[i
], len
)) { debug_flags
.data
= 1; continue; }
1595 if (!strncmp("all", argv
[i
], len
))
1597 memset(&debug_flags
, 1, sizeof(debug_flags
));
1598 debug_flags
.data
= 0;
1602 cli_print(cli
, "Invalid debugging flag \"%s\"", argv
[i
]);
1608 static int cmd_no_debug(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1612 if (CLI_HELP_REQUESTED
)
1613 return cli_arg_help(cli
, 1,
1614 "all", "Disable all debugging",
1615 "critical", "", // FIXME: add descriptions
1625 memset(&debug_flags
, 0, sizeof(debug_flags
));
1629 for (i
= 0; i
< argc
; i
++)
1631 int len
= strlen(argv
[i
]);
1633 if (argv
[i
][0] == 'c' && len
< 2)
1634 len
= 2; /* distinguish [cr]itical from [ca]lls */
1636 if (!strncmp("critical", argv
[i
], len
)) { debug_flags
.critical
= 0; continue; }
1637 if (!strncmp("error", argv
[i
], len
)) { debug_flags
.error
= 0; continue; }
1638 if (!strncmp("warning", argv
[i
], len
)) { debug_flags
.warning
= 0; continue; }
1639 if (!strncmp("info", argv
[i
], len
)) { debug_flags
.info
= 0; continue; }
1640 if (!strncmp("calls", argv
[i
], len
)) { debug_flags
.calls
= 0; continue; }
1641 if (!strncmp("data", argv
[i
], len
)) { debug_flags
.data
= 0; continue; }
1642 if (!strncmp("all", argv
[i
], len
))
1644 memset(&debug_flags
, 0, sizeof(debug_flags
));
1648 cli_print(cli
, "Invalid debugging flag \"%s\"", argv
[i
]);
1654 static int cmd_load_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1656 int i
, firstfree
= 0;
1658 if (CLI_HELP_REQUESTED
)
1659 return cli_arg_help(cli
, argc
> 1,
1660 "PLUGIN", "Name of plugin to load", NULL
);
1664 cli_print(cli
, "Specify a plugin to load");
1668 for (i
= 0; i
< MAXPLUGINS
; i
++)
1670 if (!*config
->plugins
[i
] && !firstfree
)
1672 if (strcmp(config
->plugins
[i
], argv
[0]) == 0)
1674 cli_print(cli
, "Plugin is already loaded");
1681 strncpy(config
->plugins
[firstfree
], argv
[0], sizeof(config
->plugins
[firstfree
]) - 1);
1682 config
->reload_config
= 1;
1683 cli_print(cli
, "Loading plugin %s", argv
[0]);
1689 static int cmd_remove_plugin(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1693 if (CLI_HELP_REQUESTED
)
1694 return cli_arg_help(cli
, argc
> 1,
1695 "PLUGIN", "Name of plugin to unload", NULL
);
1699 cli_print(cli
, "Specify a plugin to remove");
1703 for (i
= 0; i
< MAXPLUGINS
; i
++)
1705 if (strcmp(config
->plugins
[i
], argv
[0]) == 0)
1707 config
->reload_config
= 1;
1708 memset(config
->plugins
[i
], 0, sizeof(config
->plugins
[i
]));
1713 cli_print(cli
, "Plugin is not loaded");
1717 static char *duration(time_t secs
)
1719 static char *buf
= NULL
;
1722 if (!buf
) buf
= calloc(64, 1);
1726 int days
= secs
/ 86400;
1727 p
= sprintf(buf
, "%d day%s, ", days
, days
> 1 ? "s" : "");
1733 int mins
= secs
/ 60;
1734 int hrs
= mins
/ 60;
1737 sprintf(buf
+ p
, "%d:%02d", hrs
, mins
);
1739 else if (secs
>= 60)
1741 int mins
= secs
/ 60;
1742 sprintf(buf
+ p
, "%d min%s", mins
, mins
> 1 ? "s" : "");
1745 sprintf(buf
, "%ld sec%s", secs
, secs
> 1 ? "s" : "");
1750 static int cmd_uptime(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1753 char buf
[100], *p
= buf
, *loads
[3];
1754 int i
, num_sessions
= 0;
1756 if (CLI_HELP_REQUESTED
)
1757 return CLI_HELP_NO_ARGS
;
1759 fh
= fopen("/proc/loadavg", "r");
1760 fgets(buf
, 100, fh
);
1763 for (i
= 0; i
< 3; i
++)
1764 loads
[i
] = strdup(strsep(&p
, " "));
1767 strftime(buf
, 99, "%H:%M:%S", localtime(&time_now
));
1769 for (i
= 1; i
< MAXSESSION
; i
++)
1770 if (session
[i
].opened
) num_sessions
++;
1772 cli_print(cli
, "%s up %s, %d users, load average: %s, %s, %s",
1774 duration(time_now
- config
->start_time
),
1776 loads
[0], loads
[1], loads
[2]
1778 for (i
= 0; i
< 3; i
++)
1779 if (loads
[i
]) free(loads
[i
]);
1781 cli_print(cli
, "Bandwidth: %s", config
->bandwidth
);
1786 static int cmd_set(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1790 if (CLI_HELP_REQUESTED
)
1796 int len
= strlen(argv
[0])-1;
1797 for (i
= 0; config_values
[i
].key
; i
++)
1798 if (!len
|| !strncmp(config_values
[i
].key
, argv
[0], len
))
1799 cli_print(cli
, " %s", config_values
[i
].key
);
1805 return cli_arg_help(cli
, 0,
1806 "VALUE", "Value for variable", NULL
);
1810 return cli_arg_help(cli
, 1, NULL
);
1819 cli_print(cli
, "Specify variable and value");
1823 for (i
= 0; config_values
[i
].key
; i
++)
1825 void *value
= ((void *)config
) + config_values
[i
].offset
;
1826 if (strcmp(config_values
[i
].key
, argv
[0]) == 0)
1828 // Found a value to set
1829 cli_print(cli
, "Setting \"%s\" to \"%s\"", argv
[0], argv
[1]);
1830 switch (config_values
[i
].type
)
1833 strncpy((char *) value
, argv
[1], config_values
[i
].size
- 1);
1836 *(int *) value
= atoi(argv
[1]);
1839 *(unsigned long *) value
= atol(argv
[1]);
1842 *(short *) value
= atoi(argv
[1]);
1845 *(in_addr_t
*) value
= inet_addr(argv
[1]);
1848 inet_pton(AF_INET6
, argv
[1], value
);
1851 parsemac(argv
[1], (char *)value
);
1854 if (strcasecmp(argv
[1], "yes") == 0 || strcasecmp(argv
[1], "true") == 0 || strcasecmp(argv
[1], "1") == 0)
1860 cli_print(cli
, "Unknown variable type");
1863 config
->reload_config
= 1;
1868 cli_print(cli
, "Unknown variable \"%s\"", argv
[0]);
1872 int regular_stuff(struct cli_def
*cli
)
1878 for (i
= debug_rb_tail
; i
!= ringbuffer
->tail
; i
= (i
+ 1) % RINGBUFFER_SIZE
)
1880 char *m
= ringbuffer
->buffer
[i
].message
;
1886 switch (ringbuffer
->buffer
[i
].level
)
1888 case 0: show
= debug_flags
.critical
; break;
1889 case 1: show
= debug_flags
.error
; break;
1890 case 2: show
= debug_flags
.warning
; break;
1891 case 3: show
= debug_flags
.info
; break;
1892 case 4: show
= debug_flags
.calls
; break;
1893 case 5: show
= debug_flags
.data
; break;
1896 if (!show
) continue;
1898 if (!(p
= strchr(m
, '\n')))
1901 cli_print(cli
, "\r%s-%u-%u %.*s",
1902 debug_levels
[(int)ringbuffer
->buffer
[i
].level
],
1903 ringbuffer
->buffer
[i
].tunnel
,
1904 ringbuffer
->buffer
[i
].session
,
1910 debug_rb_tail
= ringbuffer
->tail
;
1918 static int cmd_router_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1922 if (CLI_HELP_REQUESTED
)
1923 return cli_arg_help(cli
, argc
> 1,
1924 "<1-65535>", "Autonomous system number", NULL
);
1926 if (argc
!= 1 || (as
= atoi(argv
[0])) < 1 || as
> 65535)
1928 cli_print(cli
, "Invalid autonomous system number");
1932 if (bgp_configured
&& as
!= config
->as_number
)
1934 cli_print(cli
, "Can't change local AS on a running system");
1938 config
->as_number
= as
;
1939 cli_set_configmode(cli
, MODE_CONFIG_BGP
, "router");
1944 static int find_bgp_neighbour(char const *name
)
1949 in_addr_t addrs
[4] = { 0 };
1952 if (!(h
= gethostbyname(name
)) || h
->h_addrtype
!= AF_INET
)
1955 for (i
= 0; i
< sizeof(addrs
) / sizeof(*addrs
) && h
->h_addr_list
[i
]; i
++)
1956 memcpy(&addrs
[i
], h
->h_addr_list
[i
], sizeof(*addrs
));
1958 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
1960 if (!config
->neighbour
[i
].name
[0])
1962 if (new == -1) new = i
;
1966 if (!strcmp(name
, config
->neighbour
[i
].name
))
1969 if (!(h
= gethostbyname(config
->neighbour
[i
].name
)) || h
->h_addrtype
!= AF_INET
)
1972 for (a
= h
->h_addr_list
; *a
; a
++)
1975 for (j
= 0; j
< sizeof(addrs
) / sizeof(*addrs
) && addrs
[j
]; j
++)
1976 if (!memcmp(&addrs
[j
], *a
, sizeof(*addrs
)))
1984 static int cmd_router_bgp_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1990 if (CLI_HELP_REQUESTED
)
1995 return cli_arg_help(cli
, 0,
1996 "A.B.C.D", "BGP neighbour address",
1997 "NAME", "BGP neighbour name",
2001 return cli_arg_help(cli
, 0,
2002 "remote-as", "Set remote autonomous system number",
2003 "timers", "Set timers",
2007 if (MATCH("remote-as", argv
[1]))
2008 return cli_arg_help(cli
, argv
[2][1], "<1-65535>", "Autonomous system number", NULL
);
2010 if (MATCH("timers", argv
[1]))
2013 return cli_arg_help(cli
, 0, "<1-65535>", "Keepalive time", NULL
);
2016 return cli_arg_help(cli
, argv
[3][1], "<3-65535>", "Hold time", NULL
);
2018 if (argc
== 5 && !argv
[4][1])
2019 return cli_arg_help(cli
, 1, NULL
);
2028 cli_print(cli
, "Invalid arguments");
2032 if ((i
= find_bgp_neighbour(argv
[0])) == -2)
2034 cli_print(cli
, "Invalid neighbour");
2040 cli_print(cli
, "Too many neighbours (max %d)", BGP_NUM_PEERS
);
2044 if (MATCH("remote-as", argv
[1]))
2046 int as
= atoi(argv
[2]);
2047 if (as
< 0 || as
> 65535)
2049 cli_print(cli
, "Invalid autonomous system number");
2053 if (!config
->neighbour
[i
].name
[0])
2055 snprintf(config
->neighbour
[i
].name
, sizeof(config
->neighbour
[i
].name
), argv
[0]);
2056 config
->neighbour
[i
].keepalive
= -1;
2057 config
->neighbour
[i
].hold
= -1;
2060 config
->neighbour
[i
].as
= as
;
2064 if (argc
!= 4 || !MATCH("timers", argv
[1]))
2066 cli_print(cli
, "Invalid arguments");
2070 if (!config
->neighbour
[i
].name
[0])
2072 cli_print(cli
, "Specify remote-as first");
2076 keepalive
= atoi(argv
[2]);
2077 hold
= atoi(argv
[3]);
2079 if (keepalive
< 1 || keepalive
> 65535)
2081 cli_print(cli
, "Invalid keepalive time");
2085 if (hold
< 3 || hold
> 65535)
2087 cli_print(cli
, "Invalid hold time");
2091 if (keepalive
== BGP_KEEPALIVE_TIME
)
2092 keepalive
= -1; // using default value
2094 if (hold
== BGP_HOLD_TIME
)
2097 config
->neighbour
[i
].keepalive
= keepalive
;
2098 config
->neighbour
[i
].hold
= hold
;
2103 static int cmd_router_bgp_no_neighbour(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2107 if (CLI_HELP_REQUESTED
)
2108 return cli_arg_help(cli
, argc
> 0,
2109 "A.B.C.D", "BGP neighbour address",
2110 "NAME", "BGP neighbour name",
2115 cli_print(cli
, "Specify a BGP neighbour");
2119 if ((i
= find_bgp_neighbour(argv
[0])) == -2)
2121 cli_print(cli
, "Invalid neighbour");
2125 if (i
< 0 || !config
->neighbour
[i
].name
[0])
2127 cli_print(cli
, "Neighbour %s not configured", argv
[0]);
2131 memset(&config
->neighbour
[i
], 0, sizeof(config
->neighbour
[i
]));
2135 static int cmd_show_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2141 if (!bgp_configured
)
2144 if (CLI_HELP_REQUESTED
)
2145 return cli_arg_help(cli
, 1,
2146 "A.B.C.D", "BGP neighbour address",
2147 "NAME", "BGP neighbour name",
2150 cli_print(cli
, "BGPv%d router identifier %s, local AS number %d",
2151 BGP_VERSION
, fmtaddr(my_address
, 0), (int) config
->as_number
);
2155 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2157 if (!*bgp_peers
[i
].name
)
2160 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2161 if (argc
&& strcmp(addr
, argv
[0]) &&
2162 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2168 cli_print(cli
, "Peer AS Address "
2169 "State Retries Retry in Route Pend Timers");
2170 cli_print(cli
, "------------------ ----- --------------- "
2171 "----------- ------- -------- ----- ---- ---------");
2174 cli_print(cli
, "%-18.18s %5d %15s %-11s %7d %7lds %5s %4s %4d %4d",
2178 bgp_state_str(bgp_peers
[i
].state
),
2179 bgp_peers
[i
].retry_count
,
2180 bgp_peers
[i
].retry_time
? bgp_peers
[i
].retry_time
- time_now
: 0,
2181 bgp_peers
[i
].routing
? "yes" : "no",
2182 bgp_peers
[i
].update_routes
? "yes" : "no",
2183 bgp_peers
[i
].keepalive
,
2190 static int cmd_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2195 if (!bgp_configured
)
2198 if (CLI_HELP_REQUESTED
)
2199 return cli_arg_help(cli
, 1,
2200 "A.B.C.D", "BGP neighbour address",
2201 "NAME", "BGP neighbour name",
2204 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2206 if (bgp_peers
[i
].state
!= Established
)
2209 if (!bgp_peers
[i
].routing
)
2212 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2213 if (argc
&& strcmp(addr
, argv
[0]) && strcmp(bgp_peers
[i
].name
, argv
[0]))
2216 bgp_peers
[i
].cli_flag
= BGP_CLI_SUSPEND
;
2217 cli_print(cli
, "Suspending peer %s", bgp_peers
[i
].name
);
2223 static int cmd_no_suspend_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2228 if (!bgp_configured
)
2231 if (CLI_HELP_REQUESTED
)
2232 return cli_arg_help(cli
, 1,
2233 "A.B.C.D", "BGP neighbour address",
2234 "NAME", "BGP neighbour name",
2237 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2239 if (bgp_peers
[i
].state
!= Established
)
2242 if (bgp_peers
[i
].routing
)
2245 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2246 if (argc
&& strcmp(addr
, argv
[0]) &&
2247 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2250 bgp_peers
[i
].cli_flag
= BGP_CLI_ENABLE
;
2251 cli_print(cli
, "Un-suspending peer %s", bgp_peers
[i
].name
);
2257 static int cmd_restart_bgp(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2262 if (!bgp_configured
)
2265 if (CLI_HELP_REQUESTED
)
2266 return cli_arg_help(cli
, 1,
2267 "A.B.C.D", "BGP neighbour address",
2268 "NAME", "BGP neighbour name",
2271 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
2273 if (!*bgp_peers
[i
].name
)
2276 addr
= fmtaddr(bgp_peers
[i
].addr
, 0);
2277 if (argc
&& strcmp(addr
, argv
[0]) &&
2278 strncmp(bgp_peers
[i
].name
, argv
[0], strlen(argv
[0])))
2281 bgp_peers
[i
].cli_flag
= BGP_CLI_RESTART
;
2282 cli_print(cli
, "Restarting peer %s", bgp_peers
[i
].name
);
2290 static int find_access_list(char const *name
)
2294 for (i
= 0; i
< MAXFILTER
; i
++)
2295 if (!(*ip_filters
[i
].name
&& strcmp(ip_filters
[i
].name
, name
)))
2301 static int access_list(struct cli_def
*cli
, char **argv
, int argc
, int add
)
2305 if (CLI_HELP_REQUESTED
)
2310 return cli_arg_help(cli
, 0,
2311 "standard", "Standard syntax",
2312 "extended", "Extended syntax",
2316 return cli_arg_help(cli
, argv
[1][1],
2317 "NAME", "Access-list name",
2321 if (argc
== 3 && !argv
[2][1])
2322 return cli_arg_help(cli
, 1, NULL
);
2330 cli_print(cli
, "Specify access-list type and name");
2334 if (MATCH("standard", argv
[0]))
2336 else if (MATCH("extended", argv
[0]))
2340 cli_print(cli
, "Invalid access-list type");
2344 if (strlen(argv
[1]) > sizeof(ip_filters
[0].name
) - 1 ||
2345 strspn(argv
[1], "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-") != strlen(argv
[1]))
2347 cli_print(cli
, "Invalid access-list name");
2351 filt
= find_access_list(argv
[1]);
2356 cli_print(cli
, "Too many access-lists");
2361 if (!*ip_filters
[filt
].name
)
2363 memset(&ip_filters
[filt
], 0, sizeof(ip_filters
[filt
]));
2364 strcpy(ip_filters
[filt
].name
, argv
[1]);
2365 ip_filters
[filt
].extended
= extended
;
2367 else if (ip_filters
[filt
].extended
!= extended
)
2369 cli_print(cli
, "Access-list is %s",
2370 ip_filters
[filt
].extended
? "extended" : "standard");
2375 cli_set_configmode(cli
, MODE_CONFIG_NACL
, extended
? "ext-nacl" : "std-nacl");
2379 if (filt
< 0 || !*ip_filters
[filt
].name
)
2381 cli_print(cli
, "Access-list not defined");
2386 if (ip_filters
[filt
].used
)
2388 cli_print(cli
, "Access-list in use");
2392 memset(&ip_filters
[filt
], 0, sizeof(ip_filters
[filt
]));
2396 static int cmd_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2398 return access_list(cli
, argv
, argc
, 1);
2401 static int cmd_no_ip_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2403 return access_list(cli
, argv
, argc
, 0);
2406 static int show_ip_wild(char *buf
, in_addr_t ip
, in_addr_t wild
)
2408 if (ip
== INADDR_ANY
&& wild
== INADDR_BROADCAST
)
2409 return sprintf(buf
, " any");
2411 if (wild
== INADDR_ANY
)
2412 return sprintf(buf
, " host %s", fmtaddr(ip
, 0));
2414 return sprintf(buf
, " %s %s", fmtaddr(ip
, 0), fmtaddr(wild
, 1));
2417 static int show_ports(char *buf
, ip_filter_portt
*ports
)
2421 case FILTER_PORT_OP_EQ
: return sprintf(buf
, " eq %u", ports
->port
);
2422 case FILTER_PORT_OP_NEQ
: return sprintf(buf
, " neq %u", ports
->port
);
2423 case FILTER_PORT_OP_GT
: return sprintf(buf
, " gt %u", ports
->port
);
2424 case FILTER_PORT_OP_LT
: return sprintf(buf
, " lt %u", ports
->port
);
2425 case FILTER_PORT_OP_RANGE
: return sprintf(buf
, " range %u %u", ports
->port
, ports
->port2
);
2431 static char const *show_access_list_rule(int extended
, ip_filter_rulet
*rule
)
2433 static char buf
[256];
2436 p
+= sprintf(p
, " %s", rule
->action
== FILTER_ACTION_PERMIT
? "permit" : "deny");
2439 struct protoent
*proto
= getprotobynumber(rule
->proto
);
2440 p
+= sprintf(p
, " %s", proto
? proto
->p_name
: "ERR");
2443 p
+= show_ip_wild(p
, rule
->src_ip
, rule
->src_wild
);
2447 if (rule
->proto
== IPPROTO_TCP
|| rule
->proto
== IPPROTO_UDP
)
2448 p
+= show_ports(p
, &rule
->src_ports
);
2450 p
+= show_ip_wild(p
, rule
->dst_ip
, rule
->dst_wild
);
2451 if (rule
->proto
== IPPROTO_TCP
|| rule
->proto
== IPPROTO_UDP
)
2452 p
+= show_ports(p
, &rule
->dst_ports
);
2454 if (rule
->proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
)
2456 switch (rule
->tcp_flag_op
)
2458 case FILTER_FLAG_OP_EST
:
2459 p
+= sprintf(p
, " established");
2462 case FILTER_FLAG_OP_ANY
:
2463 case FILTER_FLAG_OP_ALL
:
2464 p
+= sprintf(p
, " match-%s", rule
->tcp_flag_op
== FILTER_FLAG_OP_ALL
? "all" : "any");
2465 if (rule
->tcp_sflags
& TCP_FLAG_FIN
) p
+= sprintf(p
, " +fin");
2466 if (rule
->tcp_cflags
& TCP_FLAG_FIN
) p
+= sprintf(p
, " -fin");
2467 if (rule
->tcp_sflags
& TCP_FLAG_SYN
) p
+= sprintf(p
, " +syn");
2468 if (rule
->tcp_cflags
& TCP_FLAG_SYN
) p
+= sprintf(p
, " -syn");
2469 if (rule
->tcp_sflags
& TCP_FLAG_RST
) p
+= sprintf(p
, " +rst");
2470 if (rule
->tcp_cflags
& TCP_FLAG_RST
) p
+= sprintf(p
, " -rst");
2471 if (rule
->tcp_sflags
& TCP_FLAG_PSH
) p
+= sprintf(p
, " +psh");
2472 if (rule
->tcp_cflags
& TCP_FLAG_PSH
) p
+= sprintf(p
, " -psh");
2473 if (rule
->tcp_sflags
& TCP_FLAG_ACK
) p
+= sprintf(p
, " +ack");
2474 if (rule
->tcp_cflags
& TCP_FLAG_ACK
) p
+= sprintf(p
, " -ack");
2475 if (rule
->tcp_sflags
& TCP_FLAG_URG
) p
+= sprintf(p
, " +urg");
2476 if (rule
->tcp_cflags
& TCP_FLAG_URG
) p
+= sprintf(p
, " -urg");
2482 p
+= sprintf(p
, " fragments");
2487 ip_filter_rulet
*access_list_rule_ext(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2489 static ip_filter_rulet rule
;
2490 struct in_addr addr
;
2494 if (CLI_HELP_REQUESTED
)
2498 cli_arg_help(cli
, 0,
2499 "ip", "Match IP packets",
2500 "tcp", "Match TCP packets",
2501 "udp", "Match UDP packets",
2507 // *sigh*, too darned complex
2508 cli_arg_help(cli
, 0, "RULE", "SOURCE [PORTS] DEST [PORTS] FLAGS", NULL
);
2514 cli_print(cli
, "Specify rule details");
2518 memset(&rule
, 0, sizeof(rule
));
2519 rule
.action
= (command
[0] == 'p')
2520 ? FILTER_ACTION_PERMIT
2521 : FILTER_ACTION_DENY
;
2523 if (MATCH("ip", argv
[0]))
2524 rule
.proto
= IPPROTO_IP
;
2525 else if (MATCH("udp", argv
[0]))
2526 rule
.proto
= IPPROTO_UDP
;
2527 else if (MATCH("tcp", argv
[0]))
2528 rule
.proto
= IPPROTO_TCP
;
2531 cli_print(cli
, "Invalid protocol \"%s\"", argv
[0]);
2535 for (a
= 1, i
= 0; i
< 2; i
++)
2539 ip_filter_portt
*port
;
2544 wild
= &rule
.src_wild
;
2545 port
= &rule
.src_ports
;
2550 wild
= &rule
.dst_wild
;
2551 port
= &rule
.dst_ports
;
2554 cli_print(cli
, "Specify destination");
2559 if (MATCH("any", argv
[a
]))
2562 *wild
= INADDR_BROADCAST
;
2565 else if (MATCH("host", argv
[a
]))
2569 cli_print(cli
, "Specify host ip address");
2573 if (!inet_aton(argv
[a
], &addr
))
2575 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2587 cli_print(cli
, "Specify %s ip address and wildcard", i
? "destination" : "source");
2591 if (!inet_aton(argv
[a
], &addr
))
2593 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2599 if (!inet_aton(argv
[++a
], &addr
))
2601 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[a
]);
2605 *wild
= addr
.s_addr
;
2609 if (rule
.proto
== IPPROTO_IP
|| a
>= argc
)
2613 if (MATCH("eq", argv
[a
]))
2614 port
->op
= FILTER_PORT_OP_EQ
;
2615 else if (MATCH("neq", argv
[a
]))
2616 port
->op
= FILTER_PORT_OP_NEQ
;
2617 else if (MATCH("gt", argv
[a
]))
2618 port
->op
= FILTER_PORT_OP_GT
;
2619 else if (MATCH("lt", argv
[a
]))
2620 port
->op
= FILTER_PORT_OP_LT
;
2621 else if (MATCH("range", argv
[a
]))
2622 port
->op
= FILTER_PORT_OP_RANGE
;
2629 cli_print(cli
, "Specify port");
2633 if (!(port
->port
= atoi(argv
[a
])))
2635 cli_print(cli
, "Invalid port \"%s\"", argv
[a
]);
2640 if (port
->op
!= FILTER_PORT_OP_RANGE
)
2645 cli_print(cli
, "Specify port");
2649 if (!(port
->port2
= atoi(argv
[a
])) || port
->port2
< port
->port
)
2651 cli_print(cli
, "Invalid port \"%s\"", argv
[a
]);
2658 if (rule
.proto
== IPPROTO_TCP
&& a
< argc
)
2660 if (MATCH("established", argv
[a
]))
2662 rule
.tcp_flag_op
= FILTER_FLAG_OP_EST
;
2665 else if (!strcmp(argv
[a
], "match-any") || !strcmp(argv
[a
], "match-an") ||
2666 !strcmp(argv
[a
], "match-all") || !strcmp(argv
[a
], "match-al"))
2668 rule
.tcp_flag_op
= argv
[a
][7] == 'n'
2669 ? FILTER_FLAG_OP_ANY
2670 : FILTER_FLAG_OP_ALL
;
2674 cli_print(cli
, "Specify tcp flags");
2678 while (a
< argc
&& (argv
[a
][0] == '+' || argv
[a
][0] == '-'))
2682 f
= (argv
[a
][0] == '+') ? &rule
.tcp_sflags
: &rule
.tcp_cflags
;
2684 if (MATCH("fin", &argv
[a
][1])) *f
|= TCP_FLAG_FIN
;
2685 else if (MATCH("syn", &argv
[a
][1])) *f
|= TCP_FLAG_SYN
;
2686 else if (MATCH("rst", &argv
[a
][1])) *f
|= TCP_FLAG_RST
;
2687 else if (MATCH("psh", &argv
[a
][1])) *f
|= TCP_FLAG_PSH
;
2688 else if (MATCH("ack", &argv
[a
][1])) *f
|= TCP_FLAG_ACK
;
2689 else if (MATCH("urg", &argv
[a
][1])) *f
|= TCP_FLAG_URG
;
2692 cli_print(cli
, "Invalid tcp flag \"%s\"", argv
[a
]);
2701 if (a
< argc
&& MATCH("fragments", argv
[a
]))
2703 if (rule
.src_ports
.op
|| rule
.dst_ports
.op
|| rule
.tcp_flag_op
)
2705 cli_print(cli
, "Can't specify \"fragments\" on rules with layer 4 matches");
2715 cli_print(cli
, "Invalid flag \"%s\"", argv
[a
]);
2722 ip_filter_rulet
*access_list_rule_std(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2724 static ip_filter_rulet rule
;
2725 struct in_addr addr
;
2727 if (CLI_HELP_REQUESTED
)
2731 cli_arg_help(cli
, argv
[0][1],
2732 "A.B.C.D", "Source address",
2733 "any", "Any source address",
2734 "host", "Source host",
2740 if (MATCH("any", argv
[0]))
2742 if (argc
== 2 && !argv
[1][1])
2743 cli_arg_help(cli
, 1, NULL
);
2745 else if (MATCH("host", argv
[0]))
2749 cli_arg_help(cli
, argv
[1][1],
2750 "A.B.C.D", "Host address",
2753 else if (argc
== 3 && !argv
[2][1])
2754 cli_arg_help(cli
, 1, NULL
);
2760 cli_arg_help(cli
, 1,
2761 "A.B.C.D", "Wildcard bits",
2764 else if (argc
== 3 && !argv
[2][1])
2765 cli_arg_help(cli
, 1, NULL
);
2773 cli_print(cli
, "Specify rule details");
2777 memset(&rule
, 0, sizeof(rule
));
2778 rule
.action
= (command
[0] == 'p')
2779 ? FILTER_ACTION_PERMIT
2780 : FILTER_ACTION_DENY
;
2782 rule
.proto
= IPPROTO_IP
;
2783 if (MATCH("any", argv
[0]))
2785 rule
.src_ip
= INADDR_ANY
;
2786 rule
.src_wild
= INADDR_BROADCAST
;
2788 else if (MATCH("host", argv
[0]))
2792 cli_print(cli
, "Specify host ip address");
2796 if (!inet_aton(argv
[1], &addr
))
2798 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[1]);
2802 rule
.src_ip
= addr
.s_addr
;
2803 rule
.src_wild
= INADDR_ANY
;
2809 cli_print(cli
, "Specify source ip address and wildcard");
2813 if (!inet_aton(argv
[0], &addr
))
2815 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[0]);
2819 rule
.src_ip
= addr
.s_addr
;
2823 if (!inet_aton(argv
[1], &addr
))
2825 cli_print(cli
, "Cannot parse IP \"%s\"", argv
[1]);
2829 rule
.src_wild
= addr
.s_addr
;
2832 rule
.src_wild
= INADDR_ANY
;
2838 static int cmd_ip_access_list_rule(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2841 ip_filter_rulet
*rule
= ip_filters
[filt
].extended
2842 ? access_list_rule_ext(cli
, command
, argv
, argc
)
2843 : access_list_rule_std(cli
, command
, argv
, argc
);
2848 for (i
= 0; i
< MAXFILTER_RULES
- 1; i
++) // -1: list always terminated by empty rule
2850 if (!ip_filters
[filt
].rules
[i
].action
)
2852 memcpy(&ip_filters
[filt
].rules
[i
], rule
, sizeof(*rule
));
2856 if (!memcmp(&ip_filters
[filt
].rules
[i
], rule
, sizeof(*rule
)))
2860 cli_print(cli
, "Too many rules");
2864 static int cmd_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2869 /* filter USER {in|out} FILTER ... */
2870 if (CLI_HELP_REQUESTED
)
2875 return cli_arg_help(cli
, 0,
2876 "USER", "Username of session to filter", NULL
);
2880 return cli_arg_help(cli
, 0,
2881 "in", "Set incoming filter",
2882 "out", "Set outgoing filter", NULL
);
2886 return cli_arg_help(cli
, argc
== 5 && argv
[4][1],
2887 "NAME", "Filter name", NULL
);
2890 return cli_arg_help(cli
, argc
> 1, NULL
);
2894 if (!config
->cluster_iam_master
)
2896 cli_print(cli
, "Can't do this on a slave. Do it on %s",
2897 fmtaddr(config
->cluster_master_address
, 0));
2902 if (argc
!= 3 && argc
!= 5)
2904 cli_print(cli
, "Specify a user and filters");
2908 if (!(s
= sessionbyuser(argv
[0])))
2910 cli_print(cli
, "User %s is not connected", argv
[0]);
2914 cli_session_actions
[s
].filter_in
= cli_session_actions
[s
].filter_out
= -1;
2915 for (i
= 1; i
< argc
; i
+= 2)
2920 if (MATCH("in", argv
[i
]))
2922 if (session
[s
].filter_in
)
2924 cli_print(cli
, "Input already filtered");
2927 f
= &cli_session_actions
[s
].filter_in
;
2929 else if (MATCH("out", argv
[i
]))
2931 if (session
[s
].filter_out
)
2933 cli_print(cli
, "Output already filtered");
2936 f
= &cli_session_actions
[s
].filter_out
;
2940 cli_print(cli
, "Invalid filter specification");
2944 v
= find_access_list(argv
[i
+1]);
2945 if (v
< 0 || !*ip_filters
[v
].name
)
2947 cli_print(cli
, "Access-list %s not defined", argv
[i
+1]);
2954 cli_print(cli
, "Filtering user %s", argv
[0]);
2955 cli_session_actions
[s
].action
|= CLI_SESS_FILTER
;
2960 static int cmd_no_filter(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2965 if (CLI_HELP_REQUESTED
)
2966 return cli_arg_help(cli
, argc
> 1,
2967 "USER", "Username of session to remove filters from", NULL
);
2969 if (!config
->cluster_iam_master
)
2971 cli_print(cli
, "Can't do this on a slave. Do it on %s",
2972 fmtaddr(config
->cluster_master_address
, 0));
2979 cli_print(cli
, "Specify a user to remove filters from");
2983 for (i
= 0; i
< argc
; i
++)
2985 if (!(s
= sessionbyuser(argv
[i
])))
2987 cli_print(cli
, "User %s is not connected", argv
[i
]);
2991 if (session
[s
].filter_in
|| session
[s
].filter_out
)
2993 cli_print(cli
, "Removing filters from user %s", argv
[i
]);
2994 cli_session_actions
[s
].action
|= CLI_SESS_NOFILTER
;
2998 cli_print(cli
, "User %s not filtered", argv
[i
]);
3005 static int cmd_show_access_list(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
3009 if (CLI_HELP_REQUESTED
)
3010 return cli_arg_help(cli
, argc
> 1, "NAME", "Filter name", NULL
);
3014 cli_print(cli
, "Specify a filter name");
3018 for (i
= 0; i
< argc
; i
++)
3020 int f
= find_access_list(argv
[i
]);
3021 ip_filter_rulet
*rules
;
3023 if (f
< 0 || !*ip_filters
[f
].name
)
3025 cli_print(cli
, "Access-list %s not defined", argv
[i
]);
3032 cli_print(cli
, "%s IP access list %s",
3033 ip_filters
[f
].extended
? "Extended" : "Standard",
3034 ip_filters
[f
].name
);
3036 for (rules
= ip_filters
[f
].rules
; rules
->action
; rules
++)
3038 char const *r
= show_access_list_rule(ip_filters
[f
].extended
, rules
);
3040 cli_print(cli
, "%s (%d match%s)", r
,
3041 rules
->counter
, rules
->counter
> 1 ? "es" : "");
3043 cli_print(cli
, "%s", r
);
3050 // Convert a string in the form of abcd.ef12.3456 into char[6]
3051 void parsemac(char *string
, char mac
[6])
3053 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)
3055 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)