2 conf.c -- configuration code
3 Copyright (C) 1998 Emphyrio,
4 Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
5 2000 Guus Sliepen <guus@sliepen.warande.net>
6 2000 Cris van Pelt <tribbel@arise.dhs.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 $Id: conf.c,v 1.9.4.3 2000/06/27 20:10:47 guus Exp $
38 #include "netutl.h" /* for strtoip */
44 int timeout = 0; /* seconds before timeout */
46 typedef struct internal_config_t {
53 These are all the possible configurable values
55 static internal_config_t hazahaza[] = {
56 { "AllowConnect", allowconnect, TYPE_BOOL }, /* Is not used anywhere. Remove? */
57 { "ConnectTo", upstreamip, TYPE_IP },
58 { "ConnectPort", upstreamport, TYPE_INT },
59 { "ListenPort", listenport, TYPE_INT },
60 { "MyOwnVPNIP", myvpnip, TYPE_IP },
61 { "MyVirtualIP", myvpnip, TYPE_IP }, /* an alias */
62 { "Passphrases", passphrasesdir, TYPE_NAME },
63 { "PingTimeout", pingtimeout, TYPE_INT },
64 { "TapDevice", tapdevice, TYPE_NAME },
65 { "KeyExpire", keyexpire, TYPE_INT },
66 { "VpnMask", vpnmask, TYPE_IP },
67 { "Hostnames", resolve_dns, TYPE_BOOL },
68 { "IndirectData", indirectdata, TYPE_BOOL },
73 Add given value to the list of configs cfg
76 add_config_val(config_t **cfg, int argtype, char *val)
81 p = (config_t*)xmalloc(sizeof(*p));
87 p->data.val = strtol(val, &q, 0);
92 p->data.ptr = xmalloc(strlen(val) + 1);
93 strcpy(p->data.ptr, val);
96 p->data.ip = strtoip(val);
99 if(!strcasecmp("yes", val))
100 p->data.val = stupid_true;
101 else if(!strcasecmp("no", val))
102 p->data.val = stupid_false;
127 Get variable from a section in a configfile. returns -1 on failure.
130 readconfig(const char *fname, FILE *fp)
132 char *line, *temp_buf;
137 line = (char *)xmalloc(80 * sizeof(char));
138 temp_buf = (char *)xmalloc(80 * sizeof(char));
142 if(fgets(line, 80, fp) == NULL)
145 while(!index(line, '\n'))
147 fgets(temp_buf, (strlen(line)+1) * 80, fp);
150 strcat(line, temp_buf);
151 line = (char *)xrealloc(line, (strlen(line)+1) * sizeof(char));
155 if((p = strtok(line, "\t\n\r =")) == NULL)
156 continue; /* no tokens on this line */
159 continue; /* comment: ignore */
161 for(i = 0; hazahaza[i].name != NULL; i++)
162 if(!strcasecmp(hazahaza[i].name, p))
165 if(!hazahaza[i].name)
167 fprintf(stderr, _("%s: %d: Invalid variable name `%s'.\n"),
172 if(((q = strtok(NULL, "\t\n\r =")) == NULL) || q[0] == '#')
174 fprintf(stderr, _("%s: %d: No value given for `%s'.\n"),
175 fname, lineno, hazahaza[i].name);
179 cfg = add_config_val(&config, hazahaza[i].argtype, q);
182 fprintf(stderr, _("%s: %d: Invalid value `%s' for variable `%s'.\n"),
183 fname, lineno, q, hazahaza[i].name);
187 cfg->which = hazahaza[i].which;
194 wrapper function for readconfig
197 read_config_file(const char *fname)
201 if((fp = fopen (fname, "r")) == NULL)
203 fprintf(stderr, _("Could not open %s: %s\n"), fname, sys_errlist[errno]);
207 if(readconfig(fname, fp))
216 Look up the value of the config option type
219 get_config_val(which_t type)
223 for(p = config; p != NULL; p = p->next)
232 Support for multiple config lines.
233 Index is used to get a specific value, 0 being the first, 1 the second etc.
236 get_next_config_val(which_t type, int index)
240 for(p = config; p != NULL; p = p->next)