File: server.c

package info (click to toggle)
miredo 1.2.6-7.2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,600 kB
  • sloc: sh: 11,947; ansic: 7,823; makefile: 292; sed: 16
file content (639 lines) | stat: -rw-r--r-- 17,621 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
/*
 * server.c - Handling of a single Teredo datagram (server-side).
 */

/***********************************************************************
 *  Copyright © 2004-2007 Rémi Denis-Courmont.                         *
 *  This program is free software; you can redistribute and/or modify  *
 *  it under the terms of the GNU General Public License as published  *
 *  by the Free Software Foundation; version 2 of the license, or (at  *
 *  your option) any later version.                                    *
 *                                                                     *
 *  This program is distributed in the hope that it will be useful,    *
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of     *
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               *
 *  See the GNU General Public License for more details.               *
 *                                                                     *
 *  You should have received a copy of the GNU General Public License  *
 *  along with this program; if not, you can get it from:              *
 *  http://www.gnu.org/copyleft/gpl.html                               *
 ***********************************************************************/

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <gettext.h>

#include <stddef.h>
#include <string.h> /* memcpy(), memset() */
#include <inttypes.h>
#include <limits.h>

#include <stdbool.h>
#include <errno.h> // errno
#include <stdio.h> // snprintf()
#include <stdlib.h>

#include <sys/types.h>
#include <unistd.h> // close()
#include <sys/socket.h>
#include <netinet/in.h> // struct in6_addr
#include <netinet/ip6.h> // struct ip6_hdr
#include <arpa/inet.h> // inet_ntop()
#include <netinet/icmp6.h>
#include <fcntl.h>
#include <pthread.h>
#include <syslog.h>

#include "server.h"
#include "v4global.h"
#include "teredo.h"
#include <sys/uio.h>
#include "teredo-udp.h"
#include "checksum.h"
#include "debug.h"
#include "packets.h"

static pthread_mutex_t raw_mutex = PTHREAD_MUTEX_INITIALIZER;
static int raw_fd; // raw IPv6 socket
static unsigned raw_users = 0;

struct teredo_server
{
	pthread_t t1, t2;

	int fd_primary, fd_secondary; // UDP/IPv4 sockets

	/* These are all in network byte order (including MTU!!) */
	uint32_t server_ip, server_ip2, prefix, advLinkMTU;

	union teredo_addr lladdr; // server link-local IPv6 address
};

/**
 * Sends a Teredo-encapsulated Router Advertisement.
 */
static bool
SendRA (const teredo_server *restrict s, const struct teredo_packet *p,
        const struct in6_addr *dest_ip6, bool secondary)
{
	const uint8_t *nonce;
	struct in6_addr *addr;
	uint8_t auth[13] = { 0, 1 };
	struct teredo_orig_ind orig;
	struct
	{
		struct ip6_hdr            ip6;
		struct nd_router_advert   ra;
		struct nd_opt_prefix_info pi;
		struct nd_opt_mtu         mtu;
	} ra;
	struct iovec iov[] =
	{
		{ auth, 13 },
		{ &orig, 8 },
		{ &ra, sizeof (ra) }
	};

	// Authentification header
	// TODO: support for secure qualification
	nonce = p->auth_nonce;
	if (nonce != NULL)
		memcpy (auth + 4, nonce, 8);
	else
		iov[0].iov_len = 0;

	// Origin indication header
	//memset (&orig, 0, sizeof (orig));
	orig.orig_zero = 0;
	orig.orig_code = teredo_orig_ind;
	orig.orig_port = ~p->source_port; // obfuscate
	orig.orig_addr = ~p->source_ipv4; // obfuscate

	// IPv6 header
	memset (&ra, 0, sizeof (ra));
	ra.ip6.ip6_flow = htonl (0x60000000);
	ra.ip6.ip6_plen = htons (sizeof (ra) - sizeof (ra.ip6));
	ra.ip6.ip6_nxt = IPPROTO_ICMPV6;
	ra.ip6.ip6_hlim = 255;
	ra.ip6.ip6_src = s->lladdr.ip6;
	ra.ip6.ip6_dst = *dest_ip6;

	// ICMPv6: Router Advertisement
	ra.ra.nd_ra_type = ND_ROUTER_ADVERT;
	//ra.ra.nd_ra_code = 0;
	//ra.ra.nd_ra_cksum = 0;
	//ra.ra.nd_ra_curhoplimit = 0;
	//ra.ra.nd_ra_flags_reserved = 0;
	//ra.ra.nd_ra_router_lifetime = 0;
	//ra.ra.nd_ra_reachable = 0;
	ra.ra.nd_ra_retransmit = htonl (2000);

	// ICMPv6 option: Prefix information
	ra.pi.nd_opt_pi_type = ND_OPT_PREFIX_INFORMATION;
	ra.pi.nd_opt_pi_len = sizeof (ra.pi) >> 3;
	ra.pi.nd_opt_pi_prefix_len = 64;
	ra.pi.nd_opt_pi_flags_reserved = ND_OPT_PI_FLAG_AUTO;
	ra.pi.nd_opt_pi_valid_time = 0xffffffff;
	ra.pi.nd_opt_pi_preferred_time = 0xffffffff;
	addr = &ra.pi.nd_opt_pi_prefix;
	memcpy (&addr->s6_addr[0], &s->prefix, sizeof (s->prefix));
	memcpy (&addr->s6_addr[4], &s->server_ip, sizeof (s->server_ip));
	//memset (addr->ip6.s6_addr + 8, 0, 8);

	// ICMPv6 option : MTU
	ra.mtu.nd_opt_mtu_type = ND_OPT_MTU;
	ra.mtu.nd_opt_mtu_len = sizeof (ra.mtu) >> 3;
	//ra.mtu.nd_opt_mtu_reserved = 0;
	ra.mtu.nd_opt_mtu_mtu = s->advLinkMTU;

	// ICMPv6 checksum computation
	ra.ra.nd_ra_cksum = icmp6_checksum (&ra.ip6, (struct icmp6_hdr *)&ra.ra);

	if (IN6_IS_TEREDO_ADDR_CONE (dest_ip6))
		secondary = !secondary;

	return teredo_sendv (secondary ? s->fd_secondary : s->fd_primary,
	                     iov, 3, p->source_ipv4, p->source_port) > 0;
}


/**
 * Forwards a Teredo packet to a client
 */
static bool
teredo_forward_udp (int fd, const struct teredo_packet *packet,
                       bool insert_orig)
{
	struct teredo_orig_ind orig;
	struct iovec iov[2];

	/* extract the IPv4 destination directly from the Teredo IPv6 destination
	   within the IPv6 header */
	uint32_t dest_ipv4 = IN6_TEREDO_IPV4 (&packet->ip6->ip6_dst);
	uint16_t dest_port = IN6_TEREDO_PORT (&packet->ip6->ip6_dst);
	if (!is_ipv4_global_unicast (dest_ipv4))
		return 0; // ignore invalid client IP

	// Origin indication header
	// if the Teredo server's address is ours
	// NOTE: I wonder in which legitimate case insert_orig might be
	// false... but the spec implies it could
	iov[0].iov_base = &orig;
	if (insert_orig)
	{
		iov[0].iov_len = sizeof (orig);
		orig.orig_zero = 0;
		orig.orig_code = teredo_orig_ind;
		orig.orig_port = ~packet->source_port; // obfuscate
		orig.orig_addr = ~packet->source_ipv4; // obfuscate
	}
	else
		iov[0].iov_len = 0;

	iov[1].iov_base = packet->ip6;
	iov[1].iov_len = packet->ip6_len;

	return teredo_sendv (fd, iov, 2, dest_ipv4, dest_port) > 0;
}


/**
 * Sends an IPv6 packet of *payload* length <plen> with a raw IPv6 socket.
 */
static bool
teredo_send_ipv6 (const struct ip6_hdr *p, size_t len)
{
	struct sockaddr_in6 dst;

	memset (&dst, 0, sizeof (dst));
	dst.sin6_family = AF_INET6;
#ifdef HAVE_SA_LEN
	dst.sin6_len = sizeof (dst);
#endif
	dst.sin6_addr = p->ip6_dst;

	for (int tries = 0; tries < 10; tries++)
	{
		ssize_t res = sendto (raw_fd, p, len, 0,
		                      (struct sockaddr *)&dst, sizeof (dst));
		if (res != -1)
			return res == (ssize_t)len;

		switch (errno)
		{
			case ENETUNREACH: /* ICMPv6 unreach no route */
			case EACCES: /* ICMPv6 unreach administravely prohibited */
			case EHOSTUNREACH: /* ICMPv6 unreach addres unreachable */
				               /* ICMPv6 time exceeded */
			case ECONNREFUSED: /* ICMPv6 unreach port unreachable */
			case EMSGSIZE: /* ICMPv6 packet too big */
#ifdef EPROTO
			case EPROTO: /* ICMPv6 param prob (and other errors) */
#endif
				break;

			default:
				return false;
		}
	}

	return false;
}


static const struct in6_addr in6addr_allrouters =
	{ { { 0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } };


static inline bool IN6_IS_ADDR_GLOBAL (const struct in6_addr *addr)
{
	/* Normative reference: RFC4291 § 2.4 */
	return !(IN6_IS_ADDR_UNSPECIFIED (addr)
	      || IN6_IS_ADDR_LOOPBACK (addr)
	      || IN6_IS_ADDR_LINKLOCAL (addr)
	      || IN6_IS_ADDR_MULTICAST (addr));
}


#ifndef NDEBUG
static void debug_error_header (const uint32_t *v4src,
			        const struct in6_addr *v6src,
			        const struct in6_addr *v6dst)
{
	char v4s[INET_ADDRSTRLEN]  = "unknown";
	char v6s[INET6_ADDRSTRLEN] = "unknown";
	char v6d[INET6_ADDRSTRLEN] = "unknown";
      
	if (v4src != NULL)
		inet_ntop (AF_INET , v4src, v4s, sizeof v4s);
	if (v6src != NULL)
		inet_ntop (AF_INET6, v6src, v6s, sizeof v6s);
	if (v6dst != NULL)
		inet_ntop (AF_INET6, v6dst, v6d, sizeof v6d);

	debug ("Received packet from %s containing %s to %s.", v4s, v6s, v6d);
}
#else
# define debug_error_header(a, b, c) (void)0
#endif

/**
 * Checks and handles an Teredo-encapsulated packet.
 * Thread-safety note: prefix and advLinkMTU might be changed by another
 * thread.
 * @return -1 in case of I/O error, -2 if the packet was discarded,
 * 1 if it was processed as a qualification probe,
 * 2 if it was processed as a request for direct IPv6 connectivity check,
 * 3 if it was forwarded over UDP/IPv4 (hole punching).
 */
static int
teredo_process_packet (const teredo_server *s, bool sec)
{
	struct teredo_packet packet;

	if (teredo_wait_recv (sec ? s->fd_secondary : s->fd_primary, &packet))
		return -1;

	// Check IPv6 packet (Teredo server case number 1)
	const struct ip6_hdr *ip6 = packet.ip6;
	if (packet.ip6_len < sizeof (*ip6))
     	{
		debug_error_header (&packet.source_ipv4, NULL, NULL);
		debug ("Packet too small: %d bytes", packet.ip6_len);
		return -2; // too small
	}

	size_t plen = ntohs (ip6->ip6_plen);
	if (((ip6->ip6_vfc >> 4) != 6)
	 || ((sizeof (*ip6) + plen) > packet.ip6_len))
     	{
		debug_error_header (&packet.source_ipv4, NULL, NULL);
		debug ("Not an IPv6 packet: Version %d", ip6->ip6_vfc >> 4);
		return -2; // not an IPv6 packet
	}

	// NOTE: ptr is not aligned => read single bytes only

	// Teredo server case number 2
	if (!IsBubble (ip6) // neither a bubble...
	 && (ip6->ip6_nxt != IPPROTO_ICMPV6)) // nor an ICMPv6 message
     	{
		debug_error_header (&packet.source_ipv4,
		                    &ip6->ip6_src, &ip6->ip6_dst);
		debug ("Packet not allowed: Protocol %d", ip6->ip6_nxt);
		return -2; // packet not allowed through server
	}

	// Teredo server case number 3
	if (!is_ipv4_global_unicast (packet.source_ipv4))
     	{
	   	debug_error_header (&packet.source_ipv4,
		                    &ip6->ip6_src, &ip6->ip6_dst);
		debug ("Source is not IPv4 unicast.");
		return -2;
	}

	const uint32_t myprefix = s->prefix;

	// Teredo server case number 4
	if (IN6_IS_ADDR_LINKLOCAL (&ip6->ip6_src)
	 && IN6_ARE_ADDR_EQUAL (&in6addr_allrouters, &ip6->ip6_dst)
	 && (ip6->ip6_nxt == IPPROTO_ICMPV6)
	 && (plen >= sizeof (struct nd_router_solicit))
	 && (((const struct icmp6_hdr *)(ip6 + 1))->icmp6_type == ND_ROUTER_SOLICIT))
		goto accept;

	if (IN6_TEREDO_PREFIX (&ip6->ip6_src) == myprefix)
	{
		/** Source address is Teredo **/
		// Teredo server case number 5
		if (IN6_MATCHES_TEREDO_CLIENT (&ip6->ip6_src, packet.source_ipv4,
		                               packet.source_port))
			goto accept;
	}
	else
	{
		/** Source address is NOT Teredo **/
		// Teredo server case number 6
		if ((IN6_TEREDO_PREFIX (&ip6->ip6_dst) == myprefix)
		 && (IN6_TEREDO_SERVER (&ip6->ip6_dst) == s->server_ip))
			goto accept;
	}

	// Teredo server case number 7
	debug_error_header (&packet.source_ipv4, &ip6->ip6_src, &ip6->ip6_dst);
	debug ("Drop packet.");
	return -2;

accept:
	/** Packet "accepted" for processing **/

	/* Security fix: Prevent infinite local UDP packet loops */
	if (((packet.source_ipv4 == s->server_ip)
	  || (packet.source_ipv4 == s->server_ip2))
	 && (packet.source_port == htons (IPPORT_TEREDO)))
     	{
	   	debug_error_header (&packet.source_ipv4, &ip6->ip6_src,
		                    &ip6->ip6_dst);
		debug ("Prevent infinite local UDP packet loops from port %d",
		       ntohs (packet.source_port));
		return -2;
	}

	if (IN6_ARE_ADDR_EQUAL (&in6addr_allrouters, &ip6->ip6_dst)
	 || IN6_ARE_ADDR_EQUAL (&s->lladdr.ip6, &ip6->ip6_dst))
	{
		const struct icmp6_hdr *icmp = (const struct icmp6_hdr *)(ip6 + 1);

		if ((ip6->ip6_nxt == IPPROTO_ICMPV6)
		 && (plen >= sizeof (struct nd_router_solicit))
		 && (icmp->icmp6_type == ND_ROUTER_SOLICIT))
			return SendRA (s, &packet, &ip6->ip6_src, sec) ? 1 : -1;
		if(ip6->ip6_nxt == IPPROTO_ICMPV6)
	     	{
			debug_error_header(&packet.source_ipv4,
			                   &ip6->ip6_src, &ip6->ip6_dst);
			debug ("Unhandled router message: ICMP type %d",
			       icmp->icmp6_type);
		} else {
			debug_error_header(&packet.source_ipv4,
			                   &ip6->ip6_src, &ip6->ip6_dst);
			debug ("Unhandled router message: Protocol %d",
			       ip6->ip6_nxt);
		}	   
		return -2;
	}

	/* Servers must not forward packets with non-global destination */
	if (!IN6_IS_ADDR_GLOBAL (&ip6->ip6_dst))
     	{
		debug_error_header (&packet.source_ipv4,
		                    &ip6->ip6_src, &ip6->ip6_dst);
		debug ("Destination is no global IPv6 address");
		return -2;
	}

	/*
	 * While an explicit breakage of RFC 4380, we purposedly drop ICMPv6
	 * packets here, as these can have a large payload, and we don't want
	 * to be an open UDP relay. A conformant Teredo client/relay will never
	 * try to relay such a packet through a Teredo server anyway. Moreover,
	 * Microsoft Teredo servers also drop these packets.
	 *
	 * We still allow small ICMPv6 packets, as these could be used within
	 * a custom planned extension of the protocol. On the one hand, 128 bytes
	 * is big enough to transmit the IPv6 header, a 512-bits(!) hash, and 24
	 * of data. Currently, Miredo only uses a 128-bits hash. On the other
	 * hand, this is too small to hold application-layer packets such as
	 * G711 VoIPv6 packets (220 bytes, if I remember correctly).
	 */
	if ((ip6->ip6_nxt != IPPROTO_NONE) && (plen > 88))
     	{
		debug_error_header (&packet.source_ipv4,
		                    &ip6->ip6_src, &ip6->ip6_dst);
		debug ("ICMPv6 too large (%zu bytes)", plen);
		return -2;
	}

	if (IN6_TEREDO_PREFIX (&ip6->ip6_dst) != myprefix)
		return teredo_send_ipv6 (packet.ip6,
		                         sizeof (*ip6) + plen) ? 2 : -1;

	// Forwards packet over Teredo (destination is a Teredo IPv6 address)
	return teredo_forward_udp (s->fd_primary, &packet,
		IN6_TEREDO_SERVER (&ip6->ip6_dst) == s->server_ip) ? 3 : -1;
}


int teredo_server_check (char *errmsg, size_t len)
{
	int fd = socket (AF_INET6, SOCK_RAW, IPPROTO_RAW);

	if (fd >= 0)
	{
		close (fd);
		return 0;
	}

	/* FIXME: not thread-safe (OK but ugly) */
	snprintf (errmsg, len, _("Raw IPv6 socket not working: %s"),
	          strerror (errno));
	return -1;
}


static LIBTEREDO_NORETURN void *thread_primary (void *data)
{
	for (;;)
	{
		pthread_testcancel ();
		teredo_process_packet ((teredo_server *)data, false);
	}
}


static LIBTEREDO_NORETURN void *thread_secondary (void *data)
{
	for (;;)
	{
		pthread_testcancel ();
		teredo_process_packet ((teredo_server *)data, true);
	}
}


teredo_server *teredo_server_create (uint32_t ip1, uint32_t ip2)
{
	(void)bindtextdomain (PACKAGE_NAME, LOCALEDIR);

	/* Initializes shared raw IPv6 socket */
	pthread_mutex_lock (&raw_mutex);
	if (raw_users == UINT_MAX) /* integer overflow */
	{
		/* piece of code that will probably never ever be executed */
		pthread_mutex_unlock (&raw_mutex);
		return NULL;
	}
	if (raw_users++ == 0)
	{
		raw_fd = socket (AF_INET6, SOCK_RAW, IPPROTO_RAW);
		if (raw_fd != -1)
		{
			int flags = fcntl (raw_fd, F_GETFL, 0);
			//shutdown (fd, SHUT_RD); -- won't work
			fcntl (raw_fd, F_SETFL,
			       O_NONBLOCK | ((flags != -1) ? flags : 0));
			fcntl (raw_fd, F_SETFD, FD_CLOEXEC);
		}
	}
	pthread_mutex_unlock (&raw_mutex);

	if (raw_fd == -1)
	{
		syslog (LOG_ERR, _("Raw IPv6 socket not working: %m"));
		return NULL;
	}

	/* Initializes exclusive UDP/IPv4 sockets */
	if (!is_ipv4_global_unicast (ip1) || !is_ipv4_global_unicast (ip2))
	{
		syslog (LOG_ERR, _("Teredo server UDP socket error: "
		        "Server IPv4 addresses must be global unicast."));
		return NULL;
	}

	teredo_server *s = malloc (sizeof (*s));

	if (s != NULL)
	{
		int fd;

		memset (s, 0, sizeof (*s));
		s->server_ip = ip1;
		s->server_ip2 = ip2;
		s->prefix = htonl (TEREDO_PREFIX);
		s->advLinkMTU = htonl (1280);
		s->lladdr.teredo.prefix = htonl (0xfe800000);
		//s->lladdr.teredo.server_ip = 0;
		s->lladdr.teredo.flags = htons (TEREDO_FLAG_CONE);
		s->lladdr.teredo.client_port = ~htons (IPPORT_TEREDO);
		s->lladdr.teredo.client_ip = ~s->server_ip;

		fd = s->fd_primary = teredo_socket (ip1, htons (IPPORT_TEREDO));
		if (fd != -1)
		{
			fd = s->fd_secondary = teredo_socket (ip2, htons (IPPORT_TEREDO));
			if (fd != -1)
				return s;
			else
			{
				char str[INET_ADDRSTRLEN];

				inet_ntop (AF_INET, &ip2, str, sizeof (str));
				syslog (LOG_ERR, _("Error (%s): %m"), str);
			}

			teredo_close (s->fd_primary);
		}
		else
		{
			char str[INET_ADDRSTRLEN];

			inet_ntop (AF_INET, &ip1, str, sizeof (str));
			syslog (LOG_ERR, _("Error (%s): %m"), str);
		}

		free (s);
	}
	return NULL;
}


int teredo_server_set_prefix (teredo_server *s, uint32_t prefix)
{
	if (is_valid_teredo_prefix (prefix))
	{
		s->prefix = prefix;
		return 0;
	}
	return -1;
}


uint32_t teredo_server_get_prefix (const teredo_server *s)
{
	return s->prefix;
}

int teredo_server_set_MTU (teredo_server *s, uint16_t mtu)
{
	if (mtu < 1280)
		return -1;

	s->advLinkMTU = htonl (mtu);
	return 0;
}


uint16_t teredo_server_get_MTU (const teredo_server *s)
{
	return ntohl (s->advLinkMTU);
}


int teredo_server_start (teredo_server *s)
{
	if (pthread_create (&s->t1, NULL, thread_primary, s) == 0)
	{
		if (pthread_create (&s->t2, NULL, thread_secondary, s) == 0)
			return 0;
		pthread_cancel (s->t1);
		pthread_join (s->t1, NULL);
	}

	return -1;
}


void teredo_server_stop (teredo_server *s)
{
	pthread_cancel (s->t1);
	pthread_cancel (s->t2);
	pthread_join (s->t1, NULL);
	pthread_join (s->t2, NULL);
}


void teredo_server_destroy (teredo_server *s)
{
	teredo_close (s->fd_primary);
	teredo_close (s->fd_secondary);
	free (s);

	pthread_mutex_lock (&raw_mutex);
	if (--raw_users == 0)
		close (raw_fd);
	pthread_mutex_unlock (&raw_mutex);
}