Allow using key & configuration parser from tincd in tinc.
[tinc] / src / conf.c
1 /*
2     conf.c -- configuration code
3     Copyright (C) 1998      Robert van der Meulen
4                   1998-2005 Ivo Timmermans
5                   2000      Cris van Pelt
6                   2010-2011 Julien Muchembled <jm@jmuchemb.eu>
7                   2000-2021 Guus Sliepen <guus@tinc-vpn.org>
8                   2013      Florent Clairambault <florent@clairambault.fr>
9
10     This program is free software; you can redistribute it and/or modify
11     it under the terms of the GNU General Public License as published by
12     the Free Software Foundation; either version 2 of the License, or
13     (at your option) any later version.
14
15     This program is distributed in the hope that it will be useful,
16     but WITHOUT ANY WARRANTY; without even the implied warranty of
17     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18     GNU General Public License for more details.
19
20     You should have received a copy of the GNU General Public License along
21     with this program; if not, write to the Free Software Foundation, Inc.,
22     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24
25 #include "system.h"
26
27 #include "splay_tree.h"
28 #include "connection.h"
29 #include "conf.h"
30 #include "list.h"
31 #include "logger.h"
32 #include "names.h"
33 #include "netutl.h"             /* for str2address */
34 #include "protocol.h"
35 #include "utils.h"              /* for cp */
36 #include "xalloc.h"
37
38 splay_tree_t *config_tree = NULL;
39
40 int pinginterval = 0;           /* seconds between pings */
41 int pingtimeout = 0;            /* seconds to wait for response */
42 list_t *cmdline_conf = NULL;    /* global/host configuration values given at the command line */
43
44 static int config_compare(const config_t *a, const config_t *b) {
45         int result;
46
47         result = strcasecmp(a->variable, b->variable);
48
49         if(result) {
50                 return result;
51         }
52
53         /* give priority to command line options */
54         result = !b->file - !a->file;
55
56         if(result) {
57                 return result;
58         }
59
60         result = a->line - b->line;
61
62         if(result) {
63                 return result;
64         } else {
65                 return a->file ? strcmp(a->file, b->file) : 0;
66         }
67 }
68
69 void init_configuration(splay_tree_t **config_tree) {
70         *config_tree = splay_alloc_tree((splay_compare_t) config_compare, (splay_action_t) free_config);
71 }
72
73 void exit_configuration(splay_tree_t **config_tree) {
74         splay_delete_tree(*config_tree);
75         *config_tree = NULL;
76 }
77
78 config_t *new_config(void) {
79         return xzalloc(sizeof(config_t));
80 }
81
82 void free_config(config_t *cfg) {
83         free(cfg->variable);
84         free(cfg->value);
85         free(cfg->file);
86         free(cfg);
87 }
88
89 void config_add(splay_tree_t *config_tree, config_t *cfg) {
90         splay_insert(config_tree, cfg);
91 }
92
93 config_t *lookup_config(splay_tree_t *config_tree, char *variable) {
94         config_t cfg, *found;
95
96         cfg.variable = variable;
97         cfg.file = NULL;
98         cfg.line = 0;
99
100         found = splay_search_closest_greater(config_tree, &cfg);
101
102         if(!found) {
103                 return NULL;
104         }
105
106         if(strcasecmp(found->variable, variable)) {
107                 return NULL;
108         }
109
110         return found;
111 }
112
113 config_t *lookup_config_next(splay_tree_t *config_tree, const config_t *cfg) {
114         splay_node_t *node;
115         config_t *found;
116
117         node = splay_search_node(config_tree, cfg);
118
119         if(node) {
120                 if(node->next) {
121                         found = node->next->data;
122
123                         if(!strcasecmp(found->variable, cfg->variable)) {
124                                 return found;
125                         }
126                 }
127         }
128
129         return NULL;
130 }
131
132 bool get_config_bool(const config_t *cfg, bool *result) {
133         if(!cfg) {
134                 return false;
135         }
136
137         if(!strcasecmp(cfg->value, "yes")) {
138                 *result = true;
139                 return true;
140         } else if(!strcasecmp(cfg->value, "no")) {
141                 *result = false;
142                 return true;
143         }
144
145         logger(DEBUG_ALWAYS, LOG_ERR, "\"yes\" or \"no\" expected for configuration variable %s in %s line %d",
146                cfg->variable, cfg->file, cfg->line);
147
148         return false;
149 }
150
151 bool get_config_int(const config_t *cfg, int *result) {
152         if(!cfg) {
153                 return false;
154         }
155
156         if(sscanf(cfg->value, "%d", result) == 1) {
157                 return true;
158         }
159
160         logger(DEBUG_ALWAYS, LOG_ERR, "Integer expected for configuration variable %s in %s line %d",
161                cfg->variable, cfg->file, cfg->line);
162
163         return false;
164 }
165
166 bool get_config_string(const config_t *cfg, char **result) {
167         if(!cfg) {
168                 return false;
169         }
170
171         *result = xstrdup(cfg->value);
172
173         return true;
174 }
175
176 bool get_config_address(const config_t *cfg, struct addrinfo **result) {
177         struct addrinfo *ai;
178
179         if(!cfg) {
180                 return false;
181         }
182
183         ai = str2addrinfo(cfg->value, NULL, 0);
184
185         if(ai) {
186                 *result = ai;
187                 return true;
188         }
189
190         logger(DEBUG_ALWAYS, LOG_ERR, "Hostname or IP address expected for configuration variable %s in %s line %d",
191                cfg->variable, cfg->file, cfg->line);
192
193         return false;
194 }
195
196 /*
197   Read exactly one line and strip the trailing newline if any.
198 */
199 static char *readline(FILE *fp, char *buf, size_t buflen) {
200         char *newline = NULL;
201         char *p;
202
203         if(feof(fp)) {
204                 return NULL;
205         }
206
207         p = fgets(buf, buflen, fp);
208
209         if(!p) {
210                 return NULL;
211         }
212
213         newline = strchr(p, '\n');
214
215         if(!newline) {
216                 return buf;
217         }
218
219         /* kill newline and carriage return if necessary */
220         *newline = '\0';
221
222         if(newline > p && newline[-1] == '\r') {
223                 newline[-1] = '\0';
224         }
225
226         return buf;
227 }
228
229 config_t *parse_config_line(char *line, const char *fname, int lineno) {
230         config_t *cfg;
231         int len;
232         char *variable, *value, *eol;
233         variable = value = line;
234
235         eol = line + strlen(line);
236
237         while(strchr("\t ", *--eol)) {
238                 *eol = '\0';
239         }
240
241         len = strcspn(value, "\t =");
242         value += len;
243         value += strspn(value, "\t ");
244
245         if(*value == '=') {
246                 value++;
247                 value += strspn(value, "\t ");
248         }
249
250         variable[len] = '\0';
251
252         if(!*value) {
253                 const char err[] = "No value for variable";
254
255                 if(fname)
256                         logger(DEBUG_ALWAYS, LOG_ERR, "%s `%s' on line %d while reading config file %s",
257                                err, variable, lineno, fname);
258                 else
259                         logger(DEBUG_ALWAYS, LOG_ERR, "%s `%s' in command line option %d",
260                                err, variable, lineno);
261
262                 return NULL;
263         }
264
265         cfg = new_config();
266         cfg->variable = xstrdup(variable);
267         cfg->value = xstrdup(value);
268         cfg->file = fname ? xstrdup(fname) : NULL;
269         cfg->line = lineno;
270
271         return cfg;
272 }
273
274 /*
275   Parse a configuration file and put the results in the configuration tree
276   starting at *base.
277 */
278 bool read_config_file(splay_tree_t *config_tree, const char *fname, bool verbose) {
279         FILE *fp;
280         char buffer[MAX_STRING_SIZE];
281         char *line;
282         int lineno = 0;
283         bool ignore = false;
284         config_t *cfg;
285         bool result = false;
286
287         fp = fopen(fname, "r");
288
289         if(!fp) {
290                 logger(verbose ? DEBUG_ALWAYS : DEBUG_CONNECTIONS, LOG_ERR, "Cannot open config file %s: %s", fname, strerror(errno));
291                 return false;
292         }
293
294         for(;;) {
295                 line = readline(fp, buffer, sizeof(buffer));
296
297                 if(!line) {
298                         if(feof(fp)) {
299                                 result = true;
300                         }
301
302                         break;
303                 }
304
305                 lineno++;
306
307                 if(!*line || *line == '#') {
308                         continue;
309                 }
310
311                 if(ignore) {
312                         if(!strncmp(line, "-----END", 8)) {
313                                 ignore = false;
314                         }
315
316                         continue;
317                 }
318
319                 if(!strncmp(line, "-----BEGIN", 10)) {
320                         ignore = true;
321                         continue;
322                 }
323
324                 cfg = parse_config_line(line, fname, lineno);
325
326                 if(!cfg) {
327                         break;
328                 }
329
330                 config_add(config_tree, cfg);
331         }
332
333         fclose(fp);
334
335         return result;
336 }
337
338 void read_config_options(splay_tree_t *config_tree, const char *prefix) {
339         if(!cmdline_conf) {
340                 return;
341         }
342
343         size_t prefix_len = prefix ? strlen(prefix) : 0;
344
345         for(const list_node_t *node = cmdline_conf->tail; node; node = node->prev) {
346                 const config_t *cfg = node->data;
347                 config_t *new;
348
349                 if(!prefix) {
350                         if(strchr(cfg->variable, '.')) {
351                                 continue;
352                         }
353                 } else {
354                         if(strncmp(prefix, cfg->variable, prefix_len) ||
355                                         cfg->variable[prefix_len] != '.') {
356                                 continue;
357                         }
358                 }
359
360                 new = new_config();
361
362                 if(prefix) {
363                         new->variable = xstrdup(cfg->variable + prefix_len + 1);
364                 } else {
365                         new->variable = xstrdup(cfg->variable);
366                 }
367
368                 new->value = xstrdup(cfg->value);
369                 new->file = NULL;
370                 new->line = cfg->line;
371
372                 config_add(config_tree, new);
373         }
374 }
375
376 bool read_server_config(splay_tree_t *config_tree) {
377         char fname[PATH_MAX];
378         bool x;
379
380         read_config_options(config_tree, NULL);
381
382         snprintf(fname, sizeof(fname), "%s" SLASH "tinc.conf", confbase);
383         errno = 0;
384         x = read_config_file(config_tree, fname, true);
385
386         // We will try to read the conf files in the "conf.d" dir
387         if(x) {
388                 char dname[PATH_MAX];
389                 snprintf(dname, sizeof(dname), "%s" SLASH "conf.d", confbase);
390                 DIR *dir = opendir(dname);
391
392                 // If we can find this dir
393                 if(dir) {
394                         struct dirent *ep;
395
396                         // We list all the files in it
397                         while(x && (ep = readdir(dir))) {
398                                 size_t l = strlen(ep->d_name);
399
400                                 // And we try to read the ones that end with ".conf"
401                                 if(l > 5 && !strcmp(".conf", & ep->d_name[ l - 5 ])) {
402                                         if((size_t)snprintf(fname, sizeof(fname), "%s" SLASH "%s", dname, ep->d_name) >= sizeof(fname)) {
403                                                 logger(DEBUG_ALWAYS, LOG_ERR, "Pathname too long: %s/%s", dname, ep->d_name);
404                                                 return false;
405                                         }
406
407                                         x = read_config_file(config_tree, fname, true);
408                                 }
409                         }
410
411                         closedir(dir);
412                 }
413         }
414
415         if(!x && errno) {
416                 logger(DEBUG_ALWAYS, LOG_ERR, "Failed to read `%s': %s", fname, strerror(errno));
417         }
418
419         return x;
420 }
421
422 bool read_host_config(splay_tree_t *config_tree, const char *name, bool verbose) {
423         read_config_options(config_tree, name);
424
425         char fname[PATH_MAX];
426         snprintf(fname, sizeof(fname), "%s" SLASH "hosts" SLASH "%s", confbase, name);
427         return read_config_file(config_tree, fname, verbose);
428 }
429
430 bool append_config_file(const char *name, const char *key, const char *value) {
431         char fname[PATH_MAX];
432         snprintf(fname, sizeof(fname), "%s" SLASH "hosts" SLASH "%s", confbase, name);
433
434         FILE *fp = fopen(fname, "a");
435
436         if(!fp) {
437                 logger(DEBUG_ALWAYS, LOG_DEBUG, "Cannot open config file %s: %s", fname, strerror(errno));
438                 return false;
439         }
440
441         fprintf(fp, "\n# The following line was automatically added by tinc\n%s = %s\n", key, value);
442         fclose(fp);
443         return true;
444 }