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

Comparing gvpe/src/vpn.C (file contents):
Revision 1.1 by pcg, Wed Apr 2 03:25:17 2003 UTC vs.
Revision 1.12 by pcg, Sun Apr 13 00:42:04 2003 UTC

26 26
27#include <sys/types.h> 27#include <sys/types.h>
28#include <sys/socket.h> 28#include <sys/socket.h>
29#include <sys/poll.h> 29#include <sys/poll.h>
30#include <sys/wait.h> 30#include <sys/wait.h>
31#include <netinet/in.h>
32#include <arpa/inet.h>
33#include <errno.h> 31#include <errno.h>
34#include <time.h> 32#include <time.h>
35#include <unistd.h> 33#include <unistd.h>
34#include <fcntl.h>
35#include <arpa/inet.h>
36#include <netinet/in.h>
37#include <netinet/ip_icmp.h>
36 38
37#include "pidfile.h" 39#include "pidfile.h"
38 40
39#include "connection.h" 41#include "connection.h"
40#include "util.h" 42#include "util.h"
41#include "vpn.h" 43#include "vpn.h"
42 44
43///////////////////////////////////////////////////////////////////////////// 45/////////////////////////////////////////////////////////////////////////////
44 46
45const char *vpn::script_if_up (int) 47const char *vpn::script_if_up ()
46{ 48{
47 // the tunnel device mtu should be the physical mtu - overhead 49 // the tunnel device mtu should be the physical mtu - overhead
48 // the tricky part is rounding to the cipher key blocksize 50 // the tricky part is rounding to the cipher key blocksize
49 int mtu = conf.mtu - ETH_OVERHEAD - VPE_OVERHEAD - MAX_OVERHEAD; 51 int mtu = conf.mtu - ETH_OVERHEAD - VPE_OVERHEAD - MAX_OVERHEAD;
50 mtu += ETH_OVERHEAD - 6 - 6; // now we have the data portion 52 mtu += ETH_OVERHEAD - 6 - 6; // now we have the data portion
71} 73}
72 74
73int 75int
74vpn::setup () 76vpn::setup ()
75{ 77{
76 sockinfo si; 78 ipv4_fd = -1;
77 79
78 si.set (THISNODE); 80 if (THISNODE->protocols & PROT_IPv4 && ::conf.ip_proto)
81 {
82 ipv4_fd = socket (PF_INET, SOCK_RAW, ::conf.ip_proto);
83
84 if (ipv4_fd < 0)
85 return -1;
86
87 fcntl (ipv4_fd, F_SETFL, O_NONBLOCK);
88
89#ifdef IP_MTU_DISCOVER
90 // this I really consider a linux bug. I am neither connected
91 // nor do I fragment myself. Linux still sets DF and doesn't
92 // fragment for me sometimes.
93 {
94 int oval = IP_PMTUDISC_DONT;
95 setsockopt (ipv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval);
96 }
97#endif
98
99 sockinfo si (THISNODE, PROT_IPv4);
100
101 if (bind (ipv4_fd, si.sav4 (), si.salenv4 ()))
102 {
103 slog (L_ERR, _("can't bind ipv4 socket on %s: %s"), (const char *)si, strerror (errno));
104 exit (1);
105 }
106
107 ipv4_ev_watcher.start (ipv4_fd, POLLIN);
108 }
79 109
80 udpv4_fd = -1; 110 udpv4_fd = -1;
81 111
82 if (THISNODE->protocols & PROT_UDPv4) 112 if (THISNODE->protocols & PROT_UDPv4 && THISNODE->udp_port)
83 { 113 {
84 udpv4_fd = socket (PF_INET, SOCK_DGRAM, IPPROTO_UDP); 114 udpv4_fd = socket (PF_INET, SOCK_DGRAM, IPPROTO_UDP);
85 115
86 if (udpv4_fd < 0) 116 if (udpv4_fd < 0)
87 return -1; 117 return -1;
88 118
89 if (bind (udpv4_fd, si.sav4 (), si.salenv4 ())) 119 fcntl (udpv4_fd, F_SETFL, O_NONBLOCK);
120
121 // standard daemon practise...
90 { 122 {
91 slog (L_ERR, _("can't bind udpv4 to %s: %s"), (const char *)si, strerror (errno)); 123 int oval = 1;
92 exit (1); 124 setsockopt (udpv4_fd, SOL_SOCKET, SO_REUSEADDR, &oval, sizeof oval);
93 } 125 }
94 126
95#ifdef IP_MTU_DISCOVER 127#ifdef IP_MTU_DISCOVER
96 // this I really consider a linux bug. I am neither connected 128 // this I really consider a linux bug. I am neither connected
97 // nor do I fragment myself. Linux still sets DF and doesn't 129 // nor do I fragment myself. Linux still sets DF and doesn't
98 // fragment for me sometimes. 130 // fragment for me sometimes.
100 int oval = IP_PMTUDISC_DONT; 132 int oval = IP_PMTUDISC_DONT;
101 setsockopt (udpv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval); 133 setsockopt (udpv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval);
102 } 134 }
103#endif 135#endif
104 136
105 // standard daemon practise... 137 sockinfo si (THISNODE, PROT_UDPv4);
138
139 if (bind (udpv4_fd, si.sav4 (), si.salenv4 ()))
140 {
141 slog (L_ERR, _("can't bind udpv4 on %s: %s"), (const char *)si, strerror (errno));
142 exit (1);
143 }
144
145 udpv4_ev_watcher.start (udpv4_fd, POLLIN);
146 }
147
148 icmpv4_fd = -1;
149
150#if ENABLE_ICMP
151 if (THISNODE->protocols & PROT_ICMPv4)
152 {
153 icmpv4_fd = socket (PF_INET, SOCK_RAW, IPPROTO_ICMP);
154
155 if (icmpv4_fd < 0)
156 return -1;
157
158 fcntl (icmpv4_fd, F_SETFL, O_NONBLOCK);
159
160#ifdef ICMP_FILTER
106 { 161 {
107 int oval = 1; 162 icmp_filter oval;
163 oval.data = 0xffffffff;
164 if (::conf.icmp_type < 32)
165 oval.data &= ~(1 << ::conf.icmp_type);
166
108 setsockopt (udpv4_fd, SOL_SOCKET, SO_REUSEADDR, &oval, sizeof oval); 167 setsockopt (icmpv4_fd, SOL_RAW, ICMP_FILTER, &oval, sizeof oval);
109 } 168 }
110 169#endif
111 udpv4_ev_watcher.start (udpv4_fd, POLLIN);
112 }
113
114 ipv4_fd = -1;
115 if (THISNODE->protocols & PROT_IPv4)
116 {
117 ipv4_fd = socket (PF_INET, SOCK_RAW, ::conf.ip_proto);
118
119 if (ipv4_fd < 0)
120 return -1;
121
122 if (bind (ipv4_fd, si.sav4 (), si.salenv4 ()))
123 {
124 slog (L_ERR, _("can't bind ipv4 socket to %s: %s"), (const char *)si, strerror (errno));
125 exit (1);
126 }
127 170
128#ifdef IP_MTU_DISCOVER 171#ifdef IP_MTU_DISCOVER
129 // this I really consider a linux bug. I am neither connected 172 // this I really consider a linux bug. I am neither connected
130 // nor do I fragment myself. Linux still sets DF and doesn't 173 // nor do I fragment myself. Linux still sets DF and doesn't
131 // fragment for me sometimes. 174 // fragment for me sometimes.
132 { 175 {
133 int oval = IP_PMTUDISC_DONT; 176 int oval = IP_PMTUDISC_DONT;
134 setsockopt (ipv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval); 177 setsockopt (udpv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval);
135 } 178 }
136#endif 179#endif
137 180
181 sockinfo si (THISNODE, PROT_ICMPv4);
182
183 if (bind (icmpv4_fd, si.sav4 (), si.salenv4 ()))
184 {
185 slog (L_ERR, _("can't bind icmpv4 on %s: %s"), (const char *)si, strerror (errno));
186 exit (1);
187 }
188
138 ipv4_ev_watcher.start (ipv4_fd, POLLIN); 189 icmpv4_ev_watcher.start (icmpv4_fd, POLLIN);
190 }
191#endif
192
193 tcpv4_fd = -1;
194
195#if ENABLE_TCP
196 if (THISNODE->protocols & PROT_TCPv4 && THISNODE->tcp_port)
197 {
198 tcpv4_fd = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP);
199
200 if (tcpv4_fd < 0)
201 return -1;
202
203 fcntl (tcpv4_fd, F_SETFL, O_NONBLOCK);
204
205 // standard daemon practise...
206 {
207 int oval = 1;
208 setsockopt (tcpv4_fd, SOL_SOCKET, SO_REUSEADDR, &oval, sizeof oval);
139 } 209 }
210
211 sockinfo si (THISNODE, PROT_TCPv4);
212
213 if (bind (tcpv4_fd, si.sav4 (), si.salenv4 ()))
214 {
215 slog (L_ERR, _("can't bind tcpv4 on %s: %s"), (const char *)si, strerror (errno));
216 exit (1);
217 }
218
219 if (listen (tcpv4_fd, 5))
220 {
221 slog (L_ERR, _("can't listen tcpv4 on %s: %s"), (const char *)si, strerror (errno));
222 exit (1);
223 }
224
225 tcpv4_ev_watcher.start (tcpv4_fd, POLLIN);
226 }
227#endif
140 228
141 tap = new tap_device (); 229 tap = new tap_device ();
142 if (!tap) //D this, of course, never catches 230 if (!tap) //D this, of course, never catches
143 { 231 {
144 slog (L_ERR, _("cannot create network interface '%s'"), conf.ifname); 232 slog (L_ERR, _("cannot create network interface '%s'"), conf.ifname);
152 reconnect_all (); 240 reconnect_all ();
153 241
154 return 0; 242 return 0;
155} 243}
156 244
157void 245// send a vpn packet out to other hosts
246bool
247vpn::send_vpn_packet (vpn_packet *pkt, const sockinfo &si, int tos)
248{
249 switch (si.prot)
250 {
251 case PROT_IPv4:
252 return send_ipv4_packet (pkt, si, tos);
253
254 case PROT_UDPv4:
255 return send_udpv4_packet (pkt, si, tos);
256
257#if ENABLE_TCP
258 case PROT_TCPv4:
259 return send_tcpv4_packet (pkt, si, tos);
260#endif
261
262#if ENABLE_ICMP
263 case PROT_ICMPv4:
264 return send_icmpv4_packet (pkt, si, tos);
265#endif
266
267 default:
268 slog (L_CRIT, _("%s: FATAL: trying to send packet with unsupported protocol"), (const char *)si);
269 return false;
270 }
271}
272
273bool
158vpn::send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos) 274vpn::send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
159{ 275{
160 setsockopt (ipv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos); 276 setsockopt (ipv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos);
161 sendto (ipv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ()); 277 sendto (ipv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ());
162}
163 278
164void 279 return true;
280}
281
282static u16
283ipv4_checksum (u16 *data, unsigned int len)
284{
285 // use 32 bit accumulator and fold back carry bits at the end
286 u32 sum = 0;
287
288 while (len > 1)
289 {
290 sum += *data++;
291 len -= 2;
292 }
293
294 // odd byte left?
295 if (len)
296 sum += *(u8 *)data;
297
298 // add back carry bits
299 sum = (sum >> 16) + (sum & 0xffff); // lo += hi
300 sum += (sum >> 16); // carry
301
302 return ~sum;
303}
304
305bool
306vpn::send_icmpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
307{
308 setsockopt (icmpv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos);
309
310 pkt->unshift_hdr (4);
311
312 icmphdr *hdr = (icmphdr *)&((*pkt)[0]);
313 hdr->type = ::conf.icmp_type;
314 hdr->code = 255;
315 hdr->checksum = 0;
316 hdr->checksum = ipv4_checksum ((u16 *)hdr, pkt->len);
317
318 sendto (icmpv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ());
319
320 return true;
321}
322
323bool
165vpn::send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos) 324vpn::send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
166{ 325{
167 setsockopt (udpv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos); 326 setsockopt (udpv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos);
168 sendto (udpv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ()); 327 sendto (udpv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ());
328
329 return true;
169} 330}
170 331
171void 332void
172vpn::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi) 333vpn::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi)
173{ 334{
180 if (src == 0 || src > conns.size () 341 if (src == 0 || src > conns.size ()
181 || dst > conns.size () 342 || dst > conns.size ()
182 || pkt->typ () >= vpn_packet::PT_MAX) 343 || pkt->typ () >= vpn_packet::PT_MAX)
183 slog (L_WARN, _("(%s): received corrupted packet type %d (src %d, dst %d)"), 344 slog (L_WARN, _("(%s): received corrupted packet type %d (src %d, dst %d)"),
184 (const char *)rsi, pkt->typ (), pkt->src (), pkt->dst ()); 345 (const char *)rsi, pkt->typ (), pkt->src (), pkt->dst ());
346 else if (dst > conns.size ())
347 slog (L_WARN, _("(%s): received corrupted packet type %d (src %d, dst %d)"),
348 (const char *)rsi, pkt->typ (), pkt->src (), pkt->dst ());
185 else 349 else
186 { 350 {
187 connection *c = conns[src - 1]; 351 connection *c = conns[src - 1];
188 352
189 if (dst == 0 && !THISNODE->routerprio) 353 if (dst == 0 && !THISNODE->routerprio)
190 slog (L_WARN, _("%s(%s): received broadcast, but we are no router"), 354 slog (L_WARN, _("%s(%s): received broadcast, but we are no router"),
191 c->conf->nodename, (const char *)rsi); 355 c->conf->nodename, (const char *)rsi);
192 else if (dst != 0 && dst != THISNODE->id) 356 else if (dst != 0 && dst != THISNODE->id)
193 // FORWARDING NEEDED ;) 357 {
358 if (THISNODE->routerprio)
359 // the tos setting gets lost here. who cares.
360 conns[dst - 1]->inject_vpn_packet (pkt);
361 else
194 slog (L_WARN, 362 slog (L_WARN,
195 _("received frame for node %d ('%s') from %s, but this is node %d ('%s')"), 363 _("%s(%s): forwarding request (=> %s), but we are no router"),
364 c->conf->nodename, (const char *)rsi,
196 dst, conns[dst - 1]->conf->nodename, 365 conns[dst - 1]->conf->nodename);
197 (const char *)rsi, 366 }
198 THISNODE->id, THISNODE->nodename);
199 else 367 else
200 c->recv_vpn_packet (pkt, rsi); 368 c->recv_vpn_packet (pkt, rsi);
201 } 369 }
202} 370}
203 371
204void 372void
205vpn::udpv4_ev (short revents) 373vpn::ipv4_ev (io_watcher &w, short revents)
206{ 374{
207 if (revents & (POLLIN | POLLERR)) 375 if (revents & (POLLIN | POLLERR))
208 { 376 {
209 vpn_packet *pkt = new vpn_packet; 377 vpn_packet *pkt = new vpn_packet;
210 struct sockaddr_in sa; 378 struct sockaddr_in sa;
211 socklen_t sa_len = sizeof (sa); 379 socklen_t sa_len = sizeof (sa);
212 int len; 380 int len;
213 381
214 len = recvfrom (udpv4_fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len); 382 len = recvfrom (w.fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
215 383
216 sockinfo si(sa); 384 sockinfo si(sa, PROT_IPv4);
217 385
218 if (len > 0) 386 if (len > 0)
219 { 387 {
220 pkt->len = len; 388 pkt->len = len;
389
390 // raw sockets deliver the ipv4, but don't expect it on sends
391 // this is slow, but...
392 pkt->skip_hdr (IP_OVERHEAD);
221 393
222 recv_vpn_packet (pkt, si); 394 recv_vpn_packet (pkt, si);
223 } 395 }
224 else 396 else
225 { 397 {
230 delete pkt; 402 delete pkt;
231 } 403 }
232 else if (revents & POLLHUP) 404 else if (revents & POLLHUP)
233 { 405 {
234 // this cannot ;) happen on udp sockets 406 // this cannot ;) happen on udp sockets
235 slog (L_ERR, _("FATAL: POLLHUP on udp v4 fd, terminating.")); 407 slog (L_ERR, _("FATAL: POLLHUP on ipv4 fd, terminating."));
236 exit (1); 408 exit (1);
237 } 409 }
238 else 410 else
239 { 411 {
240 slog (L_ERR, 412 slog (L_ERR,
243 exit (1); 415 exit (1);
244 } 416 }
245} 417}
246 418
247void 419void
248vpn::ipv4_ev (short revents) 420vpn::icmpv4_ev (io_watcher &w, short revents)
249{ 421{
250 if (revents & (POLLIN | POLLERR)) 422 if (revents & (POLLIN | POLLERR))
251 { 423 {
252 vpn_packet *pkt = new vpn_packet; 424 vpn_packet *pkt = new vpn_packet;
253 struct sockaddr_in sa; 425 struct sockaddr_in sa;
254 socklen_t sa_len = sizeof (sa); 426 socklen_t sa_len = sizeof (sa);
255 int len; 427 int len;
256 428
257 len = recvfrom (ipv4_fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len); 429 len = recvfrom (w.fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
258 430
259 sockinfo si(sa, PROT_IPv4); 431 sockinfo si(sa, PROT_ICMPv4);
260 432
261 if (len > 0) 433 if (len > 0)
262 { 434 {
263 pkt->len = len; 435 pkt->len = len;
264 436
437 icmphdr *hdr = (icmphdr *)&((*pkt)[IP_OVERHEAD]);
438
439 if (hdr->type == ::conf.icmp_type
440 && hdr->code == 255)
441 {
265 // raw sockets deliver the ipv4, but don't expect it on sends 442 // raw sockets deliver the ipv4, but don't expect it on sends
266 // this is slow, but... 443 // this is slow, but...
267 pkt->skip_hdr (IP_OVERHEAD); 444 pkt->skip_hdr (ICMP_OVERHEAD);
268 445
269 recv_vpn_packet (pkt, si); 446 recv_vpn_packet (pkt, si);
447 }
270 } 448 }
271 else 449 else
272 { 450 {
273 // probably ECONNRESET or somesuch 451 // probably ECONNRESET or somesuch
274 slog (L_DEBUG, _("%s: %s"), (const char *)si, strerror (errno)); 452 slog (L_DEBUG, _("%s: %s"), (const char *)si, strerror (errno));
277 delete pkt; 455 delete pkt;
278 } 456 }
279 else if (revents & POLLHUP) 457 else if (revents & POLLHUP)
280 { 458 {
281 // this cannot ;) happen on udp sockets 459 // this cannot ;) happen on udp sockets
282 slog (L_ERR, _("FATAL: POLLHUP on ipv4 fd, terminating.")); 460 slog (L_ERR, _("FATAL: POLLHUP on icmpv4 fd, terminating."));
283 exit (1); 461 exit (1);
284 } 462 }
285 else 463 else
286 { 464 {
287 slog (L_ERR, 465 slog (L_ERR,
290 exit (1); 468 exit (1);
291 } 469 }
292} 470}
293 471
294void 472void
473vpn::udpv4_ev (io_watcher &w, short revents)
474{
475 if (revents & (POLLIN | POLLERR))
476 {
477 vpn_packet *pkt = new vpn_packet;
478 struct sockaddr_in sa;
479 socklen_t sa_len = sizeof (sa);
480 int len;
481
482 len = recvfrom (w.fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
483
484 sockinfo si(sa, PROT_UDPv4);
485
486 if (len > 0)
487 {
488 pkt->len = len;
489
490 recv_vpn_packet (pkt, si);
491 }
492 else
493 {
494 // probably ECONNRESET or somesuch
495 slog (L_DEBUG, _("%s: fd %d, %s"), (const char *)si, w.fd, strerror (errno));
496 }
497
498 delete pkt;
499 }
500 else if (revents & POLLHUP)
501 {
502 // this cannot ;) happen on udp sockets
503 slog (L_ERR, _("FATAL: POLLHUP on udp v4 fd, terminating."));
504 exit (1);
505 }
506 else
507 {
508 slog (L_ERR,
509 _("FATAL: unknown revents %08x in socket, terminating\n"),
510 revents);
511 exit (1);
512 }
513}
514
515void
295vpn::tap_ev (short revents) 516vpn::tap_ev (io_watcher &w, short revents)
296{ 517{
297 if (revents & POLLIN) 518 if (revents & POLLIN)
298 { 519 {
299 /* process data */ 520 /* process data */
300 tap_packet *pkt; 521 tap_packet *pkt;
350 else 571 else
351 abort (); 572 abort ();
352} 573}
353 574
354void 575void
355vpn::event_cb (tstamp &ts) 576vpn::event_cb (time_watcher &w)
356{ 577{
357 if (events) 578 if (events)
358 { 579 {
359 if (events & EVENT_SHUTDOWN) 580 if (events & EVENT_SHUTDOWN)
360 { 581 {
377 } 598 }
378 599
379 events = 0; 600 events = 0;
380 } 601 }
381 602
382 ts = TSTAMP_CANCEL; 603 w.at = TSTAMP_CANCEL;
383} 604}
384 605
385void 606void
386vpn::shutdown_all () 607vpn::shutdown_all ()
387{ 608{
411 } 632 }
412} 633}
413 634
414connection *vpn::find_router () 635connection *vpn::find_router ()
415{ 636{
416 u32 prio = 0; 637 u32 prio = 1;
417 connection *router = 0; 638 connection *router = 0;
418 639
419 for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i) 640 for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
420 { 641 {
421 connection *c = *i; 642 connection *c = *i;
422 643
423 if (c->conf->routerprio > prio 644 if (c->conf->routerprio >= prio
424 && c->connectmode == conf_node::C_ALWAYS 645 && c->connectmode == conf_node::C_ALWAYS // so we don't drop the connection if in use
425 && c->conf != THISNODE
426 && c->ictx && c->octx) 646 && c->ictx && c->octx
647 && c->conf != THISNODE // redundant, since ictx==octx==0 always on thisnode
648 && (!THISNODE->routerprio
649 || c->conf->routerprio <= THISNODE->routerprio))
427 { 650 {
428 prio = c->conf->routerprio; 651 prio = c->conf->routerprio;
429 router = c; 652 router = c;
430 } 653 }
431 } 654 }
432 655
433 return router; 656 return router;
434} 657}
435 658
436void vpn::connect_request (int id) 659void vpn::send_connect_request (int id)
437{ 660{
438 connection *c = find_router (); 661 connection *c = find_router ();
439 662
440 if (c) 663 if (c)
441 c->connect_request (id); 664 c->send_connect_request (id);
442 //else // does not work, because all others must connect to the same router 665 else
443 // // no router found, aggressively connect to all routers 666 // no router found, aggressively connect to all routers
444 // for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i) 667 for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
445 // if ((*i)->conf->routerprio) 668 if ((*i)->conf->routerprio)
446 // (*i)->establish_connection (); 669 (*i)->establish_connection ();
447} 670}
448 671
449void 672void
450connection::dump_status () 673connection::dump_status ()
451{ 674{
468 691
469 slog (L_NOTICE, _("END status dump")); 692 slog (L_NOTICE, _("END status dump"));
470} 693}
471 694
472vpn::vpn (void) 695vpn::vpn (void)
696: event (this, &vpn::event_cb)
473: udpv4_ev_watcher(this, &vpn::udpv4_ev) 697, udpv4_ev_watcher (this, &vpn::udpv4_ev)
474, ipv4_ev_watcher(this, &vpn::ipv4_ev) 698, ipv4_ev_watcher (this, &vpn::ipv4_ev)
699#if ENABLE_TCP
700, tcpv4_ev_watcher (this, &vpn::tcpv4_ev)
701#endif
702#if ENABLE_ICMP
703, icmpv4_ev_watcher(this, &vpn::icmpv4_ev)
704#endif
475, tap_ev_watcher(this, &vpn::tap_ev) 705, tap_ev_watcher (this, &vpn::tap_ev)
476, event(this, &vpn::event_cb)
477{ 706{
478} 707}
479 708
480vpn::~vpn () 709vpn::~vpn ()
481{ 710{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines