Masquerading for TCP and UDP requires a new checksum; added it differentially
[6bed4] / 6bed4router.c
1 /* 6bed4/router.c -- traffic forwarding daemon for public TSP service
2  *
3  * This is an implementation of the profile that makes TSP service publicly
4  * usable, that is without authentication.  However to avoid abuse of such
5  * a service, it is not anonymous -- IPv6 addresses contain the IPv4 address
6  * and port.
7  *
8  * This is an implementation of neighbour and router discovery over a
9  * tunnel that packs IPv6 inside UDP/IPv4.  This tunnel mechanism is
10  * targeted specifically at embedded devices that are to function on
11  * any network, including IPv4-only, while being designed as IPv6-only
12  * devices with a fallback to this tunnel.
13  *
14  * Interestingly, as a side-effect of this design the router daemon can be
15  * stateless.  Any further requirements that are stateful are most likely
16  * filtering, and that can be solved in stateful firewall configuration.
17  *
18  * The intention of TSP is to enable IPv4-only hosts to connecto to
19  * IPv6 services; the public TSP profile adds to that the ability to
20  * do it in a temporary manner.
21  *
22  * TODO: Should we translate ICMPv4 --> ICMPv6?
23  *
24  * From: Rick van Rein <rick@openfortress.nl>
25  */
26
27
28 #include <stdlib.h>
29 #include <stdint.h>
30 #include <stdio.h>
31 #include <stdbool.h>
32
33 #include <errno.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <getopt.h>
37 #include <fcntl.h>
38
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <sys/time.h>
42 #include <sys/select.h>
43 #include <sys/ioctl.h>
44
45 #include <netinet/in.h>
46 #include <netinet/ip.h>
47 #include <netinet/ip6.h>
48 #include <netinet/tcp.h>
49 #include <netinet/udp.h>
50 #include <netinet/icmp6.h>
51 #include <arpa/inet.h>
52
53 #include <linux/if.h>
54 #include <linux/if_tun.h>
55 #include <linux/if_ether.h>
56
57
58 /* The following will initially fail, due to an IANA obligation to avoid
59  * default builds with non-standard options.
60  */
61 #include "nonstd.h"
62
63
64 #define MTU 1280
65
66 /*
67  * The HAVE_SETUP_TUNNEL variable is used to determine whether absense of
68  * the -d option leads to an error, or to an attempt to setup the tunnel.
69  * The setup_tunnel() function used for that is defined per platform, such
70  * as for LINUX.  Remember to maintain the manpage's optionality for -d.
71  */
72 #undef HAVE_SETUP_TUNNEL
73
74
75 /* Global variables */
76
77 /* SCTP structures are far from standardised, so we define our own header */
78 struct my_sctphdr {
79         uint16_t source, dest;
80         uint32_t vtag;
81         uint32_t cksum;
82 };
83
84 char *program;
85
86 int v4sox = -1;
87 int v6sox = -1;
88
89 char *v4server = NULL;
90 char *v6server = NULL;
91 char *v6prefix = NULL;
92
93 const uint8_t v6listen_linklocal [16] = { 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
94 uint8_t v6listen_linklocal_complete [16] = { 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
95
96 uint8_t lladdr_6bed4 [6];
97
98 struct sockaddr_in  v4name;
99 struct sockaddr_in6 v6name;
100
101 struct in6_addr v6listen;
102 struct in6_addr v6listen_complete;
103 struct in_addr  v4listen;
104
105
106 struct {
107         struct tun_pi tun;
108         union {
109                 struct {
110                         struct ip6_hdr v6hdr;
111                         uint8_t data [MTU - sizeof (struct ip6_hdr)];
112                 } idata;
113                 struct {
114                         struct ip6_hdr v6hdr;
115                         union {
116                                 struct icmp6_hdr  v6icmphdr;
117                                 struct my_sctphdr v6sctphdr;
118                                 struct tcphdr     v6tcphdr ;
119                                 struct udphdr     v6udphdr ;
120                         } adata;
121                 } ndata;
122         } udata;
123 } v4data6;
124
125 #define v4tunpi6        ( v4data6.tun)
126 #define v4data          ((uint8_t *) &v4data6.udata)
127 #define v4hdr6          (&v4data6.udata.idata.v6hdr)
128 #define v4src6          (&v4data6.udata.idata.v6hdr.ip6_src)
129 #define v4dst6          (&v4data6.udata.idata.v6hdr.ip6_dst)
130
131 #define v4v6payload     ((uint16_t *) &v4data6.udata.ndata.adata)
132 #define v4v6plen        ( v4data6.udata.ndata.v6hdr.ip6_plen)
133 #define v4v6nexthdr     ( v4data6.udata.ndata.v6hdr.ip6_nxt)
134 #define v4v6hoplimit    ( v4data6.udata.ndata.v6hdr.ip6_hops)
135
136 #define v4v6icmpdata    ( v4data6.udata.ndata.adata.v6icmphdr.icmp6_data8)
137 #define v4v6icmptype    ( v4data6.udata.ndata.adata.v6icmphdr.icmp6_type)
138 #define v4v6icmpcode    ( v4data6.udata.ndata.adata.v6icmphdr.icmp6_code)
139 #define v4v6icmpcksum   ( v4data6.udata.ndata.adata.v6icmphdr.icmp6_cksum)
140
141 #define v4v6sctpsrcport ( v4data6.udata.ndata.adata.v6sctphdr.source)
142 #define v4v6sctpdstport ( v4data6.udata.ndata.adata.v6sctphdr.dest)
143 #define v4v6sctpcksum   ( v4data6.udata.ndata.adata.v6sctphdr.cksum)
144
145 #define v4v6tcpsrcport  ( v4data6.udata.ndata.adata.v6tcphdr.source)
146 #define v4v6tcpdstport  ( v4data6.udata.ndata.adata.v6tcphdr.dest)
147 #define v4v6tcpcksum    ( v4data6.udata.ndata.adata.v6tcphdr.check)
148
149 #define v4v6udpsrcport  ( v4data6.udata.ndata.adata.v6udphdr.source)
150 #define v4v6udpdstport  ( v4data6.udata.ndata.adata.v6udphdr.dest)
151 #define v4v6udpcksum    ( v4data6.udata.ndata.adata.v6udphdr.check)
152
153 #define v4ngbsoltarget  (&v4data6.udata.ndata.adata.v6icmphdr.icmp6_data8 [4])
154
155
156 struct {
157         struct tun_pi tun;
158         union {
159                 uint8_t data [MTU];
160                 struct {
161                         struct ip6_hdr v6hdr;
162                         union {
163                                 struct icmp6_hdr  v6icmphdr;
164                                 struct my_sctphdr v6sctphdr;
165                                 struct tcphdr     v6tcphdr ;
166                                 struct udphdr     v6udphdr ;
167                         } adata;
168                 } ndata;
169         } udata;
170         uint8_t zero;
171 } v6data6;
172
173 #define v6tuncmd        ( v6data6.tun)
174 #define v6data          ( v6data6.udata.data)
175 #define v6hdr6          (&v6data6.udata.ndata.v6hdr)
176 #define v6src6          (&v6data6.udata.ndata.v6hdr.ip6_src)
177 #define v6dst6          (&v6data6.udata.ndata.v6hdr.ip6_dst)
178 #define v6hoplimit      ( v6data6.udata.ndata.v6hdr.ip6_hops)
179 #define v6nexthdr       ( v6data6.udata.ndata.v6hdr.ip6_nxt)
180
181 #define v6icmptype      ( v6data6.udata.ndata.adata.v6icmphdr.icmp6_type)
182 #define v6icmpcksum     ( v6data6.udata.ndata.adata.v6icmphdr.icmp6_cksum)
183
184 #define v6sctpcksum     ( v6data6.udata.ndata.adata.v6sctphdr.cksum)
185
186 #define v6tcpcksum      ( v6data6.udata.ndata.adata.v6tcphdr.check)
187
188 #define v6udpcksum      ( v6data6.udata.ndata.adata.v6udphdr.check)
189
190
191 uint8_t router_linklocal_address [] = {
192         0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00, 0x00,
193 };
194
195 uint8_t democlient_linklocal_address [] = {
196         0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00, 0x01,
197 };
198
199 uint8_t allnodes_linklocal_address [] = {
200         0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00, 0x01,
201 };
202
203 uint8_t allrouters_linklocal_address [] = {
204         0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00, 0x02,
205 };
206
207
208
209 #ifndef MAXNUM_MASQHOST
210 #define MAXNUM_MASQHOST 4
211 #endif
212
213 uint16_t num_masqhost = 0;
214 uint8_t masqhost [MAXNUM_MASQHOST][16];
215
216 // ports for 's', 't', 'u' -- SCTP, TCP, UDP have increasing numbers
217
218 #ifndef MAXNUM_PORTPAIRS
219 #define MAXNUM_PORTPAIRS 10
220 #endif
221
222 // masqportpairs holds triples <lowport,highport,masqhostnr>
223 uint16_t num_masqportpairs [3] = { 0, 0, 0 };
224 uint16_t masqportpairs [3][3*MAXNUM_PORTPAIRS];
225
226
227
228 /*
229  *
230  * Driver routines
231  *
232  */
233
234 #ifndef INTERFACE_NAME_6BED4
235 #define INTERFACE_NAME_6BED4 "6bed4"
236 #endif
237
238 #ifdef LINUX
239 #define HAVE_SETUP_TUNNEL
240 /* Implement the setup_tunnel() command for Linux.
241  * Return 1 on success, 0 on failure.
242  */
243 int setup_tunnel (void) {
244         v6sox = open ("/dev/net/tun", O_RDWR);
245         if (v6sox == -1) {
246                 fprintf (stderr, "%s: Failed to access tunnel driver on /dev/net/tun: %s\n", program, strerror (errno));
247                 return 0;
248         }
249         int ok = 1;
250         struct ifreq ifreq;
251         memset (&ifreq, 0, sizeof (ifreq));
252         strncpy (ifreq.ifr_name, INTERFACE_NAME_6BED4, IFNAMSIZ);
253         ifreq.ifr_flags = IFF_TUN;
254         if (ok && (ioctl (v6sox, TUNSETIFF, (void *) &ifreq) == -1)) {
255                 ok = 0;
256         }
257         ifreq.ifr_name [IFNAMSIZ] = 0;
258         char cmd [512+1];
259         snprintf (cmd, 512, "/sbin/ip -6 addr flush dev %s", ifreq.ifr_name);
260         if (ok && system (cmd) != 0) {
261                 ok = 0;
262         }
263         snprintf (cmd, 512, "/sbin/ip addr add fe80::0 dev %s scope link", ifreq.ifr_name);
264         if (ok && system (cmd) != 0) {
265                 ok = 0;
266         }
267         snprintf (cmd, 512, "/sbin/ip -6 addr add %s dev %s", v6prefix, ifreq.ifr_name);
268         if (ok && system (cmd) != 0) {
269                 ok = 0;
270         }
271         snprintf (cmd, 512, "/sbin/ip link set %s up mtu 1280", ifreq.ifr_name);
272         if (ok && system (cmd) != 0) {
273                 ok = 0;
274         }
275         if (!ok) {
276                 close (v6sox);  /* This removes the tunnel interface */
277                 fprintf (stderr, "Failed to setup tunnel \"%s\"\n", INTERFACE_NAME_6BED4);
278         }
279         return ok;
280 }
281 #endif /* LINUX */
282
283
284 /*
285  *
286  * Utility functions
287  *
288  */
289
290
291 /* Produce an IPv6 address following the 6bed4 structures.
292  *  - The top half is taken from v6listen
293  *  - The bottom contains IPv4 address and port from v4name
294  *  - The last 14 bits are filled with the lanip parameter
295  */
296 void addr_6bed4 (struct in6_addr *dst_ip6, uint16_t lanip) {
297         memcpy (&dst_ip6->s6_addr [0], &v6listen, 8);
298         dst_ip6->s6_addr32 [2] = v4name.sin_addr.s_addr;
299         dst_ip6->s6_addr16 [6] = v4name.sin_port;
300         dst_ip6->s6_addr  [14] = ((dst_ip6->s6_addr [8] & 0x03) << 6)
301                                | ((lanip >> 8) & 0x3f);
302         dst_ip6->s6_addr  [15] = (lanip & 0xff);
303         dst_ip6->s6_addr  [8] &= 0xfc;
304 }
305
306 /* Calculate the ICMPv6 checksum field
307  */
308 uint16_t icmp6_checksum (struct in6_addr *src6, struct in6_addr *dst6,
309                                 uint16_t *payload, size_t payloadlen) {
310         uint16_t plenword = htons (payloadlen); // our ICMPv6 is small
311         uint16_t nxthword = htons (IPPROTO_ICMPV6);
312         uint16_t *area [] = { src6->s6_addr16, dst6->s6_addr16,
313                                 &plenword, &nxthword,
314                                 payload, &payload [2] };
315         uint8_t areawords [] = { 8, 8, 1, 1, 1, (payloadlen >> 1) - 2 };
316         uint32_t csum = 0;
317         u_int8_t i, j;
318         for (i=0; i < 6; i++) {
319                 for (j=0; j<areawords [i]; j++) {
320                         csum += ntohs (area [i] [j]);
321                 }
322         }
323         csum = (csum & 0xffff) + (csum >> 16);
324         csum = (csum & 0xffff) + (csum >> 16);
325         csum = htons (~csum);
326         return csum;
327 }
328
329
330 /* Mangle a packet by replacing an IPv6 address, correcting the checksum.
331  * In all of ICMPv6, UDPv6, TCPv6, SCTPv6, the checksumming is a 1's cpl
332  * of a sum of 16-bit words; the position of the words don't matter and
333  * we can subtract the old address' words and add the new address' words.
334  * Or, as a result of the one's complement, the opposite.  There is some
335  * inclusion of the top half of a 32-bit sum, but that is also neutral.
336  */
337 void masquerade_address (struct in6_addr *var,
338                         const struct in6_addr *new,
339                         uint16_t *csum_field) {
340         int32_t csum = ntohs (~*csum_field);
341         uint8_t i;
342         for (i=0; i<8; i++) {
343                 csum -= ntohs (var->s6_addr16 [i]);
344                 var->s6_addr16 [i] = new->s6_addr16 [i];
345                 csum += ntohs (var->s6_addr16 [i]);
346         }
347         csum = (csum & 0xffff) + (csum >> 16);
348         csum = (csum & 0xffff) + (csum >> 16);
349         *csum_field = htons (~csum);
350 }
351
352
353 /* Send an ICMPv6 reply.  This is constructed at the tunnel end, from
354  * the incoming message.  The parameter indicates how many bytes the
355  * ICMPv6 package counts after the ICMPv6 header.  It must be 4 (mod 8).
356  *
357  * Actions: v4/udp src becomes dest, set v4/udp/v6 src, len, cksum, send.
358  *          reply is always to v4src6, except that if it starts with
359  *          0x00,0x00 it will be replaced with allnodes_linklocal_address.
360  */
361 void icmp6_reply (size_t icmp6bodylen) {
362         v4v6hoplimit = 255;
363         if ((icmp6bodylen & 0x07) != 4) {
364                 return;   /* illegal length, drop */
365         }
366         v4v6plen = htons (icmp6bodylen + 4);
367         memcpy (v4dst6,
368                 (v4src6->s6_addr16 [0])
369                         ? (uint8_t *) v4src6
370                         : allnodes_linklocal_address,
371                 16);
372         memcpy (v4src6, router_linklocal_address, 16);
373         v4v6icmpcksum = icmp6_checksum (v4src6, v4dst6,
374                                 v4v6payload, ntohs (v4v6plen));
375         //
376         // Send the message to the IPv4 originator port
377 printf ("Sending ICMPv6-IPv6-UDP-IPv4 to %d.%d.%d.%d:%d, result = %zd\n",
378 ((uint8_t *) &v4name.sin_addr.s_addr) [0],
379 ((uint8_t *) &v4name.sin_addr.s_addr) [1],
380 ((uint8_t *) &v4name.sin_addr.s_addr) [2],
381 ((uint8_t *) &v4name.sin_addr.s_addr) [3],
382 ntohs (v4name.sin_port),
383         sendto (v4sox,
384                         v4data,
385                         sizeof (struct ip6_hdr) + 4 + icmp6bodylen,
386                         MSG_DONTWAIT,
387                         (struct sockaddr *) &v4name, sizeof (v4name)));
388 }
389
390
391 /* Append the current prefix to an ICMPv6 message.  Incoming optidx
392  * and return values signify original and new offset for ICMPv6 options.
393  * The endlife parameter must be set to obtain zero lifetimes, thus
394  * instructing the tunnel client to stop using an invalid prefix.
395  */
396 size_t icmp6_prefix (size_t optidx, uint8_t endlife) {
397         v4v6icmpdata [optidx++] = 3;    // Type
398         v4v6icmpdata [optidx++] = 4;    // Length
399         v4v6icmpdata [optidx++] = 114;  // This is a /114 prefix
400         v4v6icmpdata [optidx++] = 0xc0; // L=1, A=1, Reserved1=0
401         memset (v4v6icmpdata + optidx, endlife? 0x00: 0xff, 8);
402         optidx += 8;
403                                         // Valid Lifetime: Zero / Infinite
404                                         // Preferred Lifetime: Zero / Infinite
405         memset (v4v6icmpdata + optidx, 0, 4);
406         optidx += 4;
407                                         // Reserved2=0
408         addr_6bed4 ((struct in6_addr *) (v4v6icmpdata + optidx), 0);
409                                         // Set IPv6 prefix
410         optidx += 16;
411         return optidx;
412 }
413
414
415 /*
416  * TODO: DEPRECATED
417  *
418  * Append a Destination Link-Layer Address Option to an ICMPv6
419  * message.  The address is comprised from the remote's UDP port
420  * and IPv4 address, as seen by the router.  They are supplied
421  * in that order, in network byte order.  The resulting address
422  * is 6 bytes, but even though that makes it look like a MAC
423  * address, it really is another beast.
424  * Note that no effort is made in the router to recognise the
425  * "illegal port number" 0x3333 -- the client needs a message
426  * and will recognise it and act on it.
427  */
428 size_t icmp6_dest_linkaddr (size_t optidx) {
429         uint8_t typelen [2] = { ND_OPT_DESTINATION_LINKADDR, 1 };
430         memcpy (v4v6icmpdata + optidx + 0, &typelen, 2);
431         v4v6icmpdata [optidx + 2] = ntohs (v4name.sin_port) & 0xff;
432         v4v6icmpdata [optidx + 3] = ntohs (v4name.sin_port) >> 8;
433         memcpy (v4v6icmpdata + optidx + 4, &v4name.sin_addr, 4);
434         optidx += 8;
435         return optidx;
436 }
437
438
439 /*
440  * Test if an address is a local override.  This function is compiled-in
441  * to support hosts with a /64 from their own ISP and nothing more; they
442  * need to access local IPv6 addresses.  We rely on the 6bed4 port being
443  * 0 to decide that an address cannot be anything but a local override.
444  * Define LOCAL_OVERRIDES_PORT0 to enable this feature.
445  */
446 #ifdef LOCAL_OVERRIDES_PORT0
447 static inline bool is_local_override (struct in6_addr *ip6) {
448         return (ip6->s6_addr16 [6] == 0) && (memcmp (ip6->s6_addr, &v6listen, 8) == 0);
449 }
450 #else
451 #define is_local_override(_) false
452 #endif
453
454
455 /*
456  * Test if the provided IPv6 address matches the prefix used for 6bed4.
457  *TODO: This is oversimplistic, it only cares for the Hetzner /64
458  */
459 static inline bool is_6bed4 (struct in6_addr *ip6) {
460         return memcmp (&v6listen, ip6->s6_addr, 8) == 0;
461 }
462
463 /* Test if the provided IPv6 address matches the fc64::/16 prefix.
464  * If so, the traffic may be bounced using 6bed4 traffic, but it
465  * must not be relayed to the native IPv6 side.
466  * TODO: Perhaps allow only configured <netid>, so fc64:<netid>::/32
467  */
468 static inline bool is_fc64 (struct in6_addr *ip6) {
469         return ip6->s6_addr16 [0] == htons (0xfc64);
470 }
471
472 /* Test if the src and destination share the same /114 and the destination
473  * fills up the rest with zero bits; in other words, test that this is a
474  * package targeted from a 6bed4peer node to its 6bed4router.  This is used
475  * to distinguish special ICMPv6 messages, as well as masquerading targets.
476  */
477 static inline bool is_mine (struct in6_addr *src6, struct in6_addr *dst6) {
478         return ((dst6->s6_addr [15] == 0x00)
479                 && ((dst6->s6_addr [14] & 0x3f) == 0x00)
480                 && (memcmp (dst6->s6_addr, src6->s6_addr, 14) == 0));
481 }
482
483
484 /*
485  * Validate the originator's IPv6 address.  It should match the
486  * UDP/IPv4 coordinates of the receiving 6bed4 socket.  Also,
487  * the /64 prefix (but not the /114 prefix!) must match v6listen.
488  */
489 bool validate_originator (struct in6_addr *ip6) {
490         uint32_t addr;
491         //
492         // Require non-local top halves to match our v6listen_linklocal address
493         // We will enforce our own fallback address (and fc64:<netid>::/32)
494         if (memcmp (ip6, v6listen_linklocal, 8) != 0) {
495                 if (memcmp (&v6listen, ip6->s6_addr, 8) != 0) {
496                         return false;
497                 }
498         }
499         //
500         // Require the sender port to appear in its IPv6 address
501         if (v4name.sin_port != ip6->s6_addr16 [6]) {
502                 return false;
503         }
504         //
505         // Require the sender address to appear in its IPv6 address
506         addr = ntohl (ip6->s6_addr32 [2]) & 0xfcffffff;
507         addr |= ((uint32_t) (ip6->s6_addr [14] & 0xc0)) << (24-6);
508         if (addr != ntohl (v4name.sin_addr.s_addr)) {
509                 return false;
510         }
511         //
512         // We passed with flying colours
513         return true;
514 }
515
516
517
518 /*
519  * Given a protocol and a port number, locate the masqhost that would match.
520  * The protocol is 0 for SCTP, 1 for TCP, 2 for UDP (alphabetic sequence).
521  * Returns a pointer to the address or NULL if not found.
522  */
523 uint8_t *protoport2masqhost (uint8_t proto, uint16_t port) {
524         //NOTUSED// TODO:IMPLEMENT
525         return NULL;
526 }
527
528
529
530 /*
531  * Major packet processing functions
532  */
533
534
535 /*
536  * Respond to a Router Solicitation received over the 6bed4 Network.
537  */
538 void handle_6bed4_router_solicit (void) {
539         struct in6_addr observed;
540         v4v6icmptype = ND_ROUTER_ADVERT;
541         v4v6icmpdata [0] = 0;                   // Cur Hop Limit: unspec
542         v4v6icmpdata [1] = 0x18;                // M=0, O=0
543                                                 // H=0, Prf=11=Low
544                                                 // Reserved=0
545 // TODO: wire says 0x44 for router_adv.flags
546         size_t writepos = 2;
547         memset (v4v6icmpdata+writepos, 0xff, 2+4+4);
548                                         // Router Lifetime: max, 18.2h
549                                         // Reachable Time: max
550                                         // Retrans Timer: max
551         writepos += 2+4+4;
552         writepos = icmp6_prefix (writepos, 0);
553         icmp6_reply (writepos);
554 }
555
556
557 /* Handle the IPv4 message pointed at by msg as a neighbouring command.
558  *
559  * Type Code    ICMPv6 meaning                  Handling
560  * ---- ----    -----------------------------   ----------------------------
561  * 133  0       Router Solicitation             Send Router Advertisement
562  * 134  0       Router Advertisement            Ignore
563  * 135  0       Neighbour Solicitation          Send Neighbour Advertisement
564  * 136  0       Neighbour Advertisement         Ignore
565  * 137  0       Redirect                        Ignore
566  */
567 void handle_4to6_nd (ssize_t v4ngbcmdlen) {
568         uint16_t srclinklayer;
569         if (v4ngbcmdlen < sizeof (struct ip6_hdr) + sizeof (struct icmp6_hdr)) {
570                 return;
571         }
572         if (v4v6icmpcode != 0) {
573                 return;
574         }
575         if (icmp6_checksum (v4src6, v4dst6,
576                                 v4v6payload, v4ngbcmdlen-sizeof (struct ip6_hdr)
577                         ) != v4v6icmpcksum) {
578                 return;
579         }
580         //
581         // Approved.  Perform neighbourly courtesy.
582         switch (v4v6icmptype) {
583         case ND_ROUTER_SOLICIT:
584                 //
585                 // Validate Router Solicitation
586                 srclinklayer = 0;
587                 if (v4ngbcmdlen == sizeof (struct ip6_hdr) + 8 + 8) {
588                         // One option is possible, the source link-layer address
589                         if (v4v6icmpdata [4] != 1 || v4v6icmpdata [5] != 1) {
590                                 break;   /* bad opton, ignore */
591                         }
592                         // The source link-layer address is end-aligned
593                         srclinklayer = (v4v6icmpdata [10] << 8) | v4v6icmpdata [11];
594                         if (srclinklayer == 0) {
595                                 break;   /* illegal, ignore */
596                         }
597                 } else if (v4ngbcmdlen == sizeof (struct ip6_hdr) + 8) {
598                         srclinklayer = 0;   /* set for latter filling */
599                 } else {
600                         break;   /* illegal length, drop */
601                 }
602                 //
603                 // Having accepted the Router Advertisement, respond
604                 handle_6bed4_router_solicit ();
605                 break;
606         case ND_NEIGHBOR_SOLICIT:
607                 //
608                 // Validate Neigbour Solicitation
609                 if (!validate_originator (v4src6)) {
610                         break;  /* bad source address, drop */
611                 }
612                 if ((v4ngbcmdlen != sizeof (struct ip6_hdr) + 24) &&
613                     (v4ngbcmdlen != sizeof (struct ip6_hdr) + 24 + 8)) {
614                         break;   /* funny length, drop */
615                 }
616                 if ((memcmp (v4ngbsoltarget, v6listen_linklocal, 16) != 0) &&
617                     (memcmp (v4ngbsoltarget, v6listen_linklocal_complete, 16) != 0) &&
618                     (memcmp (v4ngbsoltarget, &v6listen_complete, 16) != 0)) {
619                         break;  /* target not known here, drop */
620                 }
621                 //
622                 // Construct Neigbour Advertisement
623                 v4v6icmptype = ND_NEIGHBOR_ADVERT;
624                 v4v6icmpdata [0] = 0xc0;
625                 v4v6icmpdata [1] =
626                 v4v6icmpdata [2] =
627                 v4v6icmpdata [3] = 0x00;        // R=1, S=1, O=1, Reserved=0
628                 memcpy (v4v6icmpdata +  4, &v6listen_complete, 16);
629                 // Append option: the target link-layer address
630                 // Note: wire does not include target link-layer address
631                 v4v6icmpdata [20] = 2;          // Type: Target Link-Layer Addr
632                 v4v6icmpdata [21] = 1;          // Length: 1x 8 bytes
633                 memcpy (v4v6icmpdata + 22, lladdr_6bed4, 6);
634                 icmp6_reply (28);       // 28 is the ICMPv6 response length
635                 break;
636         case ND_ROUTER_ADVERT:
637         case ND_NEIGHBOR_ADVERT:
638         case ND_REDIRECT:
639                 break;   /* drop */
640         }
641 }
642
643
644 /*
645  * Forward a message to the masquerading target, or drop it.  This is done
646  * with non-6bed4 packets that are sent from a 6bed4peer node to its
647  * 6bed4router address; see is_mine() for the definition.  The general idea
648  * is that the address that is to be masqueraded can later be reconstructed
649  * from the 6bed4peer's address.
650  */
651 void handle_4to6_masquerading (ssize_t v4datalen) {
652         fprintf (stderr, "Traffic to 6bed4router may be fit for masquerading\n");
653         uint16_t *portpairs = NULL;
654         uint16_t numpairs = 0;
655         uint16_t port = 0;
656         uint16_t *csum_field = NULL;
657         switch (v4v6nexthdr) {
658 #ifdef CHECKSUM_SCTP_WOULD_BE_LIKE_FOR_OTHERS
659         case IPPROTO_SCTP:
660                 portpairs = masqportpairs [0];  // 's'
661                 numpairs  = num_masqportpairs [0];
662                 port = ntohs (v4v6sctpdstport);
663                 csum_field = &v4v6sctpcksum;
664                 break;
665 #endif
666         case IPPROTO_TCP:
667                 portpairs = masqportpairs [1];  // 't'
668                 numpairs  = num_masqportpairs [1];
669                 port = ntohs (v4v6tcpdstport);
670                 csum_field = &v4v6tcpcksum;
671                 break;
672         case IPPROTO_UDP:
673                 portpairs = masqportpairs [2];  // 'u'
674                 numpairs  = num_masqportpairs [2];
675                 port = ntohs (v4v6udpdstport);
676                 csum_field = &v4v6udpcksum;
677                 break;
678         //TODO// ICMPv6
679         default:
680                 break;
681         }
682         fprintf (stderr, "DEBUG: Looking for masquerading of port %d in %d entries\n", port, numpairs);
683         while (numpairs-- > 0) {
684                 if ((port >= portpairs [0]) && (port <= portpairs [1])) {
685                         //
686                         // Replace masqueraded address by 6bed4router's
687                         fprintf (stderr, "DEBUG: Passing traffic to masquerading address number %d\n", portpairs [2]);
688                         masquerade_address (v4dst6,
689                                 (struct in6_addr *) masqhost [portpairs [2]],
690                                 csum_field);
691                         //
692                         // Forward immediately, and return from this function
693 printf ("Writing Masqueraded IPv6, result = %zd\n",
694                         write (v6sox, &v4data6, sizeof (struct tun_pi) + v4datalen));
695                         return;
696                 }
697                 portpairs += 3;
698         }
699         //
700         // Silently skip the offered packet
701 }
702
703
704 /* 
705  * Forward a message received over the 6bed4 Network over IPv6.
706  * Note that existing checksums will work well, as only the
707  * Hop Limit has been altered, and this is not part of the
708  * checksum calculations.
709  */
710 void handle_4to6_plain_unicast (ssize_t v4datalen) {
711 printf ("Writing IPv6, result = %zd\n",
712         write (v6sox, &v4data6, sizeof (struct tun_pi) + v4datalen));
713 }
714
715
716 /*
717  * Forward a 6bed4 message to another 6bed4 destination address.
718  * Local address prefixes fc64:<netid>:<ipv4>::/64 are also relayed.
719  * Note that existing checksums will work well, as only the
720  * Hop Limit has been altered, and this is not part of the
721  * checksum calculations.
722  */
723 void relay_4to4_plain_unicast (uint8_t* data, ssize_t v4datalen, struct in6_addr *ip6) {
724         v4name.sin_port = htons (ip6->s6_addr [12] << 8 | ip6->s6_addr [13]);
725         uint8_t *addr = (uint8_t *) &v4name.sin_addr.s_addr;
726         addr [0] = (ip6->s6_addr [8] & 0xfc) | ip6->s6_addr [14] >> 6;
727         memcpy (addr + 1, ip6->s6_addr + 9, 3);
728 printf ("Relaying over 6bed4 Network to %d.%d.%d.%d:%d, result = %zd\n",
729 ((uint8_t *) &v4name.sin_addr.s_addr) [0],
730 ((uint8_t *) &v4name.sin_addr.s_addr) [1],
731 ((uint8_t *) &v4name.sin_addr.s_addr) [2],
732 ((uint8_t *) &v4name.sin_addr.s_addr) [3],
733 ntohs (v4name.sin_port),
734         sendto (v4sox,
735                         data, v4datalen,
736                         MSG_DONTWAIT,
737                         (struct sockaddr *) &v4name, sizeof (v4name)));
738 }
739
740
741 /* Receive a tunnel package, and route it to either the handler for the
742  * tunnel protocol, or to the handler that checks and then unpacks the
743  * contained IPv6.
744  */
745 void handle_4to6 (void) {
746         uint8_t buf [1501];
747         ssize_t buflen;
748         socklen_t adrlen = sizeof (v4name);
749         //
750         // Receive IPv4 package, which may be tunneled or a tunnel request
751         buflen = recvfrom (v4sox,
752                         v4data, MTU,
753                         MSG_DONTWAIT,
754                         (struct sockaddr *) &v4name, &adrlen
755                 );
756         if (buflen == -1) {
757                 printf ("%s: Error receiving IPv4-side package: %s",
758                                 program, strerror (errno));
759                 return;
760         }
761         if (buflen < sizeof (struct ip6_hdr)) {
762                 return;
763         }
764         if ((v4data [0] & 0xf0) != 0x60) {
765                 // Not an IPv6 packet
766                 return;
767         }
768         //
769         // Handle the tunneled IPv6 package (dependent on its class)
770         if ((v4v6nexthdr == IPPROTO_ICMPV6) &&
771                         (v4v6icmptype >= 133) && (v4v6icmptype <= 137)) {
772                 //
773                 // Not Plain: Router Adv/Sol, Neighbor Adv/Sol, Redirect
774                 if (v4v6hoplimit != 255) {
775                         return;
776                 }
777                 handle_4to6_nd (buflen);
778         } else if (is_mine (v4src6, v4dst6)) {
779                 handle_4to6_masquerading (buflen);
780         } else if ((v4dst6->s6_addr [0] != 0xff) && !(v4dst6->s6_addr [8] & 0x01)) {
781                 //
782                 // Plain Unicast
783                 if (is_local_override (v4dst6)) {
784                         handle_4to6_plain_unicast (buflen);
785                 } else if (validate_originator (v4src6)) {
786                         if (v4v6hoplimit-- <= 1) {
787                                 return;
788                         }
789                         if (is_6bed4 (v4dst6) || is_fc64 (v4dst6)) {
790                                 relay_4to4_plain_unicast (v4data, buflen, v4dst6);
791                         } else {
792                                 handle_4to6_plain_unicast (buflen);
793                         }
794                 } else if (is_6bed4 (v4src6)) {
795                         // The sender must not have kept NAT/firewall holes
796                         // open and should be instructed about a change in
797                         // its 6bed4 Link-Local Address.
798                         handle_6bed4_router_solicit ();
799                 }
800         } else {
801                 //
802                 // Plain Multicast
803                 //OPTIONAL// validate_originator, hoplimit, relay_mcast.
804                 return;
805         }
806 }
807
808
809 /* Receive an IPv6 package, check its address and pickup IPv4 address and
810  * port, then package it as a tunnel message and forward it to IPv4:port.
811  */
812 void handle_6to4 (void) {
813         uint16_t mqh;
814         //
815         // Receive the IPv6 package and ensure a consistent size
816         size_t rawlen = read (v6sox, &v6data6, sizeof (v6data6));
817         if (rawlen == -1) {
818                 return;         /* error reading, drop */
819         }
820         if (rawlen < sizeof (struct tun_pi) + sizeof (struct ip6_hdr) + 1) {
821                 return;         /* too small, drop */
822         }
823         if (v6tuncmd.proto != htons (ETH_P_IPV6)) {
824                 return;         /* no IPv6, drop */
825         }
826         if ((v6nexthdr == IPPROTO_ICMPV6) &&
827                         (v6icmptype >= 133) && (v6icmptype <= 137)) {
828                 return;         /* not plain IPv6, drop */
829         }
830         if (v6hoplimit-- <= 1) {
831                 // TODO: Send back an ICMPv6 error message
832                 return;         /* hop limit exceeded, drop */
833         }
834         if ((v6dst6->s6_addr [0] == 0xff) /* TODO:UDP_PORT_NOT_YET_FORCED_TO_EVEN || (v6dst6->s6_addr [8] & 0x01) */ ) {
835 printf ("Received multicast IPv6 data, flags=0x%04x, proto=0x%04x\n", v6tuncmd.flags, v6tuncmd.proto);
836                 //OPTIONAL// handle_6to4_plain_multicast ()
837                 return;         /* multicast, drop */
838         }
839 printf ("Received plain unicast IPv6 data, flags=0x%04x, proto=0x%04x\n", v6tuncmd.flags, v6tuncmd.proto);
840         //
841         // Replace masqueraded addresses configured with -m and its default ::1
842         //TODO// Better use the port number to find the find the masqhost
843         for (mqh=0; mqh<num_masqhost; mqh++) {
844                 if (memcmp (v6src6, masqhost [mqh], 16) == 0) {
845 printf ("Masqueraded sender address in 6to4 set to the client's 6bed4router address\n");
846                         uint16_t *csum_field = NULL;
847                         struct in6_addr masq_src;
848                         switch (v6nexthdr) {
849 #ifdef CHECKSUM_SCTP_WOULD_BE_LIKE_FOR_OTHERS
850                         case IPPROTO_SCTP:
851                                 csum_field = &v6sctpcksum;
852                                 break;
853 #endif
854                         case IPPROTO_TCP:
855                                 csum_field = &v6tcpcksum;
856                                 break;
857                         case IPPROTO_UDP:
858                                 csum_field = &v6udpcksum;
859                                 break;
860                         case IPPROTO_ICMPV6:
861                                 csum_field = &v6icmpcksum;
862                                 break;
863                         default:
864                                 continue;
865                         }
866                         //
867                         // Construct v6src6 from v6dst6, ending in 14 zero bits
868                         memcpy (&masq_src, v6dst6, 16);
869                         masq_src.s6_addr16 [7] &= htons (0xc000);
870                         fprintf (stderr, "Masquerading cksum.old = 0x%04x, ", ntohs (*csum_field));
871                         masquerade_address (v6src6, &masq_src, csum_field);
872                         fprintf (stderr, "cksum.new = 0x%04x\n", ntohs (*csum_field));
873                         break;
874                 }
875         }
876         //
877         // Ensure that the incoming IPv6 address is properly formatted
878         // Note that this avoids access to ::1/128, fe80::/10, fec0::/10
879 #ifndef TODO_PERMIT_BOUNCE_FOR_32BIT_PREFIX
880         if (memcmp (v6dst6, &v6listen, 8) != 0) {
881                 return;
882         }
883 #else
884         if (v6dst6->s6_addr32 [0] != v6listen.s6_addr32 [0]) {
885                 // Mismatch /32 so this is not going to fly (anywhere)
886                 return;
887         } else if (v6dst6->s6_addr32 [1] != v6listen.s6_addr32 [1]) {
888                 // Match /32 but mismatch /64 -- relay to proper fallback
889                 // that fc64::/16 is not welcome in 6to4 processing
890                 //TODO//OVER_6bed4// relay_6to6_plain_unicast (v6data, rawlen - sizeof (struct tun_pi), v6dst6);
891         }
892 #endif
893         //
894         // Harvest socket address data from destination IPv6, then send
895         relay_4to4_plain_unicast (v6data, rawlen - sizeof (struct tun_pi), v6dst6);
896 }
897
898
899 /* Run the daemon core code, passing information between IPv4 and IPv6 and
900  * responding to tunnel requests if so requested.
901  */
902 void run_daemon (void) {
903         fd_set io;
904         FD_ZERO (&io);
905         FD_SET (v4sox, &io);
906         FD_SET (v6sox, &io);
907         int nfds = (v4sox < v6sox)? (v6sox + 1): (v4sox + 1);
908         while (1) {
909                 select (nfds, &io, NULL, NULL, NULL);
910                 if (FD_ISSET (v4sox, &io)) {
911                         handle_4to6 ();
912                 } else {
913                         FD_SET (v4sox, &io);
914                 }
915                 if (FD_ISSET (v6sox, &io)) {
916                         handle_6to4 ();
917                 } else {
918                         FD_SET (v6sox, &io);
919                 }
920 fflush (stdout);
921         }
922 }
923
924
925 /* Option descriptive data structures */
926
927 char *short_opt = "l:L:d:hit:u:s:m:";
928
929 struct option long_opt [] = {
930         { "v4listen", 1, NULL, 'l' },
931         { "v6prefix", 1, NULL, 'L' },
932         { "tundev", 1, NULL, 'd' },
933         { "help", 0, NULL, 'h' },
934         { "icmp", 0, NULL, 'i' },
935         { "tcp", 1, NULL, 't' },
936         { "udp", 1, NULL, 'u' },
937         { "sctp", 1, NULL, 's' },
938         { "masqhost", 1, NULL, 'm' },
939         // { "fallback4", 1 NULL, 'f' },
940         // { "fallback6", 1, NULL, 'F' },
941         { NULL, 0, NULL, 0 }    /* Array termination */
942 };
943
944 /* Parse commandline arguments (and start to process them).
945  * Return 1 on success, 0 on failure.
946  */
947 int process_args (int argc, char *argv []) {
948         int ok = 1;
949         int help = (argc == 1);
950         int done = 0;
951         int opt;
952         while (!done) {
953                 switch (opt = getopt_long (argc, argv, short_opt, long_opt, NULL)) {
954                 case -1:
955                         done = 1;
956                         if (optind != argc) {
957                                 fprintf (stderr, "%s: Extra arguments not permitted: %s...\n", program, argv [optind]);
958                                 ok = 0;
959                         }
960                         break;
961                 case 'l':
962                         if (v4sox != -1) {
963                                 ok = 0;
964                                 fprintf (stderr, "%s: Only one -l argument is permitted\n", program);
965                                 break;
966                         }
967                         v4server = optarg;
968                         if (inet_pton (AF_INET, optarg, &v4name.sin_addr) <= 0) {
969                                 ok = 0;
970                                 fprintf (stderr, "%s: Failed to parse IPv4 address %s\n", program, optarg);
971                                 break;
972                         }
973                         memcpy (&v4listen, &v4name.sin_addr, 4);
974                         v4sox = socket (AF_INET, SOCK_DGRAM, 0);
975                         if (v4sox == -1) {
976                                 ok = 0;
977                                 fprintf (stderr, "%s: Failed to allocate UDPv4 socket: %s\n", program, strerror (errno));
978                                 break;
979                         }
980                         if (bind (v4sox, (struct sockaddr *) &v4name, sizeof (v4name)) != 0) {
981                                 ok = 0;
982                                 fprintf (stderr, "%s: Failed to bind to UDPv4 %s:%d: %s\n", program, optarg, ntohs (v4name.sin_port), strerror (errno));
983                                 break;
984                         }
985                         break;
986                 case 'L':
987                         if (v6server) {
988                                 ok = 0;
989                                 fprintf (stderr, "%s: Only one -L argument is permitted\n", program);
990                                 break;
991                         }
992                         char *slash64 = strchr (optarg, '/');
993                         if (!slash64 || strcmp (slash64, "/64") != 0) {
994                                 ok = 0;
995                                 fprintf (stderr, "%s: The -L argument must be an explicit /64 prefix and not %s\n", program, slash64? slash64: "implied");
996                                 break;
997                         }
998                         *slash64 = 0;
999                         v6server = strdup (optarg);
1000                         *slash64 = '/';
1001                         v6prefix = optarg;
1002                         if (!v6server || (inet_pton (AF_INET6, v6server, &v6listen) <= 0)) {
1003                                 ok = 0;
1004                                 fprintf (stderr, "%s: Failed to parse IPv6 prefix %s\n", program, optarg);
1005                                 break;
1006                         }
1007                         if (v6listen.s6_addr32 [2] || v6listen.s6_addr32 [3]) {
1008                                 ok = 0;
1009                                 fprintf (stderr, "%s: IPv6 prefix contains bits beyond its /64 prefix: %s\n", program, optarg);
1010                                 break;
1011                         }
1012                         break;
1013                 case 'd':
1014                         if (v6sox != -1) {
1015                                 ok = 0;
1016                                 fprintf (stderr, "%s: Multiple -d arguments are not permitted\n", program);
1017                                 break;
1018                         }
1019                         v6sox = open (optarg, O_RDWR);
1020                         if (v6sox == -1) {
1021                                 ok = 0;
1022                                 fprintf (stderr, "%s: Failed to open tunnel device %s: %s\n", program, optarg, strerror (errno));
1023                                 break;
1024                         }
1025                         break;
1026                 case 's':
1027                 case 't':
1028                 case 'u':
1029                         // Masqueraded port (range) for SCTP, TCP, UDP
1030                         //TODO// Should we support ICMPv6 as well? [honeypots]
1031                         if (num_masqhost == 0) {
1032                                 //TODO// Reference v6listen instead of ::1
1033                                 inet_pton (AF_INET6, "::1", masqhost [0]);
1034                                 num_masqhost = 1;
1035                         }
1036                         // Temporary variables in local scope
1037                         {
1038                                 unsigned long fromport, toport;
1039                                 uint16_t *portpairs;
1040                                 errno = 0;
1041                                 if (*optarg != ':') {
1042                                         fromport = strtoul (optarg, &optarg, 10);
1043                                 } else {
1044                                         fromport = 1;
1045                                 }
1046                                 if (*optarg != ':') {
1047                                         toport = fromport;
1048                                 } else if (*++optarg) {
1049                                         toport = strtoul (optarg, &optarg, 10);
1050                                 } else {
1051                                         toport = 65535;
1052                                 }
1053                                 if (errno || *optarg) {
1054                                         fprintf (stderr, "%s: Failed to parse port or port:port\n", program);
1055                                         ok = 0;
1056                                         break;
1057                                 }
1058                                 if ((fromport < 1) || (fromport > toport) || (toport > 65535)) {
1059                                         fprintf (stderr, "%s: Invalid port or port range\n", program);
1060                                         ok = 0;
1061                                         break;
1062                                 }
1063                                 if (++num_masqportpairs [opt-'s'] >= MAXNUM_PORTPAIRS) {
1064                                         fprintf (stderr, "%s: You cannot define so many ports / port pairs\n", program);
1065                                         ok = 0;
1066                                         break;
1067                                 }
1068                                 portpairs = &masqportpairs [opt-'s'][3*(num_masqportpairs [opt-'s']-1)];
1069                                 portpairs [0] = fromport;
1070                                 portpairs [1] = toport;
1071                                 portpairs [2] = num_masqhost-1;
1072                         }
1073                         break;
1074                 case 'm':
1075                         // Masqueraded host for TCP, UDP, SCTP (default is ::1)
1076                         if (++num_masqhost >= MAXNUM_MASQHOST) {
1077                                 fprintf (stderr, "%s: No more than %d masquering hosts can be specified\n", program, MAXNUM_MASQHOST);
1078                                 ok = 0;
1079                                 break;
1080                         }
1081                         if (inet_pton (AF_INET6, optarg, masqhost [num_masqhost]) != 1) {
1082                                 fprintf (stderr, "%s: Unsupported masquerading host \"%s\"\n", program, optarg);
1083                                 ok = 0;
1084                                 break;
1085                         }
1086                         num_masqhost++;
1087                         break;
1088                 // case 'f':
1089                 // case 'F':
1090                 //      // Fallback addresses for IPv4, IPv6
1091                 //      ok = 0; //TODO:IMPLEMENT//
1092                 //      help = 1;
1093                 //      break;
1094                 default:
1095                         ok = 0;
1096                         /* continue into 'h' to produce usage information */
1097                 case 'h':
1098                         help = 1;
1099                         break;
1100                 }
1101                 if (help || !ok) {
1102                         done = 1;
1103                 }
1104         }
1105         if (help) {
1106 #ifdef HAVE_SETUP_TUNNEL
1107                 fprintf (stderr, "Usage: %s [-d /dev/tunX] -l <v4server> -L <v6prefix>/64\n       %s -h\n", program, program);
1108                 fprintf (stderr, "\tUse -s|-t|-u to masquerade a port (range) to last -m host or ::1\n");
1109 #else
1110                 fprintf (stderr, "Usage: %s -d /dev/tunX -l <v4server> -L <v6prefix>/64\n       %s -h\n", program, program);
1111                 fprintf (stderr, "\tUse -s|-t|-u to masquerade a port (range) to last -m host of ::1\n");
1112 #endif
1113                 return ok;
1114         }
1115         if (!ok) {
1116                 return 0;
1117         }
1118         if (v4sox == -1) {
1119                 fprintf (stderr, "%s: Use -l to specify an IPv4 address for the tunnel interface\n", program);
1120                 return 0;
1121         }
1122         if (!v6server) {
1123                 fprintf (stderr, "%s: Use -L to specify a /64 prefix on the IPv6 side\n", program);
1124                 return 0;
1125         }
1126 #ifdef HAVE_SETUP_TUNNEL
1127         if (v6sox == -1) {
1128                 if (geteuid () != 0) {
1129                         fprintf (stderr, "%s: You should be root, or use -d to specify an accessible tunnel device\n", program);
1130                         return 0;
1131                 }
1132                 ok = setup_tunnel ();
1133         }
1134 #else /* ! HAVE_SETUP_TUNNEL */
1135         if (v6sox == -1) {
1136                 fprintf (stderr, "%s: You must specify a tunnel device with -d that is accessible to you\n", program);
1137                 return 0;
1138         }
1139 #endif /* HAVE_SETUP_TUNNEL */
1140         return ok;
1141 }
1142
1143
1144 /* The main program parses commandline arguments and forks off the daemon
1145  */
1146 int main (int argc, char *argv []) {
1147         //
1148         // Initialise
1149         program = argv [0];
1150         memset (&v4name, 0, sizeof (v4name));
1151         memset (&v6name, 0, sizeof (v6name));
1152         v4name.sin_family  = AF_INET ;
1153         v6name.sin6_family = AF_INET6;
1154         v4name.sin_port = htons (UDP_PORT_6BED4);   /* 6BED4 standard port */
1155         v4tunpi6.flags = 0;
1156         v4tunpi6.proto = htons (ETH_P_IPV6);
1157         //
1158         // Parse commandline arguments
1159         if (!process_args (argc, argv)) {
1160                 exit (1);
1161         }
1162         //
1163         // Setup a few addresses for later comparison/reproduction
1164         //  * lladdr_6bed4 is the 6bed4 Link-Local Address
1165         //  * v6listen_complete is the router's full IPv6 address (with if-id)
1166         //  * v6listen_linklocal_complete is fe80::/64 plus the router's if-id
1167         // A few others have already been setup at this time
1168         //  * v6listen is the router's 6bed4 prefix ending in 64 zero bits
1169         //  * v6listen_linklocal is the address fe80::/128
1170         //
1171         lladdr_6bed4 [0] = UDP_PORT_6BED4 & 0xff;
1172         lladdr_6bed4 [1] = UDP_PORT_6BED4 >> 8;
1173         memcpy (lladdr_6bed4 + 2, (uint8_t *) &v4name.sin_addr, 4);
1174         addr_6bed4 (&v6listen_complete, 0);
1175
1176         memcpy (v6listen_linklocal_complete, v6listen_linklocal, 8);
1177         memcpy (v6listen_linklocal_complete + 8, &v6listen_complete.s6_addr [8], 8);
1178 printf ("LISTEN lladdr_6bed4 = %02x:%02x:%02x:%02x:%02x:%02x\n", lladdr_6bed4 [0], lladdr_6bed4 [1], lladdr_6bed4 [2], lladdr_6bed4 [3], lladdr_6bed4 [4], lladdr_6bed4 [5]);
1179 printf ("LISTEN v6listen = %x:%x:%x:%x:%x:%x:%x:%x\n", htons (v6listen.s6_addr16 [0]), htons (v6listen.s6_addr16 [1]), htons (v6listen.s6_addr16 [2]), htons (v6listen.s6_addr16 [3]), htons (v6listen.s6_addr16 [4]), htons (v6listen.s6_addr16 [5]), htons (v6listen.s6_addr16 [6]), htons (v6listen.s6_addr16 [7]));
1180 printf ("LISTEN v6listen_complete = %x:%x:%x:%x:%x:%x:%x:%x\n", htons (v6listen_complete.s6_addr16 [0]), htons (v6listen_complete.s6_addr16 [1]), htons (v6listen_complete.s6_addr16 [2]), htons (v6listen_complete.s6_addr16 [3]), htons (v6listen_complete.s6_addr16 [4]), htons (v6listen_complete.s6_addr16 [5]), htons (v6listen_complete.s6_addr16 [6]), htons (v6listen_complete.s6_addr16 [7]));
1181 printf ("LISTEN v6listen_linklocal = %x:%x:%x:%x:%x:%x:%x:%x\n", htons (((uint16_t *) v6listen_linklocal) [0]), htons (((uint16_t *) v6listen_linklocal) [1]), htons (((uint16_t *) v6listen_linklocal) [2]), htons (((uint16_t *) v6listen_linklocal) [3]), htons (((uint16_t *) v6listen_linklocal) [4]), htons (((uint16_t *) v6listen_linklocal) [5]), htons (((uint16_t *) v6listen_linklocal) [6]), htons (((uint16_t *) v6listen_linklocal) [7]));
1182 printf ("LISTEN v6listen_linklocal_complete = %x:%x:%x:%x:%x:%x:%x:%x\n", htons (((uint16_t *) v6listen_linklocal_complete) [0]), htons (((uint16_t *) v6listen_linklocal_complete) [1]), htons (((uint16_t *) v6listen_linklocal_complete) [2]), htons (((uint16_t *) v6listen_linklocal_complete) [3]), htons (((uint16_t *) v6listen_linklocal_complete) [4]), htons (((uint16_t *) v6listen_linklocal_complete) [5]), htons (((uint16_t *) v6listen_linklocal_complete) [6]), htons (((uint16_t *) v6listen_linklocal_complete) [7]));
1183         //
1184         // Start the main daemon process
1185 #ifdef SKIP_TESTING_KLUDGE_IN_FOREGROUND
1186         switch (fork ()) {
1187         case -1:                /* Error forking */
1188                 fprintf (stderr, "%s: Failed to fork: %s\n", program, strerror (errno));
1189                 exit (1);
1190         case 0:                 /* Child process */
1191                 close (0);
1192                 //TODO: tmp.support for ^printf// close (1);
1193                 close (2);
1194                 setsid ();
1195                 run_daemon ();
1196                 break;
1197         default:                /* Parent process */
1198                 close (v4sox);
1199                 close (v6sox);
1200                 break;
1201         }
1202 #else
1203         run_daemon ();
1204 #endif
1205         //
1206         // Report successful creation of the daemon
1207         return 0;
1208 }