ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/vpn_dns.C
Revision: 1.11
Committed: Fri Mar 4 08:45:24 2005 UTC (19 years, 3 months ago) by pcg
Content type: text/plain
Branch: MAIN
Changes since 1.10: +21 -17 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 /*
2     vpn_dns.C -- handle the dns tunnel part of the protocol.
3 pcg 1.7 Copyright (C) 2003-2005 Marc Lehmann <gvpe@schmorp.de>
4 pcg 1.1
5 pcg 1.7 This file is part of GVPE.
6    
7     GVPE is free software; you can redistribute it and/or modify
8 pcg 1.1 it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License
18 pcg 1.7 along with gvpe; if not, write to the Free Software
19 pcg 1.1 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20     */
21    
22     #include "config.h"
23    
24     #if ENABLE_DNS
25    
26     // dns processing is EXTREMELY ugly. For obvious(?) reasons.
27     // it's a hack, use only in emergency situations please.
28    
29     #include <cstring>
30    
31     #include <sys/types.h>
32     #include <sys/socket.h>
33     #include <sys/wait.h>
34     #include <sys/uio.h>
35     #include <errno.h>
36     #include <time.h>
37     #include <unistd.h>
38     #include <fcntl.h>
39    
40     #include <map>
41    
42 pcg 1.8 #include <gmp.h>
43    
44 pcg 1.1 #include "netcompat.h"
45    
46     #include "vpn.h"
47    
48 pcg 1.10 #define MIN_POLL_INTERVAL .2 // how often to poll minimally when the server is having data
49     #define MAX_POLL_INTERVAL 6. // how often to poll minimally when the server has no data
50     #define ACTIVITY_INTERVAL 5.
51    
52     #define INITIAL_TIMEOUT 1.
53     #define INITIAL_SYN_TIMEOUT 2.
54    
55 pcg 1.11 #define MIN_SEND_INTERVAL 0.001
56 pcg 1.10 #define MAX_SEND_INTERVAL 0.5 // optimistic?
57 pcg 1.1
58 pcg 1.8 #define MAX_OUTSTANDING 400 // max. outstanding requests
59     #define MAX_WINDOW 1000 // max. for MAX_OUTSTANDING
60 pcg 1.10 #define MAX_BACKLOG (100*1024) // size of protocol backlog, must be > MAXSIZE
61 pcg 1.5
62     #define MAX_DOMAIN_SIZE 220 // 255 is legal limit, but bind doesn't compress well
63     // 240 leaves about 4 bytes of server reply data
64     // every two request byte sless give room for one reply byte
65    
66 pcg 1.9 #define SEQNO_MASK 0xffff
67 pcg 1.8 #define SEQNO_EQ(a,b) ( 0 == ( ((a) ^ (b)) & SEQNO_MASK) )
68 pcg 1.1
69 pcg 1.8 #define MAX_LBL_SIZE 63
70     #define MAX_PKT_SIZE 512
71 pcg 1.1
72 pcg 1.10 #define RR_TYPE_A 1
73     #define RR_TYPE_NULL 10
74     #define RR_TYPE_TXT 16
75 pcg 1.8 #define RR_TYPE_ANY 255
76 pcg 1.10
77     #define RR_CLASS_IN 1
78    
79     #define CMD_IP_1 207
80     #define CMD_IP_2 46
81     #define CMD_IP_3 236
82     #define CMD_IP_RST 29
83     #define CMD_IP_SYN 113
84     #define CMD_IP_REJ 32
85 pcg 1.1
86 pcg 1.8 // works for cmaps up to 255 (not 256!)
87     struct charmap
88     {
89     enum { INVALID = (u8)255 };
90 pcg 1.1
91 pcg 1.8 char encode [256]; // index => char
92     u8 decode [256]; // char => index
93     unsigned int size;
94 pcg 1.2
95 pcg 1.8 charmap (const char *cmap);
96     };
97    
98     charmap::charmap (const char *cmap)
99     {
100     char *enc = encode;
101     u8 *dec = decode;
102 pcg 1.2
103 pcg 1.8 memset (enc, (char) 0, 256);
104     memset (dec, (char)INVALID, 256);
105 pcg 1.1
106 pcg 1.8 for (size = 0; cmap [size]; size++)
107     {
108     enc [size] = cmap [size];
109     dec [(u8)enc [size]] = size;
110     }
111 pcg 1.1
112 pcg 1.8 assert (size < 256);
113     }
114 pcg 1.2
115 pcg 1.8 #define MAX_DEC_LEN 500
116     #define MAX_ENC_LEN (MAX_DEC_LEN * 2)
117     #define MAX_LIMBS ((MAX_DEC_LEN * 8 + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS)
118 pcg 1.2
119 pcg 1.8 // ugly. minimum base is 16(!)
120     struct basecoder
121 pcg 1.2 {
122 pcg 1.8 charmap cmap;
123     unsigned int enc_len [MAX_DEC_LEN];
124     unsigned int dec_len [MAX_ENC_LEN];
125 pcg 1.2
126 pcg 1.8 unsigned int encode_len (unsigned int len);
127     unsigned int decode_len (unsigned int len);
128    
129     unsigned int encode (char *dst, u8 *src, unsigned int len);
130     unsigned int decode (u8 *dst, char *src, unsigned int len);
131    
132     basecoder (const char *cmap);
133     };
134    
135     basecoder::basecoder (const char *cmap)
136     : cmap (cmap)
137     {
138     for (unsigned int len = 0; len < MAX_DEC_LEN; ++len)
139     {
140     u8 src [MAX_DEC_LEN];
141     u8 dst [MAX_ENC_LEN];
142 pcg 1.2
143 pcg 1.8 memset (src, 255, len);
144 pcg 1.2
145 pcg 1.8 mp_limb_t m [MAX_LIMBS];
146     mp_size_t n;
147    
148     n = mpn_set_str (m, src, len, 256);
149     n = mpn_get_str (dst, this->cmap.size, m, n);
150    
151     for (int i = 0; !dst [i]; ++i)
152     n--;
153    
154     enc_len [len] = n;
155     dec_len [n] = len;
156     }
157     }
158    
159     unsigned int basecoder::encode_len (unsigned int len)
160     {
161     return enc_len [len];
162     }
163 pcg 1.2
164 pcg 1.8 unsigned int basecoder::decode_len (unsigned int len)
165 pcg 1.2 {
166 pcg 1.8 while (len && !dec_len [len])
167     --len;
168    
169     return dec_len [len];
170 pcg 1.2 }
171    
172 pcg 1.8 unsigned int basecoder::encode (char *dst, u8 *src, unsigned int len)
173 pcg 1.2 {
174 pcg 1.10 if (!len || len > MAX_DEC_LEN)
175 pcg 1.8 return 0;
176    
177     int elen = encode_len (len);
178    
179     mp_limb_t m [MAX_LIMBS];
180     mp_size_t n;
181    
182     u8 dst_ [MAX_ENC_LEN];
183    
184     n = mpn_set_str (m, src, len, 256);
185     n = mpn_get_str (dst_, cmap.size, m, n);
186    
187     int plen = elen; // for padding
188 pcg 1.2
189 pcg 1.8 while (n < plen)
190 pcg 1.2 {
191 pcg 1.8 *dst++ = cmap.encode [0];
192     plen--;
193 pcg 1.2 }
194    
195 pcg 1.8 for (unsigned int i = n - plen; i < n; ++i)
196     *dst++ = cmap.encode [dst_ [i]];
197 pcg 1.4
198 pcg 1.8 return elen;
199 pcg 1.2 }
200    
201 pcg 1.8 unsigned int basecoder::decode (u8 *dst, char *src, unsigned int len)
202 pcg 1.2 {
203 pcg 1.10 if (!len || len > MAX_ENC_LEN)
204 pcg 1.8 return 0;
205    
206     u8 src_ [MAX_ENC_LEN];
207     unsigned int elen = 0;
208 pcg 1.2
209     while (len--)
210     {
211 pcg 1.8 u8 val = cmap.decode [(u8)*src++];
212 pcg 1.2
213 pcg 1.8 if (val != charmap::INVALID)
214     src_ [elen++] = val;
215     }
216    
217     int dlen = decode_len (elen);
218    
219     mp_limb_t m [MAX_LIMBS];
220     mp_size_t n;
221    
222     u8 dst_ [MAX_DEC_LEN];
223 pcg 1.2
224 pcg 1.8 n = mpn_set_str (m, src_, elen, cmap.size);
225     n = mpn_get_str (dst_, 256, m, n);
226 pcg 1.2
227 pcg 1.8 if (n < dlen)
228     {
229     memset (dst, 0, dlen - n);
230     memcpy (dst + dlen - n, dst_, n);
231 pcg 1.2 }
232 pcg 1.8 else
233     memcpy (dst, dst_ + n - dlen, dlen);
234 pcg 1.4
235 pcg 1.8 return dlen;
236     }
237    
238     #if 0
239     struct test { test (); } test;
240    
241     test::test ()
242     {
243     basecoder cdc ("0123456789abcdefghijklmnopqrstuvwxyz");
244    
245     u8 in[] = "0123456789abcdefghijklmnopqrstuvwxyz";
246     static char enc[200];
247     static u8 dec[200];
248    
249     for (int i = 1; i < 20; i++)
250     {
251     int elen = cdc.encode (enc, in, i);
252     int dlen = cdc.decode (dec, enc, elen);
253    
254     printf ("%d>%d>%d (%s>%s)\n", i, elen, dlen, enc, dec);
255     }
256     abort ();
257     }
258     #endif
259    
260 pcg 1.10 //static basecoder cdc64 ("_dDpPhHzZrR06QqMmjJkKBb34TtSsvVlL81xXaAeEFf92WwGgYyoO57UucCNniI-");
261 pcg 1.8 //static basecoder cdc63 ("_dDpPhHzZrR06QqMmjJkKBb34TtSsvVlL81xXaAeEFf92WwGgYyoO57UucCNniI");
262     static basecoder cdc62 ("dDpPhHzZrR06QqMmjJkKBb34TtSsvVlL81xXaAeEFf92WwGgYyoO57UucCNniI");
263     //static basecoder cdc36 ("dphzr06qmjkb34tsvl81xaef92wgyo57ucni"); // unused as of yet
264     static basecoder cdc26 ("dPhZrQmJkBtSvLxAeFwGyO");
265    
266     /////////////////////////////////////////////////////////////////////////////
267    
268     #define HDRSIZE 6
269    
270     inline void encode_header (char *data, int clientid, int seqno)
271     {
272     u8 hdr[3] = { clientid, seqno >> 8, seqno };
273    
274     assert (clientid < 256);
275    
276     cdc26.encode (data, hdr, 3);
277     }
278    
279     inline void decode_header (char *data, int &clientid, int &seqno)
280     {
281     u8 hdr[3];
282    
283     cdc26.decode (hdr, data, HDRSIZE);
284    
285     clientid = hdr[0];
286     seqno = (hdr[1] << 8) | hdr[2];
287 pcg 1.4 }
288    
289     /////////////////////////////////////////////////////////////////////////////
290    
291     struct byte_stream
292     {
293     u8 *data;
294     int maxsize;
295     int fill;
296    
297     byte_stream (int maxsize);
298     ~byte_stream ();
299    
300     bool empty () { return !fill; }
301     int size () { return fill; }
302    
303 pcg 1.5 bool put (u8 *data, unsigned int datalen);
304 pcg 1.4 bool put (vpn_packet *pkt);
305     vpn_packet *get ();
306    
307     u8 *begin () { return data; }
308     void remove (int count);
309     };
310    
311     byte_stream::byte_stream (int maxsize)
312     : maxsize (maxsize), fill (0)
313     {
314     data = new u8 [maxsize];
315     }
316    
317     byte_stream::~byte_stream ()
318     {
319     delete data;
320     }
321    
322     void byte_stream::remove (int count)
323     {
324     if (count > fill)
325     abort ();
326    
327     memmove (data, data + count, fill -= count);
328     }
329    
330 pcg 1.5 bool byte_stream::put (u8 *data, unsigned int datalen)
331     {
332     if (maxsize - fill < datalen)
333     return false;
334    
335     memcpy (this->data + fill, data, datalen); fill += datalen;
336    
337     return true;
338     }
339    
340 pcg 1.4 bool byte_stream::put (vpn_packet *pkt)
341     {
342     if (maxsize - fill < pkt->len + 2)
343     return false;
344    
345     data [fill++] = pkt->len >> 8;
346     data [fill++] = pkt->len;
347    
348 pcg 1.10 memcpy (data + fill, pkt->at (0), pkt->len); fill += pkt->len;
349 pcg 1.4
350     return true;
351     }
352    
353     vpn_packet *byte_stream::get ()
354     {
355     int len = (data [0] << 8) | data [1];
356    
357 pcg 1.5 if (len > MAXSIZE && fill >= 2)
358     abort (); // TODO handle this gracefully, connection reset
359    
360 pcg 1.4 if (fill < len + 2)
361     return 0;
362    
363     vpn_packet *pkt = new vpn_packet;
364 pcg 1.5
365     pkt->len = len;
366 pcg 1.10 memcpy (pkt->at (0), data + 2, len);
367 pcg 1.4 remove (len + 2);
368    
369     return pkt;
370 pcg 1.2 }
371    
372 pcg 1.3 /////////////////////////////////////////////////////////////////////////////
373    
374 pcg 1.2 #define FLAG_QUERY ( 0 << 15)
375     #define FLAG_RESPONSE ( 1 << 15)
376 pcg 1.9 #define FLAG_OP_MASK (15 << 11)
377 pcg 1.2 #define FLAG_OP_QUERY ( 0 << 11)
378     #define FLAG_AA ( 1 << 10)
379     #define FLAG_TC ( 1 << 9)
380     #define FLAG_RD ( 1 << 8)
381     #define FLAG_RA ( 1 << 7)
382 pcg 1.5 #define FLAG_AUTH ( 1 << 5)
383 pcg 1.2 #define FLAG_RCODE_MASK (15 << 0)
384     #define FLAG_RCODE_OK ( 0 << 0)
385     #define FLAG_RCODE_FORMERR ( 1 << 0)
386     #define FLAG_RCODE_SERVFAIL ( 2 << 0)
387     #define FLAG_RCODE_NXDOMAIN ( 3 << 0)
388     #define FLAG_RCODE_REFUSED ( 5 << 0)
389    
390     #define DEFAULT_CLIENT_FLAGS (FLAG_QUERY | FLAG_OP_QUERY | FLAG_RD)
391 pcg 1.5 #define DEFAULT_SERVER_FLAGS (FLAG_RESPONSE | FLAG_OP_QUERY | FLAG_AA | FLAG_RD | FLAG_RA)
392 pcg 1.2
393 pcg 1.10 struct dns_cfg
394     {
395     static int next_uid;
396    
397     u8 id1, id2, id3, id4;
398     u8 version;
399     u8 rrtype;
400     u8 flags;
401     u8 def_ttl;
402     u8 rcv_cdc;
403     u8 snd_cdc;
404     u16 max_size;
405     u16 client;
406     u16 uid; // to make request unique
407    
408     u8 reserved[8];
409    
410     void reset (int clientid);
411     bool valid ();
412     };
413    
414     int dns_cfg::next_uid;
415    
416     void dns_cfg::reset (int clientid)
417     {
418     id1 = 'G';
419     id2 = 'V';
420     id3 = 'P';
421     id4 = 'E';
422    
423     version = 1;
424    
425     rrtype = RR_TYPE_TXT;
426     flags = 0;
427     def_ttl = 0;
428     rcv_cdc = 0;
429     snd_cdc = 62;
430     max_size = ntohs (MAX_PKT_SIZE);
431     client = ntohs (clientid);
432     uid = next_uid++;
433    
434     memset (reserved, 0, 8);
435     }
436    
437     bool dns_cfg::valid ()
438     {
439     return id1 == 'G'
440     && id2 == 'V'
441     && id3 == 'P'
442     && id4 == 'E'
443     && version == 1
444     && flags == 0
445     && rcv_cdc == 0
446     && snd_cdc == 62
447     && max_size == ntohs (MAX_PKT_SIZE);
448     }
449    
450 pcg 1.2 struct dns_packet : net_packet
451     {
452     u16 id;
453     u16 flags; // QR:1 Opcode:4 AA:1 TC:1 RD:1 RA:1 Z:3 RCODE:4
454     u16 qdcount, ancount, nscount, arcount;
455    
456     u8 data[MAXSIZE - 6 * 2];
457    
458     int decode_label (char *data, int size, int &offs);
459     };
460    
461     int dns_packet::decode_label (char *data, int size, int &offs)
462     {
463     char *orig = data;
464    
465     memset (data, 0, size);
466    
467     while (offs < size - 1)
468     {
469     u8 len = (*this)[offs++];
470    
471     if (!len)
472     break;
473     else if (len < 64)
474     {
475     if (size < len + 1 || offs + len >= MAXSIZE - 1)
476     break;
477    
478     memcpy (data, &((*this)[offs]), len);
479    
480     data += len; size -= len; offs += len;
481     *data++ = '.'; size--;
482     }
483     else
484     {
485     int offs2 = ((len & 63) << 8) + (*this)[offs++];
486    
487     data += decode_label (data, size, offs2);
488     break;
489     }
490     }
491    
492     return data - orig;
493     }
494    
495 pcg 1.3 /////////////////////////////////////////////////////////////////////////////
496    
497 pcg 1.10 struct dns_snd
498 pcg 1.3 {
499     dns_packet *pkt;
500 pcg 1.10 tstamp timeout, sent;
501 pcg 1.3 int retry;
502 pcg 1.9 struct dns_connection *dns;
503 pcg 1.5 int seqno;
504 pcg 1.3
505 pcg 1.9 void gen_stream_req (int seqno, byte_stream &stream);
506 pcg 1.10 void gen_syn_req (const dns_cfg &cfg);
507 pcg 1.11
508     dns_snd (dns_connection *dns);
509     ~dns_snd ();
510 pcg 1.3 };
511    
512 pcg 1.5 static u16 dns_id = 12098; // TODO: should be per-vpn
513    
514     static u16 next_id ()
515 pcg 1.3 {
516 pcg 1.5 // the simplest lsfr with periodicity 65535 i could find
517     dns_id = (dns_id << 1)
518     | (((dns_id >> 1)
519     ^ (dns_id >> 2)
520     ^ (dns_id >> 4)
521     ^ (dns_id >> 15)) & 1);
522 pcg 1.3
523 pcg 1.5 return dns_id;
524     }
525 pcg 1.3
526 pcg 1.10 dns_snd::dns_snd (dns_connection *dns)
527 pcg 1.9 : dns (dns)
528 pcg 1.3 {
529 pcg 1.10 timeout = 0;
530 pcg 1.3 retry = 0;
531 pcg 1.10 seqno = 0;
532 pcg 1.11 sent = NOW;
533 pcg 1.3
534     pkt = new dns_packet;
535    
536 pcg 1.5 pkt->id = next_id ();
537     }
538    
539 pcg 1.11 dns_snd::~dns_snd ()
540     {
541     delete pkt;
542     }
543    
544 pcg 1.10 static void append_domain (dns_packet &pkt, int &offs, const char *domain)
545     {
546     // add tunnel domain
547     for (;;)
548     {
549     const char *end = strchr (domain, '.');
550    
551     if (!end)
552     end = domain + strlen (domain);
553    
554     int len = end - domain;
555    
556     pkt [offs++] = len;
557     memcpy (pkt.at (offs), domain, len);
558     offs += len;
559    
560     if (!*end)
561     break;
562    
563     domain = end + 1;
564     }
565     }
566    
567     void dns_snd::gen_stream_req (int seqno, byte_stream &stream)
568 pcg 1.5 {
569     this->seqno = seqno;
570    
571 pcg 1.10 timeout = NOW + INITIAL_TIMEOUT;
572    
573 pcg 1.5 pkt->flags = htons (DEFAULT_CLIENT_FLAGS);
574 pcg 1.4 pkt->qdcount = htons (1);
575 pcg 1.3
576 pcg 1.4 int offs = 6*2;
577 pcg 1.8 int dlen = MAX_DOMAIN_SIZE - (strlen (THISNODE->domain) + 2);
578 pcg 1.5 // MAX_DOMAIN_SIZE is technically 255, but bind doesn't compress responses well,
579     // so we need to have space for 2*MAX_DOMAIN_SIZE + header + extra
580    
581 pcg 1.8 char enc[256], *encp = enc;
582     encode_header (enc, THISNODE->id, seqno);
583 pcg 1.4
584 pcg 1.8 int datalen = cdc62.decode_len (dlen - (dlen + MAX_LBL_SIZE - 1) / MAX_LBL_SIZE - HDRSIZE);
585 pcg 1.4
586 pcg 1.9 if (datalen > stream.size ())
587     datalen = stream.size ();
588 pcg 1.8
589 pcg 1.9 int enclen = cdc62.encode (enc + HDRSIZE, stream.begin (), datalen) + HDRSIZE;
590     stream.remove (datalen);
591 pcg 1.4
592 pcg 1.5 while (enclen)
593     {
594     int lbllen = enclen < MAX_LBL_SIZE ? enclen : MAX_LBL_SIZE;
595    
596     (*pkt)[offs++] = lbllen;
597     memcpy (pkt->at (offs), encp, lbllen);
598 pcg 1.4
599 pcg 1.5 offs += lbllen;
600     encp += lbllen;
601 pcg 1.4
602 pcg 1.5 enclen -= lbllen;
603 pcg 1.4 }
604    
605 pcg 1.10 append_domain (*pkt, offs, THISNODE->domain);
606 pcg 1.3
607 pcg 1.10 (*pkt)[offs++] = 0;
608     (*pkt)[offs++] = RR_TYPE_ANY >> 8; (*pkt)[offs++] = RR_TYPE_ANY;
609     (*pkt)[offs++] = RR_CLASS_IN >> 8; (*pkt)[offs++] = RR_CLASS_IN;
610    
611     pkt->len = offs;
612     }
613    
614     void dns_snd::gen_syn_req (const dns_cfg &cfg)
615     {
616     timeout = NOW + INITIAL_SYN_TIMEOUT;
617 pcg 1.4
618 pcg 1.10 pkt->flags = htons (DEFAULT_CLIENT_FLAGS);
619     pkt->qdcount = htons (1);
620 pcg 1.4
621 pcg 1.10 int offs = 6*2;
622 pcg 1.4
623 pcg 1.10 int elen = cdc26.encode ((char *)pkt->at (offs + 1), (u8 *)&cfg, sizeof (dns_cfg));
624 pcg 1.4
625 pcg 1.10 assert (elen <= MAX_LBL_SIZE);
626 pcg 1.4
627 pcg 1.10 (*pkt)[offs] = elen;
628     offs += elen + 1;
629     append_domain (*pkt, offs, THISNODE->domain);
630 pcg 1.4
631     (*pkt)[offs++] = 0;
632 pcg 1.10 (*pkt)[offs++] = RR_TYPE_A >> 8; (*pkt)[offs++] = RR_TYPE_A;
633 pcg 1.4 (*pkt)[offs++] = RR_CLASS_IN >> 8; (*pkt)[offs++] = RR_CLASS_IN;
634    
635     pkt->len = offs;
636 pcg 1.5 }
637    
638     struct dns_rcv
639     {
640     int seqno;
641     dns_packet *pkt; // reply packet
642     u8 data [MAXSIZE]; // actually part of the reply packet...
643     int datalen;
644    
645 pcg 1.6 dns_rcv (int seqno, u8 *data, int datalen);
646 pcg 1.5 ~dns_rcv ();
647     };
648    
649 pcg 1.6 dns_rcv::dns_rcv (int seqno, u8 *data, int datalen)
650 pcg 1.5 : seqno (seqno), pkt (new dns_packet), datalen (datalen)
651     {
652     memcpy (this->data, data, datalen);
653     }
654 pcg 1.4
655 pcg 1.5 dns_rcv::~dns_rcv ()
656     {
657     delete pkt;
658 pcg 1.3 }
659    
660     /////////////////////////////////////////////////////////////////////////////
661 pcg 1.9
662     struct dns_connection
663     {
664     connection *c;
665     struct vpn *vpn;
666    
667 pcg 1.10 dns_cfg cfg;
668    
669     bool established;
670    
671     tstamp last_received;
672     tstamp last_sent;
673     double poll_interval, send_interval;
674    
675 pcg 1.9 vector<dns_rcv *> rcvpq;
676    
677 pcg 1.10 byte_stream rcvdq; int rcvseq;
678     byte_stream snddq; int sndseq;
679 pcg 1.9
680     void time_cb (time_watcher &w); time_watcher tw;
681     void receive_rep (dns_rcv *r);
682    
683     dns_connection (connection *c);
684     ~dns_connection ();
685     };
686    
687     dns_connection::dns_connection (connection *c)
688     : c (c)
689     , rcvdq (MAX_BACKLOG * 2)
690     , snddq (MAX_BACKLOG * 2)
691     , tw (this, &dns_connection::time_cb)
692     {
693     vpn = c->vpn;
694    
695 pcg 1.10 established = false;
696    
697 pcg 1.9 rcvseq = sndseq = 0;
698 pcg 1.10
699     last_sent = last_received = 0;
700     poll_interval = MIN_POLL_INTERVAL;
701     send_interval = 0.2; // starting rate
702 pcg 1.9 }
703    
704     dns_connection::~dns_connection ()
705     {
706     for (vector<dns_rcv *>::iterator i = rcvpq.begin ();
707     i != rcvpq.end ();
708     ++i)
709     delete *i;
710     }
711 pcg 1.3
712 pcg 1.10 void dns_connection::receive_rep (dns_rcv *r)
713 pcg 1.2 {
714 pcg 1.10 if (r->datalen)
715     {
716     last_received = NOW;
717     tw.trigger ();
718    
719     poll_interval *= 0.99;
720     if (poll_interval > MIN_POLL_INTERVAL)
721     poll_interval = MIN_POLL_INTERVAL;
722     }
723     else
724     {
725     poll_interval *= 1.1;
726     if (poll_interval > MAX_POLL_INTERVAL)
727     poll_interval = MAX_POLL_INTERVAL;
728     }
729 pcg 1.2
730 pcg 1.9 rcvpq.push_back (r);
731 pcg 1.5
732     redo:
733    
734 pcg 1.8 // find next packet
735 pcg 1.9 for (vector<dns_rcv *>::iterator i = rcvpq.end (); i-- != rcvpq.begin (); )
736     if (SEQNO_EQ (rcvseq, (*i)->seqno))
737 pcg 1.5 {
738 pcg 1.8 // enter the packet into our input stream
739     r = *i;
740    
741     // remove the oldest packet, look forward, as it's oldest first
742 pcg 1.9 for (vector<dns_rcv *>::iterator j = rcvpq.begin (); j != rcvpq.end (); ++j)
743     if (SEQNO_EQ ((*j)->seqno, rcvseq - MAX_WINDOW))
744 pcg 1.8 {
745     delete *j;
746 pcg 1.9 rcvpq.erase (j);
747 pcg 1.8 break;
748     }
749 pcg 1.5
750 pcg 1.9 rcvseq = (rcvseq + 1) & SEQNO_MASK;
751 pcg 1.5
752 pcg 1.9 if (!rcvdq.put (r->data, r->datalen))
753 pcg 1.5 abort (); // MUST never overflow, can be caused by data corruption, TODO
754    
755 pcg 1.9 while (vpn_packet *pkt = rcvdq.get ())
756 pcg 1.5 {
757     sockinfo si;
758     si.host = 0; si.port = 0; si.prot = PROT_DNSv4;
759    
760     vpn->recv_vpn_packet (pkt, si);
761 pcg 1.11
762     delete pkt;
763 pcg 1.5 }
764 pcg 1.8
765     // check for further packets
766 pcg 1.5 goto redo;
767     }
768     }
769    
770 pcg 1.10 void
771     vpn::dnsv4_server (dns_packet &pkt)
772 pcg 1.2 {
773 pcg 1.10 u16 flags = ntohs (pkt.flags);
774 pcg 1.2
775 pcg 1.4 int offs = 6 * 2; // skip header
776 pcg 1.2
777 pcg 1.10 pkt.flags = htons (DEFAULT_SERVER_FLAGS | FLAG_RCODE_FORMERR);
778 pcg 1.2
779 pcg 1.10 if (0 == (flags & (FLAG_RESPONSE | FLAG_OP_MASK))
780     && pkt.qdcount == htons (1))
781 pcg 1.4 {
782     char qname[MAXSIZE];
783 pcg 1.10 int qlen = pkt.decode_label ((char *)qname, MAXSIZE - offs, offs);
784 pcg 1.4
785 pcg 1.10 u16 qtype = pkt [offs++] << 8; qtype |= pkt [offs++];
786     u16 qclass = pkt [offs++] << 8; qclass |= pkt [offs++];
787 pcg 1.2
788 pcg 1.10 pkt.qdcount = htons (1);
789     pkt.ancount = 0;
790     pkt.nscount = 0; // should be self, as other nameservers reply like this
791     pkt.arcount = 0; // a record for self, as other nameservers reply like this
792 pcg 1.2
793 pcg 1.10 pkt.flags = htons (DEFAULT_SERVER_FLAGS | FLAG_RCODE_NXDOMAIN);
794 pcg 1.2
795 pcg 1.4 int dlen = strlen (THISNODE->domain);
796 pcg 1.2
797 pcg 1.4 if (qclass == RR_CLASS_IN
798 pcg 1.10 && qlen > dlen + 1
799 pcg 1.4 && !memcmp (qname + qlen - dlen - 1, THISNODE->domain, dlen))
800 pcg 1.2 {
801 pcg 1.10 // now generate reply
802     pkt.ancount = htons (1); // one answer RR
803     pkt.flags = htons (DEFAULT_SERVER_FLAGS | FLAG_RCODE_OK);
804    
805     if ((qtype == RR_TYPE_ANY
806     || qtype == RR_TYPE_TXT
807     || qtype == RR_TYPE_NULL)
808     && qlen > dlen + 1 + HDRSIZE)
809 pcg 1.5 {
810 pcg 1.10 // correct class, domain: parse
811     int client, seqno;
812     decode_header (qname, client, seqno);
813 pcg 1.5
814 pcg 1.10 u8 data[MAXSIZE];
815     int datalen = cdc62.decode (data, qname + HDRSIZE, qlen - (dlen + 1 + HDRSIZE));
816 pcg 1.9
817 pcg 1.10 if (0 < client && client <= conns.size ())
818     {
819     connection *c = conns [client - 1];
820     dns_connection *dns = c->dns;
821     dns_rcv *rcv;
822    
823     if (dns)
824     {
825     for (vector<dns_rcv *>::iterator i = dns->rcvpq.end (); i-- != dns->rcvpq.begin (); )
826     if (SEQNO_EQ ((*i)->seqno, seqno))
827     {
828     // already seen that request: simply reply with the cached reply
829     dns_rcv *r = *i;
830    
831     printf ("DUPLICATE %d\n", htons (r->pkt->id));//D
832    
833     memcpy (pkt.at (0), r->pkt->at (0), offs = r->pkt->len);
834     pkt.id = r->pkt->id;
835     goto duplicate_request;
836     }
837    
838     // new packet, queue
839     rcv = new dns_rcv (seqno, data, datalen);
840     dns->receive_rep (rcv);
841     }
842    
843     pkt [offs++] = 0xc0; pkt [offs++] = 6 * 2; // refer to name in query section
844    
845     int rtype = dns ? dns->cfg.rrtype : RR_TYPE_A;
846 pcg 1.11 pkt [offs++] = rtype >> 8; pkt [offs++] = rtype; // type
847     pkt [offs++] = RR_CLASS_IN >> 8; pkt [offs++] = RR_CLASS_IN; // class
848 pcg 1.10 pkt [offs++] = 0; pkt [offs++] = 0;
849 pcg 1.11 pkt [offs++] = 0; pkt [offs++] = dns ? dns->cfg.def_ttl : 0; // TTL
850 pcg 1.10
851     int rdlen_offs = offs += 2;
852    
853     int dlen = (dns ? ntohs (dns->cfg.max_size) : MAX_PKT_SIZE) - offs;
854     // bind doesn't compress well, so reduce further by one label length
855     dlen -= qlen;
856    
857     if (dns)
858     {
859     while (dlen > 1 && !dns->snddq.empty ())
860     {
861     int txtlen = dlen <= 255 ? dlen - 1 : 255;
862    
863     if (txtlen > dns->snddq.size ())
864     txtlen = dns->snddq.size ();
865    
866     pkt[offs++] = txtlen;
867     memcpy (pkt.at (offs), dns->snddq.begin (), txtlen);
868     offs += txtlen;
869     dns->snddq.remove (txtlen);
870    
871     dlen -= txtlen + 1;
872     }
873    
874     // avoid empty TXT rdata
875     if (offs == rdlen_offs)
876     pkt[offs++] = 0;
877     }
878     else
879     {
880     // send RST
881     pkt [offs++] = CMD_IP_1; pkt [offs++] = CMD_IP_2; pkt [offs++] = CMD_IP_3;
882     pkt [offs++] = CMD_IP_RST;
883     }
884    
885     int rdlen = offs - rdlen_offs;
886    
887     pkt [rdlen_offs - 2] = rdlen >> 8;
888     pkt [rdlen_offs - 1] = rdlen;
889    
890     if (dns)
891     {
892     // now update dns_rcv copy
893     rcv->pkt->len = offs;
894     memcpy (rcv->pkt->at (0), pkt.at (0), offs);
895     }
896 pcg 1.9
897 pcg 1.10 duplicate_request: ;
898     }
899     else
900     pkt.flags = htons (DEFAULT_SERVER_FLAGS | FLAG_RCODE_FORMERR);
901     }
902     else if (qtype == RR_TYPE_A
903     && qlen > dlen + 1 + cdc26.encode_len (sizeof (dns_cfg)))
904     {
905     dns_cfg cfg;
906     cdc26.decode ((u8 *)&cfg, qname, cdc26.encode_len (sizeof (dns_cfg)));
907     int client = ntohs (cfg.client);
908 pcg 1.4
909 pcg 1.10 pkt [offs++] = 0xc0; pkt [offs++] = 6 * 2; // refer to name in query section
910 pcg 1.2
911 pcg 1.10 pkt [offs++] = RR_TYPE_A >> 8; pkt [offs++] = RR_TYPE_A; // type
912     pkt [offs++] = RR_CLASS_IN >> 8; pkt [offs++] = RR_CLASS_IN; // class
913     pkt [offs++] = 0; pkt [offs++] = 0;
914     pkt [offs++] = 0; pkt [offs++] = cfg.def_ttl; // TTL
915     pkt [offs++] = 0; pkt [offs++] = 4; // rdlength
916 pcg 1.2
917 pcg 1.10 slog (L_INFO, _("DNS tunnel: client %d tries to connect"), client);
918 pcg 1.2
919 pcg 1.10 pkt [offs++] = CMD_IP_1; pkt [offs++] = CMD_IP_2; pkt [offs++] = CMD_IP_3;
920     pkt [offs++] = CMD_IP_REJ;
921 pcg 1.2
922 pcg 1.10 if (0 < client && client <= conns.size ())
923 pcg 1.5 {
924 pcg 1.10 connection *c = conns [client - 1];
925 pcg 1.2
926 pcg 1.10 if (cfg.valid ())
927     {
928     pkt [offs - 1] = CMD_IP_SYN;
929    
930     delete c->dns;
931     c->dns = new dns_connection (c);
932     c->dns->cfg = cfg;
933     }
934 pcg 1.5 }
935     }
936 pcg 1.2 }
937 pcg 1.6
938 pcg 1.10 pkt.len = offs;
939 pcg 1.4 }
940     }
941    
942     void
943 pcg 1.10 vpn::dnsv4_client (dns_packet &pkt)
944 pcg 1.4 {
945 pcg 1.10 u16 flags = ntohs (pkt.flags);
946 pcg 1.4 int offs = 6 * 2; // skip header
947    
948 pcg 1.10 pkt.qdcount = ntohs (pkt.qdcount);
949     pkt.ancount = ntohs (pkt.ancount);
950 pcg 1.4
951 pcg 1.5 // go through our request list and find the corresponding request
952 pcg 1.10 for (vector<dns_snd *>::iterator i = dns_sndpq.begin ();
953 pcg 1.4 i != dns_sndpq.end ();
954     ++i)
955 pcg 1.10 if ((*i)->pkt->id == pkt.id)
956 pcg 1.4 {
957 pcg 1.9 dns_connection *dns = (*i)->dns;
958 pcg 1.5 int seqno = (*i)->seqno;
959     u8 data[MAXSIZE], *datap = data;
960    
961 pcg 1.10 if ((*i)->retry)
962     {
963     dns->send_interval *= 1.01;
964     if (dns->send_interval < MAX_SEND_INTERVAL)
965     dns->send_interval = MAX_SEND_INTERVAL;
966     }
967     else
968     {
969     dns->send_interval *= 0.99;
970     if (dns->send_interval < MIN_SEND_INTERVAL)
971     dns->send_interval = MIN_SEND_INTERVAL;
972    
973     // the latency surely puts an upper bound on
974     // the minimum send interval
975     if (dns->send_interval > NOW - (*i)->sent)
976     dns->send_interval = NOW - (*i)->sent;
977     }
978    
979 pcg 1.4 delete *i;
980     dns_sndpq.erase (i);
981    
982 pcg 1.10 if (flags & FLAG_RESPONSE && !(flags & FLAG_OP_MASK))
983 pcg 1.4 {
984     char qname[MAXSIZE];
985    
986 pcg 1.10 while (pkt.qdcount-- && offs < MAXSIZE - 4)
987 pcg 1.4 {
988 pcg 1.10 int qlen = pkt.decode_label ((char *)qname, MAXSIZE - offs, offs);
989 pcg 1.4 offs += 4; // skip qtype, qclass
990     }
991    
992 pcg 1.10 while (pkt.ancount-- && offs < MAXSIZE - 10 && datap)
993 pcg 1.4 {
994 pcg 1.10 int qlen = pkt.decode_label ((char *)qname, MAXSIZE - offs, offs);
995    
996     u16 qtype = pkt [offs++] << 8; qtype |= pkt [offs++];
997     u16 qclass = pkt [offs++] << 8; qclass |= pkt [offs++];
998     u32 ttl = pkt [offs++] << 24;
999     ttl |= pkt [offs++] << 16;
1000     ttl |= pkt [offs++] << 8;
1001     ttl |= pkt [offs++];
1002     u16 rdlen = pkt [offs++] << 8; rdlen |= pkt [offs++];
1003 pcg 1.8
1004 pcg 1.10 if (qtype == RR_TYPE_NULL || qtype == RR_TYPE_TXT)
1005     {
1006     if (rdlen <= MAXSIZE - offs)
1007     {
1008     // decode bytes, finally
1009    
1010     while (rdlen)
1011     {
1012     int txtlen = pkt [offs++];
1013 pcg 1.4
1014 pcg 1.10 assert (txtlen + offs < MAXSIZE - 1);
1015 pcg 1.4
1016 pcg 1.10 memcpy (datap, pkt.at (offs), txtlen);
1017     datap += txtlen; offs += txtlen;
1018    
1019     rdlen -= txtlen + 1;
1020     }
1021     }
1022     }
1023     else if (qtype == RR_TYPE_A)
1024 pcg 1.5 {
1025 pcg 1.10 u8 ip [4];
1026 pcg 1.5
1027 pcg 1.10 ip [0] = pkt [offs++];
1028     ip [1] = pkt [offs++];
1029     ip [2] = pkt [offs++];
1030     ip [3] = pkt [offs++];
1031    
1032     if (ip [0] == CMD_IP_1
1033     && ip [1] == CMD_IP_2
1034     && ip [2] == CMD_IP_3)
1035 pcg 1.5 {
1036 pcg 1.10 slog (L_TRACE, _("got tunnel meta command %02x"), ip [3]);
1037 pcg 1.5
1038 pcg 1.10 if (ip [3] == CMD_IP_RST)
1039     {
1040     slog (L_DEBUG, _("got tunnel RST request"));
1041    
1042     connection *c = dns->c;
1043     delete c->dns; c->dns = 0;
1044    
1045     return;
1046     }
1047     else if (ip [3] == CMD_IP_SYN)
1048     dns->established = true;
1049     else
1050     slog (L_INFO, _("got unknown meta command %02x"), ip [3]);
1051     }
1052     else
1053     slog (L_INFO, _("got spurious a record %d.%d.%d.%d"),
1054     ip [0], ip [1], ip [2], ip [3]);
1055 pcg 1.5
1056 pcg 1.10 return;
1057 pcg 1.9 }
1058 pcg 1.4
1059 pcg 1.9 int client, rseqno;
1060     decode_header (qname, client, rseqno);
1061    
1062     if (client != THISNODE->id)
1063     {
1064     slog (L_INFO, _("got dns tunnel response with wrong clientid, ignoring"));
1065     datap = 0;
1066     }
1067     else if (rseqno != seqno)
1068     {
1069     slog (L_DEBUG, _("got dns tunnel response with wrong seqno, badly caching nameserver?"));
1070     datap = 0;
1071 pcg 1.4 }
1072     }
1073     }
1074    
1075 pcg 1.6 // todo: pkt now used
1076 pcg 1.9 if (datap)
1077     dns->receive_rep (new dns_rcv (seqno, data, datap - data));
1078 pcg 1.5
1079 pcg 1.4 break;
1080     }
1081     }
1082    
1083     void
1084     vpn::dnsv4_ev (io_watcher &w, short revents)
1085     {
1086     if (revents & EVENT_READ)
1087     {
1088     dns_packet *pkt = new dns_packet;
1089     struct sockaddr_in sa;
1090     socklen_t sa_len = sizeof (sa);
1091    
1092 pcg 1.10 pkt->len = recvfrom (w.fd, pkt->at (0), MAXSIZE, 0, (sockaddr *)&sa, &sa_len);
1093 pcg 1.4
1094     if (pkt->len > 0)
1095 pcg 1.5 {
1096     if (THISNODE->dns_port)
1097     {
1098 pcg 1.10 dnsv4_server (*pkt);
1099     sendto (w.fd, pkt->at (0), pkt->len, 0, (sockaddr *)&sa, sa_len);
1100 pcg 1.5 }
1101     else
1102 pcg 1.10 dnsv4_client (*pkt);
1103    
1104     delete pkt;
1105 pcg 1.5 }
1106 pcg 1.1 }
1107     }
1108    
1109     bool
1110 pcg 1.3 connection::send_dnsv4_packet (vpn_packet *pkt, const sockinfo &si, int tos)
1111     {
1112 pcg 1.9 if (!dns)
1113     dns = new dns_connection (this);
1114 pcg 1.4
1115 pcg 1.9 if (!dns->snddq.put (pkt))
1116 pcg 1.3 return false;
1117    
1118 pcg 1.10 dns->tw.trigger ();
1119 pcg 1.3
1120     return true;
1121     }
1122    
1123 pcg 1.10 #define NEXT(w) do { if (next > (w)) next = w; } while (0)
1124    
1125 pcg 1.3 void
1126 pcg 1.9 dns_connection::time_cb (time_watcher &w)
1127 pcg 1.1 {
1128 pcg 1.10 // servers have to be polled
1129     if (THISNODE->dns_port)
1130     return;
1131    
1132 pcg 1.3 // check for timeouts and (re)transmit
1133 pcg 1.10 tstamp next = NOW + poll_interval;
1134     dns_snd *send = 0;
1135 pcg 1.3
1136 pcg 1.10 for (vector<dns_snd *>::iterator i = vpn->dns_sndpq.begin ();
1137 pcg 1.4 i != vpn->dns_sndpq.end ();
1138 pcg 1.3 ++i)
1139     {
1140 pcg 1.10 dns_snd *r = *i;
1141 pcg 1.3
1142 pcg 1.10 if (r->timeout <= NOW)
1143 pcg 1.3 {
1144 pcg 1.4 if (!send)
1145     {
1146     send = r;
1147    
1148     r->retry++;
1149 pcg 1.10 r->timeout = NOW + r->retry;
1150 pcg 1.4 }
1151 pcg 1.3 }
1152 pcg 1.11 else
1153 pcg 1.10 NEXT (r->timeout);
1154 pcg 1.3 }
1155    
1156 pcg 1.10 if (last_sent + send_interval <= NOW)
1157 pcg 1.5 {
1158 pcg 1.10 if (!send)
1159     {
1160     // generate a new packet, if wise
1161    
1162     if (!established)
1163     {
1164     if (vpn->dns_sndpq.empty ())
1165     {
1166     send = new dns_snd (this);
1167    
1168     cfg.reset (THISNODE->id);
1169     send->gen_syn_req (cfg);
1170     }
1171     }
1172     else if (vpn->dns_sndpq.size () < MAX_OUTSTANDING)
1173     {
1174     send = new dns_snd (this);
1175     send->gen_stream_req (sndseq, snddq);
1176 pcg 1.5
1177 pcg 1.10 sndseq = (sndseq + 1) & SEQNO_MASK;
1178     }
1179 pcg 1.4
1180 pcg 1.10 if (send)
1181     vpn->dns_sndpq.push_back (send);
1182     }
1183 pcg 1.4
1184 pcg 1.10 if (send)
1185     {
1186     last_sent = NOW;
1187 pcg 1.4
1188 pcg 1.10 sendto (vpn->dnsv4_fd,
1189     send->pkt->at (0), send->pkt->len, 0,
1190     vpn->dns_forwarder.sav4 (), vpn->dns_forwarder.salenv4 ());
1191     }
1192 pcg 1.4 }
1193 pcg 1.10 else
1194     NEXT (last_sent + send_interval);
1195    
1196 pcg 1.11 //printf ("pi %f si %f N %f (%d:%d)\n", poll_interval, send_interval, next - NOW, vpn->dns_sndpq.size (), snddq.size ());
1197    
1198     // TODO: no idea when this happens, but when next < NOW, we have a problem
1199     if (next < NOW + 0.0001)
1200     next = NOW + 0.1;
1201 pcg 1.4
1202 pcg 1.3 w.start (next);
1203 pcg 1.1 }
1204    
1205     #endif
1206