ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/conf.C
(Generate patch)

Comparing gvpe/src/conf.C (file contents):
Revision 1.6 by pcg, Fri Mar 28 16:14:40 2003 UTC vs.
Revision 1.15 by pcg, Sun Apr 13 00:35:46 2003 UTC

32#include <sys/stat.h> 32#include <sys/stat.h>
33#include <sys/types.h> 33#include <sys/types.h>
34#include <unistd.h> 34#include <unistd.h>
35 35
36#include <netinet/in.h> 36#include <netinet/in.h>
37#include <netinet/ip_icmp.h>
37 38
38#include <openssl/err.h> 39#include <openssl/err.h>
39#include <openssl/pem.h> 40#include <openssl/pem.h>
40#include <openssl/rsa.h> 41#include <openssl/rsa.h>
41#include <openssl/rand.h> 42#include <openssl/rand.h>
51char *identname; 52char *identname;
52char *pidfilename; 53char *pidfilename;
53 54
54struct configuration conf; 55struct configuration conf;
55 56
56configuration::configuration () 57u8 best_protocol (u8 protset)
57{ 58{
58 init (); 59 if (protset & PROT_IPv4 ) return PROT_IPv4;
59} 60 if (protset & PROT_ICMPv4) return PROT_ICMPv4;
61 if (protset & PROT_UDPv4 ) return PROT_UDPv4;
62 if (protset & PROT_TCPv4 ) return PROT_TCPv4;
60 63
61configuration::~configuration () 64 return 0;
65}
66
67const char *strprotocol (u8 protocol)
62{ 68{
63 cleanup (); 69 if (protocol & PROT_IPv4 ) return "rawip";
70 if (protocol & PROT_ICMPv4) return "icmp";
71 if (protocol & PROT_UDPv4 ) return "udp";
72 if (protocol & PROT_TCPv4 ) return "tcp";
73
74 return "<unknown>";
75}
76
77void
78conf_node::print ()
79{
80 printf ("%4d fe:fd:80:00:0%1x:%02x %c %-8.8s %-10.10s %s%s%d\n",
81 id,
82 id >> 8, id & 0xff,
83 compress ? 'Y' : 'N',
84 connectmode == C_ONDEMAND ? "ondemand" :
85 connectmode == C_NEVER ? "never" :
86 connectmode == C_ALWAYS ? "always" : "",
87 nodename,
88 hostname ? hostname : "",
89 hostname ? ":" : "",
90 hostname ? udp_port : 0
91 );
92}
93
94conf_node::~conf_node ()
95{
96 if (rsa_key)
97 RSA_free (rsa_key);
98
99 free (nodename);
100 free (hostname);
64} 101}
65 102
66void configuration::init () 103void configuration::init ()
67{ 104{
68 memset (this, 0, sizeof (*this)); 105 memset (this, 0, sizeof (*this));
69 106
70 rekey = DEFAULT_REKEY; 107 rekey = DEFAULT_REKEY;
71 keepalive = DEFAULT_KEEPALIVE; 108 keepalive = DEFAULT_KEEPALIVE;
72 llevel = L_INFO; 109 llevel = L_INFO;
73 ip_proto = IPPROTO_GRE; 110 ip_proto = IPPROTO_GRE;
111 icmp_type = ICMP_ECHOREPLY;
74 112
75 default_node.udp_port = DEFAULT_UDPPORT; 113 default_node.udp_port = DEFAULT_UDPPORT;
114 default_node.tcp_port = DEFAULT_UDPPORT;
76 default_node.connectmode = conf_node::C_ALWAYS; 115 default_node.connectmode = conf_node::C_ALWAYS;
77 default_node.compress = true; 116 default_node.compress = true;
78 default_node.protocols = PROT_UDPv4; 117 default_node.protocols = PROT_UDPv4;
79} 118}
80 119
81void configuration::cleanup() 120void configuration::cleanup()
82{ 121{
83 if (rsa_key) 122 if (rsa_key)
84 RSA_free (rsa_key); 123 RSA_free (rsa_key);
85 124
86 free (ifname);
87
88 rsa_key = 0; 125 rsa_key = 0;
89 ifname = 0; 126
127 free (ifname); ifname = 0;
128#if ENABLE_HTTP_PROXY
129 free (proxy_host); proxy_host = 0;
130 free (proxy_auth); proxy_auth = 0;
131#endif
90} 132}
91 133
92void 134void
93configuration::clear_config () 135configuration::clear_config ()
94{ 136{
185 else 227 else
186 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line); 228 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line);
187 } 229 }
188 else if (!strcmp (var, "ip-proto")) 230 else if (!strcmp (var, "ip-proto"))
189 ip_proto = atoi (val); 231 ip_proto = atoi (val);
232 else if (!strcmp (var, "icmp-type"))
233 icmp_type = atoi (val);
190 234
191 // per config 235 // per config
192 else if (!strcmp (var, "node")) 236 else if (!strcmp (var, "node"))
193 { 237 {
194 default_node.id++; 238 default_node.id++;
253 script_if_up = strdup (val); 297 script_if_up = strdup (val);
254 else if (!strcmp (var, "node-up")) 298 else if (!strcmp (var, "node-up"))
255 script_node_up = strdup (val); 299 script_node_up = strdup (val);
256 else if (!strcmp (var, "node-down")) 300 else if (!strcmp (var, "node-down"))
257 script_node_down = strdup (val); 301 script_node_down = strdup (val);
302#if ENABLE_HTTP_PROXY
303 else if (!strcmp (var, "http-proxy-host"))
304 proxy_host = strdup (val);
305 else if (!strcmp (var, "http-proxy-port"))
306 proxy_port = atoi (val);
307 else if (!strcmp (var, "http-proxy-auth"))
308 proxy_auth = (char *)base64_encode ((const u8 *)val, strlen (val));
309#endif
258 310
259 /* node-specific, non-defaultable */ 311 /* node-specific, non-defaultable */
260 else if (node != &default_node && !strcmp (var, "hostname")) 312 else if (node != &default_node && !strcmp (var, "hostname"))
261 { 313 {
262 free (node->hostname); 314 free (node->hostname);
264 } 316 }
265 317
266 /* node-specific, defaultable */ 318 /* node-specific, defaultable */
267 else if (!strcmp (var, "udp-port")) 319 else if (!strcmp (var, "udp-port"))
268 node->udp_port = atoi (val); 320 node->udp_port = atoi (val);
321 else if (!strcmp (var, "tcp-port"))
322 node->tcp_port = atoi (val);
269 else if (!strcmp (var, "router-priority")) 323 else if (!strcmp (var, "router-priority"))
270 node->routerprio = atoi (val); 324 node->routerprio = atoi (val);
271 else if (!strcmp (var, "connect")) 325 else if (!strcmp (var, "connect"))
272 { 326 {
273 if (!strcmp (val, "ondemand")) 327 if (!strcmp (val, "ondemand"))
290 else if (!strcmp (var, "compress")) 344 else if (!strcmp (var, "compress"))
291 { 345 {
292 parse_bool (node->compress, "compress", true, false); 346 parse_bool (node->compress, "compress", true, false);
293 } 347 }
294 // all these bool options really really cost a lot of executable size! 348 // all these bool options really really cost a lot of executable size!
349 else if (!strcmp (var, "enable-tcp"))
350 {
351#if ENABLE_TCP
352 u8 v; parse_bool (v, "enable-tcp" , PROT_TCPv4, 0); node->protocols = (node->protocols & ~PROT_TCPv4) | v;
353#endif
354 }
355 else if (!strcmp (var, "enable-icmp"))
356 {
357#if ENABLE_ICMP
358 u8 v; parse_bool (v, "enable-icmp" , PROT_ICMPv4, 0); node->protocols = (node->protocols & ~PROT_ICMPv4) | v;
359#endif
360 }
295 else if (!strcmp (var, "enable-udp")) 361 else if (!strcmp (var, "enable-udp"))
296 { 362 {
297 u8 v; parse_bool (v, "enable-udp" , PROT_UDPv4, 0); node->protocols = (node->protocols & ~PROT_UDPv4) | v; 363 u8 v; parse_bool (v, "enable-udp" , PROT_UDPv4, 0); node->protocols = (node->protocols & ~PROT_UDPv4) | v;
298 } 364 }
299 else if (!strcmp (var, "enable-rawip")) 365 else if (!strcmp (var, "enable-rawip"))
301 u8 v; parse_bool (v, "enable-rawip", PROT_IPv4, 0); node->protocols = (node->protocols & ~PROT_IPv4 ) | v; 367 u8 v; parse_bool (v, "enable-rawip", PROT_IPv4, 0); node->protocols = (node->protocols & ~PROT_IPv4 ) | v;
302 } 368 }
303 369
304 // unknown or misplaced 370 // unknown or misplaced
305 else 371 else
306 {
307 slog (L_WARN, 372 slog (L_WARN,
308 _("unknown or misplaced variable `%s', at '%s' line %d"), 373 _("unknown or misplaced variable `%s', at '%s' line %d"),
309 var, fname, lineno); 374 var, fname, lineno);
310 }
311 } 375 }
312 376
313 fclose (f); 377 fclose (f);
314 } 378 }
315 else 379 else
374 printf (_("MTU: %d\n"), mtu); 438 printf (_("MTU: %d\n"), mtu);
375 printf (_("rekeying interval: %d\n"), rekey); 439 printf (_("rekeying interval: %d\n"), rekey);
376 printf (_("keepalive interval: %d\n"), keepalive); 440 printf (_("keepalive interval: %d\n"), keepalive);
377 printf (_("interface: %s\n"), ifname); 441 printf (_("interface: %s\n"), ifname);
378 printf (_("primary rsa key: %s\n"), prikeyfile ? prikeyfile : "<default>"); 442 printf (_("primary rsa key: %s\n"), prikeyfile ? prikeyfile : "<default>");
379 printf (_("rsa key size: %d\n"), rsa_key ? RSA_size (rsa_key) : -1); 443 printf (_("rsa key size: %d\n"), rsa_key ? RSA_size (rsa_key) * 8 : -1);
380 printf ("\n"); 444 printf ("\n");
381 445
382 printf ("%4s %-17s %s %-8.8s %-10.10s %s\n", 446 printf ("%4s %-17s %s %-8.8s %-10.10s %s\n",
383 _("ID#"), _("MAC"), _("Com"), _("Conmode"), _("Node"), _("Host:Port")); 447 _("ID#"), _("MAC"), _("Com"), _("Conmode"), _("Node"), _("Host:Port"));
384 448
386 (*i)->print (); 450 (*i)->print ();
387 451
388 printf ("\n"); 452 printf ("\n");
389} 453}
390 454
391void 455configuration::configuration ()
392conf_node::print ()
393{ 456{
394 printf ("%4d fe:fd:80:00:0%1x:%02x %c %-8.8s %-10.10s %s%s%d\n", 457 init ();
395 id,
396 id >> 8, id & 0xff,
397 compress ? 'Y' : 'N',
398 connectmode == C_ONDEMAND ? "ondemand" :
399 connectmode == C_NEVER ? "never" :
400 connectmode == C_ALWAYS ? "always" : "",
401 nodename,
402 hostname ? hostname : "",
403 hostname ? ":" : "",
404 hostname ? udp_port : 0
405 );
406} 458}
407 459
460configuration::~configuration ()
461{
462 cleanup ();
463}
464
465

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines