2 conf.c -- configuration code
3 Copyright (C) 1998 Robert van der Meulen
4 1998-2005 Ivo Timmermans
6 2010-2011 Julien Muchembled <jm@jmuchemb.eu>
7 2000-2013 Guus Sliepen <guus@tinc-vpn.org>
8 2013 Florent Clairambault <florent@clairambault.fr>
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.
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.
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.
27 #include "splay_tree.h"
28 #include "connection.h"
33 #include "netutl.h" /* for str2address */
35 #include "utils.h" /* for cp */
38 splay_tree_t *config_tree;
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 */
44 static int config_compare(const config_t *a, const config_t *b) {
47 result = strcasecmp(a->variable, b->variable);
52 /* give priority to command line options */
53 result = !b->file - !a->file;
57 result = a->line - b->line;
62 return a->file ? strcmp(a->file, b->file) : 0;
65 void init_configuration(splay_tree_t ** config_tree) {
66 *config_tree = splay_alloc_tree((splay_compare_t) config_compare, (splay_action_t) free_config);
69 void exit_configuration(splay_tree_t ** config_tree) {
70 splay_delete_tree(*config_tree);
74 config_t *new_config(void) {
75 return xzalloc(sizeof(config_t));
78 void free_config(config_t *cfg) {
91 void config_add(splay_tree_t *config_tree, config_t *cfg) {
92 splay_insert(config_tree, cfg);
95 config_t *lookup_config(splay_tree_t *config_tree, char *variable) {
98 cfg.variable = variable;
102 found = splay_search_closest_greater(config_tree, &cfg);
107 if(strcasecmp(found->variable, variable))
113 config_t *lookup_config_next(splay_tree_t *config_tree, const config_t *cfg) {
117 node = splay_search_node(config_tree, cfg);
121 found = node->next->data;
123 if(!strcasecmp(found->variable, cfg->variable))
131 bool get_config_bool(const config_t *cfg, bool *result) {
135 if(!strcasecmp(cfg->value, "yes")) {
138 } else if(!strcasecmp(cfg->value, "no")) {
143 logger(DEBUG_ALWAYS, LOG_ERR, "\"yes\" or \"no\" expected for configuration variable %s in %s line %d",
144 cfg->variable, cfg->file, cfg->line);
149 bool get_config_int(const config_t *cfg, int *result) {
153 if(sscanf(cfg->value, "%d", result) == 1)
156 logger(DEBUG_ALWAYS, LOG_ERR, "Integer expected for configuration variable %s in %s line %d",
157 cfg->variable, cfg->file, cfg->line);
162 bool get_config_string(const config_t *cfg, char **result) {
166 *result = xstrdup(cfg->value);
171 bool get_config_address(const config_t *cfg, struct addrinfo **result) {
177 ai = str2addrinfo(cfg->value, NULL, 0);
184 logger(DEBUG_ALWAYS, LOG_ERR, "Hostname or IP address expected for configuration variable %s in %s line %d",
185 cfg->variable, cfg->file, cfg->line);
190 bool get_config_subnet(const config_t *cfg, subnet_t ** result) {
191 subnet_t subnet = {NULL};
196 if(!str2net(&subnet, cfg->value)) {
197 logger(DEBUG_ALWAYS, LOG_ERR, "Subnet expected for configuration variable %s in %s line %d",
198 cfg->variable, cfg->file, cfg->line);
202 /* Teach newbies what subnets are... */
204 if(((subnet.type == SUBNET_IPV4)
205 && !maskcheck(&subnet.net.ipv4.address, subnet.net.ipv4.prefixlength, sizeof subnet.net.ipv4.address))
206 || ((subnet.type == SUBNET_IPV6)
207 && !maskcheck(&subnet.net.ipv6.address, subnet.net.ipv6.prefixlength, sizeof subnet.net.ipv6.address))) {
208 logger(DEBUG_ALWAYS, LOG_ERR, "Network address and prefix length do not match for configuration variable %s in %s line %d",
209 cfg->variable, cfg->file, cfg->line);
213 *(*result = new_subnet()) = subnet;
219 Read exactly one line and strip the trailing newline if any.
221 static char *readline(FILE * fp, char *buf, size_t buflen) {
222 char *newline = NULL;
228 p = fgets(buf, buflen, fp);
233 newline = strchr(p, '\n');
238 /* kill newline and carriage return if necessary */
240 if(newline > p && newline[-1] == '\r')
246 config_t *parse_config_line(char *line, const char *fname, int lineno) {
249 char *variable, *value, *eol;
250 variable = value = line;
252 eol = line + strlen(line);
253 while(strchr("\t ", *--eol))
256 len = strcspn(value, "\t =");
258 value += strspn(value, "\t ");
261 value += strspn(value, "\t ");
263 variable[len] = '\0';
266 const char err[] = "No value for variable";
268 logger(DEBUG_ALWAYS, LOG_ERR, "%s `%s' on line %d while reading config file %s",
269 err, variable, lineno, fname);
271 logger(DEBUG_ALWAYS, LOG_ERR, "%s `%s' in command line option %d",
272 err, variable, lineno);
277 cfg->variable = xstrdup(variable);
278 cfg->value = xstrdup(value);
279 cfg->file = fname ? xstrdup(fname) : NULL;
286 Parse a configuration file and put the results in the configuration tree
289 bool read_config_file(splay_tree_t *config_tree, const char *fname) {
291 char buffer[MAX_STRING_SIZE];
298 fp = fopen(fname, "r");
301 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot open config file %s: %s", fname, strerror(errno));
306 line = readline(fp, buffer, sizeof buffer);
316 if(!*line || *line == '#')
320 if(!strncmp(line, "-----END", 8))
325 if(!strncmp(line, "-----BEGIN", 10)) {
330 cfg = parse_config_line(line, fname, lineno);
333 config_add(config_tree, cfg);
341 void read_config_options(splay_tree_t *config_tree, const char *prefix) {
342 size_t prefix_len = prefix ? strlen(prefix) : 0;
344 for(const list_node_t *node = cmdline_conf->tail; node; node = node->prev) {
345 const config_t *cfg = node->data;
349 if(strchr(cfg->variable, '.'))
352 if(strncmp(prefix, cfg->variable, prefix_len) ||
353 cfg->variable[prefix_len] != '.')
359 new->variable = xstrdup(cfg->variable + prefix_len + 1);
361 new->variable = xstrdup(cfg->variable);
362 new->value = xstrdup(cfg->value);
364 new->line = cfg->line;
366 config_add(config_tree, new);
370 bool read_server_config(void) {
374 read_config_options(config_tree, NULL);
376 xasprintf(&fname, "%s" SLASH "tinc.conf", confbase);
378 x = read_config_file(config_tree, fname);
380 // We will try to read the conf files in the "conf.d" dir
383 xasprintf(&dname, "%s" SLASH "conf.d", confbase);
384 DIR *dir = opendir (dname);
385 // If we can find this dir
388 // We list all the files in it
389 while (x && (ep = readdir (dir))) {
390 size_t l = strlen(ep->d_name);
391 // And we try to read the ones that end with ".conf"
392 if (l > 5 && !strcmp(".conf", & ep->d_name[ l - 5 ])) {
394 xasprintf(&fname, "%s" SLASH "%s", dname, ep->d_name);
395 x = read_config_file(config_tree, fname);
404 logger(DEBUG_ALWAYS, LOG_ERR, "Failed to read `%s': %s", fname, strerror(errno));
411 bool read_host_config(splay_tree_t *config_tree, const char *name) {
415 read_config_options(config_tree, name);
417 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
418 x = read_config_file(config_tree, fname);
424 bool append_config_file(const char *name, const char *key, const char *value) {
426 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
428 FILE *fp = fopen(fname, "a");
431 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot open config file %s: %s", fname, strerror(errno));
433 fprintf(fp, "\n# The following line was automatically added by tinc\n%s = %s\n", key, value);