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

Comparing gvpe/src/connection.C (file contents):
Revision 1.45 by pcg, Fri Mar 4 09:36:45 2005 UTC vs.
Revision 1.62 by pcg, Sat Dec 1 23:35:31 2007 UTC

14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. 15 GNU General Public License for more details.
16 16
17 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
18 along with gvpe; if not, write to the Free Software 18 along with gvpe; if not, write to the Free Software
19 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/ 20*/
21 21
22#include "config.h" 22#include "config.h"
23
24#include <cassert>
25 23
26#include <list> 24#include <list>
27 25
28#include <openssl/rand.h> 26#include <openssl/rand.h>
29#include <openssl/evp.h> 27#include <openssl/evp.h>
30#include <openssl/rsa.h> 28#include <openssl/rsa.h>
31#include <openssl/err.h> 29#include <openssl/err.h>
32
33#include "gettext.h"
34 30
35#include "conf.h" 31#include "conf.h"
36#include "slog.h" 32#include "slog.h"
37#include "device.h" 33#include "device.h"
38#include "vpn.h" 34#include "vpn.h"
94 rsachallenge chg; 90 rsachallenge chg;
95}; 91};
96 92
97struct rsa_cache : list<rsa_entry> 93struct rsa_cache : list<rsa_entry>
98{ 94{
99 void cleaner_cb (time_watcher &w); time_watcher cleaner; 95 void cleaner_cb (ev::timer &w, int revents); ev::timer cleaner;
100 96
101 bool find (const rsaid &id, rsachallenge &chg) 97 bool find (const rsaid &id, rsachallenge &chg)
102 { 98 {
103 for (iterator i = begin (); i != end (); ++i) 99 for (iterator i = begin (); i != end (); ++i)
104 { 100 {
105 if (!memcmp (&id, &i->id, sizeof id) && i->expire > NOW) 101 if (!memcmp (&id, &i->id, sizeof id) && i->expire > ev_now ())
106 { 102 {
107 memcpy (&chg, &i->chg, sizeof chg); 103 memcpy (&chg, &i->chg, sizeof chg);
108 104
109 erase (i); 105 erase (i);
110 return true; 106 return true;
111 } 107 }
112 } 108 }
113 109
114 if (cleaner.at < NOW) 110 if (!cleaner.is_active ())
115 cleaner.start (NOW + RSA_TTL); 111 cleaner.again ();
116 112
117 return false; 113 return false;
118 } 114 }
119 115
120 void gen (rsaid &id, rsachallenge &chg) 116 void gen (rsaid &id, rsachallenge &chg)
121 { 117 {
122 rsa_entry e; 118 rsa_entry e;
123 119
124 RAND_bytes ((unsigned char *)&id, sizeof id); 120 RAND_bytes ((unsigned char *)&id, sizeof id);
125 RAND_bytes ((unsigned char *)&chg, sizeof chg); 121 RAND_bytes ((unsigned char *)&chg, sizeof chg);
126 122
127 e.expire = NOW + RSA_TTL; 123 e.expire = ev_now () + RSA_TTL;
128 e.id = id; 124 e.id = id;
129 memcpy (&e.chg, &chg, sizeof chg); 125 memcpy (&e.chg, &chg, sizeof chg);
130 126
131 push_back (e); 127 push_back (e);
132 128
133 if (cleaner.at < NOW) 129 if (!cleaner.is_active ())
134 cleaner.start (NOW + RSA_TTL); 130 cleaner.again ();
135 } 131 }
136 132
137 rsa_cache () 133 rsa_cache ()
138 : cleaner (this, &rsa_cache::cleaner_cb) 134 : cleaner (this, &rsa_cache::cleaner_cb)
139 { } 135 {
136 cleaner.set (RSA_TTL, RSA_TTL);
137 }
140 138
141} rsa_cache; 139} rsa_cache;
142 140
143void rsa_cache::cleaner_cb (time_watcher &w) 141void rsa_cache::cleaner_cb (ev::timer &w, int revents)
144{ 142{
145 if (!empty ()) 143 if (empty ())
144 w.stop ();
145 else
146 { 146 {
147 w.start (NOW + RSA_TTL);
148
149 for (iterator i = begin (); i != end (); ) 147 for (iterator i = begin (); i != end (); )
150 if (i->expire <= NOW) 148 if (i->expire <= ev_now ())
151 i = erase (i); 149 i = erase (i);
152 else 150 else
153 ++i; 151 ++i;
154 } 152 }
155} 153}
222 iterator i; 220 iterator i;
223 221
224 for (i = begin (); i != end (); ) 222 for (i = begin (); i != end (); )
225 if (i->host == host) 223 if (i->host == host)
226 break; 224 break;
227 else if (i->last < NOW - NRL_EXPIRE) 225 else if (i->last < ev_now () - NRL_EXPIRE)
228 i = erase (i); 226 i = erase (i);
229 else 227 else
230 i++; 228 i++;
231 229
232 if (i == end ()) 230 if (i == end ())
234 net_rateinfo ri; 232 net_rateinfo ri;
235 233
236 ri.host = host; 234 ri.host = host;
237 ri.pcnt = 1.; 235 ri.pcnt = 1.;
238 ri.diff = NRL_MAXDIF; 236 ri.diff = NRL_MAXDIF;
239 ri.last = NOW; 237 ri.last = ev_now ();
240 238
241 push_front (ri); 239 push_front (ri);
242 240
243 return true; 241 return true;
244 } 242 }
246 { 244 {
247 net_rateinfo ri (*i); 245 net_rateinfo ri (*i);
248 erase (i); 246 erase (i);
249 247
250 ri.pcnt = ri.pcnt * NRL_ALPHA; 248 ri.pcnt = ri.pcnt * NRL_ALPHA;
251 ri.diff = ri.diff * NRL_ALPHA + (NOW - ri.last); 249 ri.diff = ri.diff * NRL_ALPHA + (ev_now () - ri.last);
252 250
253 ri.last = NOW; 251 ri.last = ev_now ();
254 252
255 double dif = ri.diff / ri.pcnt; 253 double dif = ri.diff / ri.pcnt;
256 254
257 bool send = dif > NRL_CUTOFF; 255 bool send = dif > NRL_CUTOFF;
258 256
468 f |= FEATURE_COMPRESSION; 466 f |= FEATURE_COMPRESSION;
469#endif 467#endif
470#if ENABLE_ROHC 468#if ENABLE_ROHC
471 f |= FEATURE_ROHC; 469 f |= FEATURE_ROHC;
472#endif 470#endif
471#if ENABLE_BRIDGING
472 f |= FEATURE_BRIDGING;
473#endif
473 return f; 474 return f;
474 } 475 }
475}; 476};
476 477
477void config_packet::setup (ptype type, int dst) 478void config_packet::setup (ptype type, int dst)
478{ 479{
479 prot_major = PROTOCOL_MAJOR; 480 prot_major = PROTOCOL_MAJOR;
480 prot_minor = PROTOCOL_MINOR; 481 prot_minor = PROTOCOL_MINOR;
481 randsize = RAND_SIZE; 482 randsize = RAND_SIZE;
482 hmaclen = HMACLENGTH; 483 hmaclen = HMACLENGTH;
483 flags = ENABLE_COMPRESSION ? 0x81 : 0x80; 484 flags = 0;
484 challengelen = sizeof (rsachallenge); 485 challengelen = sizeof (rsachallenge);
485 features = get_features (); 486 features = get_features ();
486 487
487 cipher_nid = htonl (EVP_CIPHER_nid (CIPHER)); 488 cipher_nid = htonl (EVP_CIPHER_nid (CIPHER));
488 digest_nid = htonl (EVP_MD_type (RSA_HASH)); 489 digest_nid = htonl (EVP_MD_type (RSA_HASH));
498 slog (L_WARN, _("major version mismatch (remote %d <=> local %d)"), prot_major, PROTOCOL_MAJOR); 499 slog (L_WARN, _("major version mismatch (remote %d <=> local %d)"), prot_major, PROTOCOL_MAJOR);
499 else if (randsize != RAND_SIZE) 500 else if (randsize != RAND_SIZE)
500 slog (L_WARN, _("rand size mismatch (remote %d <=> local %d)"), randsize, RAND_SIZE); 501 slog (L_WARN, _("rand size mismatch (remote %d <=> local %d)"), randsize, RAND_SIZE);
501 else if (hmaclen != HMACLENGTH) 502 else if (hmaclen != HMACLENGTH)
502 slog (L_WARN, _("hmac length mismatch (remote %d <=> local %d)"), hmaclen, HMACLENGTH); 503 slog (L_WARN, _("hmac length mismatch (remote %d <=> local %d)"), hmaclen, HMACLENGTH);
503#if 0 // this implementation should handle all flag settings
504 else if (flags != curflags ())
505 slog (L_WARN, _("flag mismatch (remote %x <=> local %x)"), flags, curflags ());
506#endif
507 else if (challengelen != sizeof (rsachallenge)) 504 else if (challengelen != sizeof (rsachallenge))
508 slog (L_WARN, _("challenge length mismatch (remote %d <=> local %d)"), challengelen, sizeof (rsachallenge)); 505 slog (L_WARN, _("challenge length mismatch (remote %d <=> local %d)"), challengelen, sizeof (rsachallenge));
509 else if (cipher_nid != htonl (EVP_CIPHER_nid (CIPHER))) 506 else if (cipher_nid != htonl (EVP_CIPHER_nid (CIPHER)))
510 slog (L_WARN, _("cipher mismatch (remote %x <=> local %x)"), ntohl (cipher_nid), EVP_CIPHER_nid (CIPHER)); 507 slog (L_WARN, _("cipher mismatch (remote %x <=> local %x)"), ntohl (cipher_nid), EVP_CIPHER_nid (CIPHER));
511 else if (digest_nid != htonl (EVP_MD_type (RSA_HASH))) 508 else if (digest_nid != htonl (EVP_MD_type (RSA_HASH)))
587///////////////////////////////////////////////////////////////////////////// 584/////////////////////////////////////////////////////////////////////////////
588 585
589void 586void
590connection::connection_established () 587connection::connection_established ()
591{ 588{
589 slog (L_TRACE, _("%s: possible connection establish (ictx %d, octx %d)"), conf->nodename, !!ictx, !!octx);
590
592 if (ictx && octx) 591 if (ictx && octx)
593 { 592 {
594 connectmode = conf->connectmode; 593 connectmode = conf->connectmode;
595 594
596 // make sure rekeying timeouts are slightly asymmetric 595 // make sure rekeying timeouts are slightly asymmetric
597 rekey.start (NOW + ::conf.rekey 596 ev::tstamp rekey_interval = ::conf.rekey + (conf->id > THISNODE->id ? 10 : 0);
598 + (conf->id > THISNODE->id ? 10 : 0)); 597 rekey.start (rekey_interval, rekey_interval);
599 keepalive.start (NOW + ::conf.keepalive); 598 keepalive.start (::conf.keepalive);
600 599
601 // send queued packets 600 // send queued packets
602 if (ictx && octx) 601 if (ictx && octx)
603 { 602 {
604 while (tap_packet *p = (tap_packet *)data_queue.get ()) 603 while (tap_packet *p = (tap_packet *)data_queue.get ())
615 } 614 }
616 } 615 }
617 else 616 else
618 { 617 {
619 retry_cnt = 0; 618 retry_cnt = 0;
620 establish_connection.start (NOW + 5); 619 establish_connection.start (5);
621 keepalive.stop (); 620 keepalive.stop ();
622 rekey.stop (); 621 rekey.stop ();
623 } 622 }
624} 623}
625 624
631 // mask out protocols we cannot establish 630 // mask out protocols we cannot establish
632 if (!conf->udp_port) protocol &= ~PROT_UDPv4; 631 if (!conf->udp_port) protocol &= ~PROT_UDPv4;
633 if (!conf->tcp_port) protocol &= ~PROT_TCPv4; 632 if (!conf->tcp_port) protocol &= ~PROT_TCPv4;
634 if (!conf->dns_port) protocol &= ~PROT_DNSv4; 633 if (!conf->dns_port) protocol &= ~PROT_DNSv4;
635 634
635 if (protocol
636 && (!conf->can_direct (THISNODE)
637 || !THISNODE->can_direct (conf)))
638 {
639 slog (L_DEBUG, _("%s: direct connection denied"), conf->nodename);
640 protocol = 0;
641 }
642
636 si.set (conf, protocol); 643 si.set (conf, protocol);
637} 644}
638 645
639// ensure sockinfo is valid, forward if necessary 646// ensure sockinfo is valid, forward if necessary
640const sockinfo & 647const sockinfo &
644 { 651 {
645 connection *r = vpn->find_router (); 652 connection *r = vpn->find_router ();
646 653
647 if (r) 654 if (r)
648 { 655 {
649 slog (L_DEBUG, _("%s: no common protocol, trying indirectly through %s"), 656 slog (L_DEBUG, _("%s: no common protocol, trying indirectly through %s (%s)"),
650 conf->nodename, r->conf->nodename); 657 conf->nodename, r->conf->nodename, (const char *)r->si);
651 return r->si; 658 return r->si;
652 } 659 }
653 else 660 else
654 slog (L_DEBUG, _("%s: node unreachable, no common protocol"), 661 slog (L_DEBUG, _("%s: node unreachable, no common protocol"),
655 conf->nodename); 662 conf->nodename);
659} 666}
660 667
661void 668void
662connection::send_vpn_packet (vpn_packet *pkt, const sockinfo &si, int tos) 669connection::send_vpn_packet (vpn_packet *pkt, const sockinfo &si, int tos)
663{ 670{
664 bool ok; 671 if (!vpn->send_vpn_packet (pkt, si, tos))
665
666 switch (si.prot)
667 {
668 case PROT_IPv4:
669 ok = vpn->send_ipv4_packet (pkt, si, tos); break;
670 case PROT_UDPv4:
671 ok = vpn->send_udpv4_packet (pkt, si, tos); break;
672#if ENABLE_TCP
673 case PROT_TCPv4:
674 ok = vpn->send_tcpv4_packet (pkt, si, tos); break;
675#endif
676#if ENABLE_ICMP
677 case PROT_ICMPv4:
678 ok = vpn->send_icmpv4_packet (pkt, si, tos); break;
679#endif
680#if ENABLE_DNS
681 case PROT_DNSv4:
682 ok = send_dnsv4_packet (pkt, si, tos); break;
683#endif
684
685 default:
686 slog (L_CRIT, _("%s: FATAL: trying to send packet with unsupported protocol"), (const char *)si);
687 ok = false;
688 }
689
690 if (!ok)
691 reset_connection (); 672 reset_connection ();
692} 673}
693 674
694void 675void
695connection::send_ping (const sockinfo &si, u8 pong) 676connection::send_ping (const sockinfo &si, u8 pong)
751} 732}
752 733
753void 734void
754connection::send_connect_info (int rid, const sockinfo &rsi, u8 rprotocols) 735connection::send_connect_info (int rid, const sockinfo &rsi, u8 rprotocols)
755{ 736{
756 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)\n", 737 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)",
757 conf->id, rid, (const char *)rsi); 738 conf->id, rid, (const char *)rsi);
758 739
759 connect_info_packet *r = new connect_info_packet (conf->id, rid, rsi, rprotocols); 740 connect_info_packet *r = new connect_info_packet (conf->id, rid, rsi, rprotocols);
760 741
761 r->hmac_set (octx); 742 r->hmac_set (octx);
763 744
764 delete r; 745 delete r;
765} 746}
766 747
767void 748void
768connection::establish_connection_cb (time_watcher &w) 749connection::establish_connection_cb (ev::timer &w, int revents)
769{ 750{
770 if (!ictx 751 if (!ictx
771 && conf != THISNODE 752 && conf != THISNODE
772 && connectmode != conf_node::C_NEVER 753 && connectmode != conf_node::C_NEVER
773 && connectmode != conf_node::C_DISABLED 754 && connectmode != conf_node::C_DISABLED
774 && NOW > w.at) 755 && !w.is_active ())
775 { 756 {
776 double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.6; 757 ev::tstamp retry_int = ev::tstamp (retry_cnt & 3
777 758 ? (retry_cnt & 3) + 1
778 if (retry_int < conf->max_retry) 759 : 1 << (retry_cnt >> 2));
779 retry_cnt++;
780 else
781 retry_int = conf->max_retry;
782
783 w.start (NOW + retry_int);
784 760
785 reset_si (); 761 reset_si ();
786 762
763 bool slow = si.prot & PROT_SLOW;
764
787 if (si.prot && !si.host) 765 if (si.prot && !si.host)
766 {
767 slog (L_TRACE, _("%s: connection request (indirect)"), conf->nodename);
768 /*TODO*/ /* start the timer so we don't recurse endlessly */
769 w.start (1);
788 vpn->send_connect_request (conf->id); 770 vpn->send_connect_request (conf->id);
771 }
789 else 772 else
790 { 773 {
774 slog (L_TRACE, _("%s: connection request (direct)"), conf->nodename, !!ictx, !!octx);
775
791 const sockinfo &dsi = forward_si (si); 776 const sockinfo &dsi = forward_si (si);
777
778 slow = slow || (dsi.prot & PROT_SLOW);
792 779
793 if (dsi.valid () && auth_rate_limiter.can (dsi)) 780 if (dsi.valid () && auth_rate_limiter.can (dsi))
794 { 781 {
795 if (retry_cnt < 4) 782 if (retry_cnt < 4)
796 send_auth_request (dsi, true); 783 send_auth_request (dsi, true);
797 else 784 else
798 send_ping (dsi, 0); 785 send_ping (dsi, 0);
799 } 786 }
800 } 787 }
788
789 retry_int *= slow ? 8. : 0.7;
790
791 if (retry_int < conf->max_retry)
792 retry_cnt++;
793 else
794 retry_int = conf->max_retry;
795
796 w.start (retry_int);
801 } 797 }
802} 798}
803 799
804void 800void
805connection::reset_connection () 801connection::reset_connection ()
808 { 804 {
809 slog (L_INFO, _("%s(%s): connection lost"), 805 slog (L_INFO, _("%s(%s): connection lost"),
810 conf->nodename, (const char *)si); 806 conf->nodename, (const char *)si);
811 807
812 if (::conf.script_node_down) 808 if (::conf.script_node_down)
813 run_script (run_script_cb (this, &connection::script_node_down), false); 809 if (!run_script (run_script_cb (this, &connection::script_node_down), false))
810 slog (L_WARN, _("node-down command execution failed, continuing."));
814 } 811 }
815 812
816 delete ictx; ictx = 0; 813 delete ictx; ictx = 0;
817 delete octx; octx = 0; 814 delete octx; octx = 0;
818#if ENABLE_DNS 815#if ENABLE_DNS
837 834
838 reset_connection (); 835 reset_connection ();
839} 836}
840 837
841void 838void
842connection::rekey_cb (time_watcher &w) 839connection::rekey_cb (ev::timer &w, int revents)
843{ 840{
844 reset_connection (); 841 reset_connection ();
845 establish_connection (); 842 establish_connection ();
846} 843}
847 844
869{ 866{
870 if (ictx && octx) 867 if (ictx && octx)
871 send_data_packet (pkt); 868 send_data_packet (pkt);
872 else 869 else
873 { 870 {
874 if (!broadcast)//DDDD 871 if (!broadcast)
875 data_queue.put (new tap_packet (*pkt)); 872 data_queue.put (new tap_packet (*pkt));
876 873
877 establish_connection (); 874 establish_connection ();
878 } 875 }
879} 876}
891} 888}
892 889
893void 890void
894connection::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi) 891connection::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi)
895{ 892{
896 last_activity = NOW; 893 last_activity = ev_now ();
897 894
898 slog (L_NOISE, "<<%d received packet type %d from %d to %d", 895 slog (L_NOISE, "<<%d received packet type %d from %d to %d",
899 conf->id, pkt->typ (), pkt->src (), pkt->dst ()); 896 conf->id, pkt->typ (), pkt->src (), pkt->dst ());
897
898 if (connectmode == conf_node::C_DISABLED)
899 return;
900 900
901 switch (pkt->typ ()) 901 switch (pkt->typ ())
902 { 902 {
903 case vpn_packet::PT_PING: 903 case vpn_packet::PT_PING:
904 // we send pings instead of auth packets after some retries, 904 // we send pings instead of auth packets after some retries,
964 delete octx; 964 delete octx;
965 965
966 octx = new crypto_ctx (k, 1); 966 octx = new crypto_ctx (k, 1);
967 oseqno = ntohl (*(u32 *)&k[CHG_SEQNO]) & 0x7fffffff; 967 oseqno = ntohl (*(u32 *)&k[CHG_SEQNO]) & 0x7fffffff;
968 968
969 // compatibility code, remove when no longer required
970 if (p->flags & 1) p->features |= FEATURE_COMPRESSION;
971
972 conf->protocols = p->protocols; 969 conf->protocols = p->protocols;
973 features = p->features & config_packet::get_features (); 970 features = p->features & config_packet::get_features ();
974 971
975 send_auth_response (rsi, p->id, k); 972 send_auth_response (rsi, p->id, k);
976 973
1042 slog (L_INFO, _("%s(%s): connection established, protocol version %d.%d"), 1039 slog (L_INFO, _("%s(%s): connection established, protocol version %d.%d"),
1043 conf->nodename, (const char *)rsi, 1040 conf->nodename, (const char *)rsi,
1044 p->prot_major, p->prot_minor); 1041 p->prot_major, p->prot_minor);
1045 1042
1046 if (::conf.script_node_up) 1043 if (::conf.script_node_up)
1047 run_script (run_script_cb (this, &connection::script_node_up), false); 1044 if (!run_script (run_script_cb (this, &connection::script_node_up), false))
1045 slog (L_WARN, _("node-up command execution failed, continuing."));
1048 1046
1049 break; 1047 break;
1050 } 1048 }
1051 else 1049 else
1052 slog (L_ERR, _("%s(%s): sent and received challenge do not match"), 1050 slog (L_ERR, _("%s(%s): sent and received challenge do not match"),
1086 { 1084 {
1087 vpn->tap->send (d); 1085 vpn->tap->send (d);
1088 1086
1089 if (si != rsi) 1087 if (si != rsi)
1090 { 1088 {
1091 // fast re-sync on connection changes, useful especially for tcp/ip 1089 // fast re-sync on source address changes, useful especially for tcp/ip
1092 si = rsi; 1090 si = rsi;
1093 1091
1094 slog (L_INFO, _("%s(%s): socket address changed to %s"), 1092 slog (L_INFO, _("%s(%s): socket address changed to %s"),
1095 conf->nodename, (const char *)si, (const char *)rsi); 1093 conf->nodename, (const char *)si, (const char *)rsi);
1096 } 1094 }
1107 case vpn_packet::PT_CONNECT_REQ: 1105 case vpn_packet::PT_CONNECT_REQ:
1108 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx)) 1106 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx))
1109 { 1107 {
1110 connect_req_packet *p = (connect_req_packet *) pkt; 1108 connect_req_packet *p = (connect_req_packet *) pkt;
1111 1109
1112 assert (p->id > 0 && p->id <= vpn->conns.size ()); // hmac-auth does not mean we accept anything 1110 if (p->id > 0 && p->id <= vpn->conns.size ())
1113 connection *c = vpn->conns[p->id - 1];
1114 conf->protocols = p->protocols;
1115
1116 slog (L_TRACE, "<<%d PT_CONNECT_REQ(%d) [%d]\n",
1117 conf->id, p->id, c->ictx && c->octx);
1118
1119 if (c->ictx && c->octx)
1120 { 1111 {
1112 connection *c = vpn->conns[p->id - 1];
1113 conf->protocols = p->protocols;
1114
1115 slog (L_TRACE, "<<%d PT_CONNECT_REQ(%d) [%d]",
1116 conf->id, p->id, c->ictx && c->octx);
1117
1118 if (c->ictx && c->octx)
1119 {
1121 // send connect_info packets to both sides, in case one is 1120 // send connect_info packets to both sides, in case one is
1122 // behind a nat firewall (or both ;) 1121 // behind a nat firewall (or both ;)
1123 c->send_connect_info (conf->id, si, conf->protocols); 1122 c->send_connect_info (conf->id, si, conf->protocols);
1124 send_connect_info (c->conf->id, c->si, c->conf->protocols); 1123 send_connect_info (c->conf->id, c->si, c->conf->protocols);
1124 }
1125 else
1126 c->establish_connection ();
1125 } 1127 }
1126 else 1128 else
1127 c->establish_connection (); 1129 slog (L_WARN,
1130 _("received authenticated connection request from unknown node #%d, config file mismatch?"),
1131 p->id);
1128 } 1132 }
1129 1133
1130 break; 1134 break;
1131 1135
1132 case vpn_packet::PT_CONNECT_INFO: 1136 case vpn_packet::PT_CONNECT_INFO:
1133 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx)) 1137 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx))
1134 { 1138 {
1135 connect_info_packet *p = (connect_info_packet *)pkt; 1139 connect_info_packet *p = (connect_info_packet *)pkt;
1136 1140
1137 if (p->id > 0 && p->id <= vpn->conns.size ()) // hmac-auth does not mean we accept anything 1141 if (p->id > 0 && p->id <= vpn->conns.size ())
1138 { 1142 {
1139 connection *c = vpn->conns[p->id - 1]; 1143 connection *c = vpn->conns[p->id - 1];
1140 1144
1141 c->conf->protocols = p->protocols; 1145 c->conf->protocols = p->protocols;
1142 protocol = best_protocol (c->conf->protocols & THISNODE->protocols & p->si.supported_protocols (c->conf)); 1146 protocol = best_protocol (c->conf->protocols & THISNODE->protocols & p->si.supported_protocols (c->conf));
1148 const sockinfo &dsi = forward_si (p->si); 1152 const sockinfo &dsi = forward_si (p->si);
1149 1153
1150 if (dsi.valid ()) 1154 if (dsi.valid ())
1151 c->send_auth_request (dsi, true); 1155 c->send_auth_request (dsi, true);
1152 } 1156 }
1157 else
1158 slog (L_WARN,
1159 _("received authenticated connection request from unknown node #%d, config file mismatch?"),
1160 p->id);
1153 } 1161 }
1154 1162
1155 break; 1163 break;
1156 1164
1157 default: 1165 default:
1158 send_reset (rsi); 1166 send_reset (rsi);
1159 break; 1167 break;
1160 } 1168 }
1161} 1169}
1162 1170
1163void connection::keepalive_cb (time_watcher &w) 1171void connection::keepalive_cb (ev::timer &w, int revents)
1164{ 1172{
1165 if (NOW >= last_activity + ::conf.keepalive + 30) 1173 if (ev_now () >= last_activity + ::conf.keepalive + 30)
1166 { 1174 {
1167 reset_connection (); 1175 reset_connection ();
1168 establish_connection (); 1176 establish_connection ();
1169 } 1177 }
1170 else if (NOW < last_activity + ::conf.keepalive) 1178 else if (ev_now () < last_activity + ::conf.keepalive)
1171 w.start (last_activity + ::conf.keepalive); 1179 w.start (last_activity + ::conf.keepalive - ev::now ());
1172 else if (conf->connectmode != conf_node::C_ONDEMAND 1180 else if (conf->connectmode != conf_node::C_ONDEMAND
1173 || THISNODE->connectmode != conf_node::C_ONDEMAND) 1181 || THISNODE->connectmode != conf_node::C_ONDEMAND)
1174 { 1182 {
1175 send_ping (si); 1183 send_ping (si);
1176 w.start (NOW + 5); 1184 w.start (5);
1177 } 1185 }
1178 else if (NOW < last_activity + ::conf.keepalive + 10) 1186 else if (ev_now () < last_activity + ::conf.keepalive + 10)
1179 // hold ondemand connections implicitly a few seconds longer 1187 // hold ondemand connections implicitly a few seconds longer
1180 // should delete octx, though, or something like that ;) 1188 // should delete octx, though, or something like that ;)
1181 w.start (last_activity + ::conf.keepalive + 10); 1189 w.start (last_activity + ::conf.keepalive + 10 - ev::now ());
1182 else 1190 else
1183 reset_connection (); 1191 reset_connection ();
1184} 1192}
1185 1193
1186void connection::send_connect_request (int id) 1194void connection::send_connect_request (int id)
1192 send_vpn_packet (p, si); 1200 send_vpn_packet (p, si);
1193 1201
1194 delete p; 1202 delete p;
1195} 1203}
1196 1204
1205void connection::script_init_env (const char *ext)
1206{
1207 char *env;
1208 asprintf (&env, "IFUPDATA%s=%s", ext, conf->if_up_data); putenv (env);
1209 asprintf (&env, "NODENAME%s=%s", ext, conf->nodename); putenv (env);
1210 asprintf (&env, "MAC%s=%02x:%02x:%02x:%02x:%02x:%02x", ext,
1211 0xfe, 0xfd, 0x80, 0x00, conf->id >> 8,
1212 conf->id & 0xff); putenv (env);
1213}
1214
1197void connection::script_node () 1215void connection::script_init_connect_env ()
1198{ 1216{
1199 vpn->script_if_up (); 1217 vpn->script_init_env ();
1200 1218
1201 char *env; 1219 char *env;
1202 asprintf (&env, "DESTID=%d", conf->id); putenv (env); 1220 asprintf (&env, "DESTID=%d", conf->id); putenv (env);
1203 asprintf (&env, "DESTNODE=%s", conf->nodename); putenv (env); 1221 asprintf (&env, "DESTNODE=%s", conf->nodename); putenv (env);
1204 asprintf (&env, "DESTIP=%s", si.ntoa ()); putenv (env); 1222 asprintf (&env, "DESTIP=%s", si.ntoa ()); putenv (env);
1205 asprintf (&env, "DESTPORT=%d", ntohs (si.port)); putenv (env); 1223 asprintf (&env, "DESTPORT=%d", ntohs (si.port)); putenv (env);
1206} 1224}
1207 1225
1208const char *connection::script_node_up () 1226const char *connection::script_node_up ()
1209{ 1227{
1210 script_node (); 1228 script_init_connect_env ();
1211 1229
1212 putenv ("STATE=up"); 1230 putenv ((char *)"STATE=up");
1213 1231
1232 char *filename;
1233 asprintf (&filename,
1234 "%s/%s",
1235 confbase,
1214 return ::conf.script_node_up ? ::conf.script_node_up : "node-up"; 1236 ::conf.script_node_up ? ::conf.script_node_up : "node-up");
1237
1238 return filename;
1215} 1239}
1216 1240
1217const char *connection::script_node_down () 1241const char *connection::script_node_down ()
1218{ 1242{
1219 script_node (); 1243 script_init_connect_env ();
1220 1244
1221 putenv ("STATE=down"); 1245 putenv ((char *)"STATE=down");
1222 1246
1223 return ::conf.script_node_up ? ::conf.script_node_down : "node-down"; 1247 char *filename;
1248 asprintf (&filename,
1249 "%s/%s",
1250 confbase,
1251 ::conf.script_node_down ? ::conf.script_node_down : "node-down");
1252
1253 return filename;
1224} 1254}
1225 1255
1226connection::connection (struct vpn *vpn, conf_node *conf) 1256connection::connection (struct vpn *vpn, conf_node *conf)
1227: vpn(vpn), conf(conf) 1257: vpn(vpn), conf(conf)
1228, rekey (this, &connection::rekey_cb) 1258, rekey (this, &connection::rekey_cb)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines