]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/conf-parser.h
core: move config_parse_limit() to the generic conf-parser.[ch]
[thirdparty/systemd.git] / src / shared / conf-parser.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2010 Lennart Poettering
8 ***/
9
10 #include <errno.h>
11 #include <stdbool.h>
12 #include <stddef.h>
13 #include <stdio.h>
14 #include <syslog.h>
15
16 #include "alloc-util.h"
17 #include "log.h"
18 #include "macro.h"
19
20 /* An abstract parser for simple, line based, shallow configuration files consisting of variable assignments only. */
21
22 typedef enum ConfigParseFlags {
23 CONFIG_PARSE_RELAXED = 1U << 0,
24 CONFIG_PARSE_ALLOW_INCLUDE = 1U << 1,
25 CONFIG_PARSE_WARN = 1U << 2,
26 CONFIG_PARSE_REFUSE_BOM = 1U << 3,
27 } ConfigParseFlags;
28
29 /* Prototype for a parser for a specific configuration setting */
30 typedef int (*ConfigParserCallback)(const char *unit,
31 const char *filename,
32 unsigned line,
33 const char *section,
34 unsigned section_line,
35 const char *lvalue,
36 int ltype,
37 const char *rvalue,
38 void *data,
39 void *userdata);
40
41 /* Wraps information for parsing a specific configuration variable, to
42 * be stored in a simple array */
43 typedef struct ConfigTableItem {
44 const char *section; /* Section */
45 const char *lvalue; /* Name of the variable */
46 ConfigParserCallback parse; /* Function that is called to parse the variable's value */
47 int ltype; /* Distinguish different variables passed to the same callback */
48 void *data; /* Where to store the variable's data */
49 } ConfigTableItem;
50
51 /* Wraps information for parsing a specific configuration variable, to
52 * be stored in a gperf perfect hashtable */
53 typedef struct ConfigPerfItem {
54 const char *section_and_lvalue; /* Section + "." + name of the variable */
55 ConfigParserCallback parse; /* Function that is called to parse the variable's value */
56 int ltype; /* Distinguish different variables passed to the same callback */
57 size_t offset; /* Offset where to store data, from the beginning of userdata */
58 } ConfigPerfItem;
59
60 /* Prototype for a low-level gperf lookup function */
61 typedef const ConfigPerfItem* (*ConfigPerfItemLookup)(const char *section_and_lvalue, unsigned length);
62
63 /* Prototype for a generic high-level lookup function */
64 typedef int (*ConfigItemLookup)(
65 const void *table,
66 const char *section,
67 const char *lvalue,
68 ConfigParserCallback *func,
69 int *ltype,
70 void **data,
71 void *userdata);
72
73 /* Linear table search implementation of ConfigItemLookup, based on
74 * ConfigTableItem arrays */
75 int config_item_table_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
76
77 /* gperf implementation of ConfigItemLookup, based on gperf
78 * ConfigPerfItem tables */
79 int config_item_perf_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
80
81 int config_parse(
82 const char *unit,
83 const char *filename,
84 FILE *f,
85 const char *sections, /* nulstr */
86 ConfigItemLookup lookup,
87 const void *table,
88 ConfigParseFlags flags,
89 void *userdata);
90
91 int config_parse_many_nulstr(
92 const char *conf_file, /* possibly NULL */
93 const char *conf_file_dirs, /* nulstr */
94 const char *sections, /* nulstr */
95 ConfigItemLookup lookup,
96 const void *table,
97 ConfigParseFlags flags,
98 void *userdata);
99
100 int config_parse_many(
101 const char *conf_file, /* possibly NULL */
102 const char* const* conf_file_dirs,
103 const char *dropin_dirname,
104 const char *sections, /* nulstr */
105 ConfigItemLookup lookup,
106 const void *table,
107 ConfigParseFlags flags,
108 void *userdata);
109
110 /* Generic parsers */
111 #define GENERIC_PARSER_ARGS \
112 const char *unit, \
113 const char *filename, \
114 unsigned line, \
115 const char *section, \
116 unsigned section_line, \
117 const char *lvalue, \
118 int ltype, \
119 const char *rvalue, \
120 void *data, \
121 void *userdata
122 int config_parse_int(GENERIC_PARSER_ARGS);
123 int config_parse_unsigned(GENERIC_PARSER_ARGS);
124 int config_parse_long(GENERIC_PARSER_ARGS);
125 int config_parse_uint8(GENERIC_PARSER_ARGS);
126 int config_parse_uint16(GENERIC_PARSER_ARGS);
127 int config_parse_uint32(GENERIC_PARSER_ARGS);
128 int config_parse_uint64(GENERIC_PARSER_ARGS);
129 int config_parse_double(GENERIC_PARSER_ARGS);
130 int config_parse_iec_size(GENERIC_PARSER_ARGS);
131 int config_parse_si_size(GENERIC_PARSER_ARGS);
132 int config_parse_iec_uint64(GENERIC_PARSER_ARGS);
133 int config_parse_bool(GENERIC_PARSER_ARGS);
134 int config_parse_tristate(GENERIC_PARSER_ARGS);
135 int config_parse_string(GENERIC_PARSER_ARGS);
136 int config_parse_path(GENERIC_PARSER_ARGS);
137 int config_parse_strv(GENERIC_PARSER_ARGS);
138 int config_parse_sec(GENERIC_PARSER_ARGS);
139 int config_parse_nsec(GENERIC_PARSER_ARGS);
140 int config_parse_mode(GENERIC_PARSER_ARGS);
141 int config_parse_warn_compat(GENERIC_PARSER_ARGS);
142 int config_parse_log_facility(GENERIC_PARSER_ARGS);
143 int config_parse_log_level(GENERIC_PARSER_ARGS);
144 int config_parse_signal(GENERIC_PARSER_ARGS);
145 int config_parse_personality(GENERIC_PARSER_ARGS);
146 int config_parse_ifname(GENERIC_PARSER_ARGS);
147 int config_parse_ip_port(GENERIC_PARSER_ARGS);
148 int config_parse_join_controllers(GENERIC_PARSER_ARGS);
149 int config_parse_mtu(GENERIC_PARSER_ARGS);
150 int config_parse_rlimit(GENERIC_PARSER_ARGS);
151
152 typedef enum Disabled {
153 DISABLED_CONFIGURATION,
154 DISABLED_LEGACY,
155 DISABLED_EXPERIMENTAL,
156 } Disabled;
157
158 #define DEFINE_CONFIG_PARSE_ENUM(function,name,type,msg) \
159 int function(GENERIC_PARSER_ARGS) { \
160 type *i = data, x; \
161 \
162 assert(filename); \
163 assert(lvalue); \
164 assert(rvalue); \
165 assert(data); \
166 \
167 if ((x = name##_from_string(rvalue)) < 0) { \
168 log_syntax(unit, LOG_ERR, filename, line, -x, \
169 msg ", ignoring: %s", rvalue); \
170 return 0; \
171 } \
172 \
173 *i = x; \
174 return 0; \
175 }
176
177 #define DEFINE_CONFIG_PARSE_ENUMV(function,name,type,invalid,msg) \
178 int function(GENERIC_PARSER_ARGS) { \
179 type **enums = data, x, *ys; \
180 _cleanup_free_ type *xs = NULL; \
181 const char *word, *state; \
182 size_t l, i = 0; \
183 \
184 assert(filename); \
185 assert(lvalue); \
186 assert(rvalue); \
187 assert(data); \
188 \
189 xs = new0(type, 1); \
190 if (!xs) \
191 return -ENOMEM; \
192 \
193 *xs = invalid; \
194 \
195 FOREACH_WORD(word, l, rvalue, state) { \
196 _cleanup_free_ char *en = NULL; \
197 type *new_xs; \
198 \
199 en = strndup(word, l); \
200 if (!en) \
201 return -ENOMEM; \
202 \
203 if ((x = name##_from_string(en)) < 0) { \
204 log_syntax(unit, LOG_ERR, filename, line, \
205 -x, msg ", ignoring: %s", en); \
206 continue; \
207 } \
208 \
209 for (ys = xs; x != invalid && *ys != invalid; ys++) { \
210 if (*ys == x) { \
211 log_syntax(unit, LOG_ERR, filename, \
212 line, -x, \
213 "Duplicate entry, ignoring: %s", \
214 en); \
215 x = invalid; \
216 } \
217 } \
218 \
219 if (x == invalid) \
220 continue; \
221 \
222 *(xs + i) = x; \
223 new_xs = realloc(xs, (++i + 1) * sizeof(type)); \
224 if (new_xs) \
225 xs = new_xs; \
226 else \
227 return -ENOMEM; \
228 \
229 *(xs + i) = invalid; \
230 } \
231 \
232 free(*enums); \
233 *enums = xs; \
234 xs = NULL; \
235 \
236 return 0; \
237 }