From: Ondrej Filip Date: Tue, 12 Feb 2013 12:15:01 +0000 (+0100) Subject: Allow submitting BIRD commands from UNIX shell even in restricted mode. X-Git-Tag: v1.3.10~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c2abee74e64f64fba61aad6e2b66e3895820003;p=thirdparty%2Fbird.git Allow submitting BIRD commands from UNIX shell even in restricted mode. --- diff --git a/client/client.c b/client/client.c index 8711cf0ad..d8f0060c9 100644 --- a/client/client.c +++ b/client/client.c @@ -29,6 +29,7 @@ static char *opt_list = "s:vr"; static int verbose; static char *init_cmd; static int once; +static int restricted; static char *server_path = PATH_CONTROL_SOCKET; static int server_fd; @@ -70,7 +71,7 @@ parse_args(int argc, char **argv) verbose++; break; case 'r': - init_cmd = "restrict"; + restricted = 1; break; default: usage(); @@ -83,9 +84,6 @@ parse_args(int argc, char **argv) int i; int len = 0; - if (init_cmd) - usage(); - for (i = optind; i < argc; i++) len += strlen(argv[i]) + 1; @@ -303,6 +301,13 @@ update_state(void) if (nstate == cstate) return; + if (restricted) + { + submit_server_command("restrict"); + restricted = 0; + return; + } + if (init_cmd) { /* First transition - client received hello from BIRD