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.1 by pcg, Sat Mar 1 15:53:03 2003 UTC vs.
Revision 1.11 by pcg, Wed Apr 2 21:43:44 2003 UTC

31#include <netdb.h> 31#include <netdb.h>
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>
37
36#include <openssl/err.h> 38#include <openssl/err.h>
37#include <openssl/pem.h> 39#include <openssl/pem.h>
38#include <openssl/rsa.h> 40#include <openssl/rsa.h>
39#include <openssl/rand.h> 41#include <openssl/rand.h>
40 42
49char *identname; 51char *identname;
50char *pidfilename; 52char *pidfilename;
51 53
52struct configuration conf; 54struct configuration conf;
53 55
56u8 best_protocol (u8 protset)
57{
58 if (protset & PROT_IPv4 ) return PROT_IPv4;
59 if (protset & PROT_UDPv4) return PROT_UDPv4;
60 if (protset & PROT_TCPv4) return PROT_TCPv4;
61
62 return 0;
63}
64
65const char *strprotocol (u8 protocol)
66{
67 if (protocol & PROT_IPv4 ) return "rawip";
68 if (protocol & PROT_UDPv4) return "udp";
69 if (protocol & PROT_TCPv4) return "tcp";
70
71 return "<unknown>";
72}
73
54configuration::configuration () 74configuration::configuration ()
55{ 75{
56 init (); 76 init ();
57} 77}
58 78
65{ 85{
66 memset (this, 0, sizeof (*this)); 86 memset (this, 0, sizeof (*this));
67 87
68 rekey = DEFAULT_REKEY; 88 rekey = DEFAULT_REKEY;
69 keepalive = DEFAULT_KEEPALIVE; 89 keepalive = DEFAULT_KEEPALIVE;
90 llevel = L_INFO;
91 ip_proto = IPPROTO_GRE;
70 92
71 default_node.port = DEFAULT_PORT; 93 default_node.udp_port = DEFAULT_UDPPORT;
94 default_node.tcp_port = DEFAULT_UDPPORT;
72 default_node.connectmode = conf_node::C_ALWAYS; 95 default_node.connectmode = conf_node::C_ALWAYS;
73 default_node.compress = true; 96 default_node.compress = true;
97 default_node.protocols = PROT_UDPv4;
74} 98}
75 99
76void configuration::cleanup() 100void configuration::cleanup()
77{ 101{
78 if (rsa_key) 102 if (rsa_key)
93 nodes.clear (); 117 nodes.clear ();
94 118
95 cleanup (); 119 cleanup ();
96 init (); 120 init ();
97} 121}
122
123#define parse_bool(target,name,trueval,falseval) \
124 if (!strcmp (val, "yes")) target = trueval; \
125 else if (!strcmp (val, "no")) target = falseval; \
126 else if (!strcmp (val, "true")) target = trueval; \
127 else if (!strcmp (val, "false")) target = falseval; \
128 else if (!strcmp (val, "on")) target = trueval; \
129 else if (!strcmp (val, "off")) target = falseval; \
130 else \
131 slog (L_WARN, \
132 _("illegal value for '%s', only 'yes|true|on' or 'no|false|off' allowed, at '%s' line %d"), \
133 name, var, fname, lineno);
98 134
99void configuration::read_config (bool need_keys) 135void configuration::read_config (bool need_keys)
100{ 136{
101 char *fname; 137 char *fname;
102 FILE *f; 138 FILE *f;
162 if (!strcmp (var, "loglevel")) 198 if (!strcmp (var, "loglevel"))
163 { 199 {
164 loglevel l = string_to_loglevel (val); 200 loglevel l = string_to_loglevel (val);
165 201
166 if (l != L_NONE) 202 if (l != L_NONE)
167 set_loglevel (l); 203 llevel = l;
168 else 204 else
169 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line); 205 slog (L_WARN, "'%s': %s, at '%s' line %d", val, UNKNOWN_LOGLEVEL, fname, line);
170 } 206 }
207 else if (!strcmp (var, "ip-proto"))
208 ip_proto = atoi (val);
171 209
172 // per config 210 // per config
173 else if (!strcmp (var, "node")) 211 else if (!strcmp (var, "node"))
174 { 212 {
175 default_node.id++; 213 default_node.id++;
218 } 256 }
219 else if (!strcmp (var, "private-key")) 257 else if (!strcmp (var, "private-key"))
220 prikeyfile = strdup (val); 258 prikeyfile = strdup (val);
221 else if (!strcmp (var, "ifpersist")) 259 else if (!strcmp (var, "ifpersist"))
222 { 260 {
223 if (!strcmp (val, "yes")) 261 parse_bool (ifpersist, "ifpersist", true, false);
224 ifpersist = true;
225 else if (!strcmp (val, "no"))
226 ifpersist = false;
227 else
228 slog (L_WARN,
229 _("illegal value for 'ifpersist', only 'yes' or 'no' allowed, at '%s' line %d"),
230 var, fname, lineno);
231 } 262 }
232 else if (!strcmp (var, "ifname")) 263 else if (!strcmp (var, "ifname"))
233 ifname = strdup (val); 264 ifname = strdup (val);
234 else if (!strcmp (var, "rekey")) 265 else if (!strcmp (var, "rekey"))
235 rekey = atoi (val); 266 rekey = atoi (val);
250 free (node->hostname); 281 free (node->hostname);
251 node->hostname = strdup (val); 282 node->hostname = strdup (val);
252 } 283 }
253 284
254 /* node-specific, defaultable */ 285 /* node-specific, defaultable */
255 else if (!strcmp (var, "port")) 286 else if (!strcmp (var, "udp-port"))
256 node->port = atoi (val); 287 node->udp_port = atoi (val);
288 else if (!strcmp (var, "tcp-port"))
289 node->tcp_port = atoi (val);
257 else if (!strcmp (var, "router-priority")) 290 else if (!strcmp (var, "router-priority"))
258 node->routerprio = atoi (val); 291 node->routerprio = atoi (val);
259 else if (!strcmp (var, "connect")) 292 else if (!strcmp (var, "connect"))
260 { 293 {
261 if (!strcmp (val, "ondemand")) 294 if (!strcmp (val, "ondemand"))
262 node->connectmode = conf_node::C_ONDEMAND; 295 node->connectmode = conf_node::C_ONDEMAND;
263 else if (!strcmp (val, "never")) 296 else if (!strcmp (val, "never"))
264 node->connectmode = conf_node::C_NEVER; 297 node->connectmode = conf_node::C_NEVER;
265 else if (!strcmp (val, "always")) 298 else if (!strcmp (val, "always"))
266 node->connectmode = conf_node::C_ALWAYS; 299 node->connectmode = conf_node::C_ALWAYS;
300 else if (!strcmp (val, "disabled"))
301 node->connectmode = conf_node::C_DISABLED;
267 else 302 else
268 slog (L_WARN, 303 slog (L_WARN,
269 _("illegal value for 'connectmode', use one of 'ondemand', 'never' or 'always', at '%s' line %d"), 304 _("illegal value for 'connectmode', use one of 'ondemand', 'never', 'always' or 'disabled', at '%s' line %d"),
270 var, fname, lineno); 305 var, fname, lineno);
271 } 306 }
307 else if (!strcmp (var, "inherit-tos"))
308 {
309 parse_bool (node->inherit_tos, "inherit-tos", true, false);
310 }
272 else if (!strcmp (var, "compress")) 311 else if (!strcmp (var, "compress"))
273 { 312 {
274 if (!strcmp (val, "yes")) 313 parse_bool (node->compress, "compress", true, false);
275 node->compress = true;
276 else if (!strcmp (val, "no"))
277 node->compress = false;
278 else 314 }
279 slog (L_WARN, 315 // all these bool options really really cost a lot of executable size!
280 _("illegal value for 'compress', only 'yes' or 'no' allowed, at '%s' line %d"), 316 else if (!strcmp (var, "enable-tcp"))
281 var, fname, lineno); 317 {
318#if ENABLE_TCP
319 u8 v; parse_bool (v, "enable-tcp" , PROT_TCPv4, 0); node->protocols = (node->protocols & ~PROT_TCPv4) | v;
320#endif
321 }
322 else if (!strcmp (var, "enable-udp"))
323 {
324 u8 v; parse_bool (v, "enable-udp" , PROT_UDPv4, 0); node->protocols = (node->protocols & ~PROT_UDPv4) | v;
325 }
326 else if (!strcmp (var, "enable-rawip"))
327 {
328 u8 v; parse_bool (v, "enable-rawip", PROT_IPv4, 0); node->protocols = (node->protocols & ~PROT_IPv4 ) | v;
282 } 329 }
283 330
284 // unknown or misplaced 331 // unknown or misplaced
285 else 332 else
286 { 333 {
379 connectmode == C_NEVER ? "never" : 426 connectmode == C_NEVER ? "never" :
380 connectmode == C_ALWAYS ? "always" : "", 427 connectmode == C_ALWAYS ? "always" : "",
381 nodename, 428 nodename,
382 hostname ? hostname : "", 429 hostname ? hostname : "",
383 hostname ? ":" : "", 430 hostname ? ":" : "",
384 hostname ? port : 0 431 hostname ? udp_port : 0
385 ); 432 );
386} 433}
387 434

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines