123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771 |
- /*
- * cli - Command Line Interface for the Unified Configuration Interface
- * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
- #include <strings.h>
- #include <string.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <errno.h>
- #include <unistd.h>
- #include "uci.h"
- #define MAX_ARGS 4 /* max command line arguments for batch mode */
- static const char *delimiter = " ";
- static const char *appname;
- static enum {
- CLI_FLAG_MERGE = (1 << 0),
- CLI_FLAG_QUIET = (1 << 1),
- CLI_FLAG_NOCOMMIT = (1 << 2),
- CLI_FLAG_BATCH = (1 << 3),
- CLI_FLAG_SHOW_EXT = (1 << 4),
- } flags;
- static FILE *input;
- static struct uci_context *ctx;
- enum {
- /* section cmds */
- CMD_GET,
- CMD_SET,
- CMD_ADD_LIST,
- CMD_DEL_LIST,
- CMD_DEL,
- CMD_RENAME,
- CMD_REVERT,
- CMD_REORDER,
- /* package cmds */
- CMD_SHOW,
- CMD_CHANGES,
- CMD_EXPORT,
- CMD_COMMIT,
- /* other cmds */
- CMD_ADD,
- CMD_IMPORT,
- CMD_HELP,
- };
- struct uci_type_list {
- unsigned int idx;
- const char *name;
- struct uci_type_list *next;
- };
- static struct uci_type_list *type_list = NULL;
- static char *typestr = NULL;
- static const char *cur_section_ref = NULL;
- static int uci_cmd(int argc, char **argv);
- static void
- uci_reset_typelist(void)
- {
- struct uci_type_list *type;
- while (type_list != NULL) {
- type = type_list;
- type_list = type_list->next;
- free(type);
- }
- if (typestr) {
- free(typestr);
- typestr = NULL;
- }
- cur_section_ref = NULL;
- }
- static char *
- uci_lookup_section_ref(struct uci_section *s)
- {
- struct uci_type_list *ti = type_list;
- char *ret;
- int maxlen;
- if (!(flags & CLI_FLAG_SHOW_EXT))
- return s->e.name;
- /* look up in section type list */
- while (ti) {
- if (strcmp(ti->name, s->type) == 0)
- break;
- ti = ti->next;
- }
- if (!ti) {
- ti = calloc(1, sizeof(struct uci_type_list));
- if (!ti)
- return NULL;
- ti->next = type_list;
- type_list = ti;
- ti->name = s->type;
- }
- if (s->anonymous) {
- maxlen = strlen(s->type) + 1 + 2 + 10;
- if (!typestr) {
- typestr = malloc(maxlen);
- if (!typestr)
- return NULL;
- } else {
- void *p = realloc(typestr, maxlen);
- if (!p) {
- free(typestr);
- return NULL;
- }
- typestr = p;
- }
- if (typestr)
- sprintf(typestr, "@%s[%d]", ti->name, ti->idx);
- ret = typestr;
- } else {
- ret = s->e.name;
- }
- ti->idx++;
- return ret;
- }
- static void uci_usage(void)
- {
- fprintf(stderr,
- "Usage: %s [<options>] <command> [<arguments>]\n\n"
- "Commands:\n"
- "\tbatch\n"
- "\texport [<config>]\n"
- "\timport [<config>]\n"
- "\tchanges [<config>]\n"
- "\tcommit [<config>]\n"
- "\tadd <config> <section-type>\n"
- "\tadd_list <config>.<section>.<option>=<string>\n"
- "\tdel_list <config>.<section>.<option>=<string>\n"
- "\tshow [<config>[.<section>[.<option>]]]\n"
- "\tget <config>.<section>[.<option>]\n"
- "\tset <config>.<section>[.<option>]=<value>\n"
- "\tdelete <config>[.<section>[[.<option>][=<id>]]]\n"
- "\trename <config>.<section>[.<option>]=<name>\n"
- "\trevert <config>[.<section>[.<option>]]\n"
- "\treorder <config>.<section>=<position>\n"
- "\n"
- "Options:\n"
- "\t-c <path> set the search path for config files (default: /etc/config)\n"
- "\t-d <str> set the delimiter for list values in uci show\n"
- "\t-f <file> use <file> as input instead of stdin\n"
- "\t-m when importing, merge data into an existing package\n"
- "\t-n name unnamed sections on export (default)\n"
- "\t-N don't name unnamed sections\n"
- "\t-p <path> add a search path for config change files\n"
- "\t-P <path> add a search path for config change files and use as default\n"
- "\t-t <path> set save path for config change files\n"
- "\t-q quiet mode (don't print error messages)\n"
- "\t-s force strict mode (stop on parser errors, default)\n"
- "\t-S disable strict mode\n"
- "\t-X do not use extended syntax on 'show'\n"
- "\n",
- appname
- );
- }
- static void cli_perror(void)
- {
- if (flags & CLI_FLAG_QUIET)
- return;
- uci_perror(ctx, appname);
- }
- __attribute__((format(printf, 1, 2)))
- static void cli_error(const char *fmt, ...)
- {
- va_list ap;
- if (flags & CLI_FLAG_QUIET)
- return;
- va_start(ap, fmt);
- vfprintf(stderr, fmt, ap);
- va_end(ap);
- }
- static void uci_print_value(FILE *f, const char *v)
- {
- fprintf(f, "'");
- while (*v) {
- if (*v != '\'')
- fputc(*v, f);
- else
- fprintf(f, "'\\''");
- v++;
- }
- fprintf(f, "'");
- }
- static void uci_show_value(struct uci_option *o, bool quote)
- {
- struct uci_element *e;
- bool sep = false;
- char *space;
- switch(o->type) {
- case UCI_TYPE_STRING:
- if (quote)
- uci_print_value(stdout, o->v.string);
- else
- printf("%s", o->v.string);
- printf("\n");
- break;
- case UCI_TYPE_LIST:
- uci_foreach_element(&o->v.list, e) {
- printf("%s", (sep ? delimiter : ""));
- space = strpbrk(e->name, " \t\r\n");
- if (!space && !quote)
- printf("%s", e->name);
- else
- uci_print_value(stdout, e->name);
- sep = true;
- }
- printf("\n");
- break;
- default:
- printf("<unknown>\n");
- break;
- }
- }
- static void uci_show_option(struct uci_option *o, bool quote)
- {
- printf("%s.%s.%s=",
- o->section->package->e.name,
- (cur_section_ref ? cur_section_ref : o->section->e.name),
- o->e.name);
- uci_show_value(o, quote);
- }
- static void uci_show_section(struct uci_section *s)
- {
- struct uci_element *e;
- const char *cname;
- const char *sname;
- cname = s->package->e.name;
- sname = (cur_section_ref ? cur_section_ref : s->e.name);
- printf("%s.%s=%s\n", cname, sname, s->type);
- uci_foreach_element(&s->options, e) {
- uci_show_option(uci_to_option(e), true);
- }
- }
- static void uci_show_package(struct uci_package *p)
- {
- struct uci_element *e;
- uci_reset_typelist();
- uci_foreach_element( &p->sections, e) {
- struct uci_section *s = uci_to_section(e);
- cur_section_ref = uci_lookup_section_ref(s);
- uci_show_section(s);
- }
- uci_reset_typelist();
- }
- static void uci_show_changes(struct uci_package *p)
- {
- struct uci_element *e;
- uci_foreach_element(&p->saved_delta, e) {
- struct uci_delta *h = uci_to_delta(e);
- char *prefix = "";
- char *op = "=";
- switch(h->cmd) {
- case UCI_CMD_REMOVE:
- prefix = "-";
- break;
- case UCI_CMD_LIST_ADD:
- op = "+=";
- break;
- case UCI_CMD_LIST_DEL:
- op = "-=";
- break;
- default:
- break;
- }
- printf("%s%s.%s", prefix, p->e.name, h->section);
- if (e->name)
- printf(".%s", e->name);
- if (h->cmd != UCI_CMD_REMOVE) {
- printf("%s", op);
- uci_print_value(stdout, h->value);
- }
- printf("\n");
- }
- }
- static int package_cmd(int cmd, char *tuple)
- {
- struct uci_ptr ptr;
- int ret = 1;
- if (uci_lookup_ptr(ctx, &ptr, tuple, true) != UCI_OK) {
- cli_perror();
- return 1;
- }
- switch(cmd) {
- case CMD_CHANGES:
- uci_show_changes(ptr.p);
- break;
- case CMD_COMMIT:
- if (flags & CLI_FLAG_NOCOMMIT) {
- ret = 0;
- goto out;
- }
- if (uci_commit(ctx, &ptr.p, false) != UCI_OK) {
- cli_perror();
- goto out;
- }
- break;
- case CMD_EXPORT:
- if (uci_export(ctx, stdout, ptr.p, true) != UCI_OK) {
- goto out;
- }
- break;
- case CMD_SHOW:
- if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) {
- ctx->err = UCI_ERR_NOTFOUND;
- cli_perror();
- goto out;
- }
- if (ptr.o)
- uci_show_option(ptr.o, true);
- else if (ptr.s)
- uci_show_section(ptr.s);
- else if (ptr.p)
- uci_show_package(ptr.p);
- else
- goto out; /* should not happen */
- break;
- }
- ret = 0;
- out:
- if (ptr.p)
- uci_unload(ctx, ptr.p);
- return ret;
- }
- static int uci_do_import(int argc, char **argv)
- {
- struct uci_package *package = NULL;
- char *name = NULL;
- int ret = UCI_OK;
- bool merge = false;
- if (argc > 2)
- return 255;
- if (argc == 2)
- name = argv[1];
- else if (flags & CLI_FLAG_MERGE)
- /* need a package to merge */
- return 255;
- if (flags & CLI_FLAG_MERGE) {
- if (uci_load(ctx, name, &package) != UCI_OK)
- package = NULL;
- else
- merge = true;
- }
- ret = uci_import(ctx, input, name, &package, (name != NULL));
- if (ret == UCI_OK) {
- if (merge) {
- ret = uci_save(ctx, package);
- } else {
- struct uci_element *e;
- /* loop through all config sections and overwrite existing data */
- uci_foreach_element(&ctx->root, e) {
- struct uci_package *p = uci_to_package(e);
- ret = uci_commit(ctx, &p, true);
- }
- }
- }
- if (ret != UCI_OK) {
- cli_perror();
- return 1;
- }
- return 0;
- }
- static int uci_do_package_cmd(int cmd, int argc, char **argv)
- {
- char **configs = NULL;
- char **p;
- int ret = 1;
- if (argc > 2)
- return 255;
- if (argc == 2)
- return package_cmd(cmd, argv[1]);
- if ((uci_list_configs(ctx, &configs) != UCI_OK) || !configs) {
- cli_perror();
- goto out;
- }
- for (p = configs; *p; p++) {
- package_cmd(cmd, *p);
- }
- ret = 0;
- out:
- free(configs);
- return ret;
- }
- static int uci_do_add(int argc, char **argv)
- {
- struct uci_package *p = NULL;
- struct uci_section *s = NULL;
- int ret;
- if (argc != 3)
- return 255;
- ret = uci_load(ctx, argv[1], &p);
- if (ret != UCI_OK)
- goto done;
- ret = uci_add_section(ctx, p, argv[2], &s);
- if (ret != UCI_OK)
- goto done;
- ret = uci_save(ctx, p);
- done:
- if (ret != UCI_OK)
- cli_perror();
- else if (s)
- fprintf(stdout, "%s\n", s->e.name);
- return ret;
- }
- static int uci_do_section_cmd(int cmd, int argc, char **argv)
- {
- struct uci_ptr ptr;
- int ret = UCI_OK;
- int dummy;
- if (argc != 2)
- return 255;
- if (uci_lookup_ptr(ctx, &ptr, argv[1], true) != UCI_OK) {
- cli_perror();
- return 1;
- }
- if (ptr.value && (cmd != CMD_SET) && (cmd != CMD_DEL) &&
- (cmd != CMD_ADD_LIST) && (cmd != CMD_DEL_LIST) &&
- (cmd != CMD_RENAME) && (cmd != CMD_REORDER))
- return 1;
- switch(cmd) {
- case CMD_GET:
- if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) {
- ctx->err = UCI_ERR_NOTFOUND;
- cli_perror();
- return 1;
- }
- if (ptr.o)
- uci_show_value(ptr.o, false);
- else if (ptr.s)
- printf("%s\n", ptr.s->type);
- break;
- case CMD_RENAME:
- ret = uci_rename(ctx, &ptr);
- break;
- case CMD_REVERT:
- ret = uci_revert(ctx, &ptr);
- break;
- case CMD_SET:
- ret = uci_set(ctx, &ptr);
- break;
- case CMD_ADD_LIST:
- ret = uci_add_list(ctx, &ptr);
- break;
- case CMD_DEL_LIST:
- ret = uci_del_list(ctx, &ptr);
- break;
- case CMD_REORDER:
- if (!ptr.s || !ptr.value) {
- ctx->err = UCI_ERR_NOTFOUND;
- cli_perror();
- return 1;
- }
- ret = uci_reorder_section(ctx, ptr.s, strtoul(ptr.value, NULL, 10));
- break;
- case CMD_DEL:
- if (ptr.value && !sscanf(ptr.value, "%d", &dummy))
- return 1;
- ret = uci_delete(ctx, &ptr);
- break;
- }
- /* no save necessary for get */
- if ((cmd == CMD_GET) || (cmd == CMD_REVERT))
- return 0;
- /* save changes, but don't commit them yet */
- if (ret == UCI_OK)
- ret = uci_save(ctx, ptr.p);
- if (ret != UCI_OK) {
- cli_perror();
- return 1;
- }
- return 0;
- }
- static int uci_batch_cmd(void)
- {
- char *argv[MAX_ARGS + 2];
- char *str = NULL;
- int ret = 0;
- int i, j;
- for(i = 0; i <= MAX_ARGS; i++) {
- if (i == MAX_ARGS) {
- cli_error("Too many arguments\n");
- return 1;
- }
- argv[i] = NULL;
- if (uci_parse_argument(ctx, input, &str, &argv[i]) != UCI_OK) {
- cli_perror();
- i = 0;
- break;
- }
- if (!argv[i][0])
- break;
- argv[i] = strdup(argv[i]);
- if (!argv[i]) {
- cli_error("uci: %s", strerror(errno));
- return 1;
- }
- }
- argv[i] = NULL;
- if (i > 0) {
- if (!strcasecmp(argv[0], "exit"))
- return 254;
- ret = uci_cmd(i, argv);
- } else
- return 0;
- for (j = 0; j < i; j++) {
- free(argv[j]);
- }
- return ret;
- }
- static int uci_batch(void)
- {
- int ret = 0;
- flags |= CLI_FLAG_BATCH;
- while (!feof(input)) {
- struct uci_element *e, *tmp;
- ret = uci_batch_cmd();
- if (ret == 254)
- return 0;
- else if (ret == 255)
- cli_error("Unknown command\n");
- /* clean up */
- uci_foreach_element_safe(&ctx->root, tmp, e) {
- uci_unload(ctx, uci_to_package(e));
- }
- }
- flags &= ~CLI_FLAG_BATCH;
- return 0;
- }
- static int uci_cmd(int argc, char **argv)
- {
- int cmd = 0;
- if (!strcasecmp(argv[0], "batch") && !(flags & CLI_FLAG_BATCH))
- return uci_batch();
- else if (!strcasecmp(argv[0], "show"))
- cmd = CMD_SHOW;
- else if (!strcasecmp(argv[0], "changes"))
- cmd = CMD_CHANGES;
- else if (!strcasecmp(argv[0], "export"))
- cmd = CMD_EXPORT;
- else if (!strcasecmp(argv[0], "commit"))
- cmd = CMD_COMMIT;
- else if (!strcasecmp(argv[0], "get"))
- cmd = CMD_GET;
- else if (!strcasecmp(argv[0], "set"))
- cmd = CMD_SET;
- else if (!strcasecmp(argv[0], "ren") ||
- !strcasecmp(argv[0], "rename"))
- cmd = CMD_RENAME;
- else if (!strcasecmp(argv[0], "revert"))
- cmd = CMD_REVERT;
- else if (!strcasecmp(argv[0], "reorder"))
- cmd = CMD_REORDER;
- else if (!strcasecmp(argv[0], "del") ||
- !strcasecmp(argv[0], "delete"))
- cmd = CMD_DEL;
- else if (!strcasecmp(argv[0], "import"))
- cmd = CMD_IMPORT;
- else if (!strcasecmp(argv[0], "help"))
- cmd = CMD_HELP;
- else if (!strcasecmp(argv[0], "add"))
- cmd = CMD_ADD;
- else if (!strcasecmp(argv[0], "add_list"))
- cmd = CMD_ADD_LIST;
- else if (!strcasecmp(argv[0], "del_list"))
- cmd = CMD_DEL_LIST;
- else
- cmd = -1;
- switch(cmd) {
- case CMD_ADD_LIST:
- case CMD_DEL_LIST:
- case CMD_GET:
- case CMD_SET:
- case CMD_DEL:
- case CMD_RENAME:
- case CMD_REVERT:
- case CMD_REORDER:
- return uci_do_section_cmd(cmd, argc, argv);
- case CMD_SHOW:
- case CMD_EXPORT:
- case CMD_COMMIT:
- case CMD_CHANGES:
- return uci_do_package_cmd(cmd, argc, argv);
- case CMD_IMPORT:
- return uci_do_import(argc, argv);
- case CMD_ADD:
- return uci_do_add(argc, argv);
- case CMD_HELP:
- uci_usage();
- return 0;
- default:
- return 255;
- }
- }
- int main(int argc, char **argv)
- {
- int ret;
- int c;
- flags = CLI_FLAG_SHOW_EXT;
- appname = argv[0];
- input = stdin;
- ctx = uci_alloc_context();
- if (!ctx) {
- cli_error("Out of memory\n");
- return 1;
- }
- while((c = getopt(argc, argv, "c:d:f:LmnNp:P:qsSt:X")) != -1) {
- switch(c) {
- case 'c':
- uci_set_confdir(ctx, optarg);
- break;
- case 'd':
- delimiter = optarg;
- break;
- case 'f':
- if (input != stdin) {
- fclose(input);
- cli_error("Too many input files.\n");
- return 1;
- }
- input = fopen(optarg, "r");
- if (!input) {
- cli_error("uci: %s", strerror(errno));
- return 1;
- }
- break;
- case 'm':
- flags |= CLI_FLAG_MERGE;
- break;
- case 's':
- ctx->flags |= UCI_FLAG_STRICT;
- break;
- case 'S':
- ctx->flags &= ~UCI_FLAG_STRICT;
- ctx->flags |= UCI_FLAG_PERROR;
- break;
- case 'n':
- ctx->flags |= UCI_FLAG_EXPORT_NAME;
- break;
- case 'N':
- ctx->flags &= ~UCI_FLAG_EXPORT_NAME;
- break;
- case 'p':
- uci_add_delta_path(ctx, optarg);
- break;
- case 'P':
- uci_set_savedir(ctx, optarg);
- flags |= CLI_FLAG_NOCOMMIT;
- break;
- case 'q':
- flags |= CLI_FLAG_QUIET;
- break;
- case 't':
- uci_set_savedir(ctx, optarg);
- break;
- case 'X':
- flags &= ~CLI_FLAG_SHOW_EXT;
- break;
- default:
- uci_usage();
- return 0;
- }
- }
- if (optind > 1)
- argv[optind - 1] = argv[0];
- argv += optind - 1;
- argc -= optind - 1;
- if (argc < 2) {
- uci_usage();
- return 0;
- }
- ret = uci_cmd(argc - 1, argv + 1);
- if (input != stdin)
- fclose(input);
- if (ret == 255)
- uci_usage();
- uci_free_context(ctx);
- return ret;
- }
|