make more functions available externally
[project/uci.git] / uci.h
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 #ifndef __LIBUCI_H
16 #define __LIBUCI_H
17
18 /*
19  * you can use these defines to enable debugging behavior for
20  * apps compiled against libuci:
21  *
22  * #define UCI_DEBUG_TYPECAST:
23  *   enable uci_element typecast checking at run time
24  *
25  */
26
27 #ifdef DEBUG_ALL
28 #define UCI_DEBUG
29 #define UCI_DEBUG_TYPECAST
30 #endif
31
32 #include <stdbool.h>
33 #include <setjmp.h>
34 #include <stdio.h>
35
36 #define UCI_CONFDIR "/etc/config"
37 #define UCI_SAVEDIR "/tmp/.uci"
38 #define UCI_FILEMODE    0600
39
40 enum
41 {
42         UCI_OK = 0,
43         UCI_ERR_MEM,
44         UCI_ERR_INVAL,
45         UCI_ERR_NOTFOUND,
46         UCI_ERR_IO,
47         UCI_ERR_PARSE,
48         UCI_ERR_DUPLICATE,
49         UCI_ERR_UNKNOWN,
50         UCI_ERR_LAST
51 };
52
53 struct uci_list;
54 struct uci_list
55 {
56         struct uci_list *next;
57         struct uci_list *prev;
58 };
59
60 struct uci_element;
61 struct uci_package;
62 struct uci_section;
63 struct uci_option;
64 struct uci_history;
65 struct uci_context;
66 struct uci_backend;
67 struct uci_parse_context;
68
69
70 /**
71  * uci_parse_tuple: Parse an uci tuple
72  * @ctx: uci context
73  * @str: input string
74  * @package: output package pointer
75  * @section: output section pointer
76  * @option: output option pointer
77  * @value: output value pointer
78  *
79  * format: <package>[.<section>[.<option>]][=<value>]
80  */
81 extern int uci_parse_tuple(struct uci_context *ctx, char *str, char **package, char **section, char **option, char **value);
82
83 /**
84  * uci_alloc_context: Allocate a new uci context
85  */
86 extern struct uci_context *uci_alloc_context(void);
87
88 /**
89  * uci_free_context: Free the uci context including all of its data
90  */
91 extern void uci_free_context(struct uci_context *ctx);
92
93 /**
94  * uci_perror: Print the last uci error that occured
95  * @ctx: uci context
96  * @str: string to print before the error message
97  */
98 extern void uci_perror(struct uci_context *ctx, const char *str);
99
100 /**
101  * uci_import: Import uci config data from a stream
102  * @ctx: uci context
103  * @stream: file stream to import from
104  * @name: (optional) assume the config has the given name
105  * @package: (optional) store the last parsed config package in this variable
106  * @single: ignore the 'package' keyword and parse everything into a single package
107  *
108  * the name parameter is for config files that don't explicitly use the 'package <...>' keyword
109  * if 'package' points to a non-null struct pointer, enable history tracking and merge 
110  */
111 extern int uci_import(struct uci_context *ctx, FILE *stream, const char *name, struct uci_package **package, bool single);
112
113 /**
114  * uci_export: Export one or all uci config packages
115  * @ctx: uci context
116  * @stream: output stream
117  * @package: (optional) uci config package to export
118  * @header: include the package header
119  */
120 extern int uci_export(struct uci_context *ctx, FILE *stream, struct uci_package *package, bool header);
121
122 /**
123  * uci_load: Parse an uci config file and store it in the uci context
124  *
125  * @ctx: uci context
126  * @name: name of the config file (relative to the config directory)
127  * @package: store the loaded config package in this variable
128  */
129 extern int uci_load(struct uci_context *ctx, const char *name, struct uci_package **package);
130
131 /**
132  * uci_unload: Unload a config file from the uci context
133  *
134  * @ctx: uci context
135  * @package: pointer to the uci_package struct
136  */
137 extern int uci_unload(struct uci_context *ctx, struct uci_package *p);
138
139 /**
140  * uci_lookup: Look up an uci element
141  *
142  * @ctx: uci context
143  * @res: where to store the result
144  * @package: uci_package struct 
145  * @section: config section (optional)
146  * @option: option to search for (optional)
147  *
148  * If section is omitted, then a pointer to the config package is returned
149  * If option is omitted, then a pointer to the config section is returned
150  */
151 extern int uci_lookup(struct uci_context *ctx, struct uci_element **res, struct uci_package *package, char *section, char *option);
152
153 /**
154  * uci_add_section: Add an unnamed section
155  * @ctx: uci context
156  * @p: package to add the section to
157  * @type: section type
158  * @res: pointer to store a reference to the new section in
159  */
160 extern int uci_add_section(struct uci_context *ctx, struct uci_package *p, char *type, struct uci_section **res);
161
162 /**
163  * uci_set_element_value: Replace an element's value with a new one
164  * @ctx: uci context
165  * @element: pointer to an uci_element struct pointer
166  * @value: new value
167  * 
168  * Only valid for uci_option and uci_section. Will replace the type string
169  * when used with an uci_section
170  */
171 extern int uci_set_element_value(struct uci_context *ctx, struct uci_element **element, char *value);
172
173 /**
174  * uci_set: Set an element's value; create the element if necessary
175  * @ctx: uci context
176  * @package: package name
177  * @section: section name
178  * @option: option name
179  * @value: value (option) or type (section)
180  * @result: store the updated element in this variable (optional)
181  */
182 extern int uci_set(struct uci_context *ctx, struct uci_package *p, char *section, char *option, char *value, struct uci_element **result);
183
184 /**
185  * uci_rename: Rename an element
186  * @ctx: uci context
187  * @package: package name
188  * @section: section name
189  * @option: option name
190  * @name: new name
191  */
192 extern int uci_rename(struct uci_context *ctx, struct uci_package *p, char *section, char *option, char *name);
193
194 /**
195  * uci_delete_element: Delete a section or option
196  * @ctx: uci context
197  * @e: element (section or option)
198  */
199 extern int uci_delete_element(struct uci_context *ctx, struct uci_element *e);
200
201 /**
202  * uci_delete: Delete a section or option
203  * @ctx: uci context
204  * @p: uci package
205  * @section: section name
206  * @option: option name (optional)
207  */
208 extern int uci_delete(struct uci_context *ctx, struct uci_package *p, char *section, char *option);
209
210 /**
211  * uci_save: save change history for a package
212  * @ctx: uci context
213  * @p: uci_package struct
214  */
215 extern int uci_save(struct uci_context *ctx, struct uci_package *p);
216
217 /**
218  * uci_commit: commit changes to a package
219  * @ctx: uci context
220  * @p: uci_package struct pointer
221  * @overwrite: overwrite existing config data and flush history
222  *
223  * committing may reload the whole uci_package data,
224  * the supplied pointer is updated accordingly
225  */
226 extern int uci_commit(struct uci_context *ctx, struct uci_package **p, bool overwrite);
227
228 /**
229  * uci_list_configs: List available uci config files
230  * @ctx: uci context
231  *
232  * caller is responsible for freeing the allocated memory behind list
233  */
234 extern int uci_list_configs(struct uci_context *ctx, char ***list);
235
236 /** 
237  * uci_set_savedir: override the default history save directory
238  * @ctx: uci context
239  * @dir: directory name
240  */
241 extern int uci_set_savedir(struct uci_context *ctx, const char *dir);
242
243 /** 
244  * uci_set_savedir: override the default config storage directory
245  * @ctx: uci context
246  * @dir: directory name
247  */
248 extern int uci_set_confdir(struct uci_context *ctx, const char *dir);
249
250 /**
251  * uci_add_history_path: add a directory to the search path for change history files
252  * @ctx: uci context
253  * @dir: directory name
254  *
255  * This function allows you to add directories, which contain 'overlays'
256  * for the active config, that will never be committed.
257  */
258 extern int uci_add_history_path(struct uci_context *ctx, const char *dir);
259
260 /**
261  * uci_revert: revert all changes to a config item
262  * @ctx: uci context
263  * @p: pointer to a uci_package struct ptr (will be replaced by the revert)
264  * @section: section name (optional)
265  * @option option name (optional)
266  */
267 extern int uci_revert(struct uci_context *ctx, struct uci_package **p, char *section, char *option);
268
269 /**
270  * uci_parse_argument: parse a shell-style argument, with an arbitrary quoting style
271  * @ctx: uci context
272  * @stream: input stream
273  * @str: pointer to the current line (use NULL for parsing the next line)
274  * @result: pointer for the result
275  */
276 extern int uci_parse_argument(struct uci_context *ctx, FILE *stream, char **str, char **result);
277
278 /**
279  * uci_set_backend: change the default backend
280  * @ctx: uci context
281  * @name: name of the backend
282  *
283  * The default backend is "file", which uses /etc/config for config storage
284  */
285 extern int uci_set_backend(struct uci_context *ctx, const char *name);
286
287 /* UCI data structures */
288 enum uci_type {
289         UCI_TYPE_HISTORY = 0,
290         UCI_TYPE_PACKAGE = 1,
291         UCI_TYPE_SECTION = 2,
292         UCI_TYPE_OPTION = 3,
293         UCI_TYPE_PATH = 4,
294         UCI_TYPE_BACKEND = 5,
295 };
296
297 enum uci_flags {
298         UCI_FLAG_STRICT =        (1 << 0), /* strict mode for the parser */
299         UCI_FLAG_PERROR =        (1 << 1), /* print parser error messages */
300         UCI_FLAG_EXPORT_NAME =   (1 << 2), /* when exporting, name unnamed sections */
301         UCI_FLAG_SAVED_HISTORY = (1 << 3), /* store the saved history in memory as well */
302 };
303
304 struct uci_element
305 {
306         struct uci_list list;
307         enum uci_type type;
308         char *name;
309 };
310
311 struct uci_backend
312 {
313         struct uci_element e;
314         char **(*list_configs)(struct uci_context *ctx);
315         struct uci_package *(*load)(struct uci_context *ctx, const char *name);
316         void (*commit)(struct uci_context *ctx, struct uci_package **p, bool overwrite);
317 };
318
319 struct uci_context
320 {
321         /* list of config packages */
322         struct uci_list root;
323
324         /* parser context, use for error handling only */
325         struct uci_parse_context *pctx;
326
327         /* backend for import and export */
328         struct uci_backend *backend;
329         struct uci_list backends;
330
331         /* uci runtime flags */
332         enum uci_flags flags;
333
334         char *confdir;
335         char *savedir;
336
337         /* search path for history files */
338         struct uci_list history_path;
339
340         /* private: */
341         int errno;
342         const char *func;
343         jmp_buf trap;
344         bool internal;
345         char *buf;
346         int bufsz;
347 };
348
349 struct uci_package
350 {
351         struct uci_element e;
352         struct uci_list sections;
353         struct uci_context *ctx;
354         bool has_history;
355         char *path;
356
357         /* private: */
358         struct uci_backend *backend;
359         void *priv;
360         int n_section;
361         struct uci_list history;
362         struct uci_list saved_history;
363 };
364
365 struct uci_section
366 {
367         struct uci_element e;
368         struct uci_list options;
369         struct uci_package *package;
370         bool anonymous;
371         char *type;
372 };
373
374 struct uci_option
375 {
376         struct uci_element e;
377         struct uci_section *section;
378         char *value;
379 };
380
381 enum uci_command {
382         UCI_CMD_ADD,
383         UCI_CMD_REMOVE,
384         UCI_CMD_CHANGE,
385         UCI_CMD_RENAME
386 };
387
388 struct uci_history
389 {
390         struct uci_element e;
391         enum uci_command cmd;
392         char *section;
393         char *value;
394 };
395
396 #define UCI_BACKEND(_var, _name, ...)   \
397 struct uci_backend _var = {             \
398         .e.list = {                     \
399                 .next = &_var.e.list,   \
400                 .prev = &_var.e.list,   \
401         },                              \
402         .e.name = _name,                \
403         .e.type = UCI_TYPE_BACKEND,     \
404         __VA_ARGS__                     \
405 }
406
407
408 /* linked list handling */
409 #ifndef offsetof
410 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
411 #endif
412
413 /**
414  * container_of - cast a member of a structure out to the containing structure
415  * @ptr:    the pointer to the member.
416  * @type:   the type of the container struct this is embedded in.
417  * @member: the name of the member within the struct.
418  */
419 #define container_of(ptr, type, member) \
420         ((type *) ((char *)ptr - offsetof(type,member)))
421
422
423 /**
424  * uci_list_entry: casts an uci_list pointer to the containing struct.
425  * @_type: config, section or option
426  * @_ptr: pointer to the uci_list struct
427  */
428 #define list_to_element(ptr) \
429         container_of(ptr, struct uci_element, list)
430
431 /**
432  * uci_foreach_entry: loop through a list of uci elements
433  * @_list: pointer to the uci_list struct
434  * @_ptr: iteration variable, struct uci_element
435  *
436  * use like a for loop, e.g:
437  *   uci_foreach(&list, p) {
438  *      ...
439  *   }
440  */
441 #define uci_foreach_element(_list, _ptr)                \
442         for(_ptr = list_to_element((_list)->next);      \
443                 &_ptr->list != (_list);                 \
444                 _ptr = list_to_element(_ptr->list.next))
445
446 /**
447  * uci_foreach_entry_safe: like uci_foreach_safe, but safe for deletion
448  * @_list: pointer to the uci_list struct
449  * @_tmp: temporary variable, struct uci_element *
450  * @_ptr: iteration variable, struct uci_element *
451  *
452  * use like a for loop, e.g:
453  *   uci_foreach(&list, p) {
454  *      ...
455  *   }
456  */
457 #define uci_foreach_element_safe(_list, _tmp, _ptr)             \
458         for(_ptr = list_to_element((_list)->next),              \
459                 _tmp = list_to_element(_ptr->list.next);        \
460                 &_ptr->list != (_list);                 \
461                 _ptr = _tmp, _tmp = list_to_element(_ptr->list.next))
462
463 /**
464  * uci_list_empty: returns true if a list is empty
465  * @list: list head
466  */
467 #define uci_list_empty(list) ((list)->next == (list))
468
469 /* wrappers for dynamic type handling */
470 #define uci_type_backend UCI_TYPE_BACKEND
471 #define uci_type_history UCI_TYPE_HISTORY
472 #define uci_type_package UCI_TYPE_PACKAGE
473 #define uci_type_section UCI_TYPE_SECTION
474 #define uci_type_option UCI_TYPE_OPTION
475
476 /* element typecasting */
477 #ifdef UCI_DEBUG_TYPECAST
478 static const char *uci_typestr[] = {
479         [uci_type_backend] = "backend",
480         [uci_type_history] = "history",
481         [uci_type_package] = "package",
482         [uci_type_section] = "section",
483         [uci_type_option] = "option",
484 };
485
486 static void uci_typecast_error(int from, int to)
487 {
488         fprintf(stderr, "Invalid typecast from '%s' to '%s'\n", uci_typestr[from], uci_typestr[to]);
489 }
490
491 #define BUILD_CAST(_type) \
492         static inline struct uci_ ## _type *uci_to_ ## _type (struct uci_element *e) \
493         { \
494                 if (e->type != uci_type_ ## _type) { \
495                         uci_typecast_error(e->type, uci_type_ ## _type); \
496                 } \
497                 return (struct uci_ ## _type *) e; \
498         }
499
500 BUILD_CAST(backend)
501 BUILD_CAST(history)
502 BUILD_CAST(package)
503 BUILD_CAST(section)
504 BUILD_CAST(option)
505
506 #else
507 #define uci_to_backend(ptr) container_of(ptr, struct uci_backend, e)
508 #define uci_to_history(ptr) container_of(ptr, struct uci_history, e)
509 #define uci_to_package(ptr) container_of(ptr, struct uci_package, e)
510 #define uci_to_section(ptr) container_of(ptr, struct uci_section, e)
511 #define uci_to_option(ptr)  container_of(ptr, struct uci_option, e)
512 #endif
513
514 /**
515  * uci_alloc_element: allocate a generic uci_element, reserve a buffer and typecast
516  * @ctx: uci context
517  * @type: {package,section,option}
518  * @name: string containing the name of the element
519  * @datasize: additional buffer size to reserve at the end of the struct
520  */
521 #define uci_alloc_element(ctx, type, name, datasize) \
522         uci_to_ ## type (uci_alloc_generic(ctx, uci_type_ ## type, name, sizeof(struct uci_ ## type) + datasize))
523
524 #define uci_dataptr(ptr) \
525         (((char *) ptr) + sizeof(*ptr))
526
527 #endif