proper commit support, better debugging
[project/uci.git] / file.c
1 /*
2 * libuci - Library for the Unified Configuration Interface
3 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
4 *
5 * this program is free software; you can redistribute it and/or modify
6 * it under the terms of the gnu lesser general public license version 2.1
7 * as published by the free software foundation
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15 /*
16 * This file contains the code for parsing uci config files
17 */
18
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <stdbool.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <stdio.h>
25 #include <ctype.h>
26
27 #define LINEBUF 32
28 #define LINEBUF_MAX 4096
29
30 static void uci_parse_error(struct uci_context *ctx, char *pos, char *reason)
31 {
32 struct uci_parse_context *pctx = ctx->pctx;
33
34 pctx->reason = reason;
35 pctx->byte = pos - pctx->buf;
36 UCI_THROW(ctx, UCI_ERR_PARSE);
37 }
38
39 /*
40 * Fetch a new line from the input stream and resize buffer if necessary
41 */
42 static void uci_getln(struct uci_context *ctx, int offset)
43 {
44 struct uci_parse_context *pctx = ctx->pctx;
45 char *p;
46 int ofs;
47
48 if (pctx->buf == NULL) {
49 pctx->buf = uci_malloc(ctx, LINEBUF);
50 pctx->bufsz = LINEBUF;
51 }
52
53 ofs = offset;
54 do {
55 p = &pctx->buf[ofs];
56 p[ofs] = 0;
57
58 p = fgets(p, pctx->bufsz - ofs, pctx->file);
59 if (!p || !*p)
60 return;
61
62 ofs += strlen(p);
63 if (pctx->buf[ofs - 1] == '\n') {
64 pctx->line++;
65 pctx->buf[ofs - 1] = 0;
66 return;
67 }
68
69 if (pctx->bufsz > LINEBUF_MAX/2)
70 uci_parse_error(ctx, p, "line too long");
71
72 pctx->bufsz *= 2;
73 pctx->buf = uci_realloc(ctx, pctx->buf, pctx->bufsz);
74 } while (1);
75 }
76
77 /*
78 * Clean up all extra memory used by the parser and exporter
79 */
80 static void uci_file_cleanup(struct uci_context *ctx)
81 {
82 struct uci_parse_context *pctx;
83
84 if (ctx->buf) {
85 free(ctx->buf);
86 ctx->buf = NULL;
87 ctx->bufsz = 0;
88 }
89
90 pctx = ctx->pctx;
91 if (!pctx)
92 return;
93
94 ctx->pctx = NULL;
95 if (pctx->package)
96 uci_free_package(&pctx->package);
97
98 if (pctx->buf)
99 free(pctx->buf);
100
101 free(pctx);
102 }
103
104 /*
105 * parse a character escaped by '\'
106 * returns true if the escaped character is to be parsed
107 * returns false if the escaped character is to be ignored
108 */
109 static inline bool parse_backslash(struct uci_context *ctx, char **str)
110 {
111 /* skip backslash */
112 *str += 1;
113
114 /* undecoded backslash at the end of line, fetch the next line */
115 if (!**str) {
116 *str += 1;
117 uci_getln(ctx, *str - ctx->pctx->buf);
118 return false;
119 }
120
121 /* FIXME: decode escaped char, necessary? */
122 return true;
123 }
124
125 /*
126 * move the string pointer forward until a non-whitespace character or
127 * EOL is reached
128 */
129 static void skip_whitespace(struct uci_context *ctx, char **str)
130 {
131 restart:
132 while (**str && isspace(**str))
133 *str += 1;
134
135 if (**str == '\\') {
136 if (!parse_backslash(ctx, str))
137 goto restart;
138 }
139 }
140
141 static inline void addc(char **dest, char **src)
142 {
143 **dest = **src;
144 *dest += 1;
145 *src += 1;
146 }
147
148 /*
149 * parse a double quoted string argument from the command line
150 */
151 static void parse_double_quote(struct uci_context *ctx, char **str, char **target)
152 {
153 char c;
154
155 /* skip quote character */
156 *str += 1;
157
158 while ((c = **str)) {
159 switch(c) {
160 case '"':
161 **target = 0;
162 *str += 1;
163 return;
164 case '\\':
165 if (!parse_backslash(ctx, str))
166 continue;
167 /* fall through */
168 default:
169 addc(target, str);
170 break;
171 }
172 }
173 uci_parse_error(ctx, *str, "unterminated \"");
174 }
175
176 /*
177 * parse a single quoted string argument from the command line
178 */
179 static void parse_single_quote(struct uci_context *ctx, char **str, char **target)
180 {
181 char c;
182 /* skip quote character */
183 *str += 1;
184
185 while ((c = **str)) {
186 switch(c) {
187 case '\'':
188 **target = 0;
189 *str += 1;
190 return;
191 default:
192 addc(target, str);
193 }
194 }
195 uci_parse_error(ctx, *str, "unterminated '");
196 }
197
198 /*
199 * parse a string from the command line and detect the quoting style
200 */
201 static void parse_str(struct uci_context *ctx, char **str, char **target)
202 {
203 do {
204 switch(**str) {
205 case '\'':
206 parse_single_quote(ctx, str, target);
207 break;
208 case '"':
209 parse_double_quote(ctx, str, target);
210 break;
211 case 0:
212 goto done;
213 case '\\':
214 if (!parse_backslash(ctx, str))
215 continue;
216 /* fall through */
217 default:
218 addc(target, str);
219 break;
220 }
221 } while (**str && !isspace(**str));
222 done:
223
224 /*
225 * if the string was unquoted and we've stopped at a whitespace
226 * character, skip to the next one, because the whitespace will
227 * be overwritten by a null byte here
228 */
229 if (**str)
230 *str += 1;
231
232 /* terminate the parsed string */
233 **target = 0;
234 }
235
236 /*
237 * extract the next argument from the command line
238 */
239 static char *next_arg(struct uci_context *ctx, char **str, bool required, bool name)
240 {
241 char *val;
242 char *ptr;
243
244 val = ptr = *str;
245 skip_whitespace(ctx, str);
246 parse_str(ctx, str, &ptr);
247 if (required && !*val)
248 uci_parse_error(ctx, *str, "insufficient arguments");
249 if (name && !uci_validate_name(val))
250 uci_parse_error(ctx, val, "invalid character in field");
251
252 return val;
253 }
254
255 /*
256 * verify that the end of the line or command is reached.
257 * throw an error if extra arguments are given on the command line
258 */
259 static void assert_eol(struct uci_context *ctx, char **str)
260 {
261 char *tmp;
262
263 tmp = next_arg(ctx, str, false, false);
264 if (tmp && *tmp)
265 uci_parse_error(ctx, *str, "too many arguments");
266 }
267
268 /*
269 * switch to a different config, either triggered by uci_load, or by a
270 * 'package <...>' statement in the import file
271 */
272 static void uci_switch_config(struct uci_context *ctx)
273 {
274 struct uci_parse_context *pctx;
275 struct uci_element *e;
276 const char *name;
277
278 pctx = ctx->pctx;
279 name = pctx->name;
280
281 /* add the last config to main config file list */
282 if (pctx->package) {
283 uci_list_add(&ctx->root, &pctx->package->e.list);
284
285 pctx->package = NULL;
286 pctx->section = NULL;
287 }
288
289 if (!name)
290 return;
291
292 /*
293 * if an older config under the same name exists, unload it
294 * ignore errors here, e.g. if the config was not found
295 */
296 e = uci_lookup_list(ctx, &ctx->root, name);
297 if (e)
298 UCI_THROW(ctx, UCI_ERR_DUPLICATE);
299 pctx->package = uci_alloc_package(ctx, name);
300 }
301
302 /*
303 * parse the 'package' uci command (next config package)
304 */
305 static void uci_parse_package(struct uci_context *ctx, char **str, bool single)
306 {
307 char *name = NULL;
308
309 /* command string null-terminated by strtok */
310 *str += strlen(*str) + 1;
311
312 name = next_arg(ctx, str, true, true);
313 assert_eol(ctx, str);
314 if (single)
315 return;
316
317 ctx->pctx->name = name;
318 uci_switch_config(ctx);
319 }
320
321 /*
322 * parse the 'config' uci command (open a section)
323 */
324 static void uci_parse_config(struct uci_context *ctx, char **str)
325 {
326 char *name = NULL;
327 char *type = NULL;
328
329 if (!ctx->pctx->package) {
330 if (!ctx->pctx->name)
331 uci_parse_error(ctx, *str, "attempting to import a file without a package name");
332
333 uci_switch_config(ctx);
334 }
335
336 /* command string null-terminated by strtok */
337 *str += strlen(*str) + 1;
338
339 type = next_arg(ctx, str, true, true);
340 name = next_arg(ctx, str, false, true);
341 assert_eol(ctx, str);
342 ctx->pctx->section = uci_alloc_section(ctx->pctx->package, type, name);
343 }
344
345 /*
346 * parse the 'option' uci command (open a value)
347 */
348 static void uci_parse_option(struct uci_context *ctx, char **str)
349 {
350 char *name = NULL;
351 char *value = NULL;
352
353 if (!ctx->pctx->section)
354 uci_parse_error(ctx, *str, "option command found before the first section");
355
356 /* command string null-terminated by strtok */
357 *str += strlen(*str) + 1;
358
359 name = next_arg(ctx, str, true, true);
360 value = next_arg(ctx, str, true, false);
361 assert_eol(ctx, str);
362 uci_alloc_option(ctx->pctx->section, name, value);
363 }
364
365
366 /*
367 * parse a complete input line, split up combined commands by ';'
368 */
369 static void uci_parse_line(struct uci_context *ctx, bool single)
370 {
371 struct uci_parse_context *pctx = ctx->pctx;
372 char *word, *brk = NULL;
373
374 for (word = strtok_r(pctx->buf, ";", &brk);
375 word;
376 word = strtok_r(NULL, ";", &brk)) {
377
378 char *pbrk = NULL;
379 word = strtok_r(word, " \t", &pbrk);
380
381 switch(word[0]) {
382 case 'p':
383 if ((word[1] == 0) || !strcmp(word + 1, "ackage"))
384 uci_parse_package(ctx, &word, single);
385 break;
386 case 'c':
387 if ((word[1] == 0) || !strcmp(word + 1, "onfig"))
388 uci_parse_config(ctx, &word);
389 break;
390 case 'o':
391 if ((word[1] == 0) || !strcmp(word + 1, "ption"))
392 uci_parse_option(ctx, &word);
393 break;
394 default:
395 uci_parse_error(ctx, word, "unterminated command");
396 break;
397 }
398 }
399 }
400
401 /* max number of characters that escaping adds to the string */
402 #define UCI_QUOTE_ESCAPE "'\\''"
403
404 /*
405 * escape an uci string for export
406 */
407 static char *uci_escape(struct uci_context *ctx, char *str)
408 {
409 char *s, *p;
410 int pos = 0;
411
412 if (!ctx->buf) {
413 ctx->bufsz = LINEBUF;
414 ctx->buf = malloc(LINEBUF);
415 }
416
417 s = str;
418 p = strchr(str, '\'');
419 if (!p)
420 return str;
421
422 do {
423 int len = p - s;
424 if (len > 0) {
425 if (p + sizeof(UCI_QUOTE_ESCAPE) - str >= ctx->bufsz) {
426 ctx->bufsz *= 2;
427 ctx->buf = realloc(ctx->buf, ctx->bufsz);
428 if (!ctx->buf)
429 UCI_THROW(ctx, UCI_ERR_MEM);
430 }
431 memcpy(&ctx->buf[pos], s, len);
432 pos += len;
433 }
434 strcpy(&ctx->buf[pos], UCI_QUOTE_ESCAPE);
435 pos += sizeof(UCI_QUOTE_ESCAPE);
436 s = p + 1;
437 } while ((p = strchr(s, '\'')));
438
439 return ctx->buf;
440 }
441
442
443 /*
444 * export a single config package to a file stream
445 */
446 static void uci_export_package(struct uci_package *p, FILE *stream, bool header)
447 {
448 struct uci_context *ctx = p->ctx;
449 struct uci_element *s, *o;
450
451 if (header)
452 fprintf(stream, "package '%s'\n", uci_escape(ctx, p->e.name));
453 uci_foreach_element(&p->sections, s) {
454 struct uci_section *sec = uci_to_section(s);
455 fprintf(stream, "\nconfig '%s'", uci_escape(ctx, sec->type));
456 fprintf(stream, " '%s'\n", uci_escape(ctx, sec->e.name));
457 uci_foreach_element(&sec->options, o) {
458 struct uci_option *opt = uci_to_option(o);
459 fprintf(stream, "\toption '%s'", uci_escape(ctx, opt->e.name));
460 fprintf(stream, " '%s'\n", uci_escape(ctx, opt->value));
461 }
462 }
463 fprintf(stream, "\n");
464 }
465
466 int uci_export(struct uci_context *ctx, FILE *stream, struct uci_package *package, bool header)
467 {
468 struct uci_element *e;
469
470 UCI_HANDLE_ERR(ctx);
471 UCI_ASSERT(ctx, stream != NULL);
472
473 if (package)
474 uci_export_package(package, stream, header);
475 else {
476 uci_foreach_element(&ctx->root, e) {
477 uci_export_package(uci_to_package(e), stream, header);
478 }
479 }
480
481 return 0;
482 }
483
484 int uci_import(struct uci_context *ctx, FILE *stream, const char *name, struct uci_package **package, bool single)
485 {
486 struct uci_parse_context *pctx;
487
488 /* make sure no memory from previous parse attempts is leaked */
489 uci_file_cleanup(ctx);
490
491 pctx = (struct uci_parse_context *) uci_malloc(ctx, sizeof(struct uci_parse_context));
492 ctx->pctx = pctx;
493 pctx->file = stream;
494
495 /*
496 * If 'name' was supplied, assume that the supplied stream does not contain
497 * the appropriate 'package <name>' string to specify the config name
498 * NB: the config file can still override the package name
499 */
500 if (name)
501 pctx->name = name;
502
503 while (!feof(pctx->file)) {
504 uci_getln(ctx, 0);
505 UCI_TRAP_SAVE(ctx, error);
506 if (pctx->buf[0])
507 uci_parse_line(ctx, single);
508 UCI_TRAP_RESTORE(ctx);
509 continue;
510 error:
511 if (ctx->flags & UCI_FLAG_PERROR)
512 uci_perror(ctx, NULL);
513 if ((ctx->errno != UCI_ERR_PARSE) ||
514 (ctx->flags & UCI_FLAG_STRICT))
515 UCI_THROW(ctx, ctx->errno);
516 }
517
518 if (package)
519 *package = pctx->package;
520
521 pctx->name = NULL;
522 uci_switch_config(ctx);
523
524 /* no error happened, we can get rid of the parser context now */
525 uci_file_cleanup(ctx);
526
527 return 0;
528 }
529
530 /*
531 * open a stream and go to the right position
532 *
533 * note: when opening for write and seeking to the beginning of
534 * the stream, truncate the file
535 */
536 static FILE *uci_open_stream(struct uci_context *ctx, const char *filename, int pos, bool write, bool create)
537 {
538 struct stat statbuf;
539 FILE *file = NULL;
540 int fd, ret;
541 int mode = (write ? O_RDWR : O_RDONLY);
542
543 if (create)
544 mode |= O_CREAT;
545
546 if (!write && ((stat(filename, &statbuf) < 0) ||
547 ((statbuf.st_mode & S_IFMT) != S_IFREG))) {
548 UCI_THROW(ctx, UCI_ERR_NOTFOUND);
549 }
550
551 fd = open(filename, mode, UCI_FILEMODE);
552 if (fd <= 0)
553 goto error;
554
555 if (flock(fd, (write ? LOCK_EX : LOCK_SH)) < 0)
556 goto error;
557
558 ret = lseek(fd, 0, pos);
559
560 if (ret < 0)
561 goto error;
562
563 file = fdopen(fd, (write ? "w+" : "r"));
564 if (file)
565 goto done;
566
567 error:
568 UCI_THROW(ctx, UCI_ERR_IO);
569 done:
570 return file;
571 }
572
573 static void uci_close_stream(FILE *stream)
574 {
575 int fd;
576
577 if (!stream)
578 return;
579
580 fd = fileno(stream);
581 flock(fd, LOCK_UN);
582 fclose(stream);
583 }
584
585 static void uci_parse_history_line(struct uci_context *ctx, struct uci_package *p, char *buf)
586 {
587 bool delete = false;
588 char *package = NULL;
589 char *section = NULL;
590 char *option = NULL;
591 char *value = NULL;
592
593 if (buf[0] == '-') {
594 delete = true;
595 buf++;
596 }
597
598 UCI_INTERNAL(uci_parse_tuple, ctx, buf, &package, &section, &option, &value);
599 if (!package || !section || (!delete && !value))
600 goto error;
601 if (strcmp(package, p->e.name) != 0)
602 goto error;
603 if (!uci_validate_name(section))
604 goto error;
605 if (option && !uci_validate_name(option))
606 goto error;
607
608 if (delete)
609 UCI_INTERNAL(uci_del, ctx, p, section, option);
610 else
611 UCI_INTERNAL(uci_set, ctx, p, section, option, value);
612
613 return;
614 error:
615 UCI_THROW(ctx, UCI_ERR_PARSE);
616 }
617
618 static void uci_parse_history(struct uci_context *ctx, FILE *stream, struct uci_package *p)
619 {
620 struct uci_parse_context *pctx;
621
622 /* make sure no memory from previous parse attempts is leaked */
623 uci_file_cleanup(ctx);
624
625 pctx = (struct uci_parse_context *) uci_malloc(ctx, sizeof(struct uci_parse_context));
626 ctx->pctx = pctx;
627 pctx->file = stream;
628
629 while (!feof(pctx->file)) {
630 uci_getln(ctx, 0);
631 if (!pctx->buf[0])
632 continue;
633
634 /*
635 * ignore parse errors in single lines, we want to preserve as much
636 * history as possible
637 */
638 UCI_TRAP_SAVE(ctx, error);
639 uci_parse_history_line(ctx, p, pctx->buf);
640 UCI_TRAP_RESTORE(ctx);
641 error:
642 continue;
643 }
644
645 /* no error happened, we can get rid of the parser context now */
646 uci_file_cleanup(ctx);
647 }
648
649 static void uci_load_history(struct uci_context *ctx, struct uci_package *p, bool flush)
650 {
651 char *filename = NULL;
652 FILE *f = NULL;
653
654 if (!p->confdir)
655 return;
656 if ((asprintf(&filename, "%s/%s", UCI_SAVEDIR, p->e.name) < 0) || !filename)
657 UCI_THROW(ctx, UCI_ERR_MEM);
658
659 UCI_TRAP_SAVE(ctx, done);
660 f = uci_open_stream(ctx, filename, SEEK_SET, flush, false);
661 uci_parse_history(ctx, f, p);
662 UCI_TRAP_RESTORE(ctx);
663
664 done:
665 if (flush && f) {
666 rewind(f);
667 ftruncate(fileno(f), 0);
668 }
669 if (filename)
670 free(filename);
671 uci_close_stream(f);
672 ctx->errno = 0;
673 }
674
675
676 int uci_load(struct uci_context *ctx, const char *name, struct uci_package **package)
677 {
678 char *filename;
679 bool confdir;
680 FILE *file = NULL;
681
682 UCI_HANDLE_ERR(ctx);
683 UCI_ASSERT(ctx, name != NULL);
684
685 switch (name[0]) {
686 case '.':
687 /* relative path outside of /etc/config */
688 if (name[1] != '/')
689 UCI_THROW(ctx, UCI_ERR_NOTFOUND);
690 /* fall through */
691 case '/':
692 /* absolute path outside of /etc/config */
693 filename = uci_strdup(ctx, name);
694 name = strrchr(name, '/') + 1;
695 confdir = false;
696 break;
697 default:
698 /* config in /etc/config */
699 if (strchr(name, '/'))
700 UCI_THROW(ctx, UCI_ERR_INVAL);
701 filename = uci_malloc(ctx, strlen(name) + sizeof(UCI_CONFDIR) + 2);
702 sprintf(filename, UCI_CONFDIR "/%s", name);
703 confdir = true;
704 break;
705 }
706
707 file = uci_open_stream(ctx, filename, SEEK_SET, false, false);
708 ctx->errno = 0;
709 UCI_TRAP_SAVE(ctx, done);
710 uci_import(ctx, file, name, package, true);
711 UCI_TRAP_RESTORE(ctx);
712
713 if (*package) {
714 (*package)->path = filename;
715 (*package)->confdir = confdir;
716 uci_load_history(ctx, *package, false);
717 }
718
719 done:
720 uci_close_stream(file);
721 return ctx->errno;
722 }
723
724 int uci_save(struct uci_context *ctx, struct uci_package *p)
725 {
726 FILE *f = NULL;
727 char *filename = NULL;
728 struct uci_element *e, *tmp;
729
730 UCI_HANDLE_ERR(ctx);
731 UCI_ASSERT(ctx, p != NULL);
732
733 /*
734 * if the config file was outside of the /etc/config path,
735 * don't save the history to a file, update the real file
736 * directly.
737 * does not modify the uci_package pointer
738 */
739 if (!p->confdir)
740 return uci_commit(ctx, &p);
741
742 if (uci_list_empty(&p->history))
743 return 0;
744
745 if ((asprintf(&filename, "%s/%s", UCI_SAVEDIR, p->e.name) < 0) || !filename)
746 UCI_THROW(ctx, UCI_ERR_MEM);
747
748 ctx->errno = 0;
749 UCI_TRAP_SAVE(ctx, done);
750 f = uci_open_stream(ctx, filename, SEEK_END, true, true);
751 UCI_TRAP_RESTORE(ctx);
752
753 uci_foreach_element_safe(&p->history, tmp, e) {
754 struct uci_history *h = uci_to_history(e);
755
756 if (h->cmd == UCI_CMD_REMOVE)
757 fprintf(f, "-");
758
759 fprintf(f, "%s.%s", p->e.name, h->section);
760 if (e->name)
761 fprintf(f, ".%s", e->name);
762
763 if (h->cmd == UCI_CMD_REMOVE)
764 fprintf(f, "\n");
765 else
766 fprintf(f, "=%s\n", h->value);
767 uci_free_history(h);
768 }
769
770 done:
771 uci_close_stream(f);
772 if (filename)
773 free(filename);
774 if (ctx->errno)
775 UCI_THROW(ctx, ctx->errno);
776
777 return 0;
778 }
779
780 int uci_commit(struct uci_context *ctx, struct uci_package **package)
781 {
782 struct uci_package *p;
783 FILE *f = NULL;
784 char *name = NULL;
785 char *path = NULL;
786
787 UCI_HANDLE_ERR(ctx);
788 UCI_ASSERT(ctx, package != NULL);
789 p = *package;
790
791 UCI_ASSERT(ctx, p != NULL);
792 UCI_ASSERT(ctx, p->path != NULL);
793
794 /* open the config file for writing now, so that it is locked */
795 f = uci_open_stream(ctx, p->path, SEEK_SET, true, true);
796
797 /* flush unsaved changes and reload from history file */
798 UCI_TRAP_SAVE(ctx, done);
799 if (p->confdir) {
800 name = uci_strdup(ctx, p->e.name);
801 path = uci_strdup(ctx, p->path);
802 if (!uci_list_empty(&p->history))
803 UCI_INTERNAL(uci_save, ctx, p);
804 uci_free_package(&p);
805 uci_file_cleanup(ctx);
806 UCI_INTERNAL(uci_import, ctx, f, name, &p, true);
807
808 p->path = path;
809 p->confdir = true;
810 *package = p;
811
812 /* freed together with the uci_package */
813 path = NULL;
814
815 /* check for updated history, just in case */
816 uci_load_history(ctx, p, true);
817 }
818
819 rewind(f);
820 ftruncate(fileno(f), 0);
821
822 uci_export(ctx, f, p, false);
823 UCI_TRAP_RESTORE(ctx);
824
825 done:
826 if (name)
827 free(name);
828 if (path)
829 free(path);
830 uci_close_stream(f);
831 if (ctx->errno)
832 UCI_THROW(ctx, ctx->errno);
833
834 return 0;
835 }
836
837
838 /*
839 * This function returns the filename by returning the string
840 * after the last '/' character. By checking for a non-'\0'
841 * character afterwards, directories are ignored (glob marks
842 * those with a trailing '/'
843 */
844 static inline char *get_filename(char *path)
845 {
846 char *p;
847
848 p = strrchr(path, '/');
849 p++;
850 if (!*p)
851 return NULL;
852 return p;
853 }
854
855 int uci_list_configs(struct uci_context *ctx, char ***list)
856 {
857 char **configs;
858 glob_t globbuf;
859 int size, i;
860 char *buf;
861
862 UCI_HANDLE_ERR(ctx);
863
864 if (glob(UCI_CONFDIR "/*", GLOB_MARK, NULL, &globbuf) != 0)
865 UCI_THROW(ctx, UCI_ERR_NOTFOUND);
866
867 size = sizeof(char *) * (globbuf.gl_pathc + 1);
868 for(i = 0; i < globbuf.gl_pathc; i++) {
869 char *p;
870
871 p = get_filename(globbuf.gl_pathv[i]);
872 if (!p)
873 continue;
874
875 size += strlen(p) + 1;
876 }
877
878 configs = uci_malloc(ctx, size);
879 buf = (char *) &configs[globbuf.gl_pathc + 1];
880 for(i = 0; i < globbuf.gl_pathc; i++) {
881 char *p;
882
883 p = get_filename(globbuf.gl_pathv[i]);
884 if (!p)
885 continue;
886
887 configs[i] = buf;
888 strcpy(buf, p);
889 buf += strlen(buf) + 1;
890 }
891 *list = configs;
892
893 return 0;
894 }
895