chiark / gitweb /
Fix service file to match installed elogind binary location
[elogind.git] / src / shared / conf-parser.h
1 #pragma once
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <stdbool.h>
24 #include <stddef.h>
25 #include <stdio.h>
26 #include <syslog.h>
27
28 #include "alloc-util.h"
29 #include "log.h"
30 #include "macro.h"
31
32 /* An abstract parser for simple, line based, shallow configuration
33  * files consisting of variable assignments only. */
34
35 /* Prototype for a parser for a specific configuration setting */
36 typedef int (*ConfigParserCallback)(const char *unit,
37                                     const char *filename,
38                                     unsigned line,
39                                     const char *section,
40                                     unsigned section_line,
41                                     const char *lvalue,
42                                     int ltype,
43                                     const char *rvalue,
44                                     void *data,
45                                     void *userdata);
46
47 /* Wraps information for parsing a specific configuration variable, to
48  * be stored in a simple array */
49 typedef struct ConfigTableItem {
50         const char *section;            /* Section */
51         const char *lvalue;             /* Name of the variable */
52         ConfigParserCallback parse;     /* Function that is called to parse the variable's value */
53         int ltype;                      /* Distinguish different variables passed to the same callback */
54         void *data;                     /* Where to store the variable's data */
55 } ConfigTableItem;
56
57 /* Wraps information for parsing a specific configuration variable, to
58  * be stored in a gperf perfect hashtable */
59 typedef struct ConfigPerfItem {
60         const char *section_and_lvalue; /* Section + "." + name of the variable */
61         ConfigParserCallback parse;     /* Function that is called to parse the variable's value */
62         int ltype;                      /* Distinguish different variables passed to the same callback */
63         size_t offset;                  /* Offset where to store data, from the beginning of userdata */
64 } ConfigPerfItem;
65
66 /* Prototype for a low-level gperf lookup function */
67 typedef const ConfigPerfItem* (*ConfigPerfItemLookup)(const char *section_and_lvalue, unsigned length);
68
69 /* Prototype for a generic high-level lookup function */
70 typedef int (*ConfigItemLookup)(
71                 const void *table,
72                 const char *section,
73                 const char *lvalue,
74                 ConfigParserCallback *func,
75                 int *ltype,
76                 void **data,
77                 void *userdata);
78
79 /* Linear table search implementation of ConfigItemLookup, based on
80  * ConfigTableItem arrays */
81 int config_item_table_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
82
83 /* gperf implementation of ConfigItemLookup, based on gperf
84  * ConfigPerfItem tables */
85 int config_item_perf_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
86
87 int config_parse(
88                 const char *unit,
89                 const char *filename,
90                 FILE *f,
91                 const char *sections,  /* nulstr */
92                 ConfigItemLookup lookup,
93                 const void *table,
94                 bool relaxed,
95                 bool allow_include,
96                 bool warn,
97                 void *userdata);
98
99 int config_parse_many_nulstr(
100                 const char *conf_file,      /* possibly NULL */
101                 const char *conf_file_dirs, /* nulstr */
102                 const char *sections,       /* nulstr */
103                 ConfigItemLookup lookup,
104                 const void *table,
105                 bool relaxed,
106                 void *userdata);
107
108 #if 0 /// UNNEEDED by elogind
109 int config_parse_many(
110                 const char *conf_file,      /* possibly NULL */
111                 const char* const* conf_file_dirs,
112                 const char *dropin_dirname,
113                 const char *sections,       /* nulstr */
114                 ConfigItemLookup lookup,
115                 const void *table,
116                 bool relaxed,
117                 void *userdata);
118 #endif // 0
119
120 /* Generic parsers */
121 int config_parse_int(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
122 int config_parse_unsigned(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
123 int config_parse_long(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
124 #if 0 /// UNNEEDED by elogind
125 int config_parse_uint8(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
126 int config_parse_uint16(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
127 int config_parse_uint32(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
128 #endif // 0
129 int config_parse_uint64(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
130 int config_parse_double(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line,  const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
131 int config_parse_iec_size(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
132 #if 0 /// UNNEEDED by elogind
133 int config_parse_si_size(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
134 int config_parse_iec_uint64(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
135 #endif // 0
136 int config_parse_bool(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
137 #if 0 /// UNNEEDED by elogind
138 int config_parse_tristate(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
139 #endif // 0
140 int config_parse_string(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
141 int config_parse_path(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
142 int config_parse_strv(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
143 int config_parse_sec(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
144 #if 0 /// UNNEEDED by elogind
145 int config_parse_nsec(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
146 #endif // 0
147 int config_parse_mode(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
148 #if 0 /// UNNEEDED by elogind
149 int config_parse_log_facility(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
150 #endif // 0
151 int config_parse_log_level(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
152 int config_parse_signal(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
153 #if 0 /// UNNEEDED by elogind
154 int config_parse_personality(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
155 int config_parse_ifname(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
156 int config_parse_ip_port(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
157 #endif // 0
158
159 #define DEFINE_CONFIG_PARSE_ENUM(function,name,type,msg)                \
160         int function(const char *unit,                                  \
161                      const char *filename,                              \
162                      unsigned line,                                     \
163                      const char *section,                               \
164                      unsigned section_line,                             \
165                      const char *lvalue,                                \
166                      int ltype,                                         \
167                      const char *rvalue,                                \
168                      void *data,                                        \
169                      void *userdata) {                                  \
170                                                                         \
171                 type *i = data, x;                                      \
172                                                                         \
173                 assert(filename);                                       \
174                 assert(lvalue);                                         \
175                 assert(rvalue);                                         \
176                 assert(data);                                           \
177                                                                         \
178                 if ((x = name##_from_string(rvalue)) < 0) {             \
179                         log_syntax(unit, LOG_ERR, filename, line, -x,   \
180                                    msg ", ignoring: %s", rvalue);       \
181                         return 0;                                       \
182                 }                                                       \
183                                                                         \
184                 *i = x;                                                 \
185                 return 0;                                               \
186         }
187
188 #define DEFINE_CONFIG_PARSE_ENUMV(function,name,type,invalid,msg)              \
189         int function(const char *unit,                                         \
190                      const char *filename,                                     \
191                      unsigned line,                                            \
192                      const char *section,                                      \
193                      unsigned section_line,                                    \
194                      const char *lvalue,                                       \
195                      int ltype,                                                \
196                      const char *rvalue,                                       \
197                      void *data,                                               \
198                      void *userdata) {                                         \
199                                                                                \
200                 type **enums = data, x, *ys;                                   \
201                 _cleanup_free_ type *xs = NULL;                                \
202                 const char *word, *state;                                      \
203                 size_t l, i = 0;                                               \
204                                                                                \
205                 assert(filename);                                              \
206                 assert(lvalue);                                                \
207                 assert(rvalue);                                                \
208                 assert(data);                                                  \
209                                                                                \
210                 xs = new0(type, 1);                                            \
211                 if (!xs)                                                       \
212                         return -ENOMEM;                                        \
213                                                                                \
214                 *xs = invalid;                                                 \
215                                                                                \
216                 FOREACH_WORD(word, l, rvalue, state) {                         \
217                         _cleanup_free_ char *en = NULL;                        \
218                         type *new_xs;                                          \
219                                                                                \
220                         en = strndup(word, l);                                 \
221                         if (!en)                                               \
222                                 return -ENOMEM;                                \
223                                                                                \
224                         if ((x = name##_from_string(en)) < 0) {                \
225                                 log_syntax(unit, LOG_ERR, filename, line,      \
226                                        -x, msg ", ignoring: %s", en);          \
227                                 continue;                                      \
228                         }                                                      \
229                                                                                \
230                         for (ys = xs; x != invalid && *ys != invalid; ys++) {  \
231                                 if (*ys == x) {                                \
232                                         log_syntax(unit, LOG_ERR, filename,    \
233                                               line, -x,                        \
234                                               "Duplicate entry, ignoring: %s", \
235                                               en);                             \
236                                         x = invalid;                           \
237                                 }                                              \
238                         }                                                      \
239                                                                                \
240                         if (x == invalid)                                      \
241                                 continue;                                      \
242                                                                                \
243                         *(xs + i) = x;                                         \
244                         new_xs = realloc(xs, (++i + 1) * sizeof(type));        \
245                         if (new_xs)                                            \
246                                 xs = new_xs;                                   \
247                         else                                                   \
248                                 return -ENOMEM;                                \
249                                                                                \
250                         *(xs + i) = invalid;                                   \
251                 }                                                              \
252                                                                                \
253                 free(*enums);                                                  \
254                 *enums = xs;                                                   \
255                 xs = NULL;                                                     \
256                                                                                \
257                 return 0;                                                      \
258         }