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

Comparing gvpe/src/protocol.C (file contents):
Revision 1.16 by pcg, Tue Mar 25 18:11:58 2003 UTC vs.
Revision 1.21 by pcg, Fri Mar 28 04:05:10 2003 UTC

58 58
59static time_t next_timecheck; 59static time_t next_timecheck;
60 60
61#define MAGIC "vped\xbd\xc6\xdb\x82" // 8 bytes of magic 61#define MAGIC "vped\xbd\xc6\xdb\x82" // 8 bytes of magic
62 62
63static const rsachallenge & 63static u8
64challenge_bytes () 64best_protocol (u8 protset)
65{ 65{
66 static rsachallenge challenge; 66 if (protset & PROT_IPv4)
67 static tstamp challenge_ttl; // time this challenge needs to be recreated 67 return PROT_IPv4;
68 68
69 if (NOW > challenge_ttl) 69 return PROT_UDPv4;
70 {
71 RAND_bytes ((unsigned char *)&challenge, sizeof (challenge));
72 challenge_ttl = NOW + CHALLENGE_TTL;
73 }
74
75 return challenge;
76}
77
78// caching of rsa operations really helps slow computers
79struct rsa_entry {
80 tstamp expire;
81 rsachallenge chg;
82 RSA *key; // which key
83 rsaencrdata encr;
84
85 rsa_entry ()
86 {
87 expire = NOW + CHALLENGE_TTL;
88 }
89};
90
91struct rsa_cache : list<rsa_entry>
92{
93 void cleaner_cb (tstamp &ts); time_watcher cleaner;
94
95 const rsaencrdata *public_encrypt (RSA *key, const rsachallenge &chg)
96 {
97 for (iterator i = begin (); i != end (); ++i)
98 {
99 if (i->key == key && !memcmp (&chg, &i->chg, sizeof chg))
100 return &i->encr;
101 }
102
103 if (cleaner.at < NOW)
104 cleaner.start (NOW + CHALLENGE_TTL);
105
106 resize (size () + 1);
107 rsa_entry *e = &(*rbegin ());
108
109 e->key = key;
110 memcpy (&e->chg, &chg, sizeof chg);
111
112 if (0 > RSA_public_encrypt (sizeof chg,
113 (unsigned char *)&chg, (unsigned char *)&e->encr,
114 key, RSA_PKCS1_OAEP_PADDING))
115 fatal ("RSA_public_encrypt error");
116
117 return &e->encr;
118 }
119
120 const rsachallenge *private_decrypt (RSA *key, const rsaencrdata &encr)
121 {
122 for (iterator i = begin (); i != end (); ++i)
123 if (i->key == key && !memcmp (&encr, &i->encr, sizeof encr))
124 return &i->chg;
125
126 if (cleaner.at < NOW)
127 cleaner.start (NOW + CHALLENGE_TTL);
128
129 resize (size () + 1);
130 rsa_entry *e = &(*rbegin ());
131
132 e->key = key;
133 memcpy (&e->encr, &encr, sizeof encr);
134
135 if (0 > RSA_private_decrypt (sizeof encr,
136 (unsigned char *)&encr, (unsigned char *)&e->chg,
137 key, RSA_PKCS1_OAEP_PADDING))
138 {
139 pop_back ();
140 return 0;
141 }
142
143 return &e->chg;
144 }
145
146 rsa_cache ()
147 : cleaner (this, &rsa_cache::cleaner_cb)
148 { }
149
150} rsa_cache;
151
152void rsa_cache::cleaner_cb (tstamp &ts)
153{
154 if (empty ())
155 ts = TSTAMP_CANCEL;
156 else
157 {
158 ts = NOW + 3;
159 for (iterator i = begin (); i != end (); )
160 {
161 if (i->expire >= NOW)
162 i = erase (i);
163 else
164 ++i;
165 }
166 }
167}
168
169// run a script. yes, it's a template function. yes, c++
170// is not a functional language. yes, this suxx.
171template<class owner>
172static void
173run_script (owner *obj, const char *(owner::*setup)(), bool wait)
174{
175 int pid;
176
177 if ((pid = fork ()) == 0)
178 {
179 char *filename;
180 asprintf (&filename, "%s/%s", confbase, (obj->*setup) ());
181 execl (filename, filename, (char *) 0);
182 exit (255);
183 }
184 else if (pid > 0)
185 {
186 if (wait)
187 {
188 waitpid (pid, 0, 0);
189 /* TODO: check status */
190 }
191 }
192}
193
194// xor the socket address into the challenge to ensure different challenges
195// per host. we could rely on the OAEP padding, but this doesn't hurt.
196void
197xor_sa (rsachallenge &k, SOCKADDR *sa)
198{
199 ((u32 *) k)[(CHG_CIPHER_KEY + 0) / 4] ^= sa->sin_addr.s_addr;
200 ((u16 *) k)[(CHG_CIPHER_KEY + 4) / 2] ^= sa->sin_port;
201 ((u32 *) k)[(CHG_HMAC_KEY + 0) / 4] ^= sa->sin_addr.s_addr;
202 ((u16 *) k)[(CHG_HMAC_KEY + 4) / 2] ^= sa->sin_port;
203} 70}
204 71
205struct crypto_ctx 72struct crypto_ctx
206 { 73 {
207 EVP_CIPHER_CTX cctx; 74 EVP_CIPHER_CTX cctx;
221 88
222crypto_ctx::~crypto_ctx () 89crypto_ctx::~crypto_ctx ()
223{ 90{
224 EVP_CIPHER_CTX_cleanup (&cctx); 91 EVP_CIPHER_CTX_cleanup (&cctx);
225 HMAC_CTX_cleanup (&hctx); 92 HMAC_CTX_cleanup (&hctx);
93}
94
95static void
96rsa_hash (const rsaid &id, const rsachallenge &chg, rsaresponse &h)
97{
98 EVP_MD_CTX ctx;
99
100 EVP_MD_CTX_init (&ctx);
101 EVP_DigestInit (&ctx, RSA_HASH);
102 EVP_DigestUpdate(&ctx, &chg, sizeof chg);
103 EVP_DigestUpdate(&ctx, &id, sizeof id);
104 EVP_DigestFinal (&ctx, (unsigned char *)&h, 0);
105 EVP_MD_CTX_cleanup (&ctx);
106}
107
108struct rsa_entry {
109 tstamp expire;
110 rsaid id;
111 rsachallenge chg;
112};
113
114struct rsa_cache : list<rsa_entry>
115{
116 void cleaner_cb (tstamp &ts); time_watcher cleaner;
117
118 bool find (const rsaid &id, rsachallenge &chg)
119 {
120 for (iterator i = begin (); i != end (); ++i)
121 {
122 if (!memcmp (&id, &i->id, sizeof id) && i->expire > NOW)
123 {
124 memcpy (&chg, &i->chg, sizeof chg);
125
126 erase (i);
127 return true;
128 }
129 }
130
131 if (cleaner.at < NOW)
132 cleaner.start (NOW + RSA_TTL);
133
134 return false;
135 }
136
137 void gen (rsaid &id, rsachallenge &chg)
138 {
139 rsa_entry e;
140
141 RAND_bytes ((unsigned char *)&id, sizeof id);
142 RAND_bytes ((unsigned char *)&chg, sizeof chg);
143
144 e.expire = NOW + RSA_TTL;
145 e.id = id;
146 memcpy (&e.chg, &chg, sizeof chg);
147
148 push_back (e);
149
150 if (cleaner.at < NOW)
151 cleaner.start (NOW + RSA_TTL);
152 }
153
154 rsa_cache ()
155 : cleaner (this, &rsa_cache::cleaner_cb)
156 { }
157
158} rsa_cache;
159
160void rsa_cache::cleaner_cb (tstamp &ts)
161{
162 if (empty ())
163 ts = TSTAMP_CANCEL;
164 else
165 {
166 ts = NOW + RSA_TTL;
167
168 for (iterator i = begin (); i != end (); )
169 if (i->expire <= NOW)
170 i = erase (i);
171 else
172 ++i;
173 }
174}
175
176typedef callback<const char *, int> run_script_cb;
177
178// run a shell script (or actually an external program).
179static void
180run_script (const run_script_cb &cb, bool wait)
181{
182 int pid;
183
184 if ((pid = fork ()) == 0)
185 {
186 char *filename;
187 asprintf (&filename, "%s/%s", confbase, cb(0));
188 execl (filename, filename, (char *) 0);
189 exit (255);
190 }
191 else if (pid > 0)
192 {
193 if (wait)
194 {
195 waitpid (pid, 0, 0);
196 /* TODO: check status */
197 }
198 }
226} 199}
227 200
228////////////////////////////////////////////////////////////////////////////// 201//////////////////////////////////////////////////////////////////////////////
229 202
230void pkt_queue::put (tap_packet *p) 203void pkt_queue::put (tap_packet *p)
273}; 246};
274 247
275// only do action once every x seconds per host whole allowing bursts. 248// only do action once every x seconds per host whole allowing bursts.
276// this implementation ("splay list" ;) is inefficient, 249// this implementation ("splay list" ;) is inefficient,
277// but low on resources. 250// but low on resources.
278struct net_rate_limiter : private list<net_rateinfo> 251struct net_rate_limiter : list<net_rateinfo>
279{ 252{
280 static const double ALPHA = 1. - 1. / 90.; // allow bursts 253 static const double ALPHA = 1. - 1. / 90.; // allow bursts
281 static const double CUTOFF = 20.; // one event every CUTOFF seconds 254 static const double CUTOFF = 20.; // one event every CUTOFF seconds
282 static const double EXPIRE = CUTOFF * 30.; // expire entries after this time 255 static const double EXPIRE = CUTOFF * 30.; // expire entries after this time
283 256
257 bool can (const sockinfo &si) { return can((u32)si.host); }
284 bool can (u32 host); 258 bool can (u32 host);
285 bool can (SOCKADDR *sa) { return can((u32)sa->sin_addr.s_addr); }
286 bool can (sockinfo &si) { return can((u32)si.host); }
287}; 259};
288 260
289net_rate_limiter auth_rate_limiter, reset_rate_limiter; 261net_rate_limiter auth_rate_limiter, reset_rate_limiter;
290 262
291bool net_rate_limiter::can (u32 host) 263bool net_rate_limiter::can (u32 host)
326 bool send = ri.diff / ri.pcnt > CUTOFF; 298 bool send = ri.diff / ri.pcnt > CUTOFF;
327 299
328 if (send) 300 if (send)
329 ri.pcnt++; 301 ri.pcnt++;
330 302
331 //printf ("RATE %d %f,%f = %f > %f\n", !!send, ri.pcnt, ri.diff, ri.diff / ri.pcnt, CUTOFF);
332
333 push_front (ri); 303 push_front (ri);
334 304
335 return send; 305 return send;
336 } 306 }
337} 307}
345} 315}
346 316
347static unsigned char hmac_digest[EVP_MAX_MD_SIZE]; 317static unsigned char hmac_digest[EVP_MAX_MD_SIZE];
348 318
349struct hmac_packet:net_packet 319struct hmac_packet:net_packet
320{
321 u8 hmac[HMACLENGTH]; // each and every packet has a hmac field, but that is not (yet) checked everywhere
322
323 void hmac_set (crypto_ctx * ctx);
324 bool hmac_chk (crypto_ctx * ctx);
325
326private:
327 void hmac_gen (crypto_ctx * ctx)
350 { 328 {
351 u8 hmac[HMACLENGTH]; // each and every packet has a hmac field, but that is not (yet) checked everywhere
352
353 void hmac_set (crypto_ctx * ctx);
354 bool hmac_chk (crypto_ctx * ctx);
355
356private:
357 void hmac_gen (crypto_ctx * ctx)
358 {
359 unsigned int xlen; 329 unsigned int xlen;
360 HMAC_CTX *hctx = &ctx->hctx; 330 HMAC_CTX *hctx = &ctx->hctx;
361 331
362 HMAC_Init_ex (hctx, 0, 0, 0, 0); 332 HMAC_Init_ex (hctx, 0, 0, 0, 0);
363 HMAC_Update (hctx, ((unsigned char *) this) + sizeof (hmac_packet), 333 HMAC_Update (hctx, ((unsigned char *) this) + sizeof (hmac_packet),
364 len - sizeof (hmac_packet)); 334 len - sizeof (hmac_packet));
365 HMAC_Final (hctx, (unsigned char *) &hmac_digest, &xlen); 335 HMAC_Final (hctx, (unsigned char *) &hmac_digest, &xlen);
366 }
367 }; 336 }
337};
368 338
369void 339void
370hmac_packet::hmac_set (crypto_ctx * ctx) 340hmac_packet::hmac_set (crypto_ctx * ctx)
371{ 341{
372 hmac_gen (ctx); 342 hmac_gen (ctx);
388 { 358 {
389 PT_RESET = 0, 359 PT_RESET = 0,
390 PT_DATA_UNCOMPRESSED, 360 PT_DATA_UNCOMPRESSED,
391 PT_DATA_COMPRESSED, 361 PT_DATA_COMPRESSED,
392 PT_PING, PT_PONG, // wasting namespace space? ;) 362 PT_PING, PT_PONG, // wasting namespace space? ;)
393 PT_AUTH, // authentification 363 PT_AUTH_REQ, // authentification request
364 PT_AUTH_RES, // authentification response
394 PT_CONNECT_REQ, // want other host to contact me 365 PT_CONNECT_REQ, // want other host to contact me
395 PT_CONNECT_INFO, // request connection to some node 366 PT_CONNECT_INFO, // request connection to some node
396 PT_REKEY, // rekeying (not yet implemented)
397 PT_MAX 367 PT_MAX
398 }; 368 };
399 369
400 u8 type; 370 u8 type;
401 u8 srcdst, src1, dst1; 371 u8 srcdst, src1, dst1;
402 372
403 void set_hdr (ptype type, unsigned int dst); 373 void set_hdr (ptype type, unsigned int dst);
404 374
405 unsigned int src () 375 unsigned int src () const
406 { 376 {
407 return src1 | ((srcdst >> 4) << 8); 377 return src1 | ((srcdst >> 4) << 8);
408 } 378 }
409 379
410 unsigned int dst () 380 unsigned int dst () const
411 { 381 {
412 return dst1 | ((srcdst & 0xf) << 8); 382 return dst1 | ((srcdst & 0xf) << 8);
413 } 383 }
414 384
415 ptype typ () 385 ptype typ () const
416 { 386 {
417 return (ptype) type; 387 return (ptype) type;
418 } 388 }
419 }; 389 };
420 390
539 509
540#if ENABLE_COMPRESSION 510#if ENABLE_COMPRESSION
541 if (type == PT_DATA_COMPRESSED) 511 if (type == PT_DATA_COMPRESSED)
542 { 512 {
543 u32 cl = (d[DATAHDR] << 8) | d[DATAHDR + 1]; 513 u32 cl = (d[DATAHDR] << 8) | d[DATAHDR + 1];
514
544 p->len = lzf_decompress (d + DATAHDR + 2, cl, &(*p)[6 + 6], MAX_MTU) + 6 + 6; 515 p->len = lzf_decompress (d + DATAHDR + 2, cl < MAX_MTU ? cl : 0,
516 &(*p)[6 + 6], MAX_MTU)
517 + 6 + 6;
545 } 518 }
546 else 519 else
547 p->len = outl + (6 + 6 - DATAHDR); 520 p->len = outl + (6 + 6 - DATAHDR);
548#endif 521#endif
549 522
550 return p; 523 return p;
551} 524}
552 525
553struct ping_packet : vpn_packet 526struct ping_packet : vpn_packet
527{
528 void setup (int dst, ptype type)
554 { 529 {
555 void setup (int dst, ptype type)
556 {
557 set_hdr (type, dst); 530 set_hdr (type, dst);
558 len = sizeof (*this) - sizeof (net_packet); 531 len = sizeof (*this) - sizeof (net_packet);
559 }
560 }; 532 }
533};
561 534
562struct config_packet : vpn_packet 535struct config_packet : vpn_packet
536{
537 // actually, hmaclen cannot be checked because the hmac
538 // field comes before this data, so peers with other
539 // hmacs simply will not work.
540 u8 prot_major, prot_minor, randsize, hmaclen;
541 u8 flags, challengelen, pad2, pad3;
542 u32 cipher_nid, digest_nid, hmac_nid;
543
544 const u8 curflags () const
563 { 545 {
564 // actually, hmaclen cannot be checked because the hmac
565 // field comes before this data, so peers with other
566 // hmacs simply will not work.
567 u8 prot_major, prot_minor, randsize, hmaclen;
568 u8 flags, challengelen, pad2, pad3;
569 u32 cipher_nid;
570 u32 digest_nid;
571
572 const u8 curflags () const
573 {
574 return 0x80 546 return 0x80
575 | (ENABLE_COMPRESSION ? 0x01 : 0x00); 547 | (ENABLE_COMPRESSION ? 0x01 : 0x00);
576 } 548 }
577 549
578 void setup (ptype type, int dst) 550 void setup (ptype type, int dst);
579 { 551 bool chk_config () const;
552};
553
554void config_packet::setup (ptype type, int dst)
555{
580 prot_major = PROTOCOL_MAJOR; 556 prot_major = PROTOCOL_MAJOR;
581 prot_minor = PROTOCOL_MINOR; 557 prot_minor = PROTOCOL_MINOR;
582 randsize = RAND_SIZE; 558 randsize = RAND_SIZE;
583 hmaclen = HMACLENGTH; 559 hmaclen = HMACLENGTH;
584 flags = curflags (); 560 flags = curflags ();
585 challengelen = sizeof (rsachallenge); 561 challengelen = sizeof (rsachallenge);
586 562
587 cipher_nid = htonl (EVP_CIPHER_nid (CIPHER)); 563 cipher_nid = htonl (EVP_CIPHER_nid (CIPHER));
588 digest_nid = htonl (EVP_MD_type (DIGEST)); 564 digest_nid = htonl (EVP_MD_type (RSA_HASH));
565 hmac_nid = htonl (EVP_MD_type (DIGEST));
589 566
590 len = sizeof (*this) - sizeof (net_packet); 567 len = sizeof (*this) - sizeof (net_packet);
591 set_hdr (type, dst); 568 set_hdr (type, dst);
592 } 569}
593 570
594 bool chk_config () 571bool config_packet::chk_config () const
595 { 572{
596 return prot_major == PROTOCOL_MAJOR 573 return prot_major == PROTOCOL_MAJOR
597 && randsize == RAND_SIZE 574 && randsize == RAND_SIZE
598 && hmaclen == HMACLENGTH 575 && hmaclen == HMACLENGTH
599 && flags == curflags () 576 && flags == curflags ()
600 && challengelen == sizeof (rsachallenge) 577 && challengelen == sizeof (rsachallenge)
601 && cipher_nid == htonl (EVP_CIPHER_nid (CIPHER)) 578 && cipher_nid == htonl (EVP_CIPHER_nid (CIPHER))
579 && digest_nid == htonl (EVP_MD_type (RSA_HASH))
602 && digest_nid == htonl (EVP_MD_type (DIGEST)); 580 && hmac_nid == htonl (EVP_MD_type (DIGEST));
603 } 581}
604 };
605 582
606struct auth_packet : config_packet 583struct auth_req_packet : config_packet
584{
585 char magic[8];
586 u8 initiate, can_recv; // false if this is just an automatic reply
587 u8 pad2, pad3;
588 rsaid id;
589 rsaencrdata encr;
590
591 auth_req_packet (int dst, bool initiate_, u8 can_recv_)
607 { 592 {
608 char magic[8];
609 u8 subtype;
610 u8 pad1, pad2;
611 rsaencrdata challenge;
612
613 auth_packet (int dst, auth_subtype stype)
614 {
615 config_packet::setup (PT_AUTH, dst); 593 config_packet::setup (PT_AUTH_REQ, dst);
616 subtype = stype; 594 strncpy (magic, MAGIC, 8);
595 initiate = !!initiate_;
596 can_recv = can_recv_;
597
617 len = sizeof (*this) - sizeof (net_packet); 598 len = sizeof (*this) - sizeof (net_packet);
618 strncpy (magic, MAGIC, 8);
619 }
620 }; 599 }
600};
601
602struct auth_res_packet : config_packet
603{
604 rsaid id;
605 u8 pad1, pad2, pad3;
606 u8 response_len; // encrypted length
607 rsaresponse response;
608
609 auth_res_packet (int dst)
610 {
611 config_packet::setup (PT_AUTH_RES, dst);
612
613 len = sizeof (*this) - sizeof (net_packet);
614 }
615};
621 616
622struct connect_req_packet : vpn_packet 617struct connect_req_packet : vpn_packet
618{
619 u8 id;
620 u8 pad1, pad2, pad3;
621
622 connect_req_packet (int dst, int id_)
623 { 623 {
624 u8 id; 624 id = id_;
625 u8 pad1, pad2, pad3;
626
627 connect_req_packet (int dst, int id)
628 {
629 this->id = id;
630 set_hdr (PT_CONNECT_REQ, dst); 625 set_hdr (PT_CONNECT_REQ, dst);
631 len = sizeof (*this) - sizeof (net_packet); 626 len = sizeof (*this) - sizeof (net_packet);
632 }
633 }; 627 }
628};
634 629
635struct connect_info_packet : vpn_packet 630struct connect_info_packet : vpn_packet
631{
632 u8 id, can_recv;
633 u8 pad1, pad2;
634 sockinfo si;
635
636 connect_info_packet (int dst, int id_, sockinfo &si_, u8 can_recv_)
636 { 637 {
637 u8 id; 638 id = id_;
638 u8 pad1, pad2, pad3; 639 can_recv = can_recv_;
639 sockinfo si; 640 si = si_;
640
641 connect_info_packet (int dst, int id, sockinfo &si)
642 {
643 this->id = id;
644 this->si = si;
645 set_hdr (PT_CONNECT_INFO, dst); 641 set_hdr (PT_CONNECT_INFO, dst);
642
646 len = sizeof (*this) - sizeof (net_packet); 643 len = sizeof (*this) - sizeof (net_packet);
647 }
648 }; 644 }
645};
649 646
650///////////////////////////////////////////////////////////////////////////// 647/////////////////////////////////////////////////////////////////////////////
651 648
652void 649void
653fill_sa (SOCKADDR *sa, conf_node *conf)
654{
655 sa->sin_family = AF_INET;
656 sa->sin_port = htons (conf->port);
657 sa->sin_addr.s_addr = 0;
658
659 if (conf->hostname)
660 {
661 struct hostent *he = gethostbyname (conf->hostname);
662
663 if (he
664 && he->h_addrtype == AF_INET && he->h_length == 4 && he->h_addr_list[0])
665 {
666 //sa->sin_family = he->h_addrtype;
667 memcpy (&sa->sin_addr, he->h_addr_list[0], 4);
668 }
669 else
670 slog (L_NOTICE, _("unable to resolve host '%s'"), conf->hostname);
671 }
672}
673
674void
675connection::reset_dstaddr () 650connection::reset_dstaddr ()
676{ 651{
677 fill_sa (&sa, conf); 652 si.set (conf);
678} 653}
679 654
680void 655void
681connection::send_ping (SOCKADDR *dsa, u8 pong) 656connection::send_ping (const sockinfo &si, u8 pong)
682{ 657{
683 ping_packet *pkt = new ping_packet; 658 ping_packet *pkt = new ping_packet;
684 659
685 pkt->setup (conf->id, pong ? ping_packet::PT_PONG : ping_packet::PT_PING); 660 pkt->setup (conf->id, pong ? ping_packet::PT_PONG : ping_packet::PT_PING);
686 vpn->send_vpn_packet (pkt, dsa, IPTOS_LOWDELAY); 661 send_vpn_packet (pkt, si, IPTOS_LOWDELAY);
687 662
688 delete pkt; 663 delete pkt;
689} 664}
690 665
691void 666void
692connection::send_reset (SOCKADDR *dsa) 667connection::send_reset (const sockinfo &si)
693{ 668{
694 if (reset_rate_limiter.can (dsa) && connectmode != conf_node::C_DISABLED) 669 if (reset_rate_limiter.can (si) && connectmode != conf_node::C_DISABLED)
695 { 670 {
696 config_packet *pkt = new config_packet; 671 config_packet *pkt = new config_packet;
697 672
698 pkt->setup (vpn_packet::PT_RESET, conf->id); 673 pkt->setup (vpn_packet::PT_RESET, conf->id);
699 vpn->send_vpn_packet (pkt, dsa, IPTOS_MINCOST); 674 send_vpn_packet (pkt, si, IPTOS_MINCOST);
700 675
701 delete pkt; 676 delete pkt;
702 } 677 }
703} 678}
704 679
705static rsachallenge *
706gen_challenge (u32 seqrand, SOCKADDR *sa)
707{
708 static rsachallenge k;
709
710 memcpy (&k, &challenge_bytes (), sizeof (k));
711 *(u32 *)&k[CHG_SEQNO] ^= seqrand;
712 xor_sa (k, sa);
713
714 return &k;
715}
716
717void 680void
718connection::send_auth (auth_subtype subtype, SOCKADDR *sa, const rsachallenge *k) 681connection::send_auth_request (const sockinfo &si, bool initiate)
719{ 682{
720 if (subtype == AUTH_REPLY || auth_rate_limiter.can (sa)) 683 auth_req_packet *pkt = new auth_req_packet (conf->id, initiate, THISNODE->can_recv);
721 {
722 if (!k)
723 k = gen_challenge (seqrand, sa);
724 684
725 auth_packet *pkt = new auth_packet (conf->id, subtype); 685 // the next line is very conservative
686 prot_send = best_protocol (THISNODE->can_send & THISNODE->can_recv & conf->can_recv);
726 687
727 memcpy (pkt->challenge, rsa_cache.public_encrypt (conf->rsa_key, *k), sizeof (rsaencrdata)); 688 rsachallenge chg;
728 689
690 rsa_cache.gen (pkt->id, chg);
691
692 if (0 > RSA_public_encrypt (sizeof chg,
693 (unsigned char *)&chg, (unsigned char *)&pkt->encr,
694 conf->rsa_key, RSA_PKCS1_OAEP_PADDING))
695 fatal ("RSA_public_encrypt error");
696
729 slog (L_TRACE, ">>%d PT_AUTH(%d) [%s]", conf->id, subtype, (const char *)sockinfo (sa)); 697 slog (L_TRACE, ">>%d PT_AUTH_REQ [%s]", conf->id, (const char *)si);
730 698
731 vpn->send_vpn_packet (pkt, sa, IPTOS_RELIABILITY); 699 send_vpn_packet (pkt, si, IPTOS_RELIABILITY); // rsa is very very costly
732 700
733 delete pkt; 701 delete pkt;
734 } 702}
703
704void
705connection::send_auth_response (const sockinfo &si, const rsaid &id, const rsachallenge &chg)
706{
707 auth_res_packet *pkt = new auth_res_packet (conf->id);
708
709 pkt->id = id;
710
711 rsa_hash (id, chg, pkt->response);
712
713 pkt->hmac_set (octx);
714
715 slog (L_TRACE, ">>%d PT_AUTH_RES [%s]", conf->id, (const char *)si);
716
717 send_vpn_packet (pkt, si, IPTOS_RELIABILITY); // rsa is very very costly
718
719 delete pkt;
735} 720}
736 721
737void 722void
738connection::establish_connection_cb (tstamp &ts) 723connection::establish_connection_cb (tstamp &ts)
739{ 724{
740 if (ictx || conf == THISNODE || connectmode == conf_node::C_NEVER) 725 if (ictx || conf == THISNODE
726 || connectmode == conf_node::C_NEVER
727 || connectmode == conf_node::C_DISABLED)
741 ts = TSTAMP_CANCEL; 728 ts = TSTAMP_CANCEL;
742 else if (ts <= NOW) 729 else if (ts <= NOW)
743 { 730 {
744 double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.25; 731 double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.6;
745 732
746 if (retry_int < 3600 * 8) 733 if (retry_int < 3600 * 8)
747 retry_cnt++; 734 retry_cnt++;
748 735
749 ts = NOW + retry_int; 736 ts = NOW + retry_int;
750 737
751 if (conf->hostname) 738 if (conf->hostname)
752 { 739 {
753 reset_dstaddr (); 740 reset_dstaddr ();
754 if (sa.sin_addr.s_addr) 741 if (si.host && auth_rate_limiter.can (si))
742 {
755 if (retry_cnt < 4) 743 if (retry_cnt < 4)
756 send_auth (AUTH_INIT, &sa); 744 send_auth_request (si, true);
757 else if (auth_rate_limiter.can (&sa)) 745 else
758 send_ping (&sa, 0); 746 send_ping (si, 0);
747 }
759 } 748 }
760 else 749 else
761 vpn->connect_request (conf->id); 750 vpn->connect_request (conf->id);
762 } 751 }
763} 752}
765void 754void
766connection::reset_connection () 755connection::reset_connection ()
767{ 756{
768 if (ictx && octx) 757 if (ictx && octx)
769 { 758 {
770 slog (L_INFO, _("connection to %d (%s) lost"), conf->id, conf->nodename); 759 slog (L_INFO, _("%s(%s): connection lost"),
760 conf->nodename, (const char *)si);
771 761
772 if (::conf.script_node_down) 762 if (::conf.script_node_down)
773 run_script (this, &connection::script_node_down, false); 763 run_script (run_script_cb (this, &connection::script_node_down), false);
774 } 764 }
775 765
776 delete ictx; ictx = 0; 766 delete ictx; ictx = 0;
777 delete octx; octx = 0; 767 delete octx; octx = 0;
778 768
779 RAND_bytes ((unsigned char *)&seqrand, sizeof (u32)); 769 si.host= 0;
780
781 sa.sin_port = 0;
782 sa.sin_addr.s_addr = 0;
783 770
784 last_activity = 0; 771 last_activity = 0;
772 retry_cnt = 0;
785 773
786 rekey.reset (); 774 rekey.reset ();
787 keepalive.reset (); 775 keepalive.reset ();
788 establish_connection.reset (); 776 establish_connection.reset ();
789} 777}
790 778
791void 779void
792connection::shutdown () 780connection::shutdown ()
793{ 781{
794 if (ictx && octx) 782 if (ictx && octx)
795 send_reset (&sa); 783 send_reset (si);
796 784
797 reset_connection (); 785 reset_connection ();
798} 786}
799 787
800void 788void
805 reset_connection (); 793 reset_connection ();
806 establish_connection (); 794 establish_connection ();
807} 795}
808 796
809void 797void
810connection::send_data_packet (tap_packet * pkt, bool broadcast) 798connection::send_data_packet (tap_packet *pkt, bool broadcast)
811{ 799{
812 vpndata_packet *p = new vpndata_packet; 800 vpndata_packet *p = new vpndata_packet;
813 int tos = 0; 801 int tos = 0;
814 802
815 if (conf->inherit_tos 803 if (conf->inherit_tos
816 && (*pkt)[12] == 0x08 && (*pkt)[13] == 0x00 // IP 804 && (*pkt)[12] == 0x08 && (*pkt)[13] == 0x00 // IP
817 && ((*pkt)[14] & 0xf0) == 0x40) // IPv4 805 && ((*pkt)[14] & 0xf0) == 0x40) // IPv4
818 tos = (*pkt)[15] & IPTOS_TOS_MASK; 806 tos = (*pkt)[15] & IPTOS_TOS_MASK;
819 807
820 p->setup (this, broadcast ? 0 : conf->id, &((*pkt)[6 + 6]), pkt->len - 6 - 6, ++oseqno); // skip 2 macs 808 p->setup (this, broadcast ? 0 : conf->id, &((*pkt)[6 + 6]), pkt->len - 6 - 6, ++oseqno); // skip 2 macs
821 vpn->send_vpn_packet (p, &sa, tos); 809 send_vpn_packet (p, si, tos);
822 810
823 delete p; 811 delete p;
824 812
825 if (oseqno > MAX_SEQNO) 813 if (oseqno > MAX_SEQNO)
826 rekey (); 814 rekey ();
839 establish_connection (); 827 establish_connection ();
840 } 828 }
841} 829}
842 830
843void 831void
844connection::recv_vpn_packet (vpn_packet *pkt, SOCKADDR *ssa) 832connection::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi)
845{ 833{
846 last_activity = NOW; 834 last_activity = NOW;
847 835
848 slog (L_NOISE, "<<%d received packet type %d from %d to %d", 836 slog (L_NOISE, "<<%d received packet type %d from %d to %d",
849 conf->id, pkt->typ (), pkt->src (), pkt->dst ()); 837 conf->id, pkt->typ (), pkt->src (), pkt->dst ());
850 838
851 switch (pkt->typ ()) 839 switch (pkt->typ ())
852 { 840 {
853 case vpn_packet::PT_PING: 841 case vpn_packet::PT_PING:
854 // we send pings instead of auth packets after some retries, 842 // we send pings instead of auth packets after some retries,
855 // so reset the retry counter and establish a conenction 843 // so reset the retry counter and establish a connection
856 // when we receive a pong. 844 // when we receive a ping.
857 if (!ictx && !octx) 845 if (!ictx && !octx)
858 { 846 {
859 retry_cnt = 0; 847 if (auth_rate_limiter.can (rsi))
860 establish_connection.at = 0; 848 send_auth_request (rsi, true);
861 establish_connection ();
862 } 849 }
863 else 850 else
864 send_ping (ssa, 1); // pong 851 send_ping (rsi, 1); // pong
865 852
866 break; 853 break;
867 854
868 case vpn_packet::PT_PONG: 855 case vpn_packet::PT_PONG:
869 break; 856 break;
871 case vpn_packet::PT_RESET: 858 case vpn_packet::PT_RESET:
872 { 859 {
873 reset_connection (); 860 reset_connection ();
874 861
875 config_packet *p = (config_packet *) pkt; 862 config_packet *p = (config_packet *) pkt;
863
876 if (!p->chk_config ()) 864 if (!p->chk_config ())
877 { 865 {
878 slog (L_WARN, _("protocol mismatch, disabling node '%s'"), conf->nodename); 866 slog (L_WARN, _("%s(%s): protocol mismatch, disabling node"),
867 conf->nodename, (const char *)rsi);
879 connectmode = conf_node::C_DISABLED; 868 connectmode = conf_node::C_DISABLED;
880 } 869 }
881 else if (connectmode == conf_node::C_ALWAYS) 870 else if (connectmode == conf_node::C_ALWAYS)
882 establish_connection (); 871 establish_connection ();
883 } 872 }
884 break; 873 break;
885 874
886 case vpn_packet::PT_AUTH: 875 case vpn_packet::PT_AUTH_REQ:
876 if (auth_rate_limiter.can (rsi))
877 {
878 auth_req_packet *p = (auth_req_packet *) pkt;
879
880 slog (L_TRACE, "<<%d PT_AUTH_REQ(%d)", conf->id, p->initiate);
881
882 if (p->chk_config () && !strncmp (p->magic, MAGIC, 8))
883 {
884 if (p->prot_minor != PROTOCOL_MINOR)
885 slog (L_INFO, _("%s(%s): protocol minor version mismatch: ours is %d, %s's is %d."),
886 conf->nodename, (const char *)rsi,
887 PROTOCOL_MINOR, conf->nodename, p->prot_minor);
888
889 if (p->initiate)
890 send_auth_request (rsi, false);
891
892 rsachallenge k;
893
894 if (0 > RSA_private_decrypt (sizeof (p->encr),
895 (unsigned char *)&p->encr, (unsigned char *)&k,
896 ::conf.rsa_key, RSA_PKCS1_OAEP_PADDING))
897 slog (L_ERR, _("%s(%s): challenge illegal or corrupted"),
898 conf->nodename, (const char *)rsi);
899 else
900 {
901 retry_cnt = 0;
902 establish_connection.set (NOW + 8); //? ;)
903 keepalive.reset ();
904 rekey.reset ();
905
906 delete ictx;
907 ictx = 0;
908
909 delete octx;
910
911 octx = new crypto_ctx (k, 1);
912 oseqno = ntohl (*(u32 *)&k[CHG_SEQNO]) & 0x7fffffff;
913
914 conf->can_recv = p->can_recv;
915 send_auth_response (rsi, p->id, k);
916
917 break;
918 }
919 }
920
921 send_reset (rsi);
922 }
923
924 break;
925
926 case vpn_packet::PT_AUTH_RES:
887 { 927 {
888 auth_packet *p = (auth_packet *) pkt; 928 auth_res_packet *p = (auth_res_packet *) pkt;
889 929
890 slog (L_TRACE, "<<%d PT_AUTH(%d)", conf->id, p->subtype); 930 slog (L_TRACE, "<<%d PT_AUTH_RES", conf->id);
891 931
892 if (p->chk_config () 932 if (p->chk_config ())
893 && !strncmp (p->magic, MAGIC, 8))
894 { 933 {
895 if (p->prot_minor != PROTOCOL_MINOR) 934 if (p->prot_minor != PROTOCOL_MINOR)
896 slog (L_INFO, _("protocol minor version mismatch: ours is %d, %s's is %d."), 935 slog (L_INFO, _("%s(%s): protocol minor version mismatch: ours is %d, %s's is %d."),
936 conf->nodename, (const char *)rsi,
897 PROTOCOL_MINOR, conf->nodename, p->prot_minor); 937 PROTOCOL_MINOR, conf->nodename, p->prot_minor);
898 938
899 if (p->subtype == AUTH_INIT) 939 rsachallenge chg;
900 send_auth (AUTH_INITREPLY, ssa);
901 940
902 const rsachallenge *k = rsa_cache.private_decrypt (::conf.rsa_key, p->challenge); 941 if (!rsa_cache.find (p->id, chg))
903 942 slog (L_ERR, _("%s(%s): unrequested auth response"),
904 if (!k) 943 conf->nodename, (const char *)rsi);
944 else
905 { 945 {
906 slog (L_ERR, _("challenge from %s (%s) illegal or corrupted"), 946 crypto_ctx *cctx = new crypto_ctx (chg, 0);
947
948 if (!p->hmac_chk (cctx))
949 slog (L_ERR, _("%s(%s): hmac authentication error on auth response, received invalid packet\n"
950 "could be an attack, or just corruption or an synchronization error"),
907 conf->nodename, (const char *)sockinfo (ssa)); 951 conf->nodename, (const char *)rsi);
908 send_reset (ssa);
909 break; 952 else
910 }
911
912 retry_cnt = 0;
913 establish_connection.set (NOW + 8); //? ;)
914 keepalive.reset ();
915 rekey.reset ();
916
917 switch (p->subtype)
918 {
919 case AUTH_INIT:
920 case AUTH_INITREPLY:
921 delete ictx;
922 ictx = 0;
923
924 delete octx;
925
926 octx = new crypto_ctx (*k, 1);
927 oseqno = ntohl (*(u32 *)&k[CHG_SEQNO]) & 0x7fffffff;
928
929 send_auth (AUTH_REPLY, ssa, k);
930 break;
931
932 case AUTH_REPLY:
933
934 if (!memcmp ((u8 *)gen_challenge (seqrand, ssa), (u8 *)k, sizeof (rsachallenge)))
935 { 953 {
936 delete ictx;
937
938 ictx = new crypto_ctx (*k, 0);
939 iseqno.reset (ntohl (*(u32 *)&k[CHG_SEQNO]) & 0x7fffffff); // at least 2**31 sequence numbers are valid
940
941 sa = *ssa; 954 rsaresponse h;
942 955
943 rekey.set (NOW + ::conf.rekey); 956 rsa_hash (p->id, chg, h);
944 keepalive.set (NOW + ::conf.keepalive);
945 957
946 // send queued packets 958 if (!memcmp ((u8 *)&h, (u8 *)p->response, sizeof h))
947 while (tap_packet *p = queue.get ())
948 { 959 {
960 prot_minor = p->prot_minor;
961
962 delete ictx; ictx = cctx;
963
964 iseqno.reset (ntohl (*(u32 *)&chg[CHG_SEQNO]) & 0x7fffffff); // at least 2**31 sequence numbers are valid
965
966 si = rsi;
967
968 rekey.set (NOW + ::conf.rekey);
969 keepalive.set (NOW + ::conf.keepalive);
970
971 // send queued packets
972 while (tap_packet *p = queue.get ())
973 {
949 send_data_packet (p); 974 send_data_packet (p);
950 delete p; 975 delete p;
976 }
977
978 connectmode = conf->connectmode;
979
980 slog (L_INFO, _("%s(%s): connection established, protocol version %d.%d"),
981 conf->nodename, (const char *)rsi,
982 p->prot_major, p->prot_minor);
983
984 if (::conf.script_node_up)
985 run_script (run_script_cb (this, &connection::script_node_up), false);
986
987 break;
951 } 988 }
952 989 else
953 connectmode = conf->connectmode; 990 slog (L_ERR, _("%s(%s): sent and received challenge do not match"),
954
955 slog (L_INFO, _("connection to %d (%s %s) established"),
956 conf->id, conf->nodename, (const char *)sockinfo (ssa)); 991 conf->nodename, (const char *)rsi);
957
958 if (::conf.script_node_up)
959 run_script (this, &connection::script_node_up, false);
960 } 992 }
993
961 else 994 delete cctx;
962 slog (L_ERR, _("sent and received challenge do not match with (%s %s))"),
963 conf->nodename, (const char *)sockinfo (ssa));
964
965 break;
966 default:
967 slog (L_ERR, _("authentification illegal subtype error (%s %s)"),
968 conf->nodename, (const char *)sockinfo (ssa));
969 break;
970 } 995 }
971 } 996 }
972 else
973 send_reset (ssa);
974
975 break;
976 } 997 }
998
999 send_reset (rsi);
1000 break;
977 1001
978 case vpn_packet::PT_DATA_COMPRESSED: 1002 case vpn_packet::PT_DATA_COMPRESSED:
979#if !ENABLE_COMPRESSION 1003#if !ENABLE_COMPRESSION
980 send_reset (ssa); 1004 send_reset (rsi);
981 break; 1005 break;
982#endif 1006#endif
1007
983 case vpn_packet::PT_DATA_UNCOMPRESSED: 1008 case vpn_packet::PT_DATA_UNCOMPRESSED:
984 1009
985 if (ictx && octx) 1010 if (ictx && octx)
986 { 1011 {
987 vpndata_packet *p = (vpndata_packet *)pkt; 1012 vpndata_packet *p = (vpndata_packet *)pkt;
988 1013
989 if (*ssa == sa) 1014 if (rsi == si)
990 { 1015 {
991 if (!p->hmac_chk (ictx)) 1016 if (!p->hmac_chk (ictx))
992 slog (L_ERR, _("hmac authentication error, received invalid packet\n" 1017 slog (L_ERR, _("%s(%s): hmac authentication error, received invalid packet\n"
993 "could be an attack, or just corruption or an synchronization error")); 1018 "could be an attack, or just corruption or an synchronization error"),
1019 conf->nodename, (const char *)rsi);
994 else 1020 else
995 { 1021 {
996 u32 seqno; 1022 u32 seqno;
997 tap_packet *d = p->unpack (this, seqno); 1023 tap_packet *d = p->unpack (this, seqno);
998 1024
1014 break; 1040 break;
1015 } 1041 }
1016 } 1042 }
1017 } 1043 }
1018 else 1044 else
1019 slog (L_ERR, _("received data packet from unknown source %s"), (const char *)sockinfo (ssa));//D 1045 slog (L_ERR, _("received data packet from unknown source %s"), (const char *)rsi);
1020 } 1046 }
1021 1047
1022 send_reset (ssa); 1048 send_reset (rsi);
1023 break; 1049 break;
1024 1050
1025 case vpn_packet::PT_CONNECT_REQ: 1051 case vpn_packet::PT_CONNECT_REQ:
1026 if (ictx && octx && *ssa == sa && pkt->hmac_chk (ictx)) 1052 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx))
1027 { 1053 {
1028 connect_req_packet *p = (connect_req_packet *) pkt; 1054 connect_req_packet *p = (connect_req_packet *) pkt;
1029 1055
1030 assert (p->id > 0 && p->id <= vpn->conns.size ()); // hmac-auth does not mean we accept anything 1056 assert (p->id > 0 && p->id <= vpn->conns.size ()); // hmac-auth does not mean we accept anything
1031 1057
1037 if (c->ictx && c->octx) 1063 if (c->ictx && c->octx)
1038 { 1064 {
1039 // send connect_info packets to both sides, in case one is 1065 // send connect_info packets to both sides, in case one is
1040 // behind a nat firewall (or both ;) 1066 // behind a nat firewall (or both ;)
1041 { 1067 {
1042 sockinfo si(sa);
1043
1044 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)\n", 1068 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)\n",
1045 c->conf->id, conf->id, (const char *)si); 1069 c->conf->id, conf->id, (const char *)si);
1046 1070
1047 connect_info_packet *r = new connect_info_packet (c->conf->id, conf->id, si); 1071 connect_info_packet *r = new connect_info_packet (c->conf->id, conf->id, si, conf->can_recv);
1048 1072
1049 r->hmac_set (c->octx); 1073 r->hmac_set (c->octx);
1050 vpn->send_vpn_packet (r, &c->sa); 1074 send_vpn_packet (r, c->si);
1051 1075
1052 delete r; 1076 delete r;
1053 } 1077 }
1054 1078
1055 { 1079 {
1056 sockinfo si(c->sa);
1057
1058 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)\n", 1080 slog (L_TRACE, ">>%d PT_CONNECT_INFO(%d,%s)\n",
1059 conf->id, c->conf->id, (const char *)si); 1081 conf->id, c->conf->id, (const char *)c->si);
1060 1082
1061 connect_info_packet *r = new connect_info_packet (conf->id, c->conf->id, si); 1083 connect_info_packet *r = new connect_info_packet (conf->id, c->conf->id, c->si, c->conf->can_recv);
1062 1084
1063 r->hmac_set (octx); 1085 r->hmac_set (octx);
1064 vpn->send_vpn_packet (r, &sa); 1086 send_vpn_packet (r, si);
1065 1087
1066 delete r; 1088 delete r;
1067 } 1089 }
1068 } 1090 }
1069 } 1091 }
1070 1092
1071 break; 1093 break;
1072 1094
1073 case vpn_packet::PT_CONNECT_INFO: 1095 case vpn_packet::PT_CONNECT_INFO:
1074 if (ictx && octx && *ssa == sa && pkt->hmac_chk (ictx)) 1096 if (ictx && octx && rsi == si && pkt->hmac_chk (ictx))
1075 { 1097 {
1076 connect_info_packet *p = (connect_info_packet *) pkt; 1098 connect_info_packet *p = (connect_info_packet *) pkt;
1077 1099
1078 assert (p->id > 0 && p->id <= vpn->conns.size ()); // hmac-auth does not mean we accept anything 1100 assert (p->id > 0 && p->id <= vpn->conns.size ()); // hmac-auth does not mean we accept anything
1079 1101
1080 connection *c = vpn->conns[p->id - 1]; 1102 connection *c = vpn->conns[p->id - 1];
1081 1103
1082 slog (L_TRACE, "<<%d PT_CONNECT_INFO(%d,%s) (%d)", 1104 slog (L_TRACE, "<<%d PT_CONNECT_INFO(%d,%s) (%d)",
1083 conf->id, p->id, (const char *)p->si, !c->ictx && !c->octx); 1105 conf->id, p->id, (const char *)p->si, !c->ictx && !c->octx);
1084 1106
1085 c->send_auth (AUTH_INIT, p->si.sa ()); 1107 c->conf->can_recv = p->can_recv;
1108 c->send_auth_request (p->si, true);
1086 } 1109 }
1110
1087 break; 1111 break;
1088 1112
1089 default: 1113 default:
1090 send_reset (ssa); 1114 send_reset (rsi);
1091 break; 1115 break;
1116
1092 } 1117 }
1093} 1118}
1094 1119
1095void connection::keepalive_cb (tstamp &ts) 1120void connection::keepalive_cb (tstamp &ts)
1096{ 1121{
1102 else if (NOW < last_activity + ::conf.keepalive) 1127 else if (NOW < last_activity + ::conf.keepalive)
1103 ts = last_activity + ::conf.keepalive; 1128 ts = last_activity + ::conf.keepalive;
1104 else if (conf->connectmode != conf_node::C_ONDEMAND 1129 else if (conf->connectmode != conf_node::C_ONDEMAND
1105 || THISNODE->connectmode != conf_node::C_ONDEMAND) 1130 || THISNODE->connectmode != conf_node::C_ONDEMAND)
1106 { 1131 {
1107 send_ping (&sa); 1132 send_ping (si);
1108 ts = NOW + 5; 1133 ts = NOW + 5;
1109 } 1134 }
1110 else 1135 else
1111 reset_connection (); 1136 reset_connection ();
1112 1137
1116{ 1141{
1117 connect_req_packet *p = new connect_req_packet (conf->id, id); 1142 connect_req_packet *p = new connect_req_packet (conf->id, id);
1118 1143
1119 slog (L_TRACE, ">>%d PT_CONNECT_REQ(%d)", id, conf->id); 1144 slog (L_TRACE, ">>%d PT_CONNECT_REQ(%d)", id, conf->id);
1120 p->hmac_set (octx); 1145 p->hmac_set (octx);
1121 vpn->send_vpn_packet (p, &sa); 1146 send_vpn_packet (p, si);
1122 1147
1123 delete p; 1148 delete p;
1124} 1149}
1125 1150
1126void connection::script_node () 1151void connection::script_node ()
1127{ 1152{
1128 vpn->script_if_up (); 1153 vpn->script_if_up (0);
1129 1154
1130 char *env; 1155 char *env;
1131 asprintf (&env, "DESTID=%d", conf->id); 1156 asprintf (&env, "DESTID=%d", conf->id); putenv (env);
1132 putenv (env);
1133 asprintf (&env, "DESTNODE=%s", conf->nodename); 1157 asprintf (&env, "DESTNODE=%s", conf->nodename); putenv (env);
1134 putenv (env); 1158 asprintf (&env, "DESTIP=%s", si.ntoa ()); putenv (env);
1135 asprintf (&env, "DESTIP=%s", inet_ntoa (sa.sin_addr));
1136 putenv (env);
1137 asprintf (&env, "DESTPORT=%d", ntohs (sa.sin_port)); 1159 asprintf (&env, "DESTPORT=%d", ntohs (si.port)); putenv (env);
1138 putenv (env);
1139} 1160}
1140 1161
1141const char *connection::script_node_up () 1162const char *connection::script_node_up (int)
1142{ 1163{
1143 script_node (); 1164 script_node ();
1144 1165
1145 putenv ("STATE=up"); 1166 putenv ("STATE=up");
1146 1167
1147 return ::conf.script_node_up ? ::conf.script_node_up : "node-up"; 1168 return ::conf.script_node_up ? ::conf.script_node_up : "node-up";
1148} 1169}
1149 1170
1150const char *connection::script_node_down () 1171const char *connection::script_node_down (int)
1151{ 1172{
1152 script_node (); 1173 script_node ();
1153 1174
1154 putenv ("STATE=down"); 1175 putenv ("STATE=down");
1155 1176
1156 return ::conf.script_node_up ? ::conf.script_node_down : "node-down"; 1177 return ::conf.script_node_up ? ::conf.script_node_down : "node-down";
1178}
1179
1180// send a vpn packet out to other hosts
1181void
1182connection::send_vpn_packet (vpn_packet *pkt, const sockinfo &si, int tos)
1183{
1184 if (prot_send & PROT_IPv4)
1185 vpn->send_ipv4_packet (pkt, si, tos);
1186 else
1187 vpn->send_udpv4_packet (pkt, si, tos);
1157} 1188}
1158 1189
1159connection::connection(struct vpn *vpn_) 1190connection::connection(struct vpn *vpn_)
1160: vpn(vpn_) 1191: vpn(vpn_)
1161, rekey (this, &connection::rekey_cb) 1192, rekey (this, &connection::rekey_cb)
1174 shutdown (); 1205 shutdown ();
1175} 1206}
1176 1207
1177///////////////////////////////////////////////////////////////////////////// 1208/////////////////////////////////////////////////////////////////////////////
1178 1209
1179const char *vpn::script_if_up () 1210const char *vpn::script_if_up (int)
1180{ 1211{
1181 // the tunnel device mtu should be the physical mtu - overhead 1212 // the tunnel device mtu should be the physical mtu - overhead
1182 // the tricky part is rounding to the cipher key blocksize 1213 // the tricky part is rounding to the cipher key blocksize
1183 int mtu = conf.mtu - ETH_OVERHEAD - VPE_OVERHEAD - UDP_OVERHEAD; 1214 int mtu = conf.mtu - ETH_OVERHEAD - VPE_OVERHEAD - MAX_OVERHEAD;
1184 mtu += ETH_OVERHEAD - 6 - 6; // now we have the data portion 1215 mtu += ETH_OVERHEAD - 6 - 6; // now we have the data portion
1185 mtu -= mtu % EVP_CIPHER_block_size (CIPHER); // round 1216 mtu -= mtu % EVP_CIPHER_block_size (CIPHER); // round
1186 mtu -= ETH_OVERHEAD - 6 - 6; // and get interface mtu again 1217 mtu -= ETH_OVERHEAD - 6 - 6; // and get interface mtu again
1187 1218
1188 char *env; 1219 char *env;
1203 1234
1204 return ::conf.script_if_up ? ::conf.script_if_up : "if-up"; 1235 return ::conf.script_if_up ? ::conf.script_if_up : "if-up";
1205} 1236}
1206 1237
1207int 1238int
1208vpn::setup (void) 1239vpn::setup ()
1209{ 1240{
1210 struct sockaddr_in sa; 1241 u8 prots = 0;
1211 1242
1243 for (configuration::node_vector::iterator i = conf.nodes.begin ();
1244 i != conf.nodes.end (); ++i)
1245 prots |= (*i)->can_send | (*i)->can_recv;
1246
1247 sockinfo si;
1248
1249 si.set (THISNODE);
1250
1251 udpv4_fd = -1;
1252
1253 if (prots & PROT_UDPv4)
1254 {
1212 socket_fd = socket (PF_INET, SOCK_DGRAM, IPPROTO_UDP); 1255 udpv4_fd = socket (PF_INET, SOCK_DGRAM, IPPROTO_UDP);
1213 if (socket_fd < 0) 1256
1257 if (udpv4_fd < 0)
1214 return -1; 1258 return -1;
1215 1259
1216 fill_sa (&sa, THISNODE); 1260 if (bind (udpv4_fd, si.sav4 (), si.salenv4 ()))
1217 1261 {
1218 if (bind (socket_fd, (sockaddr *)&sa, sizeof (sa)))
1219 {
1220 slog (L_ERR, _("can't bind to %s: %s"), (const char *)sockinfo(sa), strerror (errno)); 1262 slog (L_ERR, _("can't bind udpv4 to %s: %s"), (const char *)si, strerror (errno));
1221 exit (1); 1263 exit (1);
1222 } 1264 }
1223 1265
1224#ifdef IP_MTU_DISCOVER 1266#ifdef IP_MTU_DISCOVER
1225 // this I really consider a linux bug. I am neither connected 1267 // this I really consider a linux bug. I am neither connected
1226 // nor do I fragment myself. Linux still sets DF and doesn't 1268 // nor do I fragment myself. Linux still sets DF and doesn't
1227 // fragment for me sometimes. 1269 // fragment for me sometimes.
1228 { 1270 {
1229 int oval = IP_PMTUDISC_DONT; 1271 int oval = IP_PMTUDISC_DONT;
1230 setsockopt (socket_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval); 1272 setsockopt (udpv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval);
1231 } 1273 }
1232#endif 1274#endif
1233 { 1275
1276 // standard daemon practise...
1277 {
1234 int oval = 1; 1278 int oval = 1;
1235 setsockopt (socket_fd, SOL_SOCKET, SO_REUSEADDR, &oval, sizeof oval); 1279 setsockopt (udpv4_fd, SOL_SOCKET, SO_REUSEADDR, &oval, sizeof oval);
1236 } 1280 }
1237 1281
1238 udp_ev_watcher.start (socket_fd, POLLIN); 1282 udpv4_ev_watcher.start (udpv4_fd, POLLIN);
1283 }
1284
1285 ipv4_fd = -1;
1286 if (prots & PROT_IPv4)
1287 {
1288 ipv4_fd = socket (PF_INET, SOCK_RAW, ::conf.ip_proto);
1289
1290 if (ipv4_fd < 0)
1291 return -1;
1292
1293 if (bind (ipv4_fd, si.sav4 (), si.salenv4 ()))
1294 {
1295 slog (L_ERR, _("can't bind ipv4 socket to %s: %s"), (const char *)si, strerror (errno));
1296 exit (1);
1297 }
1298
1299#ifdef IP_MTU_DISCOVER
1300 // this I really consider a linux bug. I am neither connected
1301 // nor do I fragment myself. Linux still sets DF and doesn't
1302 // fragment for me sometimes.
1303 {
1304 int oval = IP_PMTUDISC_DONT;
1305 setsockopt (ipv4_fd, SOL_IP, IP_MTU_DISCOVER, &oval, sizeof oval);
1306 }
1307#endif
1308
1309 ipv4_ev_watcher.start (ipv4_fd, POLLIN);
1310 }
1239 1311
1240 tap = new tap_device (); 1312 tap = new tap_device ();
1241 if (!tap) //D this, of course, never catches 1313 if (!tap) //D this, of course, never catches
1242 { 1314 {
1243 slog (L_ERR, _("cannot create network interface '%s'"), conf.ifname); 1315 slog (L_ERR, _("cannot create network interface '%s'"), conf.ifname);
1244 exit (1); 1316 exit (1);
1245 } 1317 }
1246 1318
1247 run_script (this, &vpn::script_if_up, true); 1319 run_script (run_script_cb (this, &vpn::script_if_up), true);
1248 1320
1249 vpn_ev_watcher.start (tap->fd, POLLIN); 1321 tap_ev_watcher.start (tap->fd, POLLIN);
1250 1322
1251 reconnect_all (); 1323 reconnect_all ();
1252 1324
1253 return 0; 1325 return 0;
1254} 1326}
1255 1327
1256void 1328void
1257vpn::send_vpn_packet (vpn_packet *pkt, SOCKADDR *sa, int tos) 1329vpn::send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
1258{ 1330{
1259 setsockopt (socket_fd, SOL_IP, IP_TOS, &tos, sizeof tos); 1331 setsockopt (ipv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos);
1260 sendto (socket_fd, &((*pkt)[0]), pkt->len, 0, (sockaddr *)sa, sizeof (*sa)); 1332 sendto (ipv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ());
1261} 1333}
1262 1334
1263void 1335void
1264vpn::shutdown_all () 1336vpn::send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
1265{ 1337{
1266 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c) 1338 setsockopt (udpv4_fd, SOL_IP, IP_TOS, &tos, sizeof tos);
1267 (*c)->shutdown (); 1339 sendto (udpv4_fd, &((*pkt)[0]), pkt->len, 0, si.sav4 (), si.salenv4 ());
1268} 1340}
1269 1341
1270void 1342void
1271vpn::reconnect_all () 1343vpn::recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi)
1272{ 1344{
1273 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c) 1345 unsigned int src = pkt->src ();
1274 delete *c; 1346 unsigned int dst = pkt->dst ();
1275 1347
1276 conns.clear (); 1348 slog (L_NOISE, _("<<?/%s received possible vpn packet type %d from %d to %d, length %d"),
1349 (const char *)rsi, pkt->typ (), pkt->src (), pkt->dst (), pkt->len);
1277 1350
1278 for (configuration::node_vector::iterator i = conf.nodes.begin (); 1351 if (dst > conns.size () || pkt->typ () >= vpn_packet::PT_MAX)
1279 i != conf.nodes.end (); ++i) 1352 slog (L_WARN, _("<<? received CORRUPTED packet type %d from %d to %d"),
1280 { 1353 pkt->typ (), pkt->src (), pkt->dst ());
1281 connection *conn = new connection (this); 1354 else if (dst == 0 && !THISNODE->routerprio)
1282 1355 slog (L_WARN, _("<<%d received broadcast, but we are no router"), dst);
1283 conn->conf = *i; 1356 else if (dst != 0 && dst != THISNODE->id)
1284 conns.push_back (conn); 1357 slog (L_WARN,
1285 1358 _("received frame for node %d ('%s') from %s, but this is node %d ('%s')"),
1286 conn->establish_connection (); 1359 dst, conns[dst - 1]->conf->nodename,
1287 } 1360 (const char *)rsi,
1361 THISNODE->id, THISNODE->nodename);
1362 else if (src == 0 || src > conns.size ())
1363 slog (L_WARN, _("received frame from unknown node %d (%s)"),
1364 src, (const char *)rsi);
1365 else
1366 conns[src - 1]->recv_vpn_packet (pkt, rsi);
1288} 1367}
1289 1368
1290connection *vpn::find_router ()
1291{
1292 u32 prio = 0;
1293 connection *router = 0;
1294
1295 for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
1296 {
1297 connection *c = *i;
1298
1299 if (c->conf->routerprio > prio
1300 && c->connectmode == conf_node::C_ALWAYS
1301 && c->conf != THISNODE
1302 && c->ictx && c->octx)
1303 {
1304 prio = c->conf->routerprio;
1305 router = c;
1306 }
1307 }
1308
1309 return router;
1310}
1311
1312void vpn::connect_request (int id)
1313{
1314 connection *c = find_router ();
1315
1316 if (c)
1317 c->connect_request (id);
1318 //else // does not work, because all others must connect to the same router
1319 // // no router found, aggressively connect to all routers
1320 // for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
1321 // if ((*i)->conf->routerprio)
1322 // (*i)->establish_connection ();
1323}
1324
1325void 1369void
1326vpn::udp_ev (short revents) 1370vpn::udpv4_ev (short revents)
1327{ 1371{
1328 if (revents & (POLLIN | POLLERR)) 1372 if (revents & (POLLIN | POLLERR))
1329 { 1373 {
1330 vpn_packet *pkt = new vpn_packet; 1374 vpn_packet *pkt = new vpn_packet;
1331 struct sockaddr_in sa; 1375 struct sockaddr_in sa;
1332 socklen_t sa_len = sizeof (sa); 1376 socklen_t sa_len = sizeof (sa);
1333 int len; 1377 int len;
1334 1378
1335 len = recvfrom (socket_fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len); 1379 len = recvfrom (udpv4_fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
1380
1381 sockinfo si(sa);
1336 1382
1337 if (len > 0) 1383 if (len > 0)
1338 { 1384 {
1339 pkt->len = len; 1385 pkt->len = len;
1340 1386
1341 unsigned int src = pkt->src ();
1342 unsigned int dst = pkt->dst ();
1343
1344 slog (L_NOISE, _("<<?/%s received possible vpn packet type %d from %d to %d, length %d"),
1345 (const char *)sockinfo (sa), pkt->typ (), pkt->src (), pkt->dst (), pkt->len);
1346
1347 if (dst > conns.size () || pkt->typ () >= vpn_packet::PT_MAX)
1348 slog (L_WARN, _("<<? received CORRUPTED packet type %d from %d to %d"),
1349 pkt->typ (), pkt->src (), pkt->dst ());
1350 else if (dst == 0 && !THISNODE->routerprio)
1351 slog (L_WARN, _("<<%d received broadcast, but we are no router"), dst);
1352 else if (dst != 0 && dst != THISNODE->id)
1353 slog (L_WARN,
1354 _("received frame for node %d ('%s') from %s, but this is node %d ('%s')"),
1355 dst, conns[dst - 1]->conf->nodename,
1356 (const char *)sockinfo (sa),
1357 THISNODE->id, THISNODE->nodename);
1358 else if (src == 0 || src > conns.size ())
1359 slog (L_WARN, _("received frame from unknown node %d (%s)"), src, (const char *)sockinfo (sa));
1360 else
1361 conns[src - 1]->recv_vpn_packet (pkt, &sa); 1387 recv_vpn_packet (pkt, si);
1362 } 1388 }
1363 else 1389 else
1364 { 1390 {
1365 // probably ECONNRESET or somesuch 1391 // probably ECONNRESET or somesuch
1366 slog (L_DEBUG, _("%s: %s"), (const char *)sockinfo(sa), strerror (errno)); 1392 slog (L_DEBUG, _("%s: %s"), (const char *)si, strerror (errno));
1367 } 1393 }
1368 1394
1369 delete pkt; 1395 delete pkt;
1370 } 1396 }
1371 else if (revents & POLLHUP) 1397 else if (revents & POLLHUP)
1372 { 1398 {
1373 // this cannot ;) happen on udp sockets 1399 // this cannot ;) happen on udp sockets
1374 slog (L_ERR, _("FATAL: POLLHUP on socket fd, terminating.")); 1400 slog (L_ERR, _("FATAL: POLLHUP on udp v4 fd, terminating."));
1375 exit (1); 1401 exit (1);
1376 } 1402 }
1377 else 1403 else
1378 { 1404 {
1379 slog (L_ERR, 1405 slog (L_ERR,
1382 exit (1); 1408 exit (1);
1383 } 1409 }
1384} 1410}
1385 1411
1386void 1412void
1413vpn::ipv4_ev (short revents)
1414{
1415 if (revents & (POLLIN | POLLERR))
1416 {
1417 vpn_packet *pkt = new vpn_packet;
1418 struct sockaddr_in sa;
1419 socklen_t sa_len = sizeof (sa);
1420 int len;
1421
1422 len = recvfrom (ipv4_fd, &((*pkt)[0]), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
1423
1424 sockinfo si(sa, PROT_IPv4);
1425
1426 if (len > 0)
1427 {
1428 pkt->len = len;
1429
1430 // raw sockets deliver the ipv4, but don't expect it on sends
1431 // this is slow, but...
1432 pkt->skip_hdr (IP_OVERHEAD);
1433
1434 recv_vpn_packet (pkt, si);
1435 }
1436 else
1437 {
1438 // probably ECONNRESET or somesuch
1439 slog (L_DEBUG, _("%s: %s"), (const char *)si, strerror (errno));
1440 }
1441
1442 delete pkt;
1443 }
1444 else if (revents & POLLHUP)
1445 {
1446 // this cannot ;) happen on udp sockets
1447 slog (L_ERR, _("FATAL: POLLHUP on ipv4 fd, terminating."));
1448 exit (1);
1449 }
1450 else
1451 {
1452 slog (L_ERR,
1453 _("FATAL: unknown revents %08x in socket, terminating\n"),
1454 revents);
1455 exit (1);
1456 }
1457}
1458
1459void
1387vpn::vpn_ev (short revents) 1460vpn::tap_ev (short revents)
1388{ 1461{
1389 if (revents & POLLIN) 1462 if (revents & POLLIN)
1390 { 1463 {
1391 /* process data */ 1464 /* process data */
1392 tap_packet *pkt; 1465 tap_packet *pkt;
1448{ 1521{
1449 if (events) 1522 if (events)
1450 { 1523 {
1451 if (events & EVENT_SHUTDOWN) 1524 if (events & EVENT_SHUTDOWN)
1452 { 1525 {
1526 slog (L_INFO, _("preparing shutdown..."));
1527
1453 shutdown_all (); 1528 shutdown_all ();
1454 1529
1455 remove_pid (pidfilename); 1530 remove_pid (pidfilename);
1456 1531
1457 slog (L_INFO, _("vped terminating")); 1532 slog (L_INFO, _("terminating"));
1458 1533
1459 exit (0); 1534 exit (0);
1460 } 1535 }
1461 1536
1462 if (events & EVENT_RECONNECT) 1537 if (events & EVENT_RECONNECT)
1538 {
1539 slog (L_INFO, _("forced reconnect"));
1540
1463 reconnect_all (); 1541 reconnect_all ();
1542 }
1464 1543
1465 events = 0; 1544 events = 0;
1466 } 1545 }
1467 1546
1468 ts = TSTAMP_CANCEL; 1547 ts = TSTAMP_CANCEL;
1469} 1548}
1470 1549
1471#include <sys/time.h>//D 1550void
1551vpn::shutdown_all ()
1552{
1553 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c)
1554 (*c)->shutdown ();
1555}
1556
1557void
1558vpn::reconnect_all ()
1559{
1560 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c)
1561 delete *c;
1562
1563 conns.clear ();
1564
1565 auth_rate_limiter.clear ();
1566 reset_rate_limiter.clear ();
1567
1568 for (configuration::node_vector::iterator i = conf.nodes.begin ();
1569 i != conf.nodes.end (); ++i)
1570 {
1571 connection *conn = new connection (this);
1572
1573 conn->conf = *i;
1574 conns.push_back (conn);
1575
1576 conn->establish_connection ();
1577 }
1578}
1579
1580connection *vpn::find_router ()
1581{
1582 u32 prio = 0;
1583 connection *router = 0;
1584
1585 for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
1586 {
1587 connection *c = *i;
1588
1589 if (c->conf->routerprio > prio
1590 && c->connectmode == conf_node::C_ALWAYS
1591 && c->conf != THISNODE
1592 && c->ictx && c->octx)
1593 {
1594 prio = c->conf->routerprio;
1595 router = c;
1596 }
1597 }
1598
1599 return router;
1600}
1601
1602void vpn::connect_request (int id)
1603{
1604 connection *c = find_router ();
1605
1606 if (c)
1607 c->connect_request (id);
1608 //else // does not work, because all others must connect to the same router
1609 // // no router found, aggressively connect to all routers
1610 // for (conns_vector::iterator i = conns.begin (); i != conns.end (); ++i)
1611 // if ((*i)->conf->routerprio)
1612 // (*i)->establish_connection ();
1613}
1614
1615void
1616connection::dump_status ()
1617{
1618 slog (L_NOTICE, _("node %s (id %d)"), conf->nodename, conf->id);
1619 slog (L_NOTICE, _(" connectmode %d (%d) / sockaddr %s / minor %d"),
1620 connectmode, conf->connectmode, (const char *)si, (int)prot_minor);
1621 slog (L_NOTICE, _(" ictx/octx %08lx/%08lx / oseqno %d / retry_cnt %d"),
1622 (long)ictx, (long)octx, (int)oseqno, (int)retry_cnt);
1623 slog (L_NOTICE, _(" establish_conn %ld / rekey %ld / keepalive %ld"),
1624 (long)(establish_connection.at), (long)(rekey.at), (long)(keepalive.at));
1625}
1626
1627void
1628vpn::dump_status ()
1629{
1630 slog (L_NOTICE, _("BEGIN status dump (%ld)"), (long)NOW);
1631
1632 for (conns_vector::iterator c = conns.begin (); c != conns.end (); ++c)
1633 (*c)->dump_status ();
1634
1635 slog (L_NOTICE, _("END status dump"));
1636}
1637
1472vpn::vpn (void) 1638vpn::vpn (void)
1473: udp_ev_watcher (this, &vpn::udp_ev) 1639: udpv4_ev_watcher(this, &vpn::udpv4_ev)
1640, ipv4_ev_watcher(this, &vpn::ipv4_ev)
1474, vpn_ev_watcher (this, &vpn::vpn_ev) 1641, tap_ev_watcher(this, &vpn::tap_ev)
1475, event (this, &vpn::event_cb) 1642, event(this, &vpn::event_cb)
1476{ 1643{
1477} 1644}
1478 1645
1479vpn::~vpn () 1646vpn::~vpn ()
1480{ 1647{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines