X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=fc8237201cba67075f3aed67836fecd29818d079;hp=b1eb4756ae03f637023efe5d51c70271fee1c05d;hb=f0aa9641e82fb6e09c1e485366d14dddaa7f7c36;hpb=6d333ad680465c26953ad4c8ca9140e27da868c5 diff --git a/src/conf.c b/src/conf.c index b1eb4756..fc823720 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,8 +1,8 @@ /* conf.c -- configuration code Copyright (C) 1998 Robert van der Meulen - 1998-2001 Ivo Timmermans - 2000,2001 Guus Sliepen + 1998-2002 Ivo Timmermans + 2000-2002 Guus Sliepen 2000 Cris van Pelt This program is free software; you can redistribute it and/or modify @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: conf.c,v 1.9.4.47 2001/10/31 20:07:17 guus Exp $ + $Id: conf.c,v 1.9.4.52 2002/02/10 21:57:53 guus Exp $ */ #include "config.h" @@ -42,20 +42,17 @@ #include #include "conf.h" -#include "netutl.h" /* for strtoip */ +#include "netutl.h" /* for str2address */ #include "system.h" avl_tree_t *config_tree; int debug_lvl = 0; -int timeout = 0; /* seconds before timeout */ +int pingtimeout = 0; /* seconds before timeout */ char *confbase = NULL; /* directory in which all config files are */ char *netname = NULL; /* name of the vpn network */ -/* Will be set if HUP signal is received. It will be processed when it is safe. */ -int sighup = 0; - int config_compare(config_t *a, config_t *b) { int result; @@ -167,7 +164,7 @@ cp *result = 1; return 1; } - else if(!strcasecmp(cfg->value, "np")) + else if(!strcasecmp(cfg->value, "no")) { *result = 0; return 1; @@ -203,14 +200,15 @@ cp return 1; } -int get_config_ip(config_t *cfg, ip_mask_t **result) +int get_config_address(config_t *cfg, ipv4_t **result) { - ip_mask_t *ip; + ipv4_t *ip; cp if(!cfg) return 0; - ip = strtoip(cfg->value); + ip = xmalloc(sizeof(*ip)); + *ip = str2address(cfg->value); if(ip) { @@ -239,37 +237,30 @@ cp int get_config_subnet(config_t *cfg, subnet_t **result) { - ip_mask_t *ip; subnet_t *subnet; cp if(!cfg) return 0; - ip = strtoip(cfg->value); + subnet = str2net(cfg->value); - if(!ip) + if(!subnet) { - syslog(LOG_ERR, _("IP address expected for configuration variable %s in %s line %d"), + syslog(LOG_ERR, _("Subnet expected for configuration variable %s in %s line %d"), cfg->variable, cfg->file, cfg->line); return 0; } /* Teach newbies what subnets are... */ - if((ip->address & ip->mask) != ip->address) - { - syslog(LOG_ERR, _("Network address and subnet mask for configuration variable %s in %s line %d"), - cfg->variable, cfg->file, cfg->line); - free(ip); - return 0; - } - - subnet = new_subnet(); - subnet->type = SUBNET_IPV4; - subnet->net.ipv4.address = ip->address; - subnet->net.ipv4.mask = ip->mask; - - free(ip); + if(subnet->type == SUBNET_IPV4) + if((subnet->net.ipv4.address & subnet->net.ipv4.mask) != subnet->net.ipv4.address) + { + syslog(LOG_ERR, _("Network address and mask length do not match for configuration variable %s in %s line %d"), + cfg->variable, cfg->file, cfg->line); + free(subnet); + return 0; + } *result = subnet;