]> git.ipfire.org Git - thirdparty/lldpd.git/blob - src/client/lldpcli.c
lldpcli: ensure we exit with an error on incorrect commands
[thirdparty/lldpd.git] / src / client / lldpcli.c
1 /* -*- mode: c; c-file-style: "openbsd" -*- */
2 /*
3 * Copyright (c) 2008 Vincent Bernat <bernat@luffy.cx>
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <time.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/socket.h>
28 #include <sys/un.h>
29 #include <arpa/inet.h>
30 #include <libgen.h>
31 #include <dirent.h>
32 #include <signal.h>
33 #include <sys/queue.h>
34
35 #include "client.h"
36
37 #ifdef HAVE___PROGNAME
38 extern const char *__progname;
39 #else
40 # define __progname "lldpcli"
41 #endif
42
43 /* Global for completion */
44 static struct cmd_node *root = NULL;
45 const char *ctlname = NULL;
46
47 static int
48 is_lldpctl(const char *name)
49 {
50 static int last_result = -1;
51 if (last_result == -1 && name) {
52 char *basec = strdup(name);
53 if (!basec) return 0;
54 char *bname = basename(basec);
55 last_result = (!strcmp(bname, "lldpctl"));
56 free(basec);
57 }
58 return (last_result == -1)?0:last_result;
59 }
60
61 static void
62 usage()
63 {
64 fprintf(stderr, "Usage: %s [OPTIONS ...] [COMMAND ...]\n", __progname);
65 fprintf(stderr, "Version: %s\n", PACKAGE_STRING);
66
67 fprintf(stderr, "\n");
68
69 fprintf(stderr, "-d Enable more debugging information.\n");
70 fprintf(stderr, "-u socket Specify the Unix-domain socket used for communication with lldpd(8).\n");
71 fprintf(stderr, "-f format Choose output format (plain, keyvalue"
72 #if defined USE_XML
73 ", xml"
74 #endif
75 #if defined USE_JANSSON || defined USE_JSONC
76 ", json"
77 #endif
78 ").\n");
79 if (!is_lldpctl(NULL))
80 fprintf(stderr, "-c conf Read the provided configuration file.\n");
81
82 fprintf(stderr, "\n");
83
84 fprintf(stderr, "see manual page lldpcli(8) for more information\n");
85 exit(1);
86 }
87
88 static int
89 is_privileged()
90 {
91 /* Check we can access the control socket with read/write
92 * privileges. The `access()` function uses the real UID and real GID,
93 * therefore we don't have to mangle with our identity. */
94 return (ctlname && access(ctlname, R_OK|W_OK) == 0);
95 }
96
97 static char*
98 prompt()
99 {
100 #define CESC "\033"
101 int privileged = is_privileged();
102 if (isatty(STDIN_FILENO)) {
103 if (privileged)
104 return "[lldpcli] # ";
105 return "[lldpcli] $ ";
106 }
107 return "";
108 }
109
110 static int must_exit = 0;
111 /**
112 * Exit the interpreter.
113 */
114 static int
115 cmd_exit(struct lldpctl_conn_t *conn, struct writer *w,
116 struct cmd_env *env, void *arg)
117 {
118 log_info("lldpctl", "quit lldpcli");
119 must_exit = 1;
120 return 1;
121 }
122
123 /**
124 * Send an "update" request.
125 */
126 static int
127 cmd_update(struct lldpctl_conn_t *conn, struct writer *w,
128 struct cmd_env *env, void *arg)
129 {
130 log_info("lldpctl", "ask for global update");
131
132 lldpctl_atom_t *config = lldpctl_get_configuration(conn);
133 if (config == NULL) {
134 log_warnx("lldpctl", "unable to get configuration from lldpd. %s",
135 lldpctl_last_strerror(conn));
136 return 0;
137 }
138 if (lldpctl_atom_set_int(config,
139 lldpctl_k_config_tx_interval, -1) == NULL) {
140 log_warnx("lldpctl", "unable to ask lldpd for immediate retransmission. %s",
141 lldpctl_last_strerror(conn));
142 lldpctl_atom_dec_ref(config);
143 return 0;
144 }
145 log_info("lldpctl", "immediate retransmission requested successfully");
146 lldpctl_atom_dec_ref(config);
147 return 1;
148 }
149
150 /**
151 * Pause or resume execution of lldpd.
152 *
153 * @param conn The connection to lldpd.
154 * @param pause 1 if we want to pause lldpd, 0 otherwise
155 * @return 1 on success, 0 on error
156 */
157 static int
158 cmd_pause_resume(lldpctl_conn_t *conn, int pause)
159 {
160 lldpctl_atom_t *config = lldpctl_get_configuration(conn);
161 if (config == NULL) {
162 log_warnx("lldpctl", "unable to get configuration from lldpd. %s",
163 lldpctl_last_strerror(conn));
164 return 0;
165 }
166 if (lldpctl_atom_get_int(config, lldpctl_k_config_paused) == pause) {
167 log_debug("lldpctl", "lldpd is already %s",
168 pause?"paused":"resumed");
169 lldpctl_atom_dec_ref(config);
170 return 1;
171 }
172 if (lldpctl_atom_set_int(config,
173 lldpctl_k_config_paused, pause) == NULL) {
174 log_warnx("lldpctl", "unable to ask lldpd to %s operations. %s",
175 pause?"pause":"resume",
176 lldpctl_last_strerror(conn));
177 lldpctl_atom_dec_ref(config);
178 return 0;
179 }
180 log_info("lldpctl", "lldpd should %s operations",
181 pause?"pause":"resume");
182 lldpctl_atom_dec_ref(config);
183 return 1;
184 }
185 static int
186 cmd_pause(struct lldpctl_conn_t *conn, struct writer *w,
187 struct cmd_env *env, void *arg) {
188 (void)w; (void)env;
189 return cmd_pause_resume(conn, 1);
190 }
191 static int
192 cmd_resume(struct lldpctl_conn_t *conn, struct writer *w,
193 struct cmd_env *env, void *arg) {
194 (void)w; (void)env;
195 return cmd_pause_resume(conn, 0);
196 }
197
198
199 #ifdef HAVE_LIBREADLINE
200 static int
201 _cmd_complete(int all)
202 {
203 char **argv = NULL;
204 int argc = 0;
205 int rc = 1;
206 size_t len = strlen(rl_line_buffer);
207 char *line = malloc(len + 2);
208 if (!line) return -1;
209 strlcpy(line, rl_line_buffer, len + 2);
210 line[rl_point] = 2; /* empty character, will force a word */
211 line[rl_point+1] = 0;
212
213 if (tokenize_line(line, &argc, &argv) != 0)
214 goto end;
215
216 char *compl = commands_complete(root, argc, (const char **)argv, all, is_privileged());
217 if (compl && strlen(argv[argc-1]) < strlen(compl)) {
218 if (rl_insert_text(compl + strlen(argv[argc-1])) < 0) {
219 free(compl);
220 goto end;
221 }
222 free(compl);
223 rc = 0;
224 goto end;
225 }
226 /* No completion or several completion available. */
227 free(compl);
228 fprintf(stderr, "\n");
229 rl_forced_update_display();
230 rc = 0;
231 end:
232 free(line);
233 tokenize_free(argc, argv);
234 return rc;
235 }
236
237 static int
238 cmd_complete(int count, int ch)
239 {
240 return _cmd_complete(0);
241 }
242
243 static int
244 cmd_help(int count, int ch)
245 {
246 return _cmd_complete(1);
247 }
248 #else
249 static char*
250 readline(const char *p)
251 {
252 static char line[2048];
253 fprintf(stderr, "%s", p);
254 fflush(stderr);
255 if (fgets(line, sizeof(line) - 2, stdin) == NULL)
256 return NULL;
257 return line;
258 }
259 #endif
260
261 /**
262 * Execute a tokenized command and display its output.
263 *
264 * @param conn The connection to lldpd.
265 * @param fmt Output format.
266 * @param argc Number of arguments.
267 * @param argv Array of arguments.
268 * @return 0 if an error occurred, 1 otherwise
269 */
270 static int
271 cmd_exec(lldpctl_conn_t *conn, const char *fmt, int argc, const char **argv)
272 {
273 /* Init output formatter */
274 struct writer *w;
275
276 if (strcmp(fmt, "plain") == 0) w = txt_init(stdout);
277 else if (strcmp(fmt, "keyvalue") == 0) w = kv_init(stdout);
278 #ifdef USE_XML
279 else if (strcmp(fmt, "xml") == 0) w = xml_init(stdout);
280 #endif
281 #ifdef USE_JANSSON
282 else if (strcmp(fmt, "json") == 0) w = jansson_init(stdout);
283 #endif
284 #ifdef USE_JSONC
285 else if (strcmp(fmt, "json") == 0) w = jsonc_init(stdout);
286 #endif
287 else {
288 log_warnx("lldpctl", "unknown output format \"%s\"", fmt);
289 w = txt_init(stdout);
290 }
291
292 /* Execute command */
293 int rc = commands_execute(conn, w,
294 root, argc, argv, is_privileged());
295 if (rc != 0) {
296 log_info("lldpctl", "an error occurred while executing last command");
297 w->finish(w);
298 return 0;
299 }
300 w->finish(w);
301 return 1;
302 }
303
304 /**
305 * Execute a command line and display its output.
306 *
307 * @param conn The connection to lldpd.
308 * @param fmt Output format.
309 * @param line Line to execute.
310 * @return -1 if an error occurred, 0 if nothing was executed. 1 otherwise.
311 */
312 static int
313 parse_and_exec(lldpctl_conn_t *conn, const char *fmt, const char *line)
314 {
315 int cargc = 0; char **cargv = NULL;
316 int n;
317 log_debug("lldpctl", "tokenize command line");
318 n = tokenize_line(line, &cargc, &cargv);
319 switch (n) {
320 case -1:
321 log_warnx("lldpctl", "internal error while tokenizing");
322 return -1;
323 case 1:
324 log_warnx("lldpctl", "unmatched quotes");
325 return -1;
326 }
327 if (cargc != 0)
328 n = cmd_exec(conn, fmt, cargc, (const char **)cargv);
329 tokenize_free(cargc, cargv);
330 return (cargc == 0)?0:
331 (n == 0)?-1:
332 1;
333 }
334
335 static struct cmd_node*
336 register_commands()
337 {
338 root = commands_root();
339 register_commands_show(root);
340 register_commands_watch(root);
341 commands_privileged(commands_new(
342 commands_new(root, "update", "Update information and send LLDPU on all ports",
343 NULL, NULL, NULL),
344 NEWLINE, "Update information and send LLDPU on all ports",
345 NULL, cmd_update, NULL));
346 register_commands_configure(root);
347 commands_hidden(commands_new(root, "complete", "Get possible completions from a given command",
348 NULL, cmd_store_env_and_pop, "complete"));
349 commands_new(root, "help", "Get help on a possible command",
350 NULL, cmd_store_env_and_pop, "help");
351 commands_new(
352 commands_new(root, "pause", "Pause lldpd operations", NULL, NULL, NULL),
353 NEWLINE, "Pause lldpd operations", NULL, cmd_pause, NULL);
354 commands_new(
355 commands_new(root, "resume", "Resume lldpd operations", NULL, NULL, NULL),
356 NEWLINE, "Resume lldpd operations", NULL, cmd_resume, NULL);
357 commands_new(
358 commands_new(root, "exit", "Exit interpreter", NULL, NULL, NULL),
359 NEWLINE, "Exit interpreter", NULL, cmd_exit, NULL);
360 return root;
361 }
362
363 struct input {
364 TAILQ_ENTRY(input) next;
365 char *name;
366 };
367 TAILQ_HEAD(inputs, input);
368 static int
369 filter(const struct dirent *dir)
370 {
371 if (strlen(dir->d_name) < 5) return 0;
372 if (strcmp(dir->d_name + strlen(dir->d_name) - 5, ".conf")) return 0;
373 return 1;
374 }
375
376 /**
377 * Append a new input file/directory to the list of inputs.
378 *
379 * @param arg Directory or file name to add.
380 * @param inputs List of inputs
381 * @param acceptdir 1 if we accept a directory, 0 otherwise
382 */
383 static void
384 input_append(const char *arg, struct inputs *inputs, int acceptdir)
385 {
386 struct stat statbuf;
387 if (stat(arg, &statbuf) == -1) {
388 log_warn("lldpctl", "cannot find configuration file/directory %s",
389 arg);
390 return;
391 }
392
393 if (!S_ISDIR(statbuf.st_mode)) {
394 struct input *input = malloc(sizeof(struct input));
395 if (!input) {
396 log_warn("lldpctl", "not enough memory to process %s",
397 arg);
398 return;
399 }
400 log_debug("lldpctl", "input: %s", arg);
401 input->name = strdup(arg);
402 TAILQ_INSERT_TAIL(inputs, input, next);
403 return;
404 }
405 if (!acceptdir) {
406 log_debug("lldpctl", "skip directory %s",
407 arg);
408 return;
409 }
410
411 struct dirent **namelist = NULL;
412 int n = scandir(arg, &namelist, filter, alphasort);
413 if (n < 0) {
414 log_warnx("lldpctl", "unable to read directory %s",
415 arg);
416 return;
417 }
418 for (int i=0; i < n; i++) {
419 char *fullname;
420 if (asprintf(&fullname, "%s/%s", arg, namelist[i]->d_name) != -1) {
421 input_append(fullname, inputs, 0);
422 free(fullname);
423 }
424 free(namelist[i]);
425 }
426 free(namelist);
427 }
428
429 int
430 main(int argc, char *argv[])
431 {
432 int ch, debug = 0, use_syslog = 0, rc = EXIT_FAILURE;
433 const char *fmt = "plain";
434 lldpctl_conn_t *conn = NULL;
435 const char *options = is_lldpctl(argv[0])?"hdvf:u:":"hdsvf:c:u:";
436
437 int gotinputs = 0, version = 0;
438 struct inputs inputs;
439 TAILQ_INIT(&inputs);
440
441 ctlname = lldpctl_get_default_transport();
442
443 signal(SIGHUP, SIG_IGN);
444
445 /* Get and parse command line options */
446 optind = 1;
447 while ((ch = getopt(argc, argv, options)) != -1) {
448 switch (ch) {
449 case 'd':
450 if (use_syslog)
451 use_syslog = 0;
452 else
453 debug++;
454 break;
455 case 's':
456 if (debug == 0)
457 use_syslog = 1;
458 else
459 debug--;
460 break;
461 case 'h':
462 usage();
463 break;
464 case 'u':
465 ctlname = optarg;
466 break;
467 case 'v':
468 version++;
469 break;
470 case 'f':
471 fmt = optarg;
472 break;
473 case 'c':
474 if (!gotinputs) {
475 log_init(use_syslog, debug, __progname);
476 lldpctl_log_level(debug + 1);
477 gotinputs = 1;
478 }
479 input_append(optarg, &inputs, 1);
480 break;
481 default:
482 usage();
483 }
484 }
485
486 if (version) {
487 version_display(stdout, "lldpcli", version > 1);
488 exit(0);
489 }
490
491 if (!gotinputs) {
492 log_init(use_syslog, debug, __progname);
493 lldpctl_log_level(debug + 1);
494 }
495
496 /* Disable SIGPIPE */
497 signal(SIGPIPE, SIG_IGN);
498
499 /* Register commands */
500 root = register_commands();
501
502 /* Make a connection */
503 log_debug("lldpctl", "connect to lldpd");
504 conn = lldpctl_new_name(ctlname, NULL, NULL, NULL);
505 if (conn == NULL) goto end;
506
507 /* Process file inputs */
508 while (gotinputs && !TAILQ_EMPTY(&inputs)) {
509 /* coverity[use_after_free]
510 TAILQ_REMOVE does the right thing */
511 struct input *first = TAILQ_FIRST(&inputs);
512 log_debug("lldpctl", "process: %s", first->name);
513 FILE *file = fopen(first->name, "r");
514 if (file) {
515 size_t n;
516 ssize_t len;
517 char *line;
518 while (line = NULL, len = 0, (len = getline(&line, &n, file)) > 0) {
519 if (line[len - 1] == '\n') {
520 line[len - 1] = '\0';
521 parse_and_exec(conn, fmt, line);
522 }
523 free(line);
524 }
525 free(line);
526 fclose(file);
527 } else {
528 log_warn("lldpctl", "unable to open %s",
529 first->name);
530 }
531 TAILQ_REMOVE(&inputs, first, next);
532 free(first->name);
533 free(first);
534 }
535
536 /* Process additional arguments. First if we are lldpctl (interfaces) */
537 if (is_lldpctl(NULL)) {
538 char *line = NULL;
539 for (int i = optind; i < argc; i++) {
540 char *prev = line;
541 if (asprintf(&line, "%s%s%s",
542 prev?prev:"show neigh ports ", argv[i],
543 (i == argc - 1)?" details":",") == -1) {
544 log_warnx("lldpctl", "not enough memory to build list of interfaces");
545 free(prev);
546 goto end;
547 }
548 free(prev);
549 }
550 if (line == NULL && (line = strdup("show neigh details")) == NULL) {
551 log_warnx("lldpctl", "not enough memory to build command line");
552 goto end;
553 }
554 log_debug("lldpctl", "execute %s", line);
555 if (parse_and_exec(conn, fmt, line) != -1)
556 rc = EXIT_SUCCESS;
557 free(line);
558 goto end;
559 }
560
561 /* Then, if we are regular lldpcli (command line) */
562 if (optind < argc) {
563 const char **cargv;
564 int cargc;
565 cargv = &((const char **)argv)[optind];
566 cargc = argc - optind;
567 if (cmd_exec(conn, fmt, cargc, cargv) == 1)
568 rc = EXIT_SUCCESS;
569 goto end;
570 }
571
572 if (gotinputs) {
573 rc = EXIT_SUCCESS;
574 goto end;
575 }
576
577 /* Interactive session */
578 #ifdef HAVE_LIBREADLINE
579 rl_bind_key('?', cmd_help);
580 rl_bind_key('\t', cmd_complete);
581 #endif
582 const char *line;
583 do {
584 if ((line = readline(prompt()))) {
585 int n = parse_and_exec(conn, fmt, line);
586 (void)n;
587 #ifdef HAVE_READLINE_HISTORY
588 if (n != 0) add_history(line);
589 #endif
590 }
591 } while (!must_exit && line != NULL);
592 rc = EXIT_SUCCESS;
593
594 end:
595 while (!TAILQ_EMPTY(&inputs)) {
596 /* coverity[use_after_free]
597 TAILQ_REMOVE does the right thing */
598 struct input *first = TAILQ_FIRST(&inputs);
599 TAILQ_REMOVE(&inputs, first, next);
600 free(first->name);
601 free(first);
602 }
603 if (conn) lldpctl_release(conn);
604 if (root) commands_free(root);
605 return rc;
606 }