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.17 by pcg, Wed Oct 15 06:06:41 2003 UTC vs.
Revision 1.20 by pcg, Thu Oct 16 14:12:00 2003 UTC

1/* 1/*
2 vpn.C -- handle the protocol, encryption, handshaking etc. 2 vpn.C -- handle the protocol, encryption, handshaking etc.
3 Copyright (C) 2003 Marc Lehmann <pcg@goof.com>
3 4
4 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version. 8 (at your option) any later version.
39 40
40#include "connection.h" 41#include "connection.h"
41#include "util.h" 42#include "util.h"
42#include "vpn.h" 43#include "vpn.h"
43 44
45vpn network; // THE vpn (bad design...)
46
44///////////////////////////////////////////////////////////////////////////// 47/////////////////////////////////////////////////////////////////////////////
45 48
46const char *vpn::script_if_up () 49const char *vpn::script_if_up ()
47{ 50{
48 // the tunnel device mtu should be the physical mtu - overhead 51 // the tunnel device mtu should be the physical mtu - overhead
335 338
336 return true; 339 return true;
337} 340}
338 341
339void 342void
343vpn::inject_data_packet (tap_packet *pkt, int dst)
344{
345 if (dst)
346 {
347 // unicast
348 if (dst != THISNODE->id)
349 conns[dst - 1]->inject_data_packet (pkt);
350 }
351 else
352 {
353 // broadcast, this is ugly, but due to the security policy
354 // we have to connect to all hosts...
355 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c)
356 if ((*c)->conf != THISNODE)
357 (*c)->inject_data_packet (pkt, true);
358 }
359}
360
361void
340vpn::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi) 362vpn::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi)
341{ 363{
342 unsigned int src = pkt->src (); 364 unsigned int src = pkt->src ();
343 unsigned int dst = pkt->dst (); 365 unsigned int dst = pkt->dst ();
344 366
358 connection *c = conns[src - 1]; 380 connection *c = conns[src - 1];
359 381
360 if (dst == 0) 382 if (dst == 0)
361 slog (L_WARN, _("%s(%s): received broadcast (protocol violation)"), 383 slog (L_WARN, _("%s(%s): received broadcast (protocol violation)"),
362 c->conf->nodename, (const char *)rsi); 384 c->conf->nodename, (const char *)rsi);
363 else if (dst != 0 && dst != THISNODE->id) 385 else if (dst != THISNODE->id)
364 { 386 {
365 if (THISNODE->routerprio) 387 if (THISNODE->routerprio)
366 // the tos setting gets lost here. who cares. 388 // the tos setting gets lost here. who cares.
367 conns[dst - 1]->inject_vpn_packet (pkt); 389 conns[dst - 1]->inject_vpn_packet (pkt);
368 else 390 else
552 } 574 }
553 575
554 if (dst > conns.size ()) 576 if (dst > conns.size ())
555 slog (L_ERR, _("tap packet for unknown node %d received, ignoring."), dst); 577 slog (L_ERR, _("tap packet for unknown node %d received, ignoring."), dst);
556 else 578 else
557 {
558 if (dst)
559 {
560 // unicast
561 if (dst != THISNODE->id)
562 conns[dst - 1]->inject_data_packet (pkt);
563 }
564 else
565 {
566 // broadcast, this is ugly, but due to the security policy
567 // we have to connect to all hosts...
568 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c)
569 if ((*c)->conf != THISNODE)
570 (*c)->inject_data_packet (pkt); 579 inject_data_packet (pkt, dst);
571 }
572 }
573 } 580 }
574 581
575 delete pkt; 582 delete pkt;
576 } 583 }
577 else if (revents & (POLLHUP | POLLERR)) 584 else if (revents & (POLLHUP | POLLERR))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines