1b6c9fa931bedd5ef10374ad7bb39a5a6f038cc8
[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_parse_context;
67
68
69 /**
70  * uci_parse_tuple: Parse an uci tuple
71  * @ctx: uci context
72  * @str: input string
73  * @package: output package pointer
74  * @section: output section pointer
75  * @option: output option pointer
76  * @value: output value pointer
77  *
78  * format: <package>[.<section>[.<option>]][=<value>]
79  */
80 extern int uci_parse_tuple(struct uci_context *ctx, char *str, char **package, char **section, char **option, char **value);
81
82 /**
83  * uci_alloc_context: Allocate a new uci context
84  */
85 extern struct uci_context *uci_alloc_context(void);
86
87 /**
88  * uci_free_context: Free the uci context including all of its data
89  */
90 extern void uci_free_context(struct uci_context *ctx);
91
92 /**
93  * uci_perror: Print the last uci error that occured
94  * @ctx: uci context
95  * @str: string to print before the error message
96  */
97 extern void uci_perror(struct uci_context *ctx, const char *str);
98
99 /**
100  * uci_import: Import uci config data from a stream
101  * @ctx: uci context
102  * @stream: file stream to import from
103  * @name: (optional) assume the config has the given name
104  * @package: (optional) store the last parsed config package in this variable
105  * @single: ignore the 'package' keyword and parse everything into a single package
106  *
107  * the name parameter is for config files that don't explicitly use the 'package <...>' keyword
108  */
109 extern int uci_import(struct uci_context *ctx, FILE *stream, const char *name, struct uci_package **package, bool single);
110
111 /**
112  * uci_export: Export one or all uci config packages
113  * @ctx: uci context
114  * @stream: output stream
115  * @package: (optional) uci config package to export
116  * @header: include the package header
117  */
118 extern int uci_export(struct uci_context *ctx, FILE *stream, struct uci_package *package, bool header);
119
120 /**
121  * uci_load: Parse an uci config file and store it in the uci context
122  *
123  * @ctx: uci context
124  * @name: name of the config file (relative to the config directory)
125  * @package: store the loaded config package in this variable
126  */
127 extern int uci_load(struct uci_context *ctx, const char *name, struct uci_package **package);
128
129 /**
130  * uci_unload: Unload a config file from the uci context
131  *
132  * @ctx: uci context
133  * @package: pointer to the uci_package struct
134  */
135 extern int uci_unload(struct uci_context *ctx, struct uci_package *p);
136
137 /**
138  * uci_cleanup: Clean up after an error
139  *
140  * @ctx: uci context
141  */
142 extern int uci_cleanup(struct uci_context *ctx);
143
144 /**
145  * uci_lookup: Look up an uci element
146  *
147  * @ctx: uci context
148  * @res: where to store the result
149  * @package: uci_package struct 
150  * @section: config section (optional)
151  * @option: option to search for (optional)
152  *
153  * If section is omitted, then a pointer to the config package is returned
154  * If option is omitted, then a pointer to the config section is returned
155  */
156 extern int uci_lookup(struct uci_context *ctx, struct uci_element **res, struct uci_package *package, char *section, char *option);
157
158 /**
159  * uci_set_element_value: Replace an element's value with a new one
160  * @ctx: uci context
161  * @element: pointer to an uci_element struct pointer
162  * @value: new value
163  * 
164  * Only valid for uci_option and uci_section. Will replace the type string
165  * when used with an uci_section
166  */
167 extern int uci_set_element_value(struct uci_context *ctx, struct uci_element **element, char *value);
168
169 /**
170  * uci_set: Set an element's value; create the element if necessary
171  * @ctx: uci context
172  * @package: package name
173  * @section: section name
174  * @option: option name
175  * @value: value (option) or type (section)
176  */
177 extern int uci_set(struct uci_context *ctx, struct uci_package *p, char *section, char *option, char *value);
178
179 /**
180  * uci_del_element: Delete a section or option
181  * @ctx: uci context
182  * @e: element (section or option)
183  */
184 extern int uci_del_element(struct uci_context *ctx, struct uci_element *e);
185
186 /**
187  * uci_del: Delete a section or option
188  * @ctx: uci context
189  * @p: uci package
190  * @section: section name
191  * @option: option name (optional)
192  */
193 extern int uci_del(struct uci_context *ctx, struct uci_package *p, char *section, char *option);
194
195 /**
196  * uci_save: save change history for a package
197  * @ctx: uci context
198  * @p: uci_package struct
199  */
200 extern int uci_save(struct uci_context *ctx, struct uci_package *p);
201
202 /**
203  * uci_commit: commit changes to a package
204  * @ctx: uci context
205  * @p: uci_package struct pointer
206  *
207  * committing may reload the whole uci_package data,
208  * the supplied pointer is updated accordingly
209  */
210 extern int uci_commit(struct uci_context *ctx, struct uci_package **p);
211
212 /**
213  * uci_list_configs: List available uci config files
214  *
215  * @ctx: uci context
216  */
217 extern int uci_list_configs(struct uci_context *ctx, char ***list);
218
219 /* UCI data structures */
220 enum uci_type {
221         UCI_TYPE_HISTORY = 0,
222         UCI_TYPE_PACKAGE = 1,
223         UCI_TYPE_SECTION = 2,
224         UCI_TYPE_OPTION = 3
225 };
226
227 enum uci_flags {
228         UCI_FLAG_STRICT = (1 << 0), /* strict mode for the parser */
229         UCI_FLAG_PERROR = (1 << 1), /* print error messages to stderr */
230 };
231
232 struct uci_element
233 {
234         struct uci_list list;
235         enum uci_type type;
236         char *name;
237 };
238
239 struct uci_context
240 {
241         /* list of config packages */
242         struct uci_list root;
243
244         /* parser context, use for error handling only */
245         struct uci_parse_context *pctx;
246
247         /* uci runtime flags */
248         enum uci_flags flags;
249
250         /* private: */
251         int errno;
252         const char *func;
253         jmp_buf trap;
254         bool internal;
255         char *buf;
256         int bufsz;
257 };
258
259 struct uci_parse_context
260 {
261         /* error context */
262         const char *reason;
263         int line;
264         int byte;
265
266         /* private: */
267         struct uci_package *package;
268         struct uci_section *section;
269         FILE *file;
270         const char *name;
271         char *buf;
272         int bufsz;
273 };
274
275 struct uci_package
276 {
277         struct uci_element e;
278         struct uci_list sections;
279         struct uci_context *ctx;
280         bool confdir;
281         char *path;
282
283         /* private: */
284         int n_section;
285         struct uci_list history;
286 };
287
288 struct uci_section
289 {
290         struct uci_element e;
291         struct uci_list options;
292         struct uci_package *package;
293         bool anonymous;
294         char *type;
295 };
296
297 struct uci_option
298 {
299         struct uci_element e;
300         struct uci_section *section;
301         char *value;
302 };
303
304 enum uci_command {
305         UCI_CMD_ADD,
306         UCI_CMD_REMOVE,
307         UCI_CMD_CHANGE
308 };
309
310 struct uci_history
311 {
312         struct uci_element e;
313         enum uci_command cmd;
314         char *section;
315         char *value;
316 };
317
318 /* linked list handling */
319 #ifndef offsetof
320 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
321 #endif
322
323 /**
324  * container_of - cast a member of a structure out to the containing structure
325  * @ptr:    the pointer to the member.
326  * @type:   the type of the container struct this is embedded in.
327  * @member: the name of the member within the struct.
328  */
329 #define container_of(ptr, type, member) \
330         ((type *) ((char *)ptr - offsetof(type,member)))
331
332
333 /**
334  * uci_list_entry: casts an uci_list pointer to the containing struct.
335  * @_type: config, section or option
336  * @_ptr: pointer to the uci_list struct
337  */
338 #define element_to(type, ptr) \
339         container_of(ptr, struct uci_ ## type, e)
340
341 #define list_to_element(ptr) \
342         container_of(ptr, struct uci_element, list)
343
344 /**
345  * uci_foreach_entry: loop through a list of uci elements
346  * @_list: pointer to the uci_list struct
347  * @_ptr: iteration variable, struct uci_element
348  *
349  * use like a for loop, e.g:
350  *   uci_foreach(&list, p) {
351  *      ...
352  *   }
353  */
354 #define uci_foreach_element(_list, _ptr)                \
355         for(_ptr = list_to_element((_list)->next);      \
356                 &_ptr->list != (_list);                 \
357                 _ptr = list_to_element(_ptr->list.next))
358
359 /**
360  * uci_foreach_entry_safe: like uci_foreach_safe, but safe for deletion
361  * @_list: pointer to the uci_list struct
362  * @_tmp: temporary variable, struct uci_element *
363  * @_ptr: iteration variable, struct uci_element *
364  *
365  * use like a for loop, e.g:
366  *   uci_foreach(&list, p) {
367  *      ...
368  *   }
369  */
370 #define uci_foreach_element_safe(_list, _tmp, _ptr)             \
371         for(_ptr = list_to_element((_list)->next),              \
372                 _tmp = list_to_element(_ptr->list.next);        \
373                 &_ptr->list != (_list);                 \
374                 _ptr = _tmp, _tmp = list_to_element(_ptr->list.next))
375
376 /**
377  * uci_list_empty: returns true if a list is empty
378  * @list: list head
379  */
380 #define uci_list_empty(list) ((list)->next == (list))
381
382 /* wrappers for dynamic type handling */
383 #define uci_type_history UCI_TYPE_HISTORY
384 #define uci_type_package UCI_TYPE_PACKAGE
385 #define uci_type_section UCI_TYPE_SECTION
386 #define uci_type_option UCI_TYPE_OPTION
387
388 /* element typecasting */
389 #ifdef UCI_DEBUG_TYPECAST
390 static const char *uci_typestr[] = {
391         [uci_type_history] = "history",
392         [uci_type_package] = "package",
393         [uci_type_section] = "section",
394         [uci_type_option] = "option",
395 };
396
397 static void uci_typecast_error(int from, int to)
398 {
399         fprintf(stderr, "Invalid typecast from '%s' to '%s'\n", uci_typestr[from], uci_typestr[to]);
400 }
401
402 #define BUILD_CAST(_type) \
403         static inline struct uci_ ## _type *uci_to_ ## _type (struct uci_element *e) \
404         { \
405                 if (e->type != uci_type_ ## _type) { \
406                         uci_typecast_error(e->type, uci_type_ ## _type); \
407                 } \
408                 return (struct uci_ ## _type *) e; \
409         }
410
411 BUILD_CAST(history)
412 BUILD_CAST(package)
413 BUILD_CAST(section)
414 BUILD_CAST(option)
415
416 #else
417 #define uci_to_history(ptr) container_of(ptr, struct uci_history, e)
418 #define uci_to_package(ptr) container_of(ptr, struct uci_package, e)
419 #define uci_to_section(ptr) container_of(ptr, struct uci_section, e)
420 #define uci_to_option(ptr)  container_of(ptr, struct uci_option, e)
421 #endif
422
423 /**
424  * uci_alloc_element: allocate a generic uci_element, reserve a buffer and typecast
425  * @ctx: uci context
426  * @type: {package,section,option}
427  * @name: string containing the name of the element
428  * @datasize: additional buffer size to reserve at the end of the struct
429  */
430 #define uci_alloc_element(ctx, type, name, datasize) \
431         uci_to_ ## type (uci_alloc_generic(ctx, uci_type_ ## type, name, sizeof(struct uci_ ## type) + datasize))
432
433 #define uci_dataptr(ptr) \
434         (((char *) ptr) + sizeof(*ptr))
435
436 #endif