ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/conf.C
Revision: 1.25
Committed: Mon May 10 20:13:09 2004 UTC (20 years ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: VPE_1_6
Changes since 1.24: +4 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 conf.c -- configuration code
3 Copyright (C) 2003-2004 Marc Lehmann <pcg@goof.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #include "config.h"
21
22 #include <cstdio>
23 #include <cstdlib>
24 #include <cstring>
25
26 #include <errno.h>
27 #include <netdb.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <unistd.h>
31
32 #include "netcompat.h"
33
34 #include <openssl/err.h>
35 #include <openssl/pem.h>
36 #include <openssl/rsa.h>
37 #include <openssl/rand.h>
38 #include <openssl/bn.h>
39
40 #include "gettext.h"
41
42 #include "conf.h"
43 #include "slog.h"
44 #include "util.h"
45
46 char *confbase;
47 char *thisnode;
48 char *identname;
49
50 struct configuration conf;
51
52 u8 best_protocol (u8 protset)
53 {
54 if (protset & PROT_IPv4 ) return PROT_IPv4;
55 if (protset & PROT_ICMPv4) return PROT_ICMPv4;
56 if (protset & PROT_UDPv4 ) return PROT_UDPv4;
57 if (protset & PROT_TCPv4 ) return PROT_TCPv4;
58 if (protset & PROT_DNSv4 ) return PROT_DNSv4;
59
60 return 0;
61 }
62
63 const char *strprotocol (u8 protocol)
64 {
65 if (protocol & PROT_IPv4 ) return "rawip";
66 if (protocol & PROT_ICMPv4) return "icmp";
67 if (protocol & PROT_UDPv4 ) return "udp";
68 if (protocol & PROT_TCPv4 ) return "tcp";
69 if (protocol & PROT_DNSv4 ) return "dns";
70
71 return "<unknown>";
72 }
73
74 void
75 conf_node::print ()
76 {
77 printf ("%4d fe:fd:80:00:0%1x:%02x %c %-8.8s %-10.10s %s%s%d\n",
78 id,
79 id >> 8, id & 0xff,
80 compress ? 'Y' : 'N',
81 connectmode == C_ONDEMAND ? "ondemand" :
82 connectmode == C_NEVER ? "never" :
83 connectmode == C_ALWAYS ? "always" : "",
84 nodename,
85 hostname ? hostname : "",
86 hostname ? ":" : "",
87 hostname ? udp_port : 0
88 );
89 }
90
91 conf_node::~conf_node ()
92 {
93 if (rsa_key)
94 RSA_free (rsa_key);
95
96 free (nodename);
97 free (hostname);
98 }
99
100 void configuration::init ()
101 {
102 asprintf (&confbase, "%s/vpe", CONFDIR);
103
104 memset (this, 0, sizeof (*this));
105
106 mtu = DEFAULT_MTU;
107 rekey = DEFAULT_REKEY;
108 keepalive = DEFAULT_KEEPALIVE;
109 llevel = L_INFO;
110 ip_proto = IPPROTO_GRE;
111 #if ENABLE_ICMP
112 icmp_type = ICMP_ECHOREPLY;
113 #endif
114
115 default_node.udp_port = DEFAULT_UDPPORT;
116 default_node.tcp_port = DEFAULT_UDPPORT; // ehrm
117 default_node.connectmode = conf_node::C_ALWAYS;
118 default_node.compress = true;
119 default_node.protocols = PROT_UDPv4;
120
121 conf.pidfilename = strdup (LOCALSTATEDIR "/run/vped.pid");
122 }
123
124 void configuration::cleanup()
125 {
126 if (rsa_key)
127 RSA_free (rsa_key);
128
129 rsa_key = 0;
130
131 free (pidfilename); pidfilename = 0;
132 free (ifname); ifname = 0;
133 #if ENABLE_HTTP_PROXY
134 free (proxy_host); proxy_host = 0;
135 free (proxy_auth); proxy_auth = 0;
136 #endif
137 }
138
139 void
140 configuration::clear_config ()
141 {
142 for (configuration::node_vector::iterator i = nodes.begin(); i != nodes.end(); ++i)
143 delete *i;
144
145 nodes.clear ();
146
147 cleanup ();
148 init ();
149 }
150
151 #define parse_bool(target,name,trueval,falseval) \
152 if (!strcmp (val, "yes")) target = trueval; \
153 else if (!strcmp (val, "no")) target = falseval; \
154 else if (!strcmp (val, "true")) target = trueval; \
155 else if (!strcmp (val, "false")) target = falseval; \
156 else if (!strcmp (val, "on")) target = trueval; \
157 else if (!strcmp (val, "off")) target = falseval; \
158 else \
159 slog (L_WARN, \
160 _("illegal value for '%s', only 'yes|true|on' or 'no|false|off' allowed, at '%s' line %d"), \
161 name, var, fname, lineno);
162
163 void configuration::read_config (bool need_keys)
164 {
165 char *fname;
166 FILE *f;
167
168 clear_config ();
169
170 asprintf (&fname, "%s/vped.conf", confbase);
171 f = fopen (fname, "r");
172
173 if (f)
174 {
175 char line[16384];
176 int lineno = 0;
177 char *var, *val;
178 conf_node *node = &default_node;
179
180 while (fgets (line, sizeof (line), f))
181 {
182 lineno++;
183
184 {
185 char *end = line + strlen (line);
186
187 while (*end < ' ' && end >= line)
188 end--;
189
190 *++end = 0;
191 }
192
193 char *tok = line;
194
195 retry:
196 var = strtok (tok, "\t =");
197 tok = 0;
198
199 if (!var || !var[0])
200 continue; /* no tokens on this line */
201
202 if (var[0] == '#')
203 continue; /* comment: ignore */
204
205 val = strtok (NULL, "\t\n\r =");
206
207 if (!val || val[0] == '#')
208 {
209 slog (L_WARN,
210 _("no value for variable `%s', at '%s' line %d"),
211 var, fname, lineno);
212 break;
213 }
214
215 if (!strcmp (var, "on"))
216 {
217 if (!::thisnode
218 || (val[0] == '!' && strcmp (val + 1, ::thisnode))
219 || !strcmp (val, ::thisnode))
220 goto retry;
221
222 continue;
223 }
224
225 // truly global
226 if (!strcmp (var, "loglevel"))
227 {
228 loglevel l = string_to_loglevel (val);
229
230 if (l != L_NONE)
231 llevel = l;
232 else
233 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line);
234 }
235 else if (!strcmp (var, "ip-proto"))
236 ip_proto = atoi (val);
237 else if (!strcmp (var, "icmp-type"))
238 {
239 #if ENABLE_ICMP
240 icmp_type = atoi (val);
241 #endif
242 }
243
244 // per config
245 else if (!strcmp (var, "node"))
246 {
247 default_node.id++;
248
249 node = new conf_node (default_node);
250
251 nodes.push_back (node);
252
253 node->nodename = strdup (val);
254
255 {
256 char *fname;
257 FILE *f;
258
259 asprintf (&fname, "%s/pubkey/%s", confbase, node->nodename);
260
261 f = fopen (fname, "r");
262 if (f)
263 {
264 node->rsa_key = RSA_new ();
265
266 if (!PEM_read_RSAPublicKey(f, &node->rsa_key, NULL, NULL))
267 {
268 ERR_load_RSA_strings (); ERR_load_PEM_strings ();
269 slog (L_ERR, _("unable to open public rsa key file '%s': %s"), fname, ERR_error_string (ERR_get_error (), 0));
270 exit (EXIT_FAILURE);
271 }
272
273 require (RSA_blinding_on (node->rsa_key, 0));
274
275 fclose (f);
276 }
277 else
278 {
279 slog (need_keys ? L_ERR : L_NOTICE, _("unable to read public rsa key file '%s': %s"), fname, strerror (errno));
280
281 if (need_keys)
282 exit (EXIT_FAILURE);
283 }
284
285 free (fname);
286 }
287
288 if (::thisnode && !strcmp (node->nodename, ::thisnode))
289 thisnode = node;
290 }
291 else if (!strcmp (var, "private-key"))
292 free (prikeyfile), prikeyfile = strdup (val);
293 else if (!strcmp (var, "ifpersist"))
294 {
295 parse_bool (ifpersist, "ifpersist", true, false);
296 }
297 else if (!strcmp (var, "ifname"))
298 free (ifname), ifname = strdup (val);
299 else if (!strcmp (var, "rekey"))
300 rekey = atoi (val);
301 else if (!strcmp (var, "keepalive"))
302 keepalive = atoi (val);
303 else if (!strcmp (var, "mtu"))
304 mtu = atoi (val);
305 else if (!strcmp (var, "if-up"))
306 free (script_if_up), script_if_up = strdup (val);
307 else if (!strcmp (var, "node-up"))
308 free (script_node_up), script_node_up = strdup (val);
309 else if (!strcmp (var, "node-down"))
310 free (script_node_down), script_node_down = strdup (val);
311 else if (!strcmp (var, "pid-file"))
312 free (pidfilename), pidfilename = strdup (val);
313 else if (!strcmp (var, "http-proxy-host"))
314 {
315 #if ENABLE_HTTP_PROXY
316 free (proxy_host), proxy_host = strdup (val);
317 #endif
318 }
319 else if (!strcmp (var, "http-proxy-port"))
320 {
321 #if ENABLE_HTTP_PROXY
322 proxy_port = atoi (val);
323 #endif
324 }
325 else if (!strcmp (var, "http-proxy-auth"))
326 {
327 #if ENABLE_HTTP_PROXY
328 proxy_auth = (char *)base64_encode ((const u8 *)val, strlen (val));
329 #endif
330 }
331
332 /* node-specific, non-defaultable */
333 else if (node != &default_node && !strcmp (var, "hostname"))
334 free (node->hostname), node->hostname = strdup (val);
335
336 /* node-specific, defaultable */
337 else if (!strcmp (var, "udp-port"))
338 node->udp_port = atoi (val);
339 else if (!strcmp (var, "tcp-port"))
340 node->tcp_port = atoi (val);
341 else if (!strcmp (var, "dns-port"))
342 node->dns_port = atoi (val);
343 else if (!strcmp (var, "router-priority"))
344 node->routerprio = atoi (val);
345 else if (!strcmp (var, "connect"))
346 {
347 if (!strcmp (val, "ondemand"))
348 node->connectmode = conf_node::C_ONDEMAND;
349 else if (!strcmp (val, "never"))
350 node->connectmode = conf_node::C_NEVER;
351 else if (!strcmp (val, "always"))
352 node->connectmode = conf_node::C_ALWAYS;
353 else if (!strcmp (val, "disabled"))
354 node->connectmode = conf_node::C_DISABLED;
355 else
356 slog (L_WARN,
357 _("illegal value for 'connectmode', use one of 'ondemand', 'never', 'always' or 'disabled', at '%s' line %d"),
358 var, fname, lineno);
359 }
360 else if (!strcmp (var, "inherit-tos"))
361 {
362 parse_bool (node->inherit_tos, "inherit-tos", true, false);
363 }
364 else if (!strcmp (var, "compress"))
365 {
366 parse_bool (node->compress, "compress", true, false);
367 }
368 // all these bool options really really cost a lot of executable size!
369 else if (!strcmp (var, "enable-tcp"))
370 {
371 #if ENABLE_TCP
372 u8 v; parse_bool (v, "enable-tcp" , PROT_TCPv4, 0); node->protocols = (node->protocols & ~PROT_TCPv4) | v;
373 #endif
374 }
375 else if (!strcmp (var, "enable-icmp"))
376 {
377 #if ENABLE_ICMP
378 u8 v; parse_bool (v, "enable-icmp" , PROT_ICMPv4, 0); node->protocols = (node->protocols & ~PROT_ICMPv4) | v;
379 #endif
380 }
381 else if (!strcmp (var, "enable-dns"))
382 {
383 #if ENABLE_DNS
384 u8 v; parse_bool (v, "enable-dns" , PROT_DNSv4, 0); node->protocols = (node->protocols & ~PROT_DNSv4) | v;
385 #endif
386 }
387 else if (!strcmp (var, "enable-udp"))
388 {
389 u8 v; parse_bool (v, "enable-udp" , PROT_UDPv4, 0); node->protocols = (node->protocols & ~PROT_UDPv4) | v;
390 }
391 else if (!strcmp (var, "enable-rawip"))
392 {;
393 u8 v; parse_bool (v, "enable-rawip", PROT_IPv4, 0); node->protocols = (node->protocols & ~PROT_IPv4 ) | v;
394 }
395
396 // unknown or misplaced
397 else
398 slog (L_WARN,
399 _("unknown or misplaced variable `%s', at '%s' line %d"),
400 var, fname, lineno);
401 }
402
403 fclose (f);
404 }
405 else
406 {
407 slog (L_ERR, _("unable to read config file '%s': %s"), fname, strerror (errno));
408 exit (EXIT_FAILURE);
409 }
410
411 free (fname);
412
413 fname = config_filename (prikeyfile, "hostkey");
414
415 f = fopen (fname, "r");
416 if (f)
417 {
418 rsa_key = RSA_new ();
419
420 if (!PEM_read_RSAPrivateKey (f, &rsa_key, NULL, NULL))
421 {
422 ERR_load_RSA_strings (); ERR_load_PEM_strings ();
423 slog (L_ERR, _("unable to read private rsa key file '%s': %s"), fname, ERR_error_string (ERR_get_error (), 0));
424 exit (EXIT_FAILURE);
425 }
426
427 require (RSA_blinding_on (rsa_key, 0));
428
429 fclose (f);
430 }
431 else
432 {
433 slog (need_keys ? L_ERR : L_NOTICE, _("unable to open private rsa key file '%s': %s"), fname, strerror (errno));
434
435 if (need_keys)
436 exit (EXIT_FAILURE);
437 }
438
439 if (need_keys && ::thisnode
440 && rsa_key && thisnode && thisnode->rsa_key)
441 if (BN_cmp (rsa_key->n, thisnode->rsa_key->n) != 0
442 || BN_cmp (rsa_key->e, thisnode->rsa_key->e) != 0)
443 {
444 slog (L_NOTICE, _("private hostkey and public node key mismatch: is '%s' the correct node?"), ::thisnode);
445 exit (EXIT_FAILURE);
446 }
447
448 free (fname);
449 }
450
451 char *configuration::config_filename (const char *name, const char *dflt)
452 {
453 char *fname;
454
455 asprintf (&fname, name ? name : dflt, ::thisnode);
456
457 if (!ABSOLUTE_PATH (fname))
458 {
459 char *rname = fname;
460 asprintf (&fname, "%s/%s", confbase, rname);
461 free (rname);
462 }
463
464 return fname;
465 }
466
467 void
468 configuration::print ()
469 {
470 printf (_("\nConfiguration\n\n"));
471 printf (_("# of nodes: %d\n"), nodes.size ());
472 printf (_("this node: %s\n"), thisnode ? thisnode->nodename : "<unset>");
473 printf (_("MTU: %d\n"), mtu);
474 printf (_("rekeying interval: %d\n"), rekey);
475 printf (_("keepalive interval: %d\n"), keepalive);
476 printf (_("interface: %s\n"), ifname);
477 printf (_("primary rsa key: %s\n"), prikeyfile ? prikeyfile : "<default>");
478 printf (_("rsa key size: %d\n"), rsa_key ? RSA_size (rsa_key) * 8 : -1);
479 printf ("\n");
480
481 printf ("%4s %-17s %s %-8.8s %-10.10s %s\n",
482 _("ID#"), _("MAC"), _("Com"), _("Conmode"), _("Node"), _("Host:Port"));
483
484 for (node_vector::iterator i = nodes.begin (); i != nodes.end (); ++i)
485 (*i)->print ();
486
487 printf ("\n");
488 }
489
490 configuration::configuration ()
491 {
492 init ();
493 }
494
495 configuration::~configuration ()
496 {
497 cleanup ();
498 }
499
500