fix fragment handling in ip_filter
[l2tpns.git] / l2tpns.c
1 // L2TP Network Server
2 // Adrian Kennard 2002
3 // Copyright (c) 2003, 2004, 2005 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
5 // vim: sw=8 ts=8
6
7 char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.147 2005/11/14 08:38:02 bodea Exp $";
8
9 #include <arpa/inet.h>
10 #include <assert.h>
11 #include <errno.h>
12 #include <fcntl.h>
13 #include <linux/if_tun.h>
14 #define SYSLOG_NAMES
15 #include <syslog.h>
16 #include <malloc.h>
17 #include <math.h>
18 #include <net/route.h>
19 #include <sys/mman.h>
20 #include <netdb.h>
21 #include <netinet/in.h>
22 #include <netinet/ip6.h>
23 #include <stdarg.h>
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <ctype.h>
28 #include <sys/ioctl.h>
29 #include <sys/socket.h>
30 #include <sys/stat.h>
31 #include <sys/time.h>
32 #include <sys/resource.h>
33 #include <sys/wait.h>
34 #include <linux/if.h>
35 #include <stddef.h>
36 #include <time.h>
37 #include <dlfcn.h>
38 #include <unistd.h>
39 #include <sched.h>
40 #include <sys/sysinfo.h>
41 #include <libcli.h>
42
43 #include "md5.h"
44 #include "l2tpns.h"
45 #include "cluster.h"
46 #include "plugin.h"
47 #include "ll.h"
48 #include "constants.h"
49 #include "control.h"
50 #include "util.h"
51 #include "tbf.h"
52
53 #ifdef BGP
54 #include "bgp.h"
55 #endif
56
57 // Globals
58 configt *config = NULL; // all configuration
59 int tunfd = -1; // tun interface file handle. (network device)
60 int udpfd = -1; // UDP file handle
61 int controlfd = -1; // Control signal handle
62 int clifd = -1; // Socket listening for CLI connections.
63 int daefd = -1; // Socket listening for DAE connections.
64 int snoopfd = -1; // UDP file handle for sending out intercept data
65 int *radfds = NULL; // RADIUS requests file handles
66 int ifrfd = -1; // File descriptor for routing, etc
67 int ifr6fd = -1; // File descriptor for IPv6 routing, etc
68 int rand_fd = -1; // Random data source
69 int cluster_sockfd = -1; // Intra-cluster communications socket.
70 int epollfd = -1; // event polling
71 time_t basetime = 0; // base clock
72 char hostname[1000] = ""; // us.
73 static int tunidx; // ifr_ifindex of tun device
74 static int syslog_log = 0; // are we logging to syslog
75 static FILE *log_stream = 0; // file handle for direct logging (i.e. direct into file, not via syslog).
76 uint32_t last_id = 0; // Unique ID for radius accounting
77
78 // calculated from config->l2tp_mtu
79 uint16_t MRU = 0; // PPP MRU
80 uint16_t MSS = 0; // TCP MSS
81
82 struct cli_session_actions *cli_session_actions = NULL; // Pending session changes requested by CLI
83 struct cli_tunnel_actions *cli_tunnel_actions = NULL; // Pending tunnel changes required by CLI
84
85 static void *ip_hash[256]; // Mapping from IP address to session structures.
86 struct ipv6radix {
87 int sess;
88 struct ipv6radix *branch;
89 } ipv6_hash[256]; // Mapping from IPv6 address to session structures.
90
91 // Traffic counters.
92 static uint32_t udp_rx = 0, udp_rx_pkt = 0, udp_tx = 0;
93 static uint32_t eth_rx = 0, eth_rx_pkt = 0;
94 uint32_t eth_tx = 0;
95
96 static uint32_t ip_pool_size = 1; // Size of the pool of addresses used for dynamic address allocation.
97 time_t time_now = 0; // Current time in seconds since epoch.
98 static char time_now_string[64] = {0}; // Current time as a string.
99 int time_changed = 0; // time_now changed
100 char main_quit = 0; // True if we're in the process of exiting.
101 char main_reload = 0; // Re-load pending
102 linked_list *loaded_plugins;
103 linked_list *plugins[MAX_PLUGIN_TYPES];
104
105 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
106 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
107
108 config_descriptt config_values[] = {
109 CONFIG("debug", debug, INT),
110 CONFIG("log_file", log_filename, STRING),
111 CONFIG("pid_file", pid_file, STRING),
112 CONFIG("random_device", random_device, STRING),
113 CONFIG("l2tp_secret", l2tp_secret, STRING),
114 CONFIG("l2tp_mtu", l2tp_mtu, INT),
115 CONFIG("ppp_restart_time", ppp_restart_time, INT),
116 CONFIG("ppp_max_configure", ppp_max_configure, INT),
117 CONFIG("ppp_max_failure", ppp_max_failure, INT),
118 CONFIG("primary_dns", default_dns1, IPv4),
119 CONFIG("secondary_dns", default_dns2, IPv4),
120 CONFIG("primary_radius", radiusserver[0], IPv4),
121 CONFIG("secondary_radius", radiusserver[1], IPv4),
122 CONFIG("primary_radius_port", radiusport[0], SHORT),
123 CONFIG("secondary_radius_port", radiusport[1], SHORT),
124 CONFIG("radius_accounting", radius_accounting, BOOL),
125 CONFIG("radius_interim", radius_interim, INT),
126 CONFIG("radius_secret", radiussecret, STRING),
127 CONFIG("radius_authtypes", radius_authtypes_s, STRING),
128 CONFIG("radius_dae_port", radius_dae_port, SHORT),
129 CONFIG("allow_duplicate_users", allow_duplicate_users, BOOL),
130 CONFIG("bind_address", bind_address, IPv4),
131 CONFIG("peer_address", peer_address, IPv4),
132 CONFIG("send_garp", send_garp, BOOL),
133 CONFIG("throttle_speed", rl_rate, UNSIGNED_LONG),
134 CONFIG("throttle_buckets", num_tbfs, INT),
135 CONFIG("accounting_dir", accounting_dir, STRING),
136 CONFIG("setuid", target_uid, INT),
137 CONFIG("dump_speed", dump_speed, BOOL),
138 CONFIG("multi_read_count", multi_read_count, INT),
139 CONFIG("scheduler_fifo", scheduler_fifo, BOOL),
140 CONFIG("lock_pages", lock_pages, BOOL),
141 CONFIG("icmp_rate", icmp_rate, INT),
142 CONFIG("packet_limit", max_packets, INT),
143 CONFIG("cluster_address", cluster_address, IPv4),
144 CONFIG("cluster_interface", cluster_interface, STRING),
145 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl, INT),
146 CONFIG("cluster_hb_interval", cluster_hb_interval, INT),
147 CONFIG("cluster_hb_timeout", cluster_hb_timeout, INT),
148 CONFIG("cluster_master_min_adv", cluster_master_min_adv, INT),
149 CONFIG("ipv6_prefix", ipv6_prefix, IPv6),
150 { NULL, 0, 0, 0 },
151 };
152
153 static char *plugin_functions[] = {
154 NULL,
155 "plugin_pre_auth",
156 "plugin_post_auth",
157 "plugin_packet_rx",
158 "plugin_packet_tx",
159 "plugin_timer",
160 "plugin_new_session",
161 "plugin_kill_session",
162 "plugin_control",
163 "plugin_radius_response",
164 "plugin_radius_reset",
165 "plugin_radius_account",
166 "plugin_become_master",
167 "plugin_new_session_master",
168 };
169
170 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
171
172 // Counters for shutdown sessions
173 static sessiont shut_acct[8192];
174 static sessionidt shut_acct_n = 0;
175
176 tunnelt *tunnel = NULL; // Array of tunnel structures.
177 sessiont *session = NULL; // Array of session structures.
178 sessionlocalt *sess_local = NULL; // Array of local per-session counters.
179 radiust *radius = NULL; // Array of radius structures.
180 ippoolt *ip_address_pool = NULL; // Array of dynamic IP addresses.
181 ip_filtert *ip_filters = NULL; // Array of named filters.
182 static controlt *controlfree = 0;
183 struct Tstats *_statistics = NULL;
184 #ifdef RINGBUFFER
185 struct Tringbuffer *ringbuffer = NULL;
186 #endif
187
188 static void cache_ipmap(in_addr_t ip, int s);
189 static void uncache_ipmap(in_addr_t ip);
190 static void cache_ipv6map(struct in6_addr ip, int prefixlen, int s);
191 static void free_ip_address(sessionidt s);
192 static void dump_acct_info(int all);
193 static void sighup_handler(int sig);
194 static void shutdown_handler(int sig);
195 static void sigchild_handler(int sig);
196 static void build_chap_response(uint8_t *challenge, uint8_t id, uint16_t challenge_length, uint8_t **challenge_response);
197 static void update_config(void);
198 static void read_config_file(void);
199 static void initplugins(void);
200 static int add_plugin(char *plugin_name);
201 static int remove_plugin(char *plugin_name);
202 static void plugins_done(void);
203 static void processcontrol(uint8_t *buf, int len, struct sockaddr_in *addr, int alen);
204 static tunnelidt new_tunnel(void);
205 static void unhide_value(uint8_t *value, size_t len, uint16_t type, uint8_t *vector, size_t vec_len);
206
207 // on slaves, alow BGP to withdraw cleanly before exiting
208 #define QUIT_DELAY 5
209
210 // quit actions (master)
211 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
212 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
213
214 // return internal time (10ths since process startup), set f if given
215 // as a side-effect sets time_now, and time_changed
216 static clockt now(double *f)
217 {
218 struct timeval t;
219 gettimeofday(&t, 0);
220 if (f) *f = t.tv_sec + t.tv_usec / 1000000.0;
221 if (t.tv_sec != time_now)
222 {
223 time_now = t.tv_sec;
224 time_changed++;
225 }
226 return (t.tv_sec - basetime) * 10 + t.tv_usec / 100000 + 1;
227 }
228
229 // work out a retry time based on try number
230 // This is a straight bounded exponential backoff.
231 // Maximum re-try time is 32 seconds. (2^5).
232 clockt backoff(uint8_t try)
233 {
234 if (try > 5) try = 5; // max backoff
235 return now(NULL) + 10 * (1 << try);
236 }
237
238
239 //
240 // Log a debug message. Typically called via the LOG macro
241 //
242 void _log(int level, sessionidt s, tunnelidt t, const char *format, ...)
243 {
244 static char message[65536] = {0};
245 va_list ap;
246
247 #ifdef RINGBUFFER
248 if (ringbuffer)
249 {
250 if (++ringbuffer->tail >= RINGBUFFER_SIZE)
251 ringbuffer->tail = 0;
252 if (ringbuffer->tail == ringbuffer->head)
253 if (++ringbuffer->head >= RINGBUFFER_SIZE)
254 ringbuffer->head = 0;
255
256 ringbuffer->buffer[ringbuffer->tail].level = level;
257 ringbuffer->buffer[ringbuffer->tail].session = s;
258 ringbuffer->buffer[ringbuffer->tail].tunnel = t;
259 va_start(ap, format);
260 vsnprintf(ringbuffer->buffer[ringbuffer->tail].message, 4095, format, ap);
261 va_end(ap);
262 }
263 #endif
264
265 if (config->debug < level) return;
266
267 va_start(ap, format);
268 vsnprintf(message, sizeof(message), format, ap);
269
270 if (log_stream)
271 fprintf(log_stream, "%s %02d/%02d %s", time_now_string, t, s, message);
272 else if (syslog_log)
273 syslog(level + 2, "%02d/%02d %s", t, s, message); // We don't need LOG_EMERG or LOG_ALERT
274
275 va_end(ap);
276 }
277
278 void _log_hex(int level, const char *title, const uint8_t *data, int maxsize)
279 {
280 int i, j;
281 const uint8_t *d = data;
282
283 if (config->debug < level) return;
284
285 // No support for _log_hex to syslog
286 if (log_stream)
287 {
288 _log(level, 0, 0, "%s (%d bytes):\n", title, maxsize);
289 setvbuf(log_stream, NULL, _IOFBF, 16384);
290
291 for (i = 0; i < maxsize; )
292 {
293 fprintf(log_stream, "%4X: ", i);
294 for (j = i; j < maxsize && j < (i + 16); j++)
295 {
296 fprintf(log_stream, "%02X ", d[j]);
297 if (j == i + 7)
298 fputs(": ", log_stream);
299 }
300
301 for (; j < i + 16; j++)
302 {
303 fputs(" ", log_stream);
304 if (j == i + 7)
305 fputs(": ", log_stream);
306 }
307
308 fputs(" ", log_stream);
309 for (j = i; j < maxsize && j < (i + 16); j++)
310 {
311 if (d[j] >= 0x20 && d[j] < 0x7f && d[j] != 0x20)
312 fputc(d[j], log_stream);
313 else
314 fputc('.', log_stream);
315
316 if (j == i + 7)
317 fputs(" ", log_stream);
318 }
319
320 i = j;
321 fputs("\n", log_stream);
322 }
323
324 fflush(log_stream);
325 setbuf(log_stream, NULL);
326 }
327 }
328
329 // update a counter, accumulating 2^32 wraps
330 void increment_counter(uint32_t *counter, uint32_t *wrap, uint32_t delta)
331 {
332 uint32_t new = *counter + delta;
333 if (new < *counter)
334 (*wrap)++;
335
336 *counter = new;
337 }
338
339 // initialise the random generator
340 static void initrandom(char *source)
341 {
342 static char path[sizeof(config->random_device)] = "*undefined*";
343
344 // reinitialise only if we are forced to do so or if the config has changed
345 if (source && !strncmp(path, source, sizeof(path)))
346 return;
347
348 // close previous source, if any
349 if (rand_fd >= 0)
350 close(rand_fd);
351
352 rand_fd = -1;
353
354 if (source)
355 {
356 // register changes
357 snprintf(path, sizeof(path), "%s", source);
358
359 if (*path == '/')
360 {
361 rand_fd = open(path, O_RDONLY|O_NONBLOCK);
362 if (rand_fd < 0)
363 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
364 path, strerror(errno));
365 }
366 }
367 }
368
369 // fill buffer with random data
370 void random_data(uint8_t *buf, int len)
371 {
372 int n = 0;
373
374 CSTAT(random_data);
375 if (rand_fd >= 0)
376 {
377 n = read(rand_fd, buf, len);
378 if (n >= len) return;
379 if (n < 0)
380 {
381 if (errno != EAGAIN)
382 {
383 LOG(0, 0, 0, "Error reading from random source: %s\n",
384 strerror(errno));
385
386 // fall back to rand()
387 initrandom(NULL);
388 }
389
390 n = 0;
391 }
392 }
393
394 // append missing data
395 while (n < len)
396 // not using the low order bits from the prng stream
397 buf[n++] = (rand() >> 4) & 0xff;
398 }
399
400 // Add a route
401 //
402 // This adds it to the routing table, advertises it
403 // via BGP if enabled, and stuffs it into the
404 // 'sessionbyip' cache.
405 //
406 // 'ip' and 'mask' must be in _host_ order.
407 //
408 static void routeset(sessionidt s, in_addr_t ip, in_addr_t mask, in_addr_t gw, int add)
409 {
410 struct rtentry r;
411 int i;
412
413 if (!mask) mask = 0xffffffff;
414
415 ip &= mask; // Force the ip to be the first one in the route.
416
417 memset(&r, 0, sizeof(r));
418 r.rt_dev = config->tundevice;
419 r.rt_dst.sa_family = AF_INET;
420 *(uint32_t *) & (((struct sockaddr_in *) &r.rt_dst)->sin_addr.s_addr) = htonl(ip);
421 r.rt_gateway.sa_family = AF_INET;
422 *(uint32_t *) & (((struct sockaddr_in *) &r.rt_gateway)->sin_addr.s_addr) = htonl(gw);
423 r.rt_genmask.sa_family = AF_INET;
424 *(uint32_t *) & (((struct sockaddr_in *) &r.rt_genmask)->sin_addr.s_addr) = htonl(mask);
425 r.rt_flags = (RTF_UP | RTF_STATIC);
426 if (gw)
427 r.rt_flags |= RTF_GATEWAY;
428 else if (mask == 0xffffffff)
429 r.rt_flags |= RTF_HOST;
430
431 LOG(1, s, 0, "Route %s %s/%s%s%s\n", add ? "add" : "del",
432 fmtaddr(htonl(ip), 0), fmtaddr(htonl(mask), 1),
433 gw ? " via" : "", gw ? fmtaddr(htonl(gw), 2) : "");
434
435 if (ioctl(ifrfd, add ? SIOCADDRT : SIOCDELRT, (void *) &r) < 0)
436 LOG(0, 0, 0, "routeset() error in ioctl: %s\n", strerror(errno));
437
438 #ifdef BGP
439 if (add)
440 bgp_add_route(htonl(ip), htonl(mask));
441 else
442 bgp_del_route(htonl(ip), htonl(mask));
443 #endif /* BGP */
444
445 // Add/Remove the IPs to the 'sessionbyip' cache.
446 // Note that we add the zero address in the case of
447 // a network route. Roll on CIDR.
448
449 // Note that 's == 0' implies this is the address pool.
450 // We still cache it here, because it will pre-fill
451 // the malloc'ed tree.
452
453 if (s)
454 {
455 if (!add) // Are we deleting a route?
456 s = 0; // Caching the session as '0' is the same as uncaching.
457
458 for (i = ip; (i&mask) == (ip&mask) ; ++i)
459 cache_ipmap(i, s);
460 }
461 }
462
463 void route6set(sessionidt s, struct in6_addr ip, int prefixlen, int add)
464 {
465 struct in6_rtmsg rt;
466 char ipv6addr[INET6_ADDRSTRLEN];
467
468 if (ifr6fd < 0)
469 {
470 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
471 return;
472 }
473
474 memset(&rt, 0, sizeof(rt));
475
476 memcpy(&rt.rtmsg_dst, &ip, sizeof(struct in6_addr));
477 rt.rtmsg_dst_len = prefixlen;
478 rt.rtmsg_metric = 1;
479 rt.rtmsg_flags = RTF_UP;
480 rt.rtmsg_ifindex = tunidx;
481
482 LOG(1, 0, 0, "Route %s %s/%d\n",
483 add ? "add" : "del",
484 inet_ntop(AF_INET6, &ip, ipv6addr, INET6_ADDRSTRLEN),
485 prefixlen);
486
487 if (ioctl(ifr6fd, add ? SIOCADDRT : SIOCDELRT, (void *) &rt) < 0)
488 LOG(0, 0, 0, "route6set() error in ioctl: %s\n",
489 strerror(errno));
490
491 // FIXME: need to add BGP routing (RFC2858)
492
493 if (s)
494 {
495 if (!add) // Are we deleting a route?
496 s = 0; // Caching the session as '0' is the same as uncaching.
497
498 cache_ipv6map(ip, prefixlen, s);
499 }
500
501 return;
502 }
503
504 // defined in linux/ipv6.h, but tricky to include from user-space
505 // TODO: move routing to use netlink rather than ioctl
506 struct in6_ifreq {
507 struct in6_addr ifr6_addr;
508 __u32 ifr6_prefixlen;
509 unsigned int ifr6_ifindex;
510 };
511
512 //
513 // Set up TUN interface
514 static void inittun(void)
515 {
516 struct ifreq ifr;
517 struct in6_ifreq ifr6;
518 struct sockaddr_in sin = {0};
519 memset(&ifr, 0, sizeof(ifr));
520 ifr.ifr_flags = IFF_TUN;
521
522 tunfd = open(TUNDEVICE, O_RDWR);
523 if (tunfd < 0)
524 { // fatal
525 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE, strerror(errno));
526 exit(1);
527 }
528 {
529 int flags = fcntl(tunfd, F_GETFL, 0);
530 fcntl(tunfd, F_SETFL, flags | O_NONBLOCK);
531 }
532 if (ioctl(tunfd, TUNSETIFF, (void *) &ifr) < 0)
533 {
534 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno));
535 exit(1);
536 }
537 assert(strlen(ifr.ifr_name) < sizeof(config->tundevice));
538 strncpy(config->tundevice, ifr.ifr_name, sizeof(config->tundevice) - 1);
539 ifrfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
540
541 sin.sin_family = AF_INET;
542 sin.sin_addr.s_addr = config->bind_address ? config->bind_address : 0x01010101; // 1.1.1.1
543 memcpy(&ifr.ifr_addr, &sin, sizeof(struct sockaddr));
544
545 if (ioctl(ifrfd, SIOCSIFADDR, (void *) &ifr) < 0)
546 {
547 LOG(0, 0, 0, "Error setting tun address: %s\n", strerror(errno));
548 exit(1);
549 }
550 /* Bump up the qlen to deal with bursts from the network */
551 ifr.ifr_qlen = 1000;
552 if (ioctl(ifrfd, SIOCSIFTXQLEN, (void *) &ifr) < 0)
553 {
554 LOG(0, 0, 0, "Error setting tun queue length: %s\n", strerror(errno));
555 exit(1);
556 }
557 ifr.ifr_flags = IFF_UP;
558 if (ioctl(ifrfd, SIOCSIFFLAGS, (void *) &ifr) < 0)
559 {
560 LOG(0, 0, 0, "Error setting tun flags: %s\n", strerror(errno));
561 exit(1);
562 }
563 if (ioctl(ifrfd, SIOCGIFINDEX, (void *) &ifr) < 0)
564 {
565 LOG(0, 0, 0, "Error getting tun ifindex: %s\n", strerror(errno));
566 exit(1);
567 }
568 tunidx = ifr.ifr_ifindex;
569
570 // Only setup IPv6 on the tun device if we have a configured prefix
571 if (config->ipv6_prefix.s6_addr[0]) {
572 ifr6fd = socket(PF_INET6, SOCK_DGRAM, 0);
573
574 // Link local address is FE80::1
575 memset(&ifr6.ifr6_addr, 0, sizeof(ifr6.ifr6_addr));
576 ifr6.ifr6_addr.s6_addr[0] = 0xFE;
577 ifr6.ifr6_addr.s6_addr[1] = 0x80;
578 ifr6.ifr6_addr.s6_addr[15] = 1;
579 ifr6.ifr6_prefixlen = 64;
580 ifr6.ifr6_ifindex = ifr.ifr_ifindex;
581 if (ioctl(ifr6fd, SIOCSIFADDR, (void *) &ifr6) < 0)
582 {
583 LOG(0, 0, 0, "Error setting tun IPv6 link local address:"
584 " %s\n", strerror(errno));
585 }
586
587 // Global address is prefix::1
588 memset(&ifr6.ifr6_addr, 0, sizeof(ifr6.ifr6_addr));
589 ifr6.ifr6_addr = config->ipv6_prefix;
590 ifr6.ifr6_addr.s6_addr[15] = 1;
591 ifr6.ifr6_prefixlen = 64;
592 ifr6.ifr6_ifindex = ifr.ifr_ifindex;
593 if (ioctl(ifr6fd, SIOCSIFADDR, (void *) &ifr6) < 0)
594 {
595 LOG(0, 0, 0, "Error setting tun IPv6 global address: %s\n",
596 strerror(errno));
597 }
598 }
599 }
600
601 // set up UDP ports
602 static void initudp(void)
603 {
604 int on = 1;
605 struct sockaddr_in addr;
606
607 // Tunnel
608 memset(&addr, 0, sizeof(addr));
609 addr.sin_family = AF_INET;
610 addr.sin_port = htons(L2TPPORT);
611 addr.sin_addr.s_addr = config->bind_address;
612 udpfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
613 setsockopt(udpfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
614 {
615 int flags = fcntl(udpfd, F_GETFL, 0);
616 fcntl(udpfd, F_SETFL, flags | O_NONBLOCK);
617 }
618 if (bind(udpfd, (void *) &addr, sizeof(addr)) < 0)
619 {
620 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno));
621 exit(1);
622 }
623
624 // Control
625 memset(&addr, 0, sizeof(addr));
626 addr.sin_family = AF_INET;
627 addr.sin_port = htons(NSCTL_PORT);
628 controlfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
629 setsockopt(controlfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
630 if (bind(controlfd, (void *) &addr, sizeof(addr)) < 0)
631 {
632 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno));
633 exit(1);
634 }
635
636 // Dynamic Authorization Extensions to RADIUS
637 memset(&addr, 0, sizeof(addr));
638 addr.sin_family = AF_INET;
639 addr.sin_port = htons(config->radius_dae_port);
640 daefd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
641 setsockopt(daefd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
642 if (bind(daefd, (void *) &addr, sizeof(addr)) < 0)
643 {
644 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno));
645 exit(1);
646 }
647
648 // Intercept
649 snoopfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
650 }
651
652 //
653 // Find session by IP, < 1 for not found
654 //
655 // Confusingly enough, this 'ip' must be
656 // in _network_ order. This being the common
657 // case when looking it up from IP packet headers.
658 //
659 // We actually use this cache for two things.
660 // #1. For used IP addresses, this maps to the
661 // session ID that it's used by.
662 // #2. For un-used IP addresses, this maps to the
663 // index into the pool table that contains that
664 // IP address.
665 //
666
667 static int lookup_ipmap(in_addr_t ip)
668 {
669 uint8_t *a = (uint8_t *) &ip;
670 uint8_t **d = (uint8_t **) ip_hash;
671
672 if (!(d = (uint8_t **) d[(size_t) *a++])) return 0;
673 if (!(d = (uint8_t **) d[(size_t) *a++])) return 0;
674 if (!(d = (uint8_t **) d[(size_t) *a++])) return 0;
675
676 return (int) (intptr_t) d[(size_t) *a];
677 }
678
679 static int lookup_ipv6map(struct in6_addr ip)
680 {
681 struct ipv6radix *curnode;
682 int i;
683 int s;
684 char ipv6addr[INET6_ADDRSTRLEN];
685
686 curnode = &ipv6_hash[ip.s6_addr[0]];
687 i = 1;
688 s = curnode->sess;
689
690 while (s == 0 && i < 15 && curnode->branch != NULL)
691 {
692 curnode = &curnode->branch[ip.s6_addr[i]];
693 s = curnode->sess;
694 i++;
695 }
696
697 LOG(4, s, session[s].tunnel, "Looking up address %s and got %d\n",
698 inet_ntop(AF_INET6, &ip, ipv6addr,
699 INET6_ADDRSTRLEN),
700 s);
701
702 return s;
703 }
704
705 sessionidt sessionbyip(in_addr_t ip)
706 {
707 int s = lookup_ipmap(ip);
708 CSTAT(sessionbyip);
709
710 if (s > 0 && s < MAXSESSION && session[s].opened)
711 return (sessionidt) s;
712
713 return 0;
714 }
715
716 sessionidt sessionbyipv6(struct in6_addr ip)
717 {
718 int s;
719 CSTAT(sessionbyipv6);
720
721 if (!memcmp(&config->ipv6_prefix, &ip, 8) ||
722 (ip.s6_addr[0] == 0xFE &&
723 ip.s6_addr[1] == 0x80 &&
724 ip.s6_addr16[1] == 0 &&
725 ip.s6_addr16[2] == 0 &&
726 ip.s6_addr16[3] == 0)) {
727 s = lookup_ipmap(*(in_addr_t *) &ip.s6_addr[8]);
728 } else {
729 s = lookup_ipv6map(ip);
730 }
731
732 if (s > 0 && s < MAXSESSION && session[s].opened)
733 return s;
734
735 return 0;
736 }
737
738 //
739 // Take an IP address in HOST byte order and
740 // add it to the sessionid by IP cache.
741 //
742 // (It's actually cached in network order)
743 //
744 static void cache_ipmap(in_addr_t ip, int s)
745 {
746 in_addr_t nip = htonl(ip); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
747 uint8_t *a = (uint8_t *) &nip;
748 uint8_t **d = (uint8_t **) ip_hash;
749 int i;
750
751 for (i = 0; i < 3; i++)
752 {
753 if (!d[(size_t) a[i]])
754 {
755 if (!(d[(size_t) a[i]] = calloc(256, sizeof(void *))))
756 return;
757 }
758
759 d = (uint8_t **) d[(size_t) a[i]];
760 }
761
762 d[(size_t) a[3]] = (uint8_t *) (intptr_t) s;
763
764 if (s > 0)
765 LOG(4, s, session[s].tunnel, "Caching ip address %s\n", fmtaddr(nip, 0));
766
767 else if (s == 0)
768 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip, 0));
769 // else a map to an ip pool index.
770 }
771
772 static void uncache_ipmap(in_addr_t ip)
773 {
774 cache_ipmap(ip, 0); // Assign it to the NULL session.
775 }
776
777 static void cache_ipv6map(struct in6_addr ip, int prefixlen, int s)
778 {
779 int i;
780 int bytes;
781 struct ipv6radix *curnode;
782 char ipv6addr[INET6_ADDRSTRLEN];
783
784 curnode = &ipv6_hash[ip.s6_addr[0]];
785
786 bytes = prefixlen >> 3;
787 i = 1;
788 while (i < bytes) {
789 if (curnode->branch == NULL)
790 {
791 if (!(curnode->branch = calloc(256,
792 sizeof (struct ipv6radix))))
793 return;
794 }
795 curnode = &curnode->branch[ip.s6_addr[i]];
796 i++;
797 }
798
799 curnode->sess = s;
800
801 if (s > 0)
802 LOG(4, s, session[s].tunnel, "Caching ip address %s/%d\n",
803 inet_ntop(AF_INET6, &ip, ipv6addr,
804 INET6_ADDRSTRLEN),
805 prefixlen);
806 else if (s == 0)
807 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
808 inet_ntop(AF_INET6, &ip, ipv6addr,
809 INET6_ADDRSTRLEN),
810 prefixlen);
811 }
812
813 //
814 // CLI list to dump current ipcache.
815 //
816 int cmd_show_ipcache(struct cli_def *cli, char *command, char **argv, int argc)
817 {
818 char **d = (char **) ip_hash, **e, **f, **g;
819 int i, j, k, l;
820 int count = 0;
821
822 if (CLI_HELP_REQUESTED)
823 return CLI_HELP_NO_ARGS;
824
825 cli_print(cli, "%7s %s", "Sess#", "IP Address");
826
827 for (i = 0; i < 256; ++i)
828 {
829 if (!d[i])
830 continue;
831 e = (char **) d[i];
832 for (j = 0; j < 256; ++j)
833 {
834 if (!e[j])
835 continue;
836 f = (char **) e[j];
837 for (k = 0; k < 256; ++k)
838 {
839 if (!f[k])
840 continue;
841 g = (char **)f[k];
842 for (l = 0; l < 256; ++l)
843 {
844 if (!g[l])
845 continue;
846 cli_print(cli, "%7d %d.%d.%d.%d", (int) (intptr_t) g[l], i, j, k, l);
847 ++count;
848 }
849 }
850 }
851 }
852 cli_print(cli, "%d entries in cache", count);
853 return CLI_OK;
854 }
855
856
857 // Find session by username, 0 for not found
858 // walled garden users aren't authenticated, so the username is
859 // reasonably useless. Ignore them to avoid incorrect actions
860 //
861 // This is VERY inefficent. Don't call it often. :)
862 //
863 sessionidt sessionbyuser(char *username)
864 {
865 int s;
866 CSTAT(sessionbyuser);
867
868 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
869 {
870 if (!session[s].opened)
871 continue;
872
873 if (session[s].walled_garden)
874 continue; // Skip walled garden users.
875
876 if (!strncmp(session[s].user, username, 128))
877 return s;
878
879 }
880 return 0; // Not found.
881 }
882
883 void send_garp(in_addr_t ip)
884 {
885 int s;
886 struct ifreq ifr;
887 uint8_t mac[6];
888
889 s = socket(PF_INET, SOCK_DGRAM, 0);
890 if (s < 0)
891 {
892 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno));
893 return;
894 }
895 memset(&ifr, 0, sizeof(ifr));
896 strncpy(ifr.ifr_name, "eth0", sizeof(ifr.ifr_name) - 1);
897 if (ioctl(s, SIOCGIFHWADDR, &ifr) < 0)
898 {
899 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno));
900 close(s);
901 return;
902 }
903 memcpy(mac, &ifr.ifr_hwaddr.sa_data, 6*sizeof(char));
904 if (ioctl(s, SIOCGIFINDEX, &ifr) < 0)
905 {
906 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno));
907 close(s);
908 return;
909 }
910 close(s);
911 sendarp(ifr.ifr_ifindex, mac, ip);
912 }
913
914 static sessiont *sessiontbysessionidt(sessionidt s)
915 {
916 if (!s || s >= MAXSESSION) return NULL;
917 return &session[s];
918 }
919
920 static sessionidt sessionidtbysessiont(sessiont *s)
921 {
922 sessionidt val = s-session;
923 if (s < session || val >= MAXSESSION) return 0;
924 return val;
925 }
926
927 // actually send a control message for a specific tunnel
928 void tunnelsend(uint8_t * buf, uint16_t l, tunnelidt t)
929 {
930 struct sockaddr_in addr;
931
932 CSTAT(tunnelsend);
933
934 if (!t)
935 {
936 static int backtrace_count = 0;
937 LOG(0, 0, t, "tunnelsend called with 0 as tunnel id\n");
938 STAT(tunnel_tx_errors);
939 log_backtrace(backtrace_count, 5)
940 return;
941 }
942
943 if (!tunnel[t].ip)
944 {
945 static int backtrace_count = 0;
946 LOG(1, 0, t, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
947 log_backtrace(backtrace_count, 5)
948 STAT(tunnel_tx_errors);
949 return;
950 }
951
952 memset(&addr, 0, sizeof(addr));
953 addr.sin_family = AF_INET;
954 *(uint32_t *) & addr.sin_addr = htonl(tunnel[t].ip);
955 addr.sin_port = htons(tunnel[t].port);
956
957 // sequence expected, if sequence in message
958 if (*buf & 0x08) *(uint16_t *) (buf + ((*buf & 0x40) ? 10 : 8)) = htons(tunnel[t].nr);
959
960 // If this is a control message, deal with retries
961 if (*buf & 0x80)
962 {
963 tunnel[t].last = time_now; // control message sent
964 tunnel[t].retry = backoff(tunnel[t].try); // when to resend
965 if (tunnel[t].try)
966 {
967 STAT(tunnel_retries);
968 LOG(3, 0, t, "Control message resend try %d\n", tunnel[t].try);
969 }
970 }
971
972 if (sendto(udpfd, buf, l, 0, (void *) &addr, sizeof(addr)) < 0)
973 {
974 LOG(0, ntohs((*(uint16_t *) (buf + 6))), t, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
975 strerror(errno), udpfd, buf, l, inet_ntoa(addr.sin_addr));
976 STAT(tunnel_tx_errors);
977 return;
978 }
979
980 LOG_HEX(5, "Send Tunnel Data", buf, l);
981 STAT(tunnel_tx_packets);
982 INC_STAT(tunnel_tx_bytes, l);
983 }
984
985 //
986 // Tiny helper function to write data to
987 // the 'tun' device.
988 //
989 int tun_write(uint8_t * data, int size)
990 {
991 return write(tunfd, data, size);
992 }
993
994 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
995 void adjust_tcp_mss(sessionidt s, tunnelidt t, uint8_t *buf, int len, uint8_t *tcp)
996 {
997 int d = (tcp[12] >> 4) * 4;
998 uint8_t *mss = 0;
999 uint8_t *opts;
1000 uint8_t *data;
1001 uint16_t orig;
1002 uint32_t sum;
1003
1004 if ((tcp[13] & 0x3f) & ~(TCP_FLAG_SYN|TCP_FLAG_ACK)) // only want SYN and SYN,ACK
1005 return;
1006
1007 if (tcp + d > buf + len) // short?
1008 return;
1009
1010 opts = tcp + 20;
1011 data = tcp + d;
1012
1013 while (opts < data)
1014 {
1015 if (*opts == 2 && opts[1] == 4) // mss option (2), length 4
1016 {
1017 mss = opts + 2;
1018 if (mss + 2 > data) return; // short?
1019 break;
1020 }
1021
1022 if (*opts == 0) return; // end of options
1023 if (*opts == 1 || !opts[1]) // no op (one byte), or no length (prevent loop)
1024 opts++;
1025 else
1026 opts += opts[1]; // skip over option
1027 }
1028
1029 if (!mss) return; // not found
1030 orig = ntohs(*(uint16_t *) mss);
1031
1032 if (orig <= MSS) return; // mss OK
1033
1034 LOG(5, s, t, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1035 fmtaddr(*(in_addr_t *) (buf + 12), 0), ntohs(*(uint16_t *) tcp),
1036 fmtaddr(*(in_addr_t *) (buf + 16), 1), ntohs(*(uint16_t *) (tcp + 2)),
1037 (tcp[13] & TCP_FLAG_ACK) ? ",ACK" : "", orig, MSS);
1038
1039 // set mss
1040 *(int16_t *) mss = htons(MSS);
1041
1042 // adjust checksum (see rfc1141)
1043 sum = orig + (~MSS & 0xffff);
1044 sum += ntohs(*(uint16_t *) (tcp + 16));
1045 sum = (sum & 0xffff) + (sum >> 16);
1046 *(uint16_t *) (tcp + 16) = htons(sum);
1047 }
1048
1049 // process outgoing (to tunnel) IP
1050 //
1051 static void processipout(uint8_t *buf, int len)
1052 {
1053 sessionidt s;
1054 sessiont *sp;
1055 tunnelidt t;
1056 in_addr_t ip;
1057
1058 uint8_t *data = buf; // Keep a copy of the originals.
1059 int size = len;
1060
1061 uint8_t b[MAXETHER + 20];
1062
1063 CSTAT(processipout);
1064
1065 if (len < MIN_IP_SIZE)
1066 {
1067 LOG(1, 0, 0, "Short IP, %d bytes\n", len);
1068 STAT(tun_rx_errors);
1069 return;
1070 }
1071 if (len >= MAXETHER)
1072 {
1073 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len);
1074 STAT(tun_rx_errors);
1075 return;
1076 }
1077
1078 // Skip the tun header
1079 buf += 4;
1080 len -= 4;
1081
1082 // Got an IP header now
1083 if (*(uint8_t *)(buf) >> 4 != 4)
1084 {
1085 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1086 return;
1087 }
1088
1089 ip = *(uint32_t *)(buf + 16);
1090 if (!(s = sessionbyip(ip)))
1091 {
1092 // Is this a packet for a session that doesn't exist?
1093 static int rate = 0; // Number of ICMP packets we've sent this second.
1094 static int last = 0; // Last time we reset the ICMP packet counter 'rate'.
1095
1096 if (last != time_now)
1097 {
1098 last = time_now;
1099 rate = 0;
1100 }
1101
1102 if (rate++ < config->icmp_rate) // Only send a max of icmp_rate per second.
1103 {
1104 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t *)(buf + 12), 0));
1105 host_unreachable(*(in_addr_t *)(buf + 12), *(uint16_t *)(buf + 4),
1106 config->bind_address ? config->bind_address : my_address, buf, len);
1107 }
1108 return;
1109 }
1110 t = session[s].tunnel;
1111 sp = &session[s];
1112
1113 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1114 if (config->max_packets > 0)
1115 {
1116 if (sess_local[s].last_packet_out == TIME)
1117 {
1118 int max = config->max_packets;
1119
1120 // All packets for throttled sessions are handled by the
1121 // master, so further limit by using the throttle rate.
1122 // A bit of a kludge, since throttle rate is in kbps,
1123 // but should still be generous given our average DSL
1124 // packet size is 200 bytes: a limit of 28kbps equates
1125 // to around 180 packets per second.
1126 if (!config->cluster_iam_master && sp->throttle_out && sp->throttle_out < max)
1127 max = sp->throttle_out;
1128
1129 if (++sess_local[s].packets_out > max)
1130 {
1131 sess_local[s].packets_dropped++;
1132 return;
1133 }
1134 }
1135 else
1136 {
1137 if (sess_local[s].packets_dropped)
1138 {
1139 INC_STAT(tun_rx_dropped, sess_local[s].packets_dropped);
1140 LOG(3, s, t, "Dropped %u/%u packets to %s for %suser %s\n",
1141 sess_local[s].packets_dropped, sess_local[s].packets_out,
1142 fmtaddr(ip, 0), sp->throttle_out ? "throttled " : "",
1143 sp->user);
1144 }
1145
1146 sess_local[s].last_packet_out = TIME;
1147 sess_local[s].packets_out = 1;
1148 sess_local[s].packets_dropped = 0;
1149 }
1150 }
1151
1152 // run access-list if any
1153 if (session[s].filter_out && !ip_filter(buf, len, session[s].filter_out - 1))
1154 return;
1155
1156 // adjust MSS on SYN and SYN,ACK packets with options
1157 if ((ntohs(*(uint16_t *) (buf + 6)) & 0x1fff) == 0 && buf[9] == IPPROTO_TCP) // first tcp fragment
1158 {
1159 int ihl = (buf[0] & 0xf) * 4; // length of IP header
1160 if (len >= ihl + 20 && (buf[ihl + 13] & TCP_FLAG_SYN) && ((buf[ihl + 12] >> 4) > 5))
1161 adjust_tcp_mss(s, t, buf, len, buf + ihl);
1162 }
1163
1164 if (sp->tbf_out)
1165 {
1166 // Are we throttling this session?
1167 if (config->cluster_iam_master)
1168 tbf_queue_packet(sp->tbf_out, data, size);
1169 else
1170 master_throttle_packet(sp->tbf_out, data, size);
1171 return;
1172 }
1173 else if (sp->walled_garden && !config->cluster_iam_master)
1174 {
1175 // We are walled-gardening this
1176 master_garden_packet(s, data, size);
1177 return;
1178 }
1179
1180 LOG(5, s, t, "Ethernet -> Tunnel (%d bytes)\n", len);
1181
1182 // Add on L2TP header
1183 {
1184 uint8_t *p = makeppp(b, sizeof(b), buf, len, s, t, PPPIP);
1185 if (!p) return;
1186 tunnelsend(b, len + (p-b), t); // send it...
1187 }
1188
1189 // Snooping this session, send it to intercept box
1190 if (sp->snoop_ip && sp->snoop_port)
1191 snoop_send_packet(buf, len, sp->snoop_ip, sp->snoop_port);
1192
1193 increment_counter(&sp->cout, &sp->cout_wrap, len); // byte count
1194 sp->cout_delta += len;
1195 sp->pout++;
1196 udp_tx += len;
1197
1198 sess_local[s].cout += len; // To send to master..
1199 sess_local[s].pout++;
1200 }
1201
1202 // process outgoing (to tunnel) IPv6
1203 //
1204 static void processipv6out(uint8_t * buf, int len)
1205 {
1206 sessionidt s;
1207 sessiont *sp;
1208 tunnelidt t;
1209 in_addr_t ip;
1210 struct in6_addr ip6;
1211
1212 uint8_t *data = buf; // Keep a copy of the originals.
1213 int size = len;
1214
1215 uint8_t b[MAXETHER + 20];
1216
1217 CSTAT(processipv6out);
1218
1219 if (len < MIN_IP_SIZE)
1220 {
1221 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len);
1222 STAT(tunnel_tx_errors);
1223 return;
1224 }
1225 if (len >= MAXETHER)
1226 {
1227 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len);
1228 STAT(tunnel_tx_errors);
1229 return;
1230 }
1231
1232 // Skip the tun header
1233 buf += 4;
1234 len -= 4;
1235
1236 // Got an IP header now
1237 if (*(uint8_t *)(buf) >> 4 != 6)
1238 {
1239 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1240 return;
1241 }
1242
1243 ip6 = *(struct in6_addr *)(buf+24);
1244 s = sessionbyipv6(ip6);
1245
1246 if (s == 0)
1247 {
1248 ip = *(uint32_t *)(buf + 32);
1249 s = sessionbyip(ip);
1250 }
1251
1252 if (s == 0)
1253 {
1254 // Is this a packet for a session that doesn't exist?
1255 static int rate = 0; // Number of ICMP packets we've sent this second.
1256 static int last = 0; // Last time we reset the ICMP packet counter 'rate'.
1257
1258 if (last != time_now)
1259 {
1260 last = time_now;
1261 rate = 0;
1262 }
1263
1264 if (rate++ < config->icmp_rate) // Only send a max of icmp_rate per second.
1265 {
1266 // FIXME: Should send icmp6 host unreachable
1267 }
1268 return;
1269 }
1270 t = session[s].tunnel;
1271 sp = &session[s];
1272
1273 // FIXME: add DoS prevention/filters?
1274
1275 if (sp->tbf_out)
1276 {
1277 // Are we throttling this session?
1278 if (config->cluster_iam_master)
1279 tbf_queue_packet(sp->tbf_out, data, size);
1280 else
1281 master_throttle_packet(sp->tbf_out, data, size);
1282 return;
1283 }
1284 else if (sp->walled_garden && !config->cluster_iam_master)
1285 {
1286 // We are walled-gardening this
1287 master_garden_packet(s, data, size);
1288 return;
1289 }
1290
1291 LOG(5, s, t, "Ethernet -> Tunnel (%d bytes)\n", len);
1292
1293 // Add on L2TP header
1294 {
1295 uint8_t *p = makeppp(b, sizeof(b), buf, len, s, t, PPPIPV6);
1296 if (!p) return;
1297 tunnelsend(b, len + (p-b), t); // send it...
1298 }
1299
1300 // Snooping this session, send it to intercept box
1301 if (sp->snoop_ip && sp->snoop_port)
1302 snoop_send_packet(buf, len, sp->snoop_ip, sp->snoop_port);
1303
1304 increment_counter(&sp->cout, &sp->cout_wrap, len); // byte count
1305 sp->cout_delta += len;
1306 sp->pout++;
1307 udp_tx += len;
1308
1309 sess_local[s].cout += len; // To send to master..
1310 sess_local[s].pout++;
1311 }
1312
1313 //
1314 // Helper routine for the TBF filters.
1315 // Used to send queued data in to the user!
1316 //
1317 static void send_ipout(sessionidt s, uint8_t *buf, int len)
1318 {
1319 sessiont *sp;
1320 tunnelidt t;
1321 in_addr_t ip;
1322
1323 uint8_t b[MAXETHER + 20];
1324
1325 if (len < 0 || len > MAXETHER)
1326 {
1327 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len);
1328 return;
1329 }
1330
1331 // Skip the tun header
1332 buf += 4;
1333 len -= 4;
1334
1335 ip = *(in_addr_t *)(buf + 16);
1336
1337 if (!session[s].ip)
1338 return;
1339
1340 t = session[s].tunnel;
1341 sp = &session[s];
1342
1343 LOG(5, s, t, "Ethernet -> Tunnel (%d bytes)\n", len);
1344
1345 // Add on L2TP header
1346 {
1347 uint8_t *p = makeppp(b, sizeof(b), buf, len, s, t, PPPIP);
1348 if (!p) return;
1349 tunnelsend(b, len + (p-b), t); // send it...
1350 }
1351
1352 // Snooping this session.
1353 if (sp->snoop_ip && sp->snoop_port)
1354 snoop_send_packet(buf, len, sp->snoop_ip, sp->snoop_port);
1355
1356 increment_counter(&sp->cout, &sp->cout_wrap, len); // byte count
1357 sp->cout_delta += len;
1358 sp->pout++;
1359 udp_tx += len;
1360
1361 sess_local[s].cout += len; // To send to master..
1362 sess_local[s].pout++;
1363 }
1364
1365 // add an AVP (16 bit)
1366 static void control16(controlt * c, uint16_t avp, uint16_t val, uint8_t m)
1367 {
1368 uint16_t l = (m ? 0x8008 : 0x0008);
1369 *(uint16_t *) (c->buf + c->length + 0) = htons(l);
1370 *(uint16_t *) (c->buf + c->length + 2) = htons(0);
1371 *(uint16_t *) (c->buf + c->length + 4) = htons(avp);
1372 *(uint16_t *) (c->buf + c->length + 6) = htons(val);
1373 c->length += 8;
1374 }
1375
1376 // add an AVP (32 bit)
1377 static void control32(controlt * c, uint16_t avp, uint32_t val, uint8_t m)
1378 {
1379 uint16_t l = (m ? 0x800A : 0x000A);
1380 *(uint16_t *) (c->buf + c->length + 0) = htons(l);
1381 *(uint16_t *) (c->buf + c->length + 2) = htons(0);
1382 *(uint16_t *) (c->buf + c->length + 4) = htons(avp);
1383 *(uint32_t *) (c->buf + c->length + 6) = htonl(val);
1384 c->length += 10;
1385 }
1386
1387 // add an AVP (string)
1388 static void controls(controlt * c, uint16_t avp, char *val, uint8_t m)
1389 {
1390 uint16_t l = ((m ? 0x8000 : 0) + strlen(val) + 6);
1391 *(uint16_t *) (c->buf + c->length + 0) = htons(l);
1392 *(uint16_t *) (c->buf + c->length + 2) = htons(0);
1393 *(uint16_t *) (c->buf + c->length + 4) = htons(avp);
1394 memcpy(c->buf + c->length + 6, val, strlen(val));
1395 c->length += 6 + strlen(val);
1396 }
1397
1398 // add a binary AVP
1399 static void controlb(controlt * c, uint16_t avp, uint8_t *val, unsigned int len, uint8_t m)
1400 {
1401 uint16_t l = ((m ? 0x8000 : 0) + len + 6);
1402 *(uint16_t *) (c->buf + c->length + 0) = htons(l);
1403 *(uint16_t *) (c->buf + c->length + 2) = htons(0);
1404 *(uint16_t *) (c->buf + c->length + 4) = htons(avp);
1405 memcpy(c->buf + c->length + 6, val, len);
1406 c->length += 6 + len;
1407 }
1408
1409 // new control connection
1410 static controlt *controlnew(uint16_t mtype)
1411 {
1412 controlt *c;
1413 if (!controlfree)
1414 c = malloc(sizeof(controlt));
1415 else
1416 {
1417 c = controlfree;
1418 controlfree = c->next;
1419 }
1420 assert(c);
1421 c->next = 0;
1422 *(uint16_t *) (c->buf + 0) = htons(0xC802); // flags/ver
1423 c->length = 12;
1424 control16(c, 0, mtype, 1);
1425 return c;
1426 }
1427
1428 // send zero block if nothing is waiting
1429 // (ZLB send).
1430 static void controlnull(tunnelidt t)
1431 {
1432 uint8_t buf[12];
1433 if (tunnel[t].controlc) // Messages queued; They will carry the ack.
1434 return;
1435
1436 *(uint16_t *) (buf + 0) = htons(0xC802); // flags/ver
1437 *(uint16_t *) (buf + 2) = htons(12); // length
1438 *(uint16_t *) (buf + 4) = htons(tunnel[t].far); // tunnel
1439 *(uint16_t *) (buf + 6) = htons(0); // session
1440 *(uint16_t *) (buf + 8) = htons(tunnel[t].ns); // sequence
1441 *(uint16_t *) (buf + 10) = htons(tunnel[t].nr); // sequence
1442 tunnelsend(buf, 12, t);
1443 }
1444
1445 // add a control message to a tunnel, and send if within window
1446 static void controladd(controlt *c, sessionidt far, tunnelidt t)
1447 {
1448 *(uint16_t *) (c->buf + 2) = htons(c->length); // length
1449 *(uint16_t *) (c->buf + 4) = htons(tunnel[t].far); // tunnel
1450 *(uint16_t *) (c->buf + 6) = htons(far); // session
1451 *(uint16_t *) (c->buf + 8) = htons(tunnel[t].ns); // sequence
1452 tunnel[t].ns++; // advance sequence
1453 // link in message in to queue
1454 if (tunnel[t].controlc)
1455 tunnel[t].controle->next = c;
1456 else
1457 tunnel[t].controls = c;
1458
1459 tunnel[t].controle = c;
1460 tunnel[t].controlc++;
1461
1462 // send now if space in window
1463 if (tunnel[t].controlc <= tunnel[t].window)
1464 {
1465 tunnel[t].try = 0; // first send
1466 tunnelsend(c->buf, c->length, t);
1467 }
1468 }
1469
1470 //
1471 // Throttle or Unthrottle a session
1472 //
1473 // Throttle the data from/to through a session to no more than
1474 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1475 // user).
1476 //
1477 // If either value is -1, the current value is retained for that
1478 // direction.
1479 //
1480 void throttle_session(sessionidt s, int rate_in, int rate_out)
1481 {
1482 if (!session[s].opened)
1483 return; // No-one home.
1484
1485 if (!*session[s].user)
1486 return; // User not logged in
1487
1488 if (rate_in >= 0)
1489 {
1490 int bytes = rate_in * 1024 / 8; // kbits to bytes
1491 if (session[s].tbf_in)
1492 free_tbf(session[s].tbf_in);
1493
1494 if (rate_in > 0)
1495 session[s].tbf_in = new_tbf(s, bytes * 2, bytes, send_ipin);
1496 else
1497 session[s].tbf_in = 0;
1498
1499 session[s].throttle_in = rate_in;
1500 }
1501
1502 if (rate_out >= 0)
1503 {
1504 int bytes = rate_out * 1024 / 8;
1505 if (session[s].tbf_out)
1506 free_tbf(session[s].tbf_out);
1507
1508 if (rate_out > 0)
1509 session[s].tbf_out = new_tbf(s, bytes * 2, bytes, send_ipout);
1510 else
1511 session[s].tbf_out = 0;
1512
1513 session[s].throttle_out = rate_out;
1514 }
1515 }
1516
1517 // add/remove filters from session (-1 = no change)
1518 void filter_session(sessionidt s, int filter_in, int filter_out)
1519 {
1520 if (!session[s].opened)
1521 return; // No-one home.
1522
1523 if (!*session[s].user)
1524 return; // User not logged in
1525
1526 // paranoia
1527 if (filter_in > MAXFILTER) filter_in = -1;
1528 if (filter_out > MAXFILTER) filter_out = -1;
1529 if (session[s].filter_in > MAXFILTER) session[s].filter_in = 0;
1530 if (session[s].filter_out > MAXFILTER) session[s].filter_out = 0;
1531
1532 if (filter_in >= 0)
1533 {
1534 if (session[s].filter_in)
1535 ip_filters[session[s].filter_in - 1].used--;
1536
1537 if (filter_in > 0)
1538 ip_filters[filter_in - 1].used++;
1539
1540 session[s].filter_in = filter_in;
1541 }
1542
1543 if (filter_out >= 0)
1544 {
1545 if (session[s].filter_out)
1546 ip_filters[session[s].filter_out - 1].used--;
1547
1548 if (filter_out > 0)
1549 ip_filters[filter_out - 1].used++;
1550
1551 session[s].filter_out = filter_out;
1552 }
1553 }
1554
1555 // start tidy shutdown of session
1556 void sessionshutdown(sessionidt s, char *reason, int result, int error)
1557 {
1558 int walled_garden = session[s].walled_garden;
1559
1560
1561 CSTAT(sessionshutdown);
1562
1563 if (!session[s].opened)
1564 {
1565 LOG(3, s, session[s].tunnel, "Called sessionshutdown on an unopened session.\n");
1566 return; // not a live session
1567 }
1568
1569 if (!session[s].die)
1570 {
1571 struct param_kill_session data = { &tunnel[session[s].tunnel], &session[s] };
1572 LOG(2, s, session[s].tunnel, "Shutting down session %d: %s\n", s, reason);
1573 run_plugins(PLUGIN_KILL_SESSION, &data);
1574 }
1575
1576 if (session[s].ip && !walled_garden && !session[s].die)
1577 {
1578 // RADIUS Stop message
1579 uint16_t r = radiusnew(s);
1580 if (r)
1581 {
1582 // stop, if not already trying
1583 if (radius[r].state != RADIUSSTOP)
1584 radiussend(r, RADIUSSTOP);
1585 }
1586 else
1587 LOG(1, s, session[s].tunnel, "No free RADIUS sessions for Stop message\n");
1588
1589 // Save counters to dump to accounting file
1590 if (*config->accounting_dir && shut_acct_n < sizeof(shut_acct) / sizeof(*shut_acct))
1591 memcpy(&shut_acct[shut_acct_n++], &session[s], sizeof(session[s]));
1592 }
1593
1594 if (session[s].ip)
1595 { // IP allocated, clear and unroute
1596 int r;
1597 int routed = 0;
1598 for (r = 0; r < MAXROUTE && session[s].route[r].ip; r++)
1599 {
1600 if ((session[s].ip & session[s].route[r].mask) ==
1601 (session[s].route[r].ip & session[s].route[r].mask))
1602 routed++;
1603
1604 routeset(s, session[s].route[r].ip, session[s].route[r].mask, 0, 0);
1605 session[s].route[r].ip = 0;
1606 }
1607
1608 if (session[s].ip_pool_index == -1) // static ip
1609 {
1610 if (!routed) routeset(s, session[s].ip, 0, 0, 0);
1611 session[s].ip = 0;
1612 }
1613 else
1614 free_ip_address(s);
1615
1616 // unroute IPv6, if setup
1617 if (session[s].ppp.ipv6cp == Opened && session[s].ipv6prefixlen)
1618 route6set(s, session[s].ipv6route, session[s].ipv6prefixlen, 0);
1619 }
1620
1621 if (session[s].throttle_in || session[s].throttle_out) // Unthrottle if throttled.
1622 throttle_session(s, 0, 0);
1623
1624 if (result)
1625 { // Send CDN
1626 controlt *c = controlnew(14); // sending CDN
1627 if (error)
1628 {
1629 uint8_t buf[4];
1630 *(uint16_t *) buf = htons(result);
1631 *(uint16_t *) (buf+2) = htons(error);
1632 controlb(c, 1, buf, 4, 1);
1633 }
1634 else
1635 control16(c, 1, result, 1);
1636
1637 control16(c, 14, s, 1); // assigned session (our end)
1638 controladd(c, session[s].far, session[s].tunnel); // send the message
1639 }
1640
1641 if (!session[s].die)
1642 session[s].die = TIME + 150; // Clean up in 15 seconds
1643
1644 // update filter refcounts
1645 if (session[s].filter_in) ip_filters[session[s].filter_in - 1].used--;
1646 if (session[s].filter_out) ip_filters[session[s].filter_out - 1].used--;
1647
1648 // clear PPP state
1649 memset(&session[s].ppp, 0, sizeof(session[s].ppp));
1650 sess_local[s].lcp.restart = 0;
1651 sess_local[s].ipcp.restart = 0;
1652 sess_local[s].ipv6cp.restart = 0;
1653 sess_local[s].ccp.restart = 0;
1654
1655 cluster_send_session(s);
1656 }
1657
1658 void sendipcp(sessionidt s, tunnelidt t)
1659 {
1660 uint8_t buf[MAXETHER];
1661 uint8_t *q;
1662
1663 CSTAT(sendipcp);
1664 LOG(3, s, t, "IPCP: send ConfigReq\n");
1665
1666 if (!session[s].unique_id)
1667 {
1668 if (!++last_id) ++last_id; // skip zero
1669 session[s].unique_id = last_id;
1670 }
1671
1672 q = makeppp(buf, sizeof(buf), 0, 0, s, t, PPPIPCP);
1673 if (!q) return;
1674
1675 *q = ConfigReq;
1676 q[1] = session[s].unique_id & 0xf; // ID, dont care, we only send one type of request
1677 *(uint16_t *) (q + 2) = htons(10); // packet length
1678 q[4] = 3; // ip address option
1679 q[5] = 6; // option length
1680 *(in_addr_t *) (q + 6) = config->peer_address ? config->peer_address :
1681 config->bind_address ? config->bind_address :
1682 my_address; // send my IP
1683
1684 tunnelsend(buf, 10 + (q - buf), t); // send it
1685 restart_timer(s, ipcp);
1686 }
1687
1688 void sendipv6cp(sessionidt s, tunnelidt t)
1689 {
1690 uint8_t buf[MAXETHER];
1691 uint8_t *q;
1692
1693 CSTAT(sendipv6cp);
1694 LOG(3, s, t, "IPV6CP: send ConfigReq\n");
1695
1696 q = makeppp(buf, sizeof(buf), 0, 0, s, t, PPPIPV6CP);
1697 if (!q) return;
1698
1699 *q = ConfigReq;
1700 q[1] = session[s].unique_id & 0xf; // ID, don't care, we
1701 // only send one type
1702 // of request
1703 *(uint16_t *) (q + 2) = htons(14);
1704 q[4] = 1; // interface identifier option
1705 q[5] = 10; // option length
1706 *(uint32_t *) (q + 6) = 0; // We'll be prefix::1
1707 *(uint32_t *) (q + 10) = 0;
1708 q[13] = 1;
1709
1710 tunnelsend(buf, 14 + (q - buf), t); // send it
1711 restart_timer(s, ipv6cp);
1712 }
1713
1714 static void sessionclear(sessionidt s)
1715 {
1716 memset(&session[s], 0, sizeof(session[s]));
1717 memset(&sess_local[s], 0, sizeof(sess_local[s]));
1718 memset(&cli_session_actions[s], 0, sizeof(cli_session_actions[s]));
1719
1720 session[s].tunnel = T_FREE; // Mark it as free.
1721 session[s].next = sessionfree;
1722 sessionfree = s;
1723 }
1724
1725 // kill a session now
1726 void sessionkill(sessionidt s, char *reason)
1727 {
1728
1729 CSTAT(sessionkill);
1730
1731 if (!session[s].opened) // not alive
1732 return;
1733
1734 if (session[s].next)
1735 {
1736 LOG(0, s, session[s].tunnel, "Tried to kill a session with next pointer set (%d)\n", session[s].next);
1737 return;
1738 }
1739
1740 session[s].die = TIME;
1741 sessionshutdown(s, reason, 3, 0); // close radius/routes, etc.
1742 if (sess_local[s].radius)
1743 radiusclear(sess_local[s].radius, s); // cant send clean accounting data, session is killed
1744
1745 LOG(2, s, session[s].tunnel, "Kill session %d (%s): %s\n", s, session[s].user, reason);
1746 sessionclear(s);
1747 cluster_send_session(s);
1748 }
1749
1750 static void tunnelclear(tunnelidt t)
1751 {
1752 if (!t) return;
1753 memset(&tunnel[t], 0, sizeof(tunnel[t]));
1754 tunnel[t].state = TUNNELFREE;
1755 }
1756
1757 // kill a tunnel now
1758 static void tunnelkill(tunnelidt t, char *reason)
1759 {
1760 sessionidt s;
1761 controlt *c;
1762
1763 CSTAT(tunnelkill);
1764
1765 tunnel[t].state = TUNNELDIE;
1766
1767 // free control messages
1768 while ((c = tunnel[t].controls))
1769 {
1770 controlt * n = c->next;
1771 tunnel[t].controls = n;
1772 tunnel[t].controlc--;
1773 c->next = controlfree;
1774 controlfree = c;
1775 }
1776 // kill sessions
1777 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
1778 if (session[s].tunnel == t)
1779 sessionkill(s, reason);
1780
1781 // free tunnel
1782 tunnelclear(t);
1783 LOG(1, 0, t, "Kill tunnel %d: %s\n", t, reason);
1784 cli_tunnel_actions[t].action = 0;
1785 cluster_send_tunnel(t);
1786 }
1787
1788 // shut down a tunnel cleanly
1789 static void tunnelshutdown(tunnelidt t, char *reason, int result, int error, char *msg)
1790 {
1791 sessionidt s;
1792
1793 CSTAT(tunnelshutdown);
1794
1795 if (!tunnel[t].last || !tunnel[t].far || tunnel[t].state == TUNNELFREE)
1796 {
1797 // never set up, can immediately kill
1798 tunnelkill(t, reason);
1799 return;
1800 }
1801 LOG(1, 0, t, "Shutting down tunnel %d (%s)\n", t, reason);
1802
1803 // close session
1804 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
1805 if (session[s].tunnel == t)
1806 sessionshutdown(s, reason, 0, 0);
1807
1808 tunnel[t].state = TUNNELDIE;
1809 tunnel[t].die = TIME + 700; // Clean up in 70 seconds
1810 cluster_send_tunnel(t);
1811 // TBA - should we wait for sessions to stop?
1812 if (result)
1813 {
1814 controlt *c = controlnew(4); // sending StopCCN
1815 if (error)
1816 {
1817 uint8_t buf[64];
1818 int l = 4;
1819 *(uint16_t *) buf = htons(result);
1820 *(uint16_t *) (buf+2) = htons(error);
1821 if (msg)
1822 {
1823 int m = strlen(msg);
1824 if (m + 4 > sizeof(buf))
1825 m = sizeof(buf) - 4;
1826
1827 memcpy(buf+4, msg, m);
1828 l += m;
1829 }
1830
1831 controlb(c, 1, buf, l, 1);
1832 }
1833 else
1834 control16(c, 1, result, 1);
1835
1836 control16(c, 9, t, 1); // assigned tunnel (our end)
1837 controladd(c, 0, t); // send the message
1838 }
1839 }
1840
1841 // read and process packet on tunnel (UDP)
1842 void processudp(uint8_t *buf, int len, struct sockaddr_in *addr)
1843 {
1844 uint8_t *chapresponse = NULL;
1845 uint16_t l = len, t = 0, s = 0, ns = 0, nr = 0;
1846 uint8_t *p = buf + 2;
1847
1848
1849 CSTAT(processudp);
1850
1851 udp_rx += len;
1852 udp_rx_pkt++;
1853 LOG_HEX(5, "UDP Data", buf, len);
1854 STAT(tunnel_rx_packets);
1855 INC_STAT(tunnel_rx_bytes, len);
1856 if (len < 6)
1857 {
1858 LOG(1, 0, 0, "Short UDP, %d bytes\n", len);
1859 STAT(tunnel_rx_errors);
1860 return;
1861 }
1862 if ((buf[1] & 0x0F) != 2)
1863 {
1864 LOG(1, 0, 0, "Bad L2TP ver %d\n", (buf[1] & 0x0F) != 2);
1865 STAT(tunnel_rx_errors);
1866 return;
1867 }
1868 if (*buf & 0x40)
1869 { // length
1870 l = ntohs(*(uint16_t *) p);
1871 p += 2;
1872 }
1873 t = ntohs(*(uint16_t *) p);
1874 p += 2;
1875 s = ntohs(*(uint16_t *) p);
1876 p += 2;
1877 if (s >= MAXSESSION)
1878 {
1879 LOG(1, s, t, "Received UDP packet with invalid session ID\n");
1880 STAT(tunnel_rx_errors);
1881 return;
1882 }
1883 if (t >= MAXTUNNEL)
1884 {
1885 LOG(1, s, t, "Received UDP packet with invalid tunnel ID\n");
1886 STAT(tunnel_rx_errors);
1887 return;
1888 }
1889 if (*buf & 0x08)
1890 { // ns/nr
1891 ns = ntohs(*(uint16_t *) p);
1892 p += 2;
1893 nr = ntohs(*(uint16_t *) p);
1894 p += 2;
1895 }
1896 if (*buf & 0x02)
1897 { // offset
1898 uint16_t o = ntohs(*(uint16_t *) p);
1899 p += o + 2;
1900 }
1901 if ((p - buf) > l)
1902 {
1903 LOG(1, s, t, "Bad length %d>%d\n", (int) (p - buf), l);
1904 STAT(tunnel_rx_errors);
1905 return;
1906 }
1907 l -= (p - buf);
1908
1909 // used to time out old tunnels
1910 if (t && tunnel[t].state == TUNNELOPEN)
1911 tunnel[t].lastrec = time_now;
1912
1913 if (*buf & 0x80)
1914 { // control
1915 uint16_t message = 0xFFFF; // message type
1916 uint8_t fatal = 0;
1917 uint8_t mandatory = 0;
1918 uint16_t asession = 0; // assigned session
1919 uint32_t amagic = 0; // magic number
1920 uint8_t aflags = 0; // flags from last LCF
1921 uint16_t version = 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
1922 char called[MAXTEL] = ""; // called number
1923 char calling[MAXTEL] = ""; // calling number
1924
1925 if (!config->cluster_iam_master)
1926 {
1927 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
1928 return;
1929 }
1930
1931 // control messages must have bits 0x80|0x40|0x08
1932 // (type, length and sequence) set, and bits 0x02|0x01
1933 // (offset and priority) clear
1934 if ((*buf & 0xCB) != 0xC8)
1935 {
1936 LOG(1, s, t, "Bad control header %02X\n", *buf);
1937 STAT(tunnel_rx_errors);
1938 return;
1939 }
1940
1941 // check for duplicate tunnel open message
1942 if (!t && ns == 0)
1943 {
1944 int i;
1945
1946 //
1947 // Is this a duplicate of the first packet? (SCCRQ)
1948 //
1949 for (i = 1; i <= config->cluster_highest_tunnelid ; ++i)
1950 {
1951 if (tunnel[i].state != TUNNELOPENING ||
1952 tunnel[i].ip != ntohl(*(in_addr_t *) & addr->sin_addr) ||
1953 tunnel[i].port != ntohs(addr->sin_port) )
1954 continue;
1955 t = i;
1956 LOG(3, s, t, "Duplicate SCCRQ?\n");
1957 break;
1958 }
1959 }
1960
1961 LOG(3, s, t, "Control message (%d bytes): (unacked %d) l-ns %d l-nr %d r-ns %d r-nr %d\n",
1962 l, tunnel[t].controlc, tunnel[t].ns, tunnel[t].nr, ns, nr);
1963
1964 // if no tunnel specified, assign one
1965 if (!t)
1966 {
1967 if (!(t = new_tunnel()))
1968 {
1969 LOG(1, 0, 0, "No more tunnels\n");
1970 STAT(tunnel_overflow);
1971 return;
1972 }
1973 tunnelclear(t);
1974 tunnel[t].ip = ntohl(*(in_addr_t *) & addr->sin_addr);
1975 tunnel[t].port = ntohs(addr->sin_port);
1976 tunnel[t].window = 4; // default window
1977 STAT(tunnel_created);
1978 LOG(1, 0, t, " New tunnel from %s:%u ID %d\n",
1979 fmtaddr(htonl(tunnel[t].ip), 0), tunnel[t].port, t);
1980 }
1981
1982 // If the 'ns' just received is not the 'nr' we're
1983 // expecting, just send an ack and drop it.
1984 //
1985 // if 'ns' is less, then we got a retransmitted packet.
1986 // if 'ns' is greater than missed a packet. Either way
1987 // we should ignore it.
1988 if (ns != tunnel[t].nr)
1989 {
1990 // is this the sequence we were expecting?
1991 STAT(tunnel_rx_errors);
1992 LOG(1, 0, t, " Out of sequence tunnel %d, (%d is not the expected %d)\n",
1993 t, ns, tunnel[t].nr);
1994
1995 if (l) // Is this not a ZLB?
1996 controlnull(t);
1997 return;
1998 }
1999
2000 // check sequence of this message
2001 {
2002 int skip = tunnel[t].window; // track how many in-window packets are still in queue
2003 // some to clear maybe?
2004 while (tunnel[t].controlc > 0 && (((tunnel[t].ns - tunnel[t].controlc) - nr) & 0x8000))
2005 {
2006 controlt *c = tunnel[t].controls;
2007 tunnel[t].controls = c->next;
2008 tunnel[t].controlc--;
2009 c->next = controlfree;
2010 controlfree = c;
2011 skip--;
2012 tunnel[t].try = 0; // we have progress
2013 }
2014
2015 // receiver advance (do here so quoted correctly in any sends below)
2016 if (l) tunnel[t].nr = (ns + 1);
2017 if (skip < 0) skip = 0;
2018 if (skip < tunnel[t].controlc)
2019 {
2020 // some control packets can now be sent that were previous stuck out of window
2021 int tosend = tunnel[t].window - skip;
2022 controlt *c = tunnel[t].controls;
2023 while (c && skip)
2024 {
2025 c = c->next;
2026 skip--;
2027 }
2028 while (c && tosend)
2029 {
2030 tunnel[t].try = 0; // first send
2031 tunnelsend(c->buf, c->length, t);
2032 c = c->next;
2033 tosend--;
2034 }
2035 }
2036 if (!tunnel[t].controlc)
2037 tunnel[t].retry = 0; // caught up
2038 }
2039 if (l)
2040 { // if not a null message
2041 int result = 0;
2042 int error = 0;
2043 char *msg = 0;
2044
2045 // process AVPs
2046 while (l && !(fatal & 0x80)) // 0x80 = mandatory AVP
2047 {
2048 uint16_t n = (ntohs(*(uint16_t *) p) & 0x3FF);
2049 uint8_t *b = p;
2050 uint8_t flags = *p;
2051 uint16_t mtype;
2052 if (n > l)
2053 {
2054 LOG(1, s, t, "Invalid length in AVP\n");
2055 STAT(tunnel_rx_errors);
2056 return;
2057 }
2058 p += n; // next
2059 l -= n;
2060 if (flags & 0x3C) // reserved bits, should be clear
2061 {
2062 LOG(1, s, t, "Unrecognised AVP flags %02X\n", *b);
2063 fatal = flags;
2064 result = 2; // general error
2065 error = 3; // reserved field non-zero
2066 msg = 0;
2067 continue; // next
2068 }
2069 b += 2;
2070 if (*(uint16_t *) (b))
2071 {
2072 LOG(2, s, t, "Unknown AVP vendor %d\n", ntohs(*(uint16_t *) (b)));
2073 fatal = flags;
2074 result = 2; // general error
2075 error = 6; // generic vendor-specific error
2076 msg = "unsupported vendor-specific";
2077 continue; // next
2078 }
2079 b += 2;
2080 mtype = ntohs(*(uint16_t *) (b));
2081 b += 2;
2082 n -= 6;
2083
2084 if (flags & 0x40)
2085 {
2086 uint16_t orig_len;
2087
2088 // handle hidden AVPs
2089 if (!*config->l2tp_secret)
2090 {
2091 LOG(1, s, t, "Hidden AVP requested, but no L2TP secret.\n");
2092 fatal = flags;
2093 result = 2; // general error
2094 error = 6; // generic vendor-specific error
2095 msg = "secret not specified";
2096 continue;
2097 }
2098 if (!session[s].random_vector_length)
2099 {
2100 LOG(1, s, t, "Hidden AVP requested, but no random vector.\n");
2101 fatal = flags;
2102 result = 2; // general error
2103 error = 6; // generic
2104 msg = "no random vector";
2105 continue;
2106 }
2107 if (n < 8)
2108 {
2109 LOG(2, s, t, "Short hidden AVP.\n");
2110 fatal = flags;
2111 result = 2; // general error
2112 error = 2; // length is wrong
2113 msg = 0;
2114 continue;
2115 }
2116
2117 // Unhide the AVP
2118 unhide_value(b, n, mtype, session[s].random_vector, session[s].random_vector_length);
2119
2120 orig_len = ntohs(*(uint16_t *) b);
2121 if (orig_len > n + 2)
2122 {
2123 LOG(1, s, t, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2124 orig_len, n);
2125
2126 fatal = flags;
2127 result = 2; // general error
2128 error = 2; // length is wrong
2129 msg = 0;
2130 continue;
2131 }
2132
2133 b += 2;
2134 n = orig_len;
2135 }
2136
2137 LOG(4, s, t, " AVP %d (%s) len %d%s%s\n", mtype, l2tp_avp_name(mtype), n,
2138 flags & 0x40 ? ", hidden" : "", flags & 0x80 ? ", mandatory" : "");
2139
2140 switch (mtype)
2141 {
2142 case 0: // message type
2143 message = ntohs(*(uint16_t *) b);
2144 mandatory = flags & 0x80;
2145 LOG(4, s, t, " Message type = %d (%s)\n", *b, l2tp_code(message));
2146 break;
2147 case 1: // result code
2148 {
2149 uint16_t rescode = ntohs(*(uint16_t *) b);
2150 const char* resdesc = "(unknown)";
2151 if (message == 4)
2152 { /* StopCCN */
2153 resdesc = l2tp_stopccn_result_code(rescode);
2154 }
2155 else if (message == 14)
2156 { /* CDN */
2157 resdesc = l2tp_cdn_result_code(rescode);
2158 }
2159
2160 LOG(4, s, t, " Result Code %d: %s\n", rescode, resdesc);
2161 if (n >= 4)
2162 {
2163 uint16_t errcode = ntohs(*(uint16_t *)(b + 2));
2164 LOG(4, s, t, " Error Code %d: %s\n", errcode, l2tp_error_code(errcode));
2165 }
2166 if (n > 4)
2167 LOG(4, s, t, " Error String: %.*s\n", n-4, b+4);
2168
2169 break;
2170 }
2171 break;
2172 case 2: // protocol version
2173 {
2174 version = ntohs(*(uint16_t *) (b));
2175 LOG(4, s, t, " Protocol version = %d\n", version);
2176 if (version && version != 0x0100)
2177 { // allow 0.0 and 1.0
2178 LOG(1, s, t, " Bad protocol version %04X\n", version);
2179 fatal = flags;
2180 result = 5; // unspported protocol version
2181 error = 0x0100; // supported version
2182 msg = 0;
2183 continue; // next
2184 }
2185 }
2186 break;
2187 case 3: // framing capabilities
2188 // LOG(4, s, t, "Framing capabilities\n");
2189 break;
2190 case 4: // bearer capabilities
2191 // LOG(4, s, t, "Bearer capabilities\n");
2192 break;
2193 case 5: // tie breaker
2194 // We never open tunnels, so we don't care about tie breakers
2195 // LOG(4, s, t, "Tie breaker\n");
2196 continue;
2197 case 6: // firmware revision
2198 // LOG(4, s, t, "Firmware revision\n");
2199 break;
2200 case 7: // host name
2201 memset(tunnel[t].hostname, 0, sizeof(tunnel[t].hostname));
2202 memcpy(tunnel[t].hostname, b, (n < sizeof(tunnel[t].hostname)) ? n : sizeof(tunnel[t].hostname) - 1);
2203 LOG(4, s, t, " Tunnel hostname = \"%s\"\n", tunnel[t].hostname);
2204 // TBA - to send to RADIUS
2205 break;
2206 case 8: // vendor name
2207 memset(tunnel[t].vendor, 0, sizeof(tunnel[t].vendor));
2208 memcpy(tunnel[t].vendor, b, (n < sizeof(tunnel[t].vendor)) ? n : sizeof(tunnel[t].vendor) - 1);
2209 LOG(4, s, t, " Vendor name = \"%s\"\n", tunnel[t].vendor);
2210 break;
2211 case 9: // assigned tunnel
2212 tunnel[t].far = ntohs(*(uint16_t *) (b));
2213 LOG(4, s, t, " Remote tunnel id = %d\n", tunnel[t].far);
2214 break;
2215 case 10: // rx window
2216 tunnel[t].window = ntohs(*(uint16_t *) (b));
2217 if (!tunnel[t].window)
2218 tunnel[t].window = 1; // window of 0 is silly
2219 LOG(4, s, t, " rx window = %d\n", tunnel[t].window);
2220 break;
2221 case 11: // Challenge
2222 {
2223 LOG(4, s, t, " LAC requested CHAP authentication for tunnel\n");
2224 build_chap_response(b, 2, n, &chapresponse);
2225 }
2226 break;
2227 case 13: // Response
2228 // Why did they send a response? We never challenge.
2229 LOG(2, s, t, " received unexpected challenge response\n");
2230 break;
2231
2232 case 14: // assigned session
2233 asession = session[s].far = ntohs(*(uint16_t *) (b));
2234 LOG(4, s, t, " assigned session = %d\n", asession);
2235 break;
2236 case 15: // call serial number
2237 LOG(4, s, t, " call serial number = %d\n", ntohl(*(uint32_t *)b));
2238 break;
2239 case 18: // bearer type
2240 LOG(4, s, t, " bearer type = %d\n", ntohl(*(uint32_t *)b));
2241 // TBA - for RADIUS
2242 break;
2243 case 19: // framing type
2244 LOG(4, s, t, " framing type = %d\n", ntohl(*(uint32_t *)b));
2245 // TBA
2246 break;
2247 case 21: // called number
2248 memset(called, 0, sizeof(called));
2249 memcpy(called, b, (n < sizeof(called)) ? n : sizeof(called) - 1);
2250 LOG(4, s, t, " Called <%s>\n", called);
2251 break;
2252 case 22: // calling number
2253 memset(calling, 0, sizeof(calling));
2254 memcpy(calling, b, (n < sizeof(calling)) ? n : sizeof(calling) - 1);
2255 LOG(4, s, t, " Calling <%s>\n", calling);
2256 break;
2257 case 23: // subtype
2258 break;
2259 case 24: // tx connect speed
2260 if (n == 4)
2261 {
2262 session[s].tx_connect_speed = ntohl(*(uint32_t *)b);
2263 }
2264 else
2265 {
2266 // AS5300s send connect speed as a string
2267 char tmp[30];
2268 memset(tmp, 0, sizeof(tmp));
2269 memcpy(tmp, b, (n < sizeof(tmp)) ? n : sizeof(tmp) - 1);
2270 session[s].tx_connect_speed = atol(tmp);
2271 }
2272 LOG(4, s, t, " TX connect speed <%u>\n", session[s].tx_connect_speed);
2273 break;
2274 case 38: // rx connect speed
2275 if (n == 4)
2276 {
2277 session[s].rx_connect_speed = ntohl(*(uint32_t *)b);
2278 }
2279 else
2280 {
2281 // AS5300s send connect speed as a string
2282 char tmp[30];
2283 memset(tmp, 0, sizeof(tmp));
2284 memcpy(tmp, b, (n < sizeof(tmp)) ? n : sizeof(tmp) - 1);
2285 session[s].rx_connect_speed = atol(tmp);
2286 }
2287 LOG(4, s, t, " RX connect speed <%u>\n", session[s].rx_connect_speed);
2288 break;
2289 case 25: // Physical Channel ID
2290 {
2291 uint32_t tmp = ntohl(*(uint32_t *) b);
2292 LOG(4, s, t, " Physical Channel ID <%X>\n", tmp);
2293 break;
2294 }
2295 case 29: // Proxy Authentication Type
2296 {
2297 uint16_t atype = ntohs(*(uint16_t *)b);
2298 LOG(4, s, t, " Proxy Auth Type %d (%s)\n", atype, ppp_auth_type(atype));
2299 break;
2300 }
2301 case 30: // Proxy Authentication Name
2302 {
2303 char authname[64];
2304 memset(authname, 0, sizeof(authname));
2305 memcpy(authname, b, (n < sizeof(authname)) ? n : sizeof(authname) - 1);
2306 LOG(4, s, t, " Proxy Auth Name (%s)\n",
2307 authname);
2308 break;
2309 }
2310 case 31: // Proxy Authentication Challenge
2311 {
2312 LOG(4, s, t, " Proxy Auth Challenge\n");
2313 break;
2314 }
2315 case 32: // Proxy Authentication ID
2316 {
2317 uint16_t authid = ntohs(*(uint16_t *)(b));
2318 LOG(4, s, t, " Proxy Auth ID (%d)\n", authid);
2319 break;
2320 }
2321 case 33: // Proxy Authentication Response
2322 LOG(4, s, t, " Proxy Auth Response\n");
2323 break;
2324 case 27: // last sent lcp
2325 { // find magic number
2326 uint8_t *p = b, *e = p + n;
2327 while (p + 1 < e && p[1] && p + p[1] <= e)
2328 {
2329 if (*p == 5 && p[1] == 6) // Magic-Number
2330 amagic = ntohl(*(uint32_t *) (p + 2));
2331 else if (*p == 7) // Protocol-Field-Compression
2332 aflags |= SESSION_PFC;
2333 else if (*p == 8) // Address-and-Control-Field-Compression
2334 aflags |= SESSION_ACFC;
2335 p += p[1];
2336 }
2337 }
2338 break;
2339 case 28: // last recv lcp confreq
2340 break;
2341 case 26: // Initial Received LCP CONFREQ
2342 break;
2343 case 39: // seq required - we control it as an LNS anyway...
2344 break;
2345 case 36: // Random Vector
2346 LOG(4, s, t, " Random Vector received. Enabled AVP Hiding.\n");
2347 memset(session[s].random_vector, 0, sizeof(session[s].random_vector));
2348 if (n > sizeof(session[s].random_vector))
2349 n = sizeof(session[s].random_vector);
2350 memcpy(session[s].random_vector, b, n);
2351 session[s].random_vector_length = n;
2352 break;
2353 default:
2354 {
2355 static char e[] = "unknown AVP 0xXXXX";
2356 LOG(2, s, t, " Unknown AVP type %d\n", mtype);
2357 fatal = flags;
2358 result = 2; // general error
2359 error = 8; // unknown mandatory AVP
2360 sprintf((msg = e) + 14, "%04x", mtype);
2361 continue; // next
2362 }
2363 }
2364 }
2365 // process message
2366 if (fatal & 0x80)
2367 tunnelshutdown(t, "Invalid mandatory AVP", result, error, msg);
2368 else
2369 switch (message)
2370 {
2371 case 1: // SCCRQ - Start Control Connection Request
2372 tunnel[t].state = TUNNELOPENING;
2373 if (main_quit != QUIT_SHUTDOWN)
2374 {
2375 controlt *c = controlnew(2); // sending SCCRP
2376 control16(c, 2, version, 1); // protocol version
2377 control32(c, 3, 3, 1); // framing
2378 controls(c, 7, hostname, 1); // host name
2379 if (chapresponse) controlb(c, 13, chapresponse, 16, 1); // Challenge response
2380 control16(c, 9, t, 1); // assigned tunnel
2381 controladd(c, 0, t); // send the resply
2382 }
2383 else
2384 {
2385 tunnelshutdown(t, "Shutting down", 6, 0, 0);
2386 }
2387 break;
2388 case 2: // SCCRP
2389 tunnel[t].state = TUNNELOPEN;
2390 break;
2391 case 3: // SCCN
2392 tunnel[t].state = TUNNELOPEN;
2393 controlnull(t); // ack
2394 break;
2395 case 4: // StopCCN
2396 controlnull(t); // ack
2397 tunnelshutdown(t, "Stopped", 0, 0, 0); // Shut down cleanly
2398 break;
2399 case 6: // HELLO
2400 controlnull(t); // simply ACK
2401 break;
2402 case 7: // OCRQ
2403 // TBA
2404 break;
2405 case 8: // OCRO
2406 // TBA
2407 break;
2408 case 9: // OCCN
2409 // TBA
2410 break;
2411 case 10: // ICRQ
2412 if (sessionfree && main_quit != QUIT_SHUTDOWN)
2413 {
2414 controlt *c = controlnew(11); // ICRP
2415
2416 s = sessionfree;
2417 sessionfree = session[s].next;
2418 memset(&session[s], 0, sizeof(session[s]));
2419
2420 if (s > config->cluster_highest_sessionid)
2421 config->cluster_highest_sessionid = s;
2422
2423 session[s].opened = time_now;
2424 session[s].tunnel = t;
2425 session[s].far = asession;
2426 session[s].last_packet = time_now;
2427 LOG(3, s, t, "New session (%d/%d)\n", tunnel[t].far, session[s].far);
2428 control16(c, 14, s, 1); // assigned session
2429 controladd(c, asession, t); // send the reply
2430
2431 strncpy(session[s].called, called, sizeof(session[s].called) - 1);
2432 strncpy(session[s].calling, calling, sizeof(session[s].calling) - 1);
2433
2434 session[s].ppp.phase = Establish;
2435 session[s].ppp.lcp = Starting;
2436
2437 STAT(session_created);
2438 break;
2439 }
2440
2441 {
2442 controlt *c = controlnew(14); // CDN
2443 if (!sessionfree)
2444 {
2445 STAT(session_overflow);
2446 LOG(1, 0, t, "No free sessions\n");
2447 control16(c, 1, 4, 0); // temporary lack of resources
2448 }
2449 else
2450 control16(c, 1, 2, 7); // shutting down, try another
2451
2452 controladd(c, asession, t); // send the message
2453 }
2454 return;
2455 case 11: // ICRP
2456 // TBA
2457 break;
2458 case 12: // ICCN
2459 if (amagic == 0) amagic = time_now;
2460 session[s].magic = amagic; // set magic number
2461 session[s].flags = aflags; // set flags received
2462 session[s].mru = PPPMTU; // default
2463 controlnull(t); // ack
2464
2465 // start LCP
2466 sess_local[s].lcp_authtype = config->radius_authprefer;
2467 sess_local[s].ppp_mru = MRU;
2468 sendlcp(s, t);
2469 change_state(s, lcp, RequestSent);
2470 break;
2471
2472 case 14: // CDN
2473 controlnull(t); // ack
2474 sessionshutdown(s, "Closed (Received CDN).", 0, 0);
2475 break;
2476 case 0xFFFF:
2477 LOG(1, s, t, "Missing message type\n");
2478 break;
2479 default:
2480 STAT(tunnel_rx_errors);
2481 if (mandatory)
2482 tunnelshutdown(t, "Unknown message type", 2, 6, "unknown message type");
2483 else
2484 LOG(1, s, t, "Unknown message type %d\n", message);
2485 break;
2486 }
2487 if (chapresponse) free(chapresponse);
2488 cluster_send_tunnel(t);
2489 }
2490 else
2491 {
2492 LOG(4, s, t, " Got a ZLB ack\n");
2493 }
2494 }
2495 else
2496 { // data
2497 uint16_t proto;
2498
2499 LOG_HEX(5, "Receive Tunnel Data", p, l);
2500 if (l > 2 && p[0] == 0xFF && p[1] == 0x03)
2501 { // HDLC address header, discard
2502 p += 2;
2503 l -= 2;
2504 }
2505 if (l < 2)
2506 {
2507 LOG(1, s, t, "Short ppp length %d\n", l);
2508 STAT(tunnel_rx_errors);
2509 return;
2510 }
2511 if (*p & 1)
2512 {
2513 proto = *p++;
2514 l--;
2515 }
2516 else
2517 {
2518 proto = ntohs(*(uint16_t *) p);
2519 p += 2;
2520 l -= 2;
2521 }
2522
2523 if (s && !session[s].opened) // Is something wrong??
2524 {
2525 if (!config->cluster_iam_master)
2526 {
2527 // Pass it off to the master to deal with..
2528 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2529 return;
2530 }
2531
2532
2533 LOG(1, s, t, "UDP packet contains session which is not opened. Dropping packet.\n");
2534 STAT(tunnel_rx_errors);
2535 return;
2536 }
2537
2538 if (proto == PPPPAP)
2539 {
2540 session[s].last_packet = time_now;
2541 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2542 processpap(s, t, p, l);
2543 }
2544 else if (proto == PPPCHAP)
2545 {
2546 session[s].last_packet = time_now;
2547 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2548 processchap(s, t, p, l);
2549 }
2550 else if (proto == PPPLCP)
2551 {
2552 session[s].last_packet = time_now;
2553 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2554 processlcp(s, t, p, l);
2555 }
2556 else if (proto == PPPIPCP)
2557 {
2558 session[s].last_packet = time_now;
2559 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2560 processipcp(s, t, p, l);
2561 }
2562 else if (proto == PPPIPV6CP && config->ipv6_prefix.s6_addr[0])
2563 {
2564 session[s].last_packet = time_now;
2565 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2566 processipv6cp(s, t, p, l);
2567 }
2568 else if (proto == PPPCCP)
2569 {
2570 session[s].last_packet = time_now;
2571 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2572 processccp(s, t, p, l);
2573 }
2574 else if (proto == PPPIP)
2575 {
2576 if (session[s].die)
2577 {
2578 LOG(4, s, t, "Session %d is closing. Don't process PPP packets\n", s);
2579 return; // closing session, PPP not processed
2580 }
2581
2582 session[s].last_packet = time_now;
2583 if (session[s].walled_garden && !config->cluster_iam_master)
2584 {
2585 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2586 return;
2587 }
2588
2589 processipin(s, t, p, l);
2590 }
2591 else if (proto == PPPIPV6 && config->ipv6_prefix.s6_addr[0])
2592 {
2593 if (session[s].die)
2594 {
2595 LOG(4, s, t, "Session %d is closing. Don't process PPP packets\n", s);
2596 return; // closing session, PPP not processed
2597 }
2598
2599 session[s].last_packet = time_now;
2600 if (session[s].walled_garden && !config->cluster_iam_master)
2601 {
2602 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2603 return;
2604 }
2605
2606 processipv6in(s, t, p, l);
2607 }
2608 else if (session[s].ppp.lcp == Opened)
2609 {
2610 uint8_t buf[MAXETHER];
2611 uint8_t *q;
2612 int mru = session[s].mru;
2613 if (mru > sizeof(buf)) mru = sizeof(buf);
2614
2615 l += 6;
2616 if (l > mru) l = mru;
2617
2618 q = makeppp(buf, sizeof(buf), 0, 0, s, t, PPPLCP);
2619 if (!q) return;
2620
2621 *q = ProtocolRej;
2622 *(q + 1) = ++sess_local[s].lcp_ident;
2623 *(uint16_t *)(q + 2) = htons(l);
2624 *(uint16_t *)(q + 4) = htons(proto);
2625 memcpy(q + 6, p, l - 6);
2626
2627 if (proto == PPPIPV6CP)
2628 LOG(3, s, t, "LCP: send ProtocolRej (IPV6CP: not configured)\n");
2629 else
2630 LOG(2, s, t, "LCP: sent ProtocolRej (0x%04X: unsupported)\n", proto);
2631
2632 tunnelsend(buf, l + (q - buf), t);
2633 }
2634 else
2635 {
2636 LOG(2, s, t, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
2637 proto, ppp_state(session[s].ppp.lcp));
2638 }
2639 }
2640 }
2641
2642 // read and process packet on tun
2643 static void processtun(uint8_t * buf, int len)
2644 {
2645 LOG_HEX(5, "Receive TUN Data", buf, len);
2646 STAT(tun_rx_packets);
2647 INC_STAT(tun_rx_bytes, len);
2648
2649 CSTAT(processtun);
2650
2651 eth_rx_pkt++;
2652 eth_rx += len;
2653 if (len < 22)
2654 {
2655 LOG(1, 0, 0, "Short tun packet %d bytes\n", len);
2656 STAT(tun_rx_errors);
2657 return;
2658 }
2659
2660 if (*(uint16_t *) (buf + 2) == htons(PKTIP)) // IPv4
2661 processipout(buf, len);
2662 else if (*(uint16_t *) (buf + 2) == htons(PKTIPV6) // IPV6
2663 && config->ipv6_prefix.s6_addr[0])
2664 processipv6out(buf, len);
2665
2666 // Else discard.
2667 }
2668
2669 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
2670 // that we look at the whole of the tunnel, radius and session tables
2671 // every second
2672 static void regular_cleanups(double period)
2673 {
2674 // Next tunnel, radius and session to check for actions on.
2675 static tunnelidt t = 0;
2676 static int r = 0;
2677 static sessionidt s = 0;
2678
2679 int t_actions = 0;
2680 int r_actions = 0;
2681 int s_actions = 0;
2682
2683 int t_slice;
2684 int r_slice;
2685 int s_slice;
2686
2687 int i;
2688 int a;
2689
2690 // divide up tables into slices based on the last run
2691 t_slice = config->cluster_highest_tunnelid * period;
2692 r_slice = (MAXRADIUS - 1) * period;
2693 s_slice = config->cluster_highest_sessionid * period;
2694
2695 if (t_slice < 1)
2696 t_slice = 1;
2697 else if (t_slice > config->cluster_highest_tunnelid)
2698 t_slice = config->cluster_highest_tunnelid;
2699
2700 if (r_slice < 1)
2701 r_slice = 1;
2702 else if (r_slice > (MAXRADIUS - 1))
2703 r_slice = MAXRADIUS - 1;
2704
2705 if (s_slice < 1)
2706 s_slice = 1;
2707 else if (s_slice > config->cluster_highest_sessionid)
2708 s_slice = config->cluster_highest_sessionid;
2709
2710 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period);
2711
2712 for (i = 0; i < t_slice; i++)
2713 {
2714 t++;
2715 if (t > config->cluster_highest_tunnelid)
2716 t = 1;
2717
2718 // check for expired tunnels
2719 if (tunnel[t].die && tunnel[t].die <= TIME)
2720 {
2721 STAT(tunnel_timeout);
2722 tunnelkill(t, "Expired");
2723 t_actions++;
2724 continue;
2725 }
2726 // check for message resend
2727 if (tunnel[t].retry && tunnel[t].controlc)
2728 {
2729 // resend pending messages as timeout on reply
2730 if (tunnel[t].retry <= TIME)
2731 {
2732 controlt *c = tunnel[t].controls;
2733 uint8_t w = tunnel[t].window;
2734 tunnel[t].try++; // another try
2735 if (tunnel[t].try > 5)
2736 tunnelkill(t, "Timeout on control message"); // game over
2737 else
2738 while (c && w--)
2739 {
2740 tunnelsend(c->buf, c->length, t);
2741 c = c->next;
2742 }
2743
2744 t_actions++;
2745 }
2746 }
2747 // Send hello
2748 if (tunnel[t].state == TUNNELOPEN && !tunnel[t].controlc && (time_now - tunnel[t].lastrec) > 60)
2749 {
2750 controlt *c = controlnew(6); // sending HELLO
2751 controladd(c, 0, t); // send the message
2752 LOG(3, 0, t, "Sending HELLO message\n");
2753 t_actions++;
2754 }
2755
2756 // Check for tunnel changes requested from the CLI
2757 if ((a = cli_tunnel_actions[t].action))
2758 {
2759 cli_tunnel_actions[t].action = 0;
2760 if (a & CLI_TUN_KILL)
2761 {
2762 LOG(2, 0, t, "Dropping tunnel by CLI\n");
2763 tunnelshutdown(t, "Requested by administrator", 1, 0, 0);
2764 t_actions++;
2765 }
2766 }
2767 }
2768
2769 for (i = 0; i < r_slice; i++)
2770 {
2771 r++;
2772 if (r >= MAXRADIUS)
2773 r = 1;
2774
2775 if (!radius[r].state)
2776 continue;
2777
2778 if (radius[r].retry <= TIME)
2779 {
2780 radiusretry(r);
2781 r_actions++;
2782 }
2783 }
2784
2785 for (i = 0; i < s_slice; i++)
2786 {
2787 s++;
2788 if (s > config->cluster_highest_sessionid)
2789 s = 1;
2790
2791 if (!session[s].opened) // Session isn't in use
2792 continue;
2793
2794 // check for expired sessions
2795 if (session[s].die)
2796 {
2797 if (session[s].die <= TIME)
2798 {
2799 sessionkill(s, "Expired");
2800 s_actions++;
2801 }
2802 continue;
2803 }
2804
2805 // PPP timeouts
2806 if (sess_local[s].lcp.restart <= time_now)
2807 {
2808 int next_state = session[s].ppp.lcp;
2809 switch (session[s].ppp.lcp)
2810 {
2811 case RequestSent:
2812 case AckReceived:
2813 next_state = RequestSent;
2814
2815 case AckSent:
2816 if (sess_local[s].lcp.conf_sent < config->ppp_max_configure)
2817 {
2818 LOG(3, s, session[s].tunnel, "No ACK for LCP ConfigReq... resending\n");
2819 sendlcp(s, session[s].tunnel);
2820 change_state(s, lcp, next_state);
2821 }
2822 else
2823 {
2824 sessionshutdown(s, "No response to LCP ConfigReq.", 3, 0);
2825 STAT(session_timeout);
2826 }
2827
2828 s_actions++;
2829 }
2830
2831 if (session[s].die)
2832 continue;
2833 }
2834
2835 if (sess_local[s].ipcp.restart <= time_now)
2836 {
2837 int next_state = session[s].ppp.ipcp;
2838 switch (session[s].ppp.ipcp)
2839 {
2840 case RequestSent:
2841 case AckReceived:
2842 next_state = RequestSent;
2843
2844 case AckSent:
2845 if (sess_local[s].ipcp.conf_sent < config->ppp_max_configure)
2846 {
2847 LOG(3, s, session[s].tunnel, "No ACK for IPCP ConfigReq... resending\n");
2848 sendipcp(s, session[s].tunnel);
2849 change_state(s, ipcp, next_state);
2850 }
2851 else
2852 {
2853 sessionshutdown(s, "No response to IPCP ConfigReq.", 3, 0);
2854 STAT(session_timeout);
2855 }
2856
2857 s_actions++;
2858 }
2859
2860 if (session[s].die)
2861 continue;
2862 }
2863
2864 if (sess_local[s].ipv6cp.restart <= time_now)
2865 {
2866 int next_state = session[s].ppp.ipv6cp;
2867 switch (session[s].ppp.ipv6cp)
2868 {
2869 case RequestSent:
2870 case AckReceived:
2871 next_state = RequestSent;
2872
2873 case AckSent:
2874 if (sess_local[s].ipv6cp.conf_sent < config->ppp_max_configure)
2875 {
2876 LOG(3, s, session[s].tunnel, "No ACK for IPV6CP ConfigReq... resending\n");
2877 sendipv6cp(s, session[s].tunnel);
2878 change_state(s, ipv6cp, next_state);
2879 }
2880 else
2881 {
2882 LOG(3, s, session[s].tunnel, "No ACK for IPV6CP ConfigReq\n");
2883 change_state(s, ipv6cp, Stopped);
2884 }
2885
2886 s_actions++;
2887 }
2888 }
2889
2890 if (sess_local[s].ccp.restart <= time_now)
2891 {
2892 int next_state = session[s].ppp.ccp;
2893 switch (session[s].ppp.ccp)
2894 {
2895 case RequestSent:
2896 case AckReceived:
2897 next_state = RequestSent;
2898
2899 case AckSent:
2900 if (sess_local[s].ccp.conf_sent < config->ppp_max_configure)
2901 {
2902 LOG(3, s, session[s].tunnel, "No ACK for CCP ConfigReq... resending\n");
2903 sendccp(s, session[s].tunnel);
2904 change_state(s, ccp, next_state);
2905 }
2906 else
2907 {
2908 LOG(3, s, session[s].tunnel, "No ACK for CCP ConfigReq\n");
2909 change_state(s, ccp, Stopped);
2910 }
2911
2912 s_actions++;
2913 }
2914 }
2915
2916 // Drop sessions who have not responded within IDLE_TIMEOUT seconds
2917 if (session[s].last_packet && (time_now - session[s].last_packet >= IDLE_TIMEOUT))
2918 {
2919 sessionshutdown(s, "No response to LCP ECHO requests.", 3, 0);
2920 STAT(session_timeout);
2921 s_actions++;
2922 continue;
2923 }
2924
2925 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
2926 if (session[s].ppp.phase >= Establish && (time_now - session[s].last_packet >= ECHO_TIMEOUT) &&
2927 (time_now - sess_local[s].last_echo >= ECHO_TIMEOUT))
2928 {
2929 uint8_t b[MAXETHER];
2930
2931 uint8_t *q = makeppp(b, sizeof(b), 0, 0, s, session[s].tunnel, PPPLCP);
2932 if (!q) continue;
2933
2934 *q = EchoReq;
2935 *(uint8_t *)(q + 1) = (time_now % 255); // ID
2936 *(uint16_t *)(q + 2) = htons(8); // Length
2937 *(uint32_t *)(q + 4) = 0; // Magic Number (not supported)
2938
2939 LOG(4, s, session[s].tunnel, "No data in %d seconds, sending LCP ECHO\n",
2940 (int)(time_now - session[s].last_packet));
2941 tunnelsend(b, 24, session[s].tunnel); // send it
2942 sess_local[s].last_echo = time_now;
2943 s_actions++;
2944 }
2945
2946 // Check for actions requested from the CLI
2947 if ((a = cli_session_actions[s].action))
2948 {
2949 int send = 0;
2950
2951 cli_session_actions[s].action = 0;
2952 if (a & CLI_SESS_KILL)
2953 {
2954 LOG(2, s, session[s].tunnel, "Dropping session by CLI\n");
2955 sessionshutdown(s, "Requested by administrator.", 3, 0);
2956 a = 0; // dead, no need to check for other actions
2957 s_actions++;
2958 }
2959
2960 if (a & CLI_SESS_NOSNOOP)
2961 {
2962 LOG(2, s, session[s].tunnel, "Unsnooping session by CLI\n");
2963 session[s].snoop_ip = 0;
2964 session[s].snoop_port = 0;
2965 s_actions++;
2966 send++;
2967 }
2968 else if (a & CLI_SESS_SNOOP)
2969 {
2970 LOG(2, s, session[s].tunnel, "Snooping session by CLI (to %s:%d)\n",
2971 fmtaddr(cli_session_actions[s].snoop_ip, 0),
2972 cli_session_actions[s].snoop_port);
2973
2974 session[s].snoop_ip = cli_session_actions[s].snoop_ip;
2975 session[s].snoop_port = cli_session_actions[s].snoop_port;
2976 s_actions++;
2977 send++;
2978 }
2979
2980 if (a & CLI_SESS_NOTHROTTLE)
2981 {
2982 LOG(2, s, session[s].tunnel, "Un-throttling session by CLI\n");
2983 throttle_session(s, 0, 0);
2984 s_actions++;
2985 send++;
2986 }
2987 else if (a & CLI_SESS_THROTTLE)
2988 {
2989 LOG(2, s, session[s].tunnel, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
2990 cli_session_actions[s].throttle_in,
2991 cli_session_actions[s].throttle_out);
2992
2993 throttle_session(s, cli_session_actions[s].throttle_in, cli_session_actions[s].throttle_out);
2994 s_actions++;
2995 send++;
2996 }
2997
2998 if (a & CLI_SESS_NOFILTER)
2999 {
3000 LOG(2, s, session[s].tunnel, "Un-filtering session by CLI\n");
3001 filter_session(s, 0, 0);
3002 s_actions++;
3003 send++;
3004 }
3005 else if (a & CLI_SESS_FILTER)
3006 {
3007 LOG(2, s, session[s].tunnel, "Filtering session by CLI (in=%d, out=%d)\n",
3008 cli_session_actions[s].filter_in,
3009 cli_session_actions[s].filter_out);
3010
3011 filter_session(s, cli_session_actions[s].filter_in, cli_session_actions[s].filter_out);
3012 s_actions++;
3013 send++;
3014 }
3015
3016 if (send)
3017 cluster_send_session(s);
3018 }
3019
3020 // RADIUS interim accounting
3021 if (config->radius_accounting && config->radius_interim > 0
3022 && session[s].ip && !session[s].walled_garden
3023 && !sess_local[s].radius // RADIUS already in progress
3024 && time_now - sess_local[s].last_interim >= config->radius_interim)
3025 {
3026 int rad = radiusnew(s);
3027 if (!rad)
3028 {
3029 LOG(1, s, session[s].tunnel, "No free RADIUS sessions for Interim message\n");
3030 STAT(radius_overflow);
3031 continue;
3032 }
3033
3034 LOG(3, s, session[s].tunnel, "Sending RADIUS Interim for %s (%u)\n",
3035 session[s].user, session[s].unique_id);
3036
3037 radiussend(rad, RADIUSINTERIM);
3038 sess_local[s].last_interim = time_now;
3039 s_actions++;
3040 }
3041 }
3042
3043 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3044 t_slice, r_slice, s_slice, t_actions, r_actions, s_actions);
3045 }
3046
3047 //
3048 // Are we in the middle of a tunnel update, or radius
3049 // requests??
3050 //
3051 static int still_busy(void)
3052 {
3053 int i;
3054 static clockt last_talked = 0;
3055 static clockt start_busy_wait = 0;
3056
3057 if (!config->cluster_iam_master)
3058 {
3059 #ifdef BGP
3060 static time_t stopped_bgp = 0;
3061 if (bgp_configured)
3062 {
3063 if (!stopped_bgp)
3064 {
3065 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY);
3066
3067 for (i = 0; i < BGP_NUM_PEERS; i++)
3068 if (bgp_peers[i].state == Established)
3069 bgp_stop(&bgp_peers[i]);
3070
3071 stopped_bgp = time_now;
3072
3073 // we don't want to become master
3074 cluster_send_ping(0);
3075
3076 return 1;
3077 }
3078
3079 if (time_now < (stopped_bgp + QUIT_DELAY))
3080 return 1;
3081 }
3082 #endif /* BGP */
3083
3084 return 0;
3085 }
3086
3087 if (main_quit == QUIT_SHUTDOWN)
3088 {
3089 static int dropped = 0;
3090 if (!dropped)
3091 {
3092 int i;
3093
3094 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3095 for (i = 1; i < MAXTUNNEL; i++)
3096 if (tunnel[i].ip || tunnel[i].state)
3097 tunnelshutdown(i, "L2TPNS Closing", 6, 0, 0);
3098
3099 dropped = 1;
3100 }
3101 }
3102
3103 if (start_busy_wait == 0)
3104 start_busy_wait = TIME;
3105
3106 for (i = config->cluster_highest_tunnelid ; i > 0 ; --i)
3107 {
3108 if (!tunnel[i].controlc)
3109 continue;
3110
3111 if (last_talked != TIME)
3112 {
3113 LOG(2, 0, 0, "Tunnel %d still has un-acked control messages.\n", i);
3114 last_talked = TIME;
3115 }
3116 return 1;
3117 }
3118
3119 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3120 if (abs(TIME - start_busy_wait) > BUSY_WAIT_TIME)
3121 {
3122 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3123 return 0;
3124 }
3125
3126 for (i = 1; i < MAXRADIUS; i++)
3127 {
3128 if (radius[i].state == RADIUSNULL)
3129 continue;
3130 if (radius[i].state == RADIUSWAIT)
3131 continue;
3132
3133 if (last_talked != TIME)
3134 {
3135 LOG(2, 0, 0, "Radius session %d is still busy (sid %d)\n", i, radius[i].session);
3136 last_talked = TIME;
3137 }
3138 return 1;
3139 }
3140
3141 return 0;
3142 }
3143
3144 #ifdef HAVE_EPOLL
3145 # include <sys/epoll.h>
3146 #else
3147 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3148 # include "fake_epoll.h"
3149 #endif
3150
3151 // the base set of fds polled: cli, cluster, tun, udp, control, dae
3152 #define BASE_FDS 6
3153
3154 // additional polled fds
3155 #ifdef BGP
3156 # define EXTRA_FDS BGP_NUM_PEERS
3157 #else
3158 # define EXTRA_FDS 0
3159 #endif
3160
3161 // main loop - gets packets on tun or udp and processes them
3162 static void mainloop(void)
3163 {
3164 int i;
3165 uint8_t buf[65536];
3166 clockt next_cluster_ping = 0; // send initial ping immediately
3167 struct epoll_event events[BASE_FDS + RADIUS_FDS + EXTRA_FDS];
3168 int maxevent = sizeof(events)/sizeof(*events);
3169
3170 if ((epollfd = epoll_create(maxevent)) < 0)
3171 {
3172 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno));
3173 exit(1);
3174 }
3175
3176 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d\n",
3177 clifd, cluster_sockfd, tunfd, udpfd, controlfd, daefd);
3178
3179 /* setup our fds to poll for input */
3180 {
3181 static struct event_data d[BASE_FDS];
3182 struct epoll_event e;
3183
3184 e.events = EPOLLIN;
3185 i = 0;
3186
3187 d[i].type = FD_TYPE_CLI;
3188 e.data.ptr = &d[i++];
3189 epoll_ctl(epollfd, EPOLL_CTL_ADD, clifd, &e);
3190
3191 d[i].type = FD_TYPE_CLUSTER;
3192 e.data.ptr = &d[i++];
3193 epoll_ctl(epollfd, EPOLL_CTL_ADD, cluster_sockfd, &e);
3194
3195 d[i].type = FD_TYPE_TUN;
3196 e.data.ptr = &d[i++];
3197 epoll_ctl(epollfd, EPOLL_CTL_ADD, tunfd, &e);
3198
3199 d[i].type = FD_TYPE_UDP;
3200 e.data.ptr = &d[i++];
3201 epoll_ctl(epollfd, EPOLL_CTL_ADD, udpfd, &e);
3202
3203 d[i].type = FD_TYPE_CONTROL;
3204 e.data.ptr = &d[i++];
3205 epoll_ctl(epollfd, EPOLL_CTL_ADD, controlfd, &e);
3206
3207 d[i].type = FD_TYPE_DAE;
3208 e.data.ptr = &d[i++];
3209 epoll_ctl(epollfd, EPOLL_CTL_ADD, daefd, &e);
3210 }
3211
3212 #ifdef BGP
3213 signal(SIGPIPE, SIG_IGN);
3214 bgp_setup(config->as_number);
3215 if (config->bind_address)
3216 bgp_add_route(config->bind_address, 0xffffffff);
3217
3218 for (i = 0; i < BGP_NUM_PEERS; i++)
3219 {
3220 if (config->neighbour[i].name[0])
3221 bgp_start(&bgp_peers[i], config->neighbour[i].name,
3222 config->neighbour[i].as, config->neighbour[i].keepalive,
3223 config->neighbour[i].hold, 0); /* 0 = routing disabled */
3224 }
3225 #endif /* BGP */
3226
3227 while (!main_quit || still_busy())
3228 {
3229 int more = 0;
3230 int n;
3231
3232
3233 if (main_reload)
3234 {
3235 main_reload = 0;
3236 read_config_file();
3237 config->reload_config++;
3238 }
3239
3240 if (config->reload_config)
3241 {
3242 config->reload_config = 0;
3243 update_config();
3244 }
3245
3246 #ifdef BGP
3247 bgp_set_poll();
3248 #endif /* BGP */
3249
3250 n = epoll_wait(epollfd, events, maxevent, 100); // timeout 100ms (1/10th sec)
3251 STAT(select_called);
3252
3253 TIME = now(NULL);
3254 if (n < 0)
3255 {
3256 if (errno == EINTR ||
3257 errno == ECHILD) // EINTR was clobbered by sigchild_handler()
3258 continue;
3259
3260 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno));
3261 break; // exit
3262 }
3263
3264 if (n)
3265 {
3266 struct sockaddr_in addr;
3267 socklen_t alen;
3268 int c, s;
3269 int udp_ready = 0;
3270 int tun_ready = 0;
3271 int cluster_ready = 0;
3272 int udp_pkts = 0;
3273 int tun_pkts = 0;
3274 int cluster_pkts = 0;
3275 #ifdef BGP
3276 uint32_t bgp_events[BGP_NUM_PEERS];
3277 memset(bgp_events, 0, sizeof(bgp_events));
3278 #endif /* BGP */
3279
3280 for (c = n, i = 0; i < c; i++)
3281 {
3282 struct event_data *d = events[i].data.ptr;
3283 switch (d->type)
3284 {
3285 case FD_TYPE_CLI: // CLI connections
3286 {
3287 int cli;
3288
3289 alen = sizeof(addr);
3290 if ((cli = accept(clifd, (struct sockaddr *)&addr, &alen)) >= 0)
3291 {
3292 cli_do(cli);
3293 close(cli);
3294 }
3295 else
3296 LOG(0, 0, 0, "accept error: %s\n", strerror(errno));
3297
3298 n--;
3299 break;
3300 }
3301
3302 // these are handled below, with multiple interleaved reads
3303 case FD_TYPE_CLUSTER: cluster_ready++; break;
3304 case FD_TYPE_TUN: tun_ready++; break;
3305 case FD_TYPE_UDP: udp_ready++; break;
3306
3307 case FD_TYPE_CONTROL: // nsctl commands
3308 alen = sizeof(addr);
3309 processcontrol(buf, recvfrom(controlfd, buf, sizeof(buf), MSG_WAITALL, (void *) &addr, &alen), &addr, alen);
3310 n--;
3311 break;
3312
3313 case FD_TYPE_DAE: // DAE requests
3314 alen = sizeof(addr);
3315 processdae(buf, recvfrom(daefd, buf, sizeof(buf), MSG_WAITALL, (void *) &addr, &alen), &addr, alen);
3316 n--;
3317 break;
3318
3319 case FD_TYPE_RADIUS: // RADIUS response
3320 s = recv(radfds[d->index], buf, sizeof(buf), 0);
3321 if (s >= 0 && config->cluster_iam_master)
3322 processrad(buf, s, d->index);
3323
3324 n--;
3325 break;
3326
3327 #ifdef BGP
3328 case FD_TYPE_BGP:
3329 bgp_events[d->index] = events[i].events;
3330 n--;
3331 break;
3332 #endif /* BGP */
3333
3334 default:
3335 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d->type);
3336 }
3337 }
3338
3339 #ifdef BGP
3340 bgp_process(bgp_events);
3341 #endif /* BGP */
3342
3343 for (c = 0; n && c < config->multi_read_count; c++)
3344 {
3345 // L2TP
3346 if (udp_ready)
3347 {
3348 alen = sizeof(addr);
3349 if ((s = recvfrom(udpfd, buf, sizeof(buf), 0, (void *) &addr, &alen)) > 0)
3350 {
3351 processudp(buf, s, &addr);
3352 udp_pkts++;
3353 }
3354 else
3355 {
3356 udp_ready = 0;
3357 n--;
3358 }
3359 }
3360
3361 // incoming IP
3362 if (tun_ready)
3363 {
3364 if ((s = read(tunfd, buf, sizeof(buf))) > 0)
3365 {
3366 processtun(buf, s);
3367 tun_pkts++;
3368 }
3369 else
3370 {
3371 tun_ready = 0;
3372 n--;
3373 }
3374 }
3375
3376 // cluster
3377 if (cluster_ready)
3378 {
3379 alen = sizeof(addr);
3380 if ((s = recvfrom(cluster_sockfd, buf, sizeof(buf), MSG_WAITALL, (void *) &addr, &alen)) > 0)
3381 {
3382 processcluster(buf, s, addr.sin_addr.s_addr);
3383 cluster_pkts++;
3384 }
3385 else
3386 {
3387 cluster_ready = 0;
3388 n--;
3389 }
3390 }
3391 }
3392
3393 if (udp_pkts > 1 || tun_pkts > 1 || cluster_pkts > 1)
3394 STAT(multi_read_used);
3395
3396 if (c >= config->multi_read_count)
3397 {
3398 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
3399 config->multi_read_count, udp_pkts, tun_pkts, cluster_pkts);
3400
3401 STAT(multi_read_exceeded);
3402 more++;
3403 }
3404 }
3405
3406 if (time_changed)
3407 {
3408 double Mbps = 1024.0 * 1024.0 / 8 * time_changed;
3409
3410 // Log current traffic stats
3411 snprintf(config->bandwidth, sizeof(config->bandwidth),
3412 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
3413 (udp_rx / Mbps), (eth_tx / Mbps), (eth_rx / Mbps), (udp_tx / Mbps),
3414 ((udp_tx + udp_rx + eth_tx + eth_rx) / Mbps),
3415 udp_rx_pkt / time_changed, eth_rx_pkt / time_changed);
3416
3417 udp_tx = udp_rx = 0;
3418 udp_rx_pkt = eth_rx_pkt = 0;
3419 eth_tx = eth_rx = 0;
3420 time_changed = 0;
3421
3422 if (config->dump_speed)
3423 printf("%s\n", config->bandwidth);
3424
3425 // Update the internal time counter
3426 strftime(time_now_string, sizeof(time_now_string), "%Y-%m-%d %H:%M:%S", localtime(&time_now));
3427
3428 {
3429 // Run timer hooks
3430 struct param_timer p = { time_now };
3431 run_plugins(PLUGIN_TIMER, &p);
3432 }
3433 }
3434
3435 // Runs on every machine (master and slaves).
3436 if (next_cluster_ping <= TIME)
3437 {
3438 // Check to see which of the cluster is still alive..
3439
3440 cluster_send_ping(basetime); // Only does anything if we're a slave
3441 cluster_check_master(); // ditto.
3442
3443 cluster_heartbeat(); // Only does anything if we're a master.
3444 cluster_check_slaves(); // ditto.
3445
3446 master_update_counts(); // If we're a slave, send our byte counters to our master.
3447
3448 if (config->cluster_iam_master && !config->cluster_iam_uptodate)
3449 next_cluster_ping = TIME + 1; // out-of-date slaves, do fast updates
3450 else
3451 next_cluster_ping = TIME + config->cluster_hb_interval;
3452 }
3453
3454 if (!config->cluster_iam_master)
3455 continue;
3456
3457 // Run token bucket filtering queue..
3458 // Only run it every 1/10th of a second.
3459 {
3460 static clockt last_run = 0;
3461 if (last_run != TIME)
3462 {
3463 last_run = TIME;
3464 tbf_run_timer();
3465 }
3466 }
3467
3468 // Handle timeouts, retries etc.
3469 {
3470 static double last_clean = 0;
3471 double this_clean;
3472 double diff;
3473
3474 TIME = now(&this_clean);
3475 diff = this_clean - last_clean;
3476
3477 // Run during idle time (after we've handled
3478 // all incoming packets) or every 1/10th sec
3479 if (!more || diff > 0.1)
3480 {
3481 regular_cleanups(diff);
3482 last_clean = this_clean;
3483 }
3484 }
3485
3486 if (*config->accounting_dir)
3487 {
3488 static clockt next_acct = 0;
3489 static clockt next_shut_acct = 0;
3490
3491 if (next_acct <= TIME)
3492 {
3493 // Dump accounting data
3494 next_acct = TIME + ACCT_TIME;
3495 next_shut_acct = TIME + ACCT_SHUT_TIME;
3496 dump_acct_info(1);
3497 }
3498 else if (next_shut_acct <= TIME)
3499 {
3500 // Dump accounting data for shutdown sessions
3501 next_shut_acct = TIME + ACCT_SHUT_TIME;
3502 if (shut_acct_n)
3503 dump_acct_info(0);
3504 }
3505 }
3506 }
3507
3508 // Are we the master and shutting down??
3509 if (config->cluster_iam_master)
3510 cluster_heartbeat(); // Flush any queued changes..
3511
3512 // Ok. Notify everyone we're shutting down. If we're
3513 // the master, this will force an election.
3514 cluster_send_ping(0);
3515
3516 //
3517 // Important!!! We MUST not process any packets past this point!
3518 LOG(1, 0, 0, "Shutdown complete\n");
3519 }
3520
3521 static void stripdomain(char *host)
3522 {
3523 char *p;
3524
3525 if ((p = strchr(host, '.')))
3526 {
3527 char *domain = 0;
3528 char _domain[1024];
3529
3530 // strip off domain
3531 FILE *resolv = fopen("/etc/resolv.conf", "r");
3532 if (resolv)
3533 {
3534 char buf[1024];
3535 char *b;
3536
3537 while (fgets(buf, sizeof(buf), resolv))
3538 {
3539 if (strncmp(buf, "domain", 6) && strncmp(buf, "search", 6))
3540 continue;
3541
3542 if (!isspace(buf[6]))
3543 continue;
3544
3545 b = buf + 7;
3546 while (isspace(*b)) b++;
3547
3548 if (*b)
3549 {
3550 char *d = b;
3551 while (*b && !isspace(*b)) b++;
3552 *b = 0;
3553 if (buf[0] == 'd') // domain is canonical
3554 {
3555 domain = d;
3556 break;
3557 }
3558
3559 // first search line
3560 if (!domain)
3561 {
3562 // hold, may be subsequent domain line
3563 strncpy(_domain, d, sizeof(_domain))[sizeof(_domain)-1] = 0;
3564 domain = _domain;
3565 }
3566 }
3567 }
3568
3569 fclose(resolv);
3570 }
3571
3572 if (domain)
3573 {
3574 int hl = strlen(host);
3575 int dl = strlen(domain);
3576 if (dl < hl && host[hl - dl - 1] == '.' && !strcmp(host + hl - dl, domain))
3577 host[hl -dl - 1] = 0;
3578 }
3579 else
3580 {
3581 *p = 0; // everything after first dot
3582 }
3583 }
3584 }
3585
3586 // Init data structures
3587 static void initdata(int optdebug, char *optconfig)
3588 {
3589 int i;
3590
3591 if (!(config = shared_malloc(sizeof(configt))))
3592 {
3593 fprintf(stderr, "Error doing malloc for configuration: %s\n", strerror(errno));
3594 exit(1);
3595 }
3596
3597 memset(config, 0, sizeof(configt));
3598 time(&config->start_time);
3599 strncpy(config->config_file, optconfig, strlen(optconfig));
3600 config->debug = optdebug;
3601 config->num_tbfs = MAXTBFS;
3602 config->rl_rate = 28; // 28kbps
3603 config->cluster_mcast_ttl = 1;
3604 config->cluster_master_min_adv = 1;
3605 config->ppp_restart_time = 3;
3606 config->ppp_max_configure = 10;
3607 config->ppp_max_failure = 5;
3608 strcpy(config->random_device, RANDOMDEVICE);
3609
3610 log_stream = stderr;
3611
3612 #ifdef RINGBUFFER
3613 if (!(ringbuffer = shared_malloc(sizeof(struct Tringbuffer))))
3614 {
3615 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno));
3616 exit(1);
3617 }
3618 memset(ringbuffer, 0, sizeof(struct Tringbuffer));
3619 #endif
3620
3621 if (!(_statistics = shared_malloc(sizeof(struct Tstats))))
3622 {
3623 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno));
3624 exit(1);
3625 }
3626 if (!(tunnel = shared_malloc(sizeof(tunnelt) * MAXTUNNEL)))
3627 {
3628 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno));
3629 exit(1);
3630 }
3631 if (!(session = shared_malloc(sizeof(sessiont) * MAXSESSION)))
3632 {
3633 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno));
3634 exit(1);
3635 }
3636
3637 if (!(sess_local = shared_malloc(sizeof(sessionlocalt) * MAXSESSION)))
3638 {
3639 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno));
3640 exit(1);
3641 }
3642
3643 if (!(radius = shared_malloc(sizeof(radiust) * MAXRADIUS)))
3644 {
3645 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno));
3646 exit(1);
3647 }
3648
3649 if (!(ip_address_pool = shared_malloc(sizeof(ippoolt) * MAXIPPOOL)))
3650 {
3651 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno));
3652 exit(1);
3653 }
3654
3655 if (!(ip_filters = shared_malloc(sizeof(ip_filtert) * MAXFILTER)))
3656 {
3657 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno));
3658 exit(1);
3659 }
3660 memset(ip_filters, 0, sizeof(ip_filtert) * MAXFILTER);
3661
3662 if (!(cli_session_actions = shared_malloc(sizeof(struct cli_session_actions) * MAXSESSION)))
3663 {
3664 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno));
3665 exit(1);
3666 }
3667 memset(cli_session_actions, 0, sizeof(struct cli_session_actions) * MAXSESSION);
3668
3669 if (!(cli_tunnel_actions = shared_malloc(sizeof(struct cli_tunnel_actions) * MAXSESSION)))
3670 {
3671 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno));
3672 exit(1);
3673 }
3674 memset(cli_tunnel_actions, 0, sizeof(struct cli_tunnel_actions) * MAXSESSION);
3675
3676 memset(tunnel, 0, sizeof(tunnelt) * MAXTUNNEL);
3677 memset(session, 0, sizeof(sessiont) * MAXSESSION);
3678 memset(radius, 0, sizeof(radiust) * MAXRADIUS);
3679 memset(ip_address_pool, 0, sizeof(ippoolt) * MAXIPPOOL);
3680
3681 // Put all the sessions on the free list marked as undefined.
3682 for (i = 1; i < MAXSESSION; i++)
3683 {
3684 session[i].next = i + 1;
3685 session[i].tunnel = T_UNDEF; // mark it as not filled in.
3686 }
3687 session[MAXSESSION - 1].next = 0;
3688 sessionfree = 1;
3689
3690 // Mark all the tunnels as undefined (waiting to be filled in by a download).
3691 for (i = 1; i < MAXTUNNEL; i++)
3692 tunnel[i].state = TUNNELUNDEF; // mark it as not filled in.
3693
3694 if (!*hostname)
3695 {
3696 // Grab my hostname unless it's been specified
3697 gethostname(hostname, sizeof(hostname));
3698 stripdomain(hostname);
3699 }
3700
3701 _statistics->start_time = _statistics->last_reset = time(NULL);
3702
3703 #ifdef BGP
3704 if (!(bgp_peers = shared_malloc(sizeof(struct bgp_peer) * BGP_NUM_PEERS)))
3705 {
3706 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno));
3707 exit(1);
3708 }
3709 #endif /* BGP */
3710 }
3711
3712 static int assign_ip_address(sessionidt s)
3713 {
3714 uint32_t i;
3715 int best = -1;
3716 time_t best_time = time_now;
3717 char *u = session[s].user;
3718 char reuse = 0;
3719
3720
3721 CSTAT(assign_ip_address);
3722
3723 for (i = 1; i < ip_pool_size; i++)
3724 {
3725 if (!ip_address_pool[i].address || ip_address_pool[i].assigned)
3726 continue;
3727
3728 if (!session[s].walled_garden && ip_address_pool[i].user[0] && !strcmp(u, ip_address_pool[i].user))
3729 {
3730 best = i;
3731 reuse = 1;
3732 break;
3733 }
3734
3735 if (ip_address_pool[i].last < best_time)
3736 {
3737 best = i;
3738 if (!(best_time = ip_address_pool[i].last))
3739 break; // never used, grab this one
3740 }
3741 }
3742
3743 if (best < 0)
3744 {
3745 LOG(0, s, session[s].tunnel, "assign_ip_address(): out of addresses\n");
3746 return 0;
3747 }
3748
3749 session[s].ip = ip_address_pool[best].address;
3750 session[s].ip_pool_index = best;
3751 ip_address_pool[best].assigned = 1;
3752 ip_address_pool[best].last = time_now;
3753 ip_address_pool[best].session = s;
3754 if (session[s].walled_garden)
3755 /* Don't track addresses of users in walled garden (note: this
3756 means that their address isn't "sticky" even if they get
3757 un-gardened). */
3758 ip_address_pool[best].user[0] = 0;
3759 else
3760 strncpy(ip_address_pool[best].user, u, sizeof(ip_address_pool[best].user) - 1);
3761
3762 STAT(ip_allocated);
3763 LOG(4, s, session[s].tunnel, "assign_ip_address(): %s ip address %d from pool\n",
3764 reuse ? "Reusing" : "Allocating", best);
3765
3766 return 1;
3767 }
3768
3769 static void free_ip_address(sessionidt s)
3770 {
3771 int i = session[s].ip_pool_index;
3772
3773
3774 CSTAT(free_ip_address);
3775
3776 if (!session[s].ip)
3777 return; // what the?
3778
3779 if (i < 0) // Is this actually part of the ip pool?
3780 i = 0;
3781
3782 STAT(ip_freed);
3783 cache_ipmap(session[s].ip, -i); // Change the mapping to point back to the ip pool index.
3784 session[s].ip = 0;
3785 ip_address_pool[i].assigned = 0;
3786 ip_address_pool[i].session = 0;
3787 ip_address_pool[i].last = time_now;
3788 }
3789
3790 //
3791 // Fsck the address pool against the session table.
3792 // Normally only called when we become a master.
3793 //
3794 // This isn't perfect: We aren't keep tracking of which
3795 // users used to have an IP address.
3796 //
3797 void rebuild_address_pool(void)
3798 {
3799 int i;
3800
3801 //
3802 // Zero the IP pool allocation, and build
3803 // a map from IP address to pool index.
3804 for (i = 1; i < MAXIPPOOL; ++i)
3805 {
3806 ip_address_pool[i].assigned = 0;
3807 ip_address_pool[i].session = 0;
3808 if (!ip_address_pool[i].address)
3809 continue;
3810
3811 cache_ipmap(ip_address_pool[i].address, -i); // Map pool IP to pool index.
3812 }
3813
3814 for (i = 0; i < MAXSESSION; ++i)
3815 {
3816 int ipid;
3817 if (!(session[i].opened && session[i].ip))
3818 continue;
3819
3820 ipid = - lookup_ipmap(htonl(session[i].ip));
3821
3822 if (session[i].ip_pool_index < 0)
3823 {
3824 // Not allocated out of the pool.
3825 if (ipid < 1) // Not found in the pool either? good.
3826 continue;
3827
3828 LOG(0, i, 0, "Session %d has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
3829 i, fmtaddr(session[i].ip, 0), ipid);
3830
3831 // Fall through and process it as part of the pool.
3832 }
3833
3834
3835 if (ipid > MAXIPPOOL || ipid < 0)
3836 {
3837 LOG(0, i, 0, "Session %d has a pool IP that's not found in the pool! (%d)\n", i, ipid);
3838 ipid = -1;
3839 session[i].ip_pool_index = ipid;
3840 continue;
3841 }
3842
3843 ip_address_pool[ipid].assigned = 1;
3844 ip_address_pool[ipid].session = i;
3845 ip_address_pool[ipid].last = time_now;
3846 strncpy(ip_address_pool[ipid].user, session[i].user, sizeof(ip_address_pool[ipid].user) - 1);
3847 session[i].ip_pool_index = ipid;
3848 cache_ipmap(session[i].ip, i); // Fix the ip map.
3849 }
3850 }
3851
3852 //
3853 // Fix the address pool to match a changed session.
3854 // (usually when the master sends us an update).
3855 static void fix_address_pool(int sid)
3856 {
3857 int ipid;
3858
3859 ipid = session[sid].ip_pool_index;
3860
3861 if (ipid > ip_pool_size)
3862 return; // Ignore it. rebuild_address_pool will fix it up.
3863
3864 if (ip_address_pool[ipid].address != session[sid].ip)
3865 return; // Just ignore it. rebuild_address_pool will take care of it.
3866
3867 ip_address_pool[ipid].assigned = 1;
3868 ip_address_pool[ipid].session = sid;
3869 ip_address_pool[ipid].last = time_now;
3870 strncpy(ip_address_pool[ipid].user, session[sid].user, sizeof(ip_address_pool[ipid].user) - 1);
3871 }
3872
3873 //
3874 // Add a block of addresses to the IP pool to hand out.
3875 //
3876 static void add_to_ip_pool(in_addr_t addr, in_addr_t mask)
3877 {
3878 int i;
3879 if (mask == 0)
3880 mask = 0xffffffff; // Host route only.
3881
3882 addr &= mask;
3883
3884 if (ip_pool_size >= MAXIPPOOL) // Pool is full!
3885 return ;
3886
3887 for (i = addr ;(i & mask) == addr; ++i)
3888 {
3889 if ((i & 0xff) == 0 || (i&0xff) == 255)
3890 continue; // Skip 0 and broadcast addresses.
3891
3892 ip_address_pool[ip_pool_size].address = i;
3893 ip_address_pool[ip_pool_size].assigned = 0;
3894 ++ip_pool_size;
3895 if (ip_pool_size >= MAXIPPOOL)
3896 {
3897 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr), 0));
3898 return;
3899 }
3900 }
3901 }
3902
3903 // Initialize the IP address pool
3904 static void initippool()
3905 {
3906 FILE *f;
3907 char *p;
3908 char buf[4096];
3909 memset(ip_address_pool, 0, sizeof(ip_address_pool));
3910
3911 if (!(f = fopen(IPPOOLFILE, "r")))
3912 {
3913 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE ": %s\n", strerror(errno));
3914 exit(1);
3915 }
3916
3917 while (ip_pool_size < MAXIPPOOL && fgets(buf, 4096, f))
3918 {
3919 char *pool = buf;
3920 buf[4095] = 0; // Force it to be zero terminated/
3921
3922 if (*buf == '#' || *buf == '\n')
3923 continue; // Skip comments / blank lines
3924 if ((p = (char *)strrchr(buf, '\n'))) *p = 0;
3925 if ((p = (char *)strchr(buf, ':')))
3926 {
3927 in_addr_t src;
3928 *p = '\0';
3929 src = inet_addr(buf);
3930 if (src == INADDR_NONE)
3931 {
3932 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf);
3933 exit(1);
3934 }
3935 // This entry is for a specific IP only
3936 if (src != config->bind_address)
3937 continue;
3938 *p = ':';
3939 pool = p+1;
3940 }
3941 if ((p = (char *)strchr(pool, '/')))
3942 {
3943 // It's a range
3944 int numbits = 0;
3945 in_addr_t start = 0, mask = 0;
3946
3947 LOG(2, 0, 0, "Adding IP address range %s\n", buf);
3948 *p++ = 0;
3949 if (!*p || !(numbits = atoi(p)))
3950 {
3951 LOG(0, 0, 0, "Invalid pool range %s\n", buf);
3952 continue;
3953 }
3954 start = ntohl(inet_addr(pool));
3955 mask = (in_addr_t) (pow(2, numbits) - 1) << (32 - numbits);
3956
3957 // Add a static route for this pool
3958 LOG(5, 0, 0, "Adding route for address pool %s/%u\n",
3959 fmtaddr(htonl(start), 0), 32 + mask);
3960
3961 routeset(0, start, mask, 0, 1);
3962
3963 add_to_ip_pool(start, mask);
3964 }
3965 else
3966 {
3967 // It's a single ip address
3968 add_to_ip_pool(inet_addr(pool), 0);
3969 }
3970 }
3971 fclose(f);
3972 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size - 1);
3973 }
3974
3975 void snoop_send_packet(uint8_t *packet, uint16_t size, in_addr_t destination, uint16_t port)
3976 {
3977 struct sockaddr_in snoop_addr = {0};
3978 if (!destination || !port || snoopfd <= 0 || size <= 0 || !packet)
3979 return;
3980
3981 snoop_addr.sin_family = AF_INET;
3982 snoop_addr.sin_addr.s_addr = destination;
3983 snoop_addr.sin_port = ntohs(port);
3984
3985 LOG(5, 0, 0, "Snooping %d byte packet to %s:%d\n", size,
3986 fmtaddr(snoop_addr.sin_addr.s_addr, 0),
3987 htons(snoop_addr.sin_port));
3988
3989 if (sendto(snoopfd, packet, size, MSG_DONTWAIT | MSG_NOSIGNAL, (void *) &snoop_addr, sizeof(snoop_addr)) < 0)
3990 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno));
3991
3992 STAT(packets_snooped);
3993 }
3994
3995 static int dump_session(FILE **f, sessiont *s)
3996 {
3997 if (!s->opened || !s->ip || !(s->cin_delta || s->cout_delta) || !*s->user || s->walled_garden)
3998 return 1;
3999
4000 if (!*f)
4001 {
4002 char filename[1024];
4003 char timestr[64];
4004 time_t now = time(NULL);
4005
4006 strftime(timestr, sizeof(timestr), "%Y%m%d%H%M%S", localtime(&now));
4007 snprintf(filename, sizeof(filename), "%s/%s", config->accounting_dir, timestr);
4008
4009 if (!(*f = fopen(filename, "w")))
4010 {
4011 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename, strerror(errno));
4012 return 0;
4013 }
4014
4015 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename);
4016 fprintf(*f, "# dslwatch.pl dump file V1.01\n"
4017 "# host: %s\n"
4018 "# endpoint: %s\n"
4019 "# time: %ld\n"
4020 "# uptime: %ld\n"
4021 "# format: username ip qos uptxoctets downrxoctets\n",
4022 hostname,
4023 fmtaddr(config->bind_address ? config->bind_address : my_address, 0),
4024 now,
4025 now - basetime);
4026 }
4027
4028 LOG(4, 0, 0, "Dumping accounting information for %s\n", s->user);
4029 fprintf(*f, "%s %s %d %u %u\n",
4030 s->user, // username
4031 fmtaddr(htonl(s->ip), 0), // ip
4032 (s->throttle_in || s->throttle_out) ? 2 : 1, // qos
4033 (uint32_t) s->cin_delta, // uptxoctets
4034 (uint32_t) s->cout_delta); // downrxoctets
4035
4036 s->cin_delta = s->cout_delta = 0;
4037
4038 return 1;
4039 }
4040
4041 static void dump_acct_info(int all)
4042 {
4043 int i;
4044 FILE *f = NULL;
4045
4046
4047 CSTAT(dump_acct_info);
4048
4049 if (shut_acct_n)
4050 {
4051 for (i = 0; i < shut_acct_n; i++)
4052 dump_session(&f, &shut_acct[i]);
4053
4054 shut_acct_n = 0;
4055 }
4056
4057 if (all)
4058 for (i = 1; i <= config->cluster_highest_sessionid; i++)
4059 dump_session(&f, &session[i]);
4060
4061 if (f)
4062 fclose(f);
4063 }
4064
4065 // Main program
4066 int main(int argc, char *argv[])
4067 {
4068 int i;
4069 int optdebug = 0;
4070 char *optconfig = CONFIGFILE;
4071
4072 time(&basetime); // start clock
4073
4074 // scan args
4075 while ((i = getopt(argc, argv, "dvc:h:")) >= 0)
4076 {
4077 switch (i)
4078 {
4079 case 'd':
4080 if (fork()) exit(0);
4081 setsid();
4082 freopen("/dev/null", "r", stdin);
4083 freopen("/dev/null", "w", stdout);
4084 freopen("/dev/null", "w", stderr);
4085 break;
4086 case 'v':
4087 optdebug++;
4088 break;
4089 case 'c':
4090 optconfig = optarg;
4091 break;
4092 case 'h':
4093 snprintf(hostname, sizeof(hostname), "%s", optarg);
4094 break;
4095 default:
4096 printf("Args are:\n"
4097 "\t-d\t\tDetach from terminal\n"
4098 "\t-c <file>\tConfig file\n"
4099 "\t-h <hostname>\tForce hostname\n"
4100 "\t-v\t\tDebug\n");
4101
4102 return (0);
4103 break;
4104 }
4105 }
4106
4107 // Start the timer routine off
4108 time(&time_now);
4109 strftime(time_now_string, sizeof(time_now_string), "%Y-%m-%d %H:%M:%S", localtime(&time_now));
4110
4111 initplugins();
4112 initdata(optdebug, optconfig);
4113
4114 init_cli(hostname);
4115 read_config_file();
4116 update_config();
4117 init_tbf(config->num_tbfs);
4118
4119 LOG(0, 0, 0, "L2TPNS version " VERSION "\n");
4120 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005 Optus Internet Engineering\n");
4121 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4122 {
4123 struct rlimit rlim;
4124 rlim.rlim_cur = RLIM_INFINITY;
4125 rlim.rlim_max = RLIM_INFINITY;
4126 // Remove the maximum core size
4127 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
4128 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno));
4129
4130 // Make core dumps go to /tmp
4131 chdir("/tmp");
4132 }
4133
4134 if (config->scheduler_fifo)
4135 {
4136 int ret;
4137 struct sched_param params = {0};
4138 params.sched_priority = 1;
4139
4140 if (get_nprocs() < 2)
4141 {
4142 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
4143 config->scheduler_fifo = 0;
4144 }
4145 else
4146 {
4147 if ((ret = sched_setscheduler(0, SCHED_FIFO, &params)) == 0)
4148 {
4149 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
4150 }
4151 else
4152 {
4153 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno));
4154 config->scheduler_fifo = 0;
4155 }
4156 }
4157 }
4158
4159 /* Set up the cluster communications port. */
4160 if (cluster_init() < 0)
4161 exit(1);
4162
4163 inittun();
4164 LOG(1, 0, 0, "Set up on interface %s\n", config->tundevice);
4165
4166 initudp();
4167 initrad();
4168 initippool();
4169
4170 // seed prng
4171 {
4172 unsigned seed = time_now ^ getpid();
4173 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed);
4174 srand(seed);
4175 }
4176
4177 signal(SIGHUP, sighup_handler);
4178 signal(SIGCHLD, sigchild_handler);
4179 signal(SIGTERM, shutdown_handler);
4180 signal(SIGINT, shutdown_handler);
4181 signal(SIGQUIT, shutdown_handler);
4182
4183 // Prevent us from getting paged out
4184 if (config->lock_pages)
4185 {
4186 if (!mlockall(MCL_CURRENT))
4187 LOG(1, 0, 0, "Locking pages into memory\n");
4188 else
4189 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno));
4190 }
4191
4192 // Drop privileges here
4193 if (config->target_uid > 0 && geteuid() == 0)
4194 setuid(config->target_uid);
4195
4196 mainloop();
4197
4198 /* remove plugins (so cleanup code gets run) */
4199 plugins_done();
4200
4201 // Remove the PID file if we wrote it
4202 if (config->wrote_pid && *config->pid_file == '/')
4203 unlink(config->pid_file);
4204
4205 /* kill CLI children */
4206 signal(SIGTERM, SIG_IGN);
4207 kill(0, SIGTERM);
4208 return 0;
4209 }
4210
4211 static void sighup_handler(int sig)
4212 {
4213 main_reload++;
4214 }
4215
4216 static void shutdown_handler(int sig)
4217 {
4218 main_quit = (sig == SIGQUIT) ? QUIT_SHUTDOWN : QUIT_FAILOVER;
4219 }
4220
4221 static void sigchild_handler(int sig)
4222 {
4223 while (waitpid(-1, NULL, WNOHANG) > 0)
4224 ;
4225 }
4226
4227 static void build_chap_response(uint8_t *challenge, uint8_t id, uint16_t challenge_length, uint8_t **challenge_response)
4228 {
4229 MD5_CTX ctx;
4230 *challenge_response = NULL;
4231
4232 if (!*config->l2tp_secret)
4233 {
4234 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
4235 return;
4236 }
4237
4238 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
4239
4240 *challenge_response = calloc(17, 1);
4241
4242 MD5_Init(&ctx);
4243 MD5_Update(&ctx, &id, 1);
4244 MD5_Update(&ctx, config->l2tp_secret, strlen(config->l2tp_secret));
4245 MD5_Update(&ctx, challenge, challenge_length);
4246 MD5_Final(*challenge_response, &ctx);
4247
4248 return;
4249 }
4250
4251 static int facility_value(char *name)
4252 {
4253 int i;
4254 for (i = 0; facilitynames[i].c_name; i++)
4255 {
4256 if (strcmp(facilitynames[i].c_name, name) == 0)
4257 return facilitynames[i].c_val;
4258 }
4259 return 0;
4260 }
4261
4262 static void update_config()
4263 {
4264 int i;
4265 char *p;
4266 static int timeout = 0;
4267 static int interval = 0;
4268
4269 // Update logging
4270 closelog();
4271 syslog_log = 0;
4272 if (log_stream)
4273 {
4274 if (log_stream != stderr)
4275 fclose(log_stream);
4276
4277 log_stream = NULL;
4278 }
4279
4280 if (*config->log_filename)
4281 {
4282 if (strstr(config->log_filename, "syslog:") == config->log_filename)
4283 {
4284 char *p = config->log_filename + 7;
4285 if (*p)
4286 {
4287 openlog("l2tpns", LOG_PID, facility_value(p));
4288 syslog_log = 1;
4289 }
4290 }
4291 else if (strchr(config->log_filename, '/') == config->log_filename)
4292 {
4293 if ((log_stream = fopen((char *)(config->log_filename), "a")))
4294 {
4295 fseek(log_stream, 0, SEEK_END);
4296 setbuf(log_stream, NULL);
4297 }
4298 else
4299 {
4300 log_stream = stderr;
4301 setbuf(log_stream, NULL);
4302 }
4303 }
4304 }
4305 else
4306 {
4307 log_stream = stderr;
4308 setbuf(log_stream, NULL);
4309 }
4310
4311 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
4312 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
4313
4314 if (config->l2tp_mtu <= 0) config->l2tp_mtu = PPPMTU;
4315 else if (config->l2tp_mtu < MINMTU) config->l2tp_mtu = MINMTU;
4316 else if (config->l2tp_mtu > MAXMTU) config->l2tp_mtu = MAXMTU;
4317
4318 // reset MRU/MSS globals
4319 MRU = config->l2tp_mtu - L2TP_HDRS;
4320 MSS = MRU - TCP_HDRS;
4321
4322 // Update radius
4323 config->numradiusservers = 0;
4324 for (i = 0; i < MAXRADSERVER; i++)
4325 if (config->radiusserver[i])
4326 {
4327 config->numradiusservers++;
4328 // Set radius port: if not set, take the port from the
4329 // first radius server. For the first radius server,
4330 // take the #defined default value from l2tpns.h
4331
4332 // test twice, In case someone works with
4333 // a secondary radius server without defining
4334 // a primary one, this will work even then.
4335 if (i > 0 && !config->radiusport[i])
4336 config->radiusport[i] = config->radiusport[i-1];
4337 if (!config->radiusport[i])
4338 config->radiusport[i] = RADPORT;
4339 }
4340
4341 if (!config->numradiusservers)
4342 LOG(0, 0, 0, "No RADIUS servers defined!\n");
4343
4344 // parse radius_authtypes_s
4345 config->radius_authtypes = config->radius_authprefer = 0;
4346 p = config->radius_authtypes_s;
4347 while (p && *p)
4348 {
4349 char *s = strpbrk(p, " \t,");
4350 int type = 0;
4351
4352 if (s)
4353 {
4354 *s++ = 0;
4355 while (*s == ' ' || *s == '\t')
4356 s++;
4357
4358 if (!*s)
4359 s = 0;
4360 }
4361
4362 if (!strncasecmp("chap", p, strlen(p)))
4363 type = AUTHCHAP;
4364 else if (!strncasecmp("pap", p, strlen(p)))
4365 type = AUTHPAP;
4366 else
4367 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p);
4368
4369 config->radius_authtypes |= type;
4370 if (!config->radius_authprefer)
4371 config->radius_authprefer = type;
4372
4373 p = s;
4374 }
4375
4376 if (!config->radius_authtypes)
4377 {
4378 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
4379 config->radius_authtypes = config->radius_authprefer = AUTHPAP;
4380 }
4381
4382 // normalise radius_authtypes_s
4383 if (config->radius_authprefer == AUTHPAP)
4384 {
4385 strcpy(config->radius_authtypes_s, "pap");
4386 if (config->radius_authtypes & AUTHCHAP)
4387 strcat(config->radius_authtypes_s, ", chap");
4388 }
4389 else
4390 {
4391 strcpy(config->radius_authtypes_s, "chap");
4392 if (config->radius_authtypes & AUTHPAP)
4393 strcat(config->radius_authtypes_s, ", pap");
4394 }
4395
4396 if (!config->radius_dae_port)
4397 config->radius_dae_port = DAEPORT;
4398
4399 // re-initialise the random number source
4400 initrandom(config->random_device);
4401
4402 // Update plugins
4403 for (i = 0; i < MAXPLUGINS; i++)
4404 {
4405 if (strcmp(config->plugins[i], config->old_plugins[i]) == 0)
4406 continue;
4407
4408 if (*config->plugins[i])
4409 {
4410 // Plugin added
4411 add_plugin(config->plugins[i]);
4412 }
4413 else if (*config->old_plugins[i])
4414 {
4415 // Plugin removed
4416 remove_plugin(config->old_plugins[i]);
4417 }
4418 }
4419
4420 memcpy(config->old_plugins, config->plugins, sizeof(config->plugins));
4421 if (!config->multi_read_count) config->multi_read_count = 10;
4422 if (!config->cluster_address) config->cluster_address = inet_addr(DEFAULT_MCAST_ADDR);
4423 if (!*config->cluster_interface)
4424 strncpy(config->cluster_interface, DEFAULT_MCAST_INTERFACE, sizeof(config->cluster_interface) - 1);
4425
4426 if (!config->cluster_hb_interval)
4427 config->cluster_hb_interval = PING_INTERVAL; // Heartbeat every 0.5 seconds.
4428
4429 if (!config->cluster_hb_timeout)
4430 config->cluster_hb_timeout = HB_TIMEOUT; // 10 missed heartbeat triggers an election.
4431
4432 if (interval != config->cluster_hb_interval || timeout != config->cluster_hb_timeout)
4433 {
4434 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
4435 // late, ensure we're sufficiently larger than that
4436 int t = 4 * config->cluster_hb_interval + 11;
4437
4438 if (config->cluster_hb_timeout < t)
4439 {
4440 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config->cluster_hb_timeout, t);
4441 config->cluster_hb_timeout = t;
4442 }
4443
4444 // Push timing changes to the slaves immediately if we're the master
4445 if (config->cluster_iam_master)
4446 cluster_heartbeat();
4447
4448 interval = config->cluster_hb_interval;
4449 timeout = config->cluster_hb_timeout;
4450 }
4451
4452 // Write PID file
4453 if (*config->pid_file == '/' && !config->wrote_pid)
4454 {
4455 FILE *f;
4456 if ((f = fopen(config->pid_file, "w")))
4457 {
4458 fprintf(f, "%d\n", getpid());
4459 fclose(f);
4460 config->wrote_pid = 1;
4461 }
4462 else
4463 {
4464 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config->pid_file, strerror(errno));
4465 }
4466 }
4467 }
4468
4469 static void read_config_file()
4470 {
4471 FILE *f;
4472
4473 if (!config->config_file) return;
4474 if (!(f = fopen(config->config_file, "r")))
4475 {
4476 fprintf(stderr, "Can't open config file %s: %s\n", config->config_file, strerror(errno));
4477 return;
4478 }
4479
4480 LOG(3, 0, 0, "Reading config file %s\n", config->config_file);
4481 cli_do_file(f);
4482 LOG(3, 0, 0, "Done reading config file\n");
4483 fclose(f);
4484 }
4485
4486 int sessionsetup(sessionidt s, tunnelidt t)
4487 {
4488 // A session now exists, set it up
4489 in_addr_t ip;
4490 char *user;
4491 sessionidt i;
4492 int r;
4493
4494 CSTAT(sessionsetup);
4495
4496 LOG(3, s, t, "Doing session setup for session\n");
4497
4498 if (!session[s].ip)
4499 {
4500 assign_ip_address(s);
4501 if (!session[s].ip)
4502 {
4503 LOG(0, s, t, " No IP allocated. The IP address pool is FULL!\n");
4504 sessionshutdown(s, "No IP addresses available.", 2, 7); // try another
4505 return 0;
4506 }
4507 LOG(3, s, t, " No IP allocated. Assigned %s from pool\n",
4508 fmtaddr(htonl(session[s].ip), 0));
4509 }
4510
4511
4512 // Make sure this is right
4513 session[s].tunnel = t;
4514
4515 // zap old sessions with same IP and/or username
4516 // Don't kill gardened sessions - doing so leads to a DoS
4517 // from someone who doesn't need to know the password
4518 {
4519 ip = session[s].ip;
4520 user = session[s].user;
4521 for (i = 1; i <= config->cluster_highest_sessionid; i++)
4522 {
4523 if (i == s) continue;
4524 if (!session[s].opened) continue;
4525 if (ip == session[i].ip)
4526 {
4527 sessionkill(i, "Duplicate IP address");
4528 continue;
4529 }
4530
4531 if (config->allow_duplicate_users) continue;
4532 if (session[s].walled_garden || session[i].walled_garden) continue;
4533 if (!strcasecmp(user, session[i].user))
4534 sessionkill(i, "Duplicate session for users");
4535 }
4536 }
4537
4538 {
4539 int routed = 0;
4540
4541 // Add the route for this session.
4542 for (r = 0; r < MAXROUTE && session[s].route[r].ip; r++)
4543 {
4544 if ((session[s].ip & session[s].route[r].mask) ==
4545 (session[s].route[r].ip & session[s].route[r].mask))
4546 routed++;
4547
4548 routeset(s, session[s].route[r].ip, session[s].route[r].mask, 0, 1);
4549 }
4550
4551 // Static IPs need to be routed if not already
4552 // convered by a Framed-Route. Anything else is part
4553 // of the IP address pool and is already routed, it
4554 // just needs to be added to the IP cache.
4555 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
4556 if (session[s].ip_pool_index == -1) // static ip
4557 {
4558 if (!routed) routeset(s, session[s].ip, 0, 0, 1);
4559 }
4560 else
4561 cache_ipmap(session[s].ip, s);
4562 }
4563
4564 sess_local[s].lcp_authtype = 0; // RADIUS authentication complete
4565 lcp_open(s, t); // transition to Network phase and send initial IPCP
4566
4567 // Run the plugin's against this new session.
4568 {
4569 struct param_new_session data = { &tunnel[t], &session[s] };
4570 run_plugins(PLUGIN_NEW_SESSION, &data);
4571 }
4572
4573 // Allocate TBFs if throttled
4574 if (session[s].throttle_in || session[s].throttle_out)
4575 throttle_session(s, session[s].throttle_in, session[s].throttle_out);
4576
4577 session[s].last_packet = time_now;
4578
4579 LOG(2, s, t, "Login by %s at %s from %s (%s)\n", session[s].user,
4580 fmtaddr(htonl(session[s].ip), 0),
4581 fmtaddr(htonl(tunnel[t].ip), 1), tunnel[t].hostname);
4582
4583 cluster_send_session(s); // Mark it as dirty, and needing to the flooded to the cluster.
4584
4585 return 1; // RADIUS OK and IP allocated, done...
4586 }
4587
4588 //
4589 // This session just got dropped on us by the master or something.
4590 // Make sure our tables up up to date...
4591 //
4592 int load_session(sessionidt s, sessiont *new)
4593 {
4594 int i;
4595 int newip = 0;
4596
4597 // Sanity checks.
4598 if (new->ip_pool_index >= MAXIPPOOL ||
4599 new->tunnel >= MAXTUNNEL)
4600 {
4601 LOG(0, s, 0, "Strange session update received!\n");
4602 // FIXME! What to do here?
4603 return 0;
4604 }
4605
4606 //
4607 // Ok. All sanity checks passed. Now we're committed to
4608 // loading the new session.
4609 //
4610
4611 session[s].tunnel = new->tunnel; // For logging in cache_ipmap
4612
4613 // See if routes/ip cache need updating
4614 if (new->ip != session[s].ip)
4615 newip++;
4616
4617 for (i = 0; !newip && i < MAXROUTE && (session[s].route[i].ip || new->route[i].ip); i++)
4618 if (new->route[i].ip != session[s].route[i].ip ||
4619 new->route[i].mask != session[s].route[i].mask)
4620 newip++;
4621
4622 // needs update
4623 if (newip)
4624 {
4625 int routed = 0;
4626
4627 // remove old routes...
4628 for (i = 0; i < MAXROUTE && session[s].route[i].ip; i++)
4629 {
4630 if ((session[s].ip & session[s].route[i].mask) ==
4631 (session[s].route[i].ip & session[s].route[i].mask))
4632 routed++;
4633
4634 routeset(s, session[s].route[i].ip, session[s].route[i].mask, 0, 0);
4635 }
4636
4637 // ...ip
4638 if (session[s].ip)
4639 {
4640 if (session[s].ip_pool_index == -1) // static IP
4641 {
4642 if (!routed) routeset(s, session[s].ip, 0, 0, 0);
4643 }
4644 else // It's part of the IP pool, remove it manually.
4645 uncache_ipmap(session[s].ip);
4646 }
4647
4648 routed = 0;
4649
4650 // add new routes...
4651 for (i = 0; i < MAXROUTE && new->route[i].ip; i++)
4652 {
4653 if ((new->ip & new->route[i].mask) ==
4654 (new->route[i].ip & new->route[i].mask))
4655 routed++;
4656
4657 routeset(s, new->route[i].ip, new->route[i].mask, 0, 1);
4658 }
4659
4660 // ...ip
4661 if (new->ip)
4662 {
4663 // If there's a new one, add it.
4664 if (new->ip_pool_index == -1)
4665 {
4666 if (!routed) routeset(s, new->ip, 0, 0, 1);
4667 }
4668 else
4669 cache_ipmap(new->ip, s);
4670 }
4671 }
4672
4673 // check v6 routing
4674 if (new->ipv6prefixlen && new->ppp.ipv6cp == Opened && session[s].ppp.ipv6cp != Opened)
4675 route6set(s, new->ipv6route, new->ipv6prefixlen, 1);
4676
4677 // check filters
4678 if (new->filter_in && (new->filter_in > MAXFILTER || !ip_filters[new->filter_in - 1].name[0]))
4679 {
4680 LOG(2, s, session[s].tunnel, "Dropping invalid input filter %d\n", (int) new->filter_in);
4681 new->filter_in = 0;
4682 }
4683
4684 if (new->filter_out && (new->filter_out > MAXFILTER || !ip_filters[new->filter_out - 1].name[0]))
4685 {
4686 LOG(2, s, session[s].tunnel, "Dropping invalid output filter %d\n", (int) new->filter_out);
4687 new->filter_out = 0;
4688 }
4689
4690 if (new->filter_in != session[s].filter_in)
4691 {
4692 if (session[s].filter_in) ip_filters[session[s].filter_in - 1].used--;
4693 if (new->filter_in) ip_filters[new->filter_in - 1].used++;
4694 }
4695
4696 if (new->filter_out != session[s].filter_out)
4697 {
4698 if (session[s].filter_out) ip_filters[session[s].filter_out - 1].used--;
4699 if (new->filter_out) ip_filters[new->filter_out - 1].used++;
4700 }
4701
4702 if (new->tunnel && s > config->cluster_highest_sessionid) // Maintain this in the slave. It's used
4703 // for walking the sessions to forward byte counts to the master.
4704 config->cluster_highest_sessionid = s;
4705
4706 memcpy(&session[s], new, sizeof(session[s])); // Copy over..
4707
4708 // Do fixups into address pool.
4709 if (new->ip_pool_index != -1)
4710 fix_address_pool(s);
4711
4712 return 1;
4713 }
4714
4715 static void initplugins()
4716 {
4717 int i;
4718
4719 loaded_plugins = ll_init();
4720 // Initialize the plugins to nothing
4721 for (i = 0; i < MAX_PLUGIN_TYPES; i++)
4722 plugins[i] = ll_init();
4723 }
4724
4725 static void *open_plugin(char *plugin_name, int load)
4726 {
4727 char path[256] = "";
4728
4729 snprintf(path, 256, PLUGINDIR "/%s.so", plugin_name);
4730 LOG(2, 0, 0, "%soading plugin from %s\n", load ? "L" : "Un-l", path);
4731 return dlopen(path, RTLD_NOW);
4732 }
4733
4734 // plugin callback to get a config value
4735 static void *getconfig(char *key, enum config_typet type)
4736 {
4737 int i;
4738
4739 for (i = 0; config_values[i].key; i++)
4740 {
4741 if (!strcmp(config_values[i].key, key))
4742 {
4743 if (config_values[i].type == type)
4744 return ((void *) config) + config_values[i].offset;
4745
4746 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
4747 key, type, config_values[i].type);
4748
4749 return 0;
4750 }
4751 }
4752
4753 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key);
4754 return 0;
4755 }
4756
4757 static int add_plugin(char *plugin_name)
4758 {
4759 static struct pluginfuncs funcs = {
4760 _log,
4761 _log_hex,
4762 fmtaddr,
4763 sessionbyuser,
4764 sessiontbysessionidt,
4765 sessionidtbysessiont,
4766 radiusnew,
4767 radiussend,
4768 getconfig,
4769 sessionshutdown,
4770 sessionkill,
4771 throttle_session,
4772 cluster_send_session,
4773 };
4774
4775 void *p = open_plugin(plugin_name, 1);
4776 int (*initfunc)(struct pluginfuncs *);
4777 int i;
4778
4779 if (!p)
4780 {
4781 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
4782 return -1;
4783 }
4784
4785 if (ll_contains(loaded_plugins, p))
4786 {
4787 dlclose(p);
4788 return 0; // already loaded
4789 }
4790
4791 {
4792 int *v = dlsym(p, "plugin_api_version");
4793 if (!v || *v != PLUGIN_API_VERSION)
4794 {
4795 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
4796 dlclose(p);
4797 return -1;
4798 }
4799 }
4800
4801 if ((initfunc = dlsym(p, "plugin_init")))
4802 {
4803 if (!initfunc(&funcs))
4804 {
4805 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
4806 dlclose(p);
4807 return -1;
4808 }
4809 }
4810
4811 ll_push(loaded_plugins, p);
4812
4813 for (i = 0; i < max_plugin_functions; i++)
4814 {
4815 void *x;
4816 if (plugin_functions[i] && (x = dlsym(p, plugin_functions[i])))
4817 {
4818 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions[i]);
4819 ll_push(plugins[i], x);
4820 }
4821 }
4822
4823 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name);
4824 return 1;
4825 }
4826
4827 static void run_plugin_done(void *plugin)
4828 {
4829 int (*donefunc)(void) = dlsym(plugin, "plugin_done");
4830
4831 if (donefunc)
4832 donefunc();
4833 }
4834
4835 static int remove_plugin(char *plugin_name)
4836 {
4837 void *p = open_plugin(plugin_name, 0);
4838 int loaded = 0;
4839
4840 if (!p)
4841 return -1;
4842
4843 if (ll_contains(loaded_plugins, p))
4844 {
4845 int i;
4846 for (i = 0; i < max_plugin_functions; i++)
4847 {
4848 void *x;
4849 if (plugin_functions[i] && (x = dlsym(p, plugin_functions[i])))
4850 ll_delete(plugins[i], x);
4851 }
4852
4853 ll_delete(loaded_plugins, p);
4854 run_plugin_done(p);
4855 loaded = 1;
4856 }
4857
4858 dlclose(p);
4859 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name);
4860 return loaded;
4861 }
4862
4863 int run_plugins(int plugin_type, void *data)
4864 {
4865 int (*func)(void *data);
4866
4867 if (!plugins[plugin_type] || plugin_type > max_plugin_functions)
4868 return PLUGIN_RET_ERROR;
4869
4870 ll_reset(plugins[plugin_type]);
4871 while ((func = ll_next(plugins[plugin_type])))
4872 {
4873 int r = func(data);
4874
4875 if (r != PLUGIN_RET_OK)
4876 return r; // stop here
4877 }
4878
4879 return PLUGIN_RET_OK;
4880 }
4881
4882 static void plugins_done()
4883 {
4884 void *p;
4885
4886 ll_reset(loaded_plugins);
4887 while ((p = ll_next(loaded_plugins)))
4888 run_plugin_done(p);
4889 }
4890
4891 static void processcontrol(uint8_t *buf, int len, struct sockaddr_in *addr, int alen)
4892 {
4893 struct nsctl request;
4894 struct nsctl response;
4895 int type = unpack_control(&request, buf, len);
4896 int r;
4897 void *p;
4898
4899 if (log_stream && config->debug >= 4)
4900 {
4901 if (type < 0)
4902 {
4903 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
4904 fmtaddr(addr->sin_addr.s_addr, 0), type);
4905 }
4906 else
4907 {
4908 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr->sin_addr.s_addr, 0));
4909 dump_control(&request, log_stream);
4910 }
4911 }
4912
4913 switch (type)
4914 {
4915 case NSCTL_REQ_LOAD:
4916 if (request.argc != 1)
4917 {
4918 response.type = NSCTL_RES_ERR;
4919 response.argc = 1;
4920 response.argv[0] = "name of plugin required";
4921 }
4922 else if ((r = add_plugin(request.argv[0])) < 1)
4923 {
4924 response.type = NSCTL_RES_ERR;
4925 response.argc = 1;
4926 response.argv[0] = !r
4927 ? "plugin already loaded"
4928 : "error loading plugin";
4929 }
4930 else
4931 {
4932 response.type = NSCTL_RES_OK;
4933 response.argc = 0;
4934 }
4935
4936 break;
4937
4938 case NSCTL_REQ_UNLOAD:
4939 if (request.argc != 1)
4940 {
4941 response.type = NSCTL_RES_ERR;
4942 response.argc = 1;
4943 response.argv[0] = "name of plugin required";
4944 }
4945 else if ((r = remove_plugin(request.argv[0])) < 1)
4946 {
4947 response.type = NSCTL_RES_ERR;
4948 response.argc = 1;
4949 response.argv[0] = !r
4950 ? "plugin not loaded"
4951 : "plugin not found";
4952 }
4953 else
4954 {
4955 response.type = NSCTL_RES_OK;
4956 response.argc = 0;
4957 }
4958
4959 break;
4960
4961 case NSCTL_REQ_HELP:
4962 response.type = NSCTL_RES_OK;
4963 response.argc = 0;
4964
4965 ll_reset(loaded_plugins);
4966 while ((p = ll_next(loaded_plugins)))
4967 {
4968 char **help = dlsym(p, "plugin_control_help");
4969 while (response.argc < 0xff && help && *help)
4970 response.argv[response.argc++] = *help++;
4971 }
4972
4973 break;
4974
4975 case NSCTL_REQ_CONTROL:
4976 {
4977 struct param_control param = {
4978 config->cluster_iam_master,
4979 request.argc,
4980 request.argv,
4981 0,
4982 NULL,
4983 };
4984
4985 int r = run_plugins(PLUGIN_CONTROL, &param);
4986
4987 if (r == PLUGIN_RET_ERROR)
4988 {
4989 response.type = NSCTL_RES_ERR;
4990 response.argc = 1;
4991 response.argv[0] = param.additional
4992 ? param.additional
4993 : "error returned by plugin";
4994 }
4995 else if (r == PLUGIN_RET_NOTMASTER)
4996 {
4997 static char msg[] = "must be run on master: 000.000.000.000";
4998
4999 response.type = NSCTL_RES_ERR;
5000 response.argc = 1;
5001 if (config->cluster_master_address)
5002 {
5003 strcpy(msg + 23, fmtaddr(config->cluster_master_address, 0));
5004 response.argv[0] = msg;
5005 }
5006 else
5007 {
5008 response.argv[0] = "must be run on master: none elected";
5009 }
5010 }
5011 else if (!(param.response & NSCTL_RESPONSE))
5012 {
5013 response.type = NSCTL_RES_ERR;
5014 response.argc = 1;
5015 response.argv[0] = param.response
5016 ? "unrecognised response value from plugin"
5017 : "unhandled action";
5018 }
5019 else
5020 {
5021 response.type = param.response;
5022 response.argc = 0;
5023 if (param.additional)
5024 {
5025 response.argc = 1;
5026 response.argv[0] = param.additional;
5027 }
5028 }
5029 }
5030
5031 break;
5032
5033 default:
5034 response.type = NSCTL_RES_ERR;
5035 response.argc = 1;
5036 response.argv[0] = "error unpacking control packet";
5037 }
5038
5039 buf = calloc(NSCTL_MAX_PKT_SZ, 1);
5040 if (!buf)
5041 {
5042 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5043 return;
5044 }
5045
5046 r = pack_control(buf, NSCTL_MAX_PKT_SZ, response.type, response.argc, response.argv);
5047 if (r > 0)
5048 {
5049 sendto(controlfd, buf, r, 0, (const struct sockaddr *) addr, alen);
5050 if (log_stream && config->debug >= 4)
5051 {
5052 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr->sin_addr.s_addr, 0));
5053 dump_control(&response, log_stream);
5054 }
5055 }
5056 else
5057 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
5058 fmtaddr(addr->sin_addr.s_addr, 0), r);
5059
5060 free(buf);
5061 }
5062
5063 static tunnelidt new_tunnel()
5064 {
5065 tunnelidt i;
5066 for (i = 1; i < MAXTUNNEL; i++)
5067 {
5068 if (tunnel[i].state == TUNNELFREE)
5069 {
5070 LOG(4, 0, i, "Assigning tunnel ID %d\n", i);
5071 if (i > config->cluster_highest_tunnelid)
5072 config->cluster_highest_tunnelid = i;
5073 return i;
5074 }
5075 }
5076 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
5077 return 0;
5078 }
5079
5080 //
5081 // We're becoming the master. Do any required setup..
5082 //
5083 // This is principally telling all the plugins that we're
5084 // now a master, and telling them about all the sessions
5085 // that are active too..
5086 //
5087 void become_master(void)
5088 {
5089 int s, i;
5090 static struct event_data d[RADIUS_FDS];
5091 struct epoll_event e;
5092
5093 run_plugins(PLUGIN_BECOME_MASTER, NULL);
5094
5095 // running a bunch of iptables commands is slow and can cause
5096 // the master to drop tunnels on takeover--kludge around the
5097 // problem by forking for the moment (note: race)
5098 if (!fork_and_close())
5099 {
5100 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
5101 {
5102 if (!session[s].opened) // Not an in-use session.
5103 continue;
5104
5105 run_plugins(PLUGIN_NEW_SESSION_MASTER, &session[s]);
5106 }
5107 exit(0);
5108 }
5109
5110 // add radius fds
5111 e.events = EPOLLIN;
5112 for (i = 0; i < RADIUS_FDS; i++)
5113 {
5114 d[i].type = FD_TYPE_RADIUS;
5115 d[i].index = i;
5116 e.data.ptr = &d[i];
5117
5118 epoll_ctl(epollfd, EPOLL_CTL_ADD, radfds[i], &e);
5119 }
5120 }
5121
5122 int cmd_show_hist_idle(struct cli_def *cli, char *command, char **argv, int argc)
5123 {
5124 int s, i;
5125 int count = 0;
5126 int buckets[64];
5127
5128 if (CLI_HELP_REQUESTED)
5129 return CLI_HELP_NO_ARGS;
5130
5131 time(&time_now);
5132 for (i = 0; i < 64;++i) buckets[i] = 0;
5133
5134 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
5135 {
5136 int idle;
5137 if (!session[s].opened)
5138 continue;
5139
5140 idle = time_now - session[s].last_packet;
5141 idle /= 5 ; // In multiples of 5 seconds.
5142 if (idle < 0)
5143 idle = 0;
5144 if (idle > 63)
5145 idle = 63;
5146
5147 ++count;
5148 ++buckets[idle];
5149 }
5150
5151 for (i = 0; i < 63; ++i)
5152 {
5153 cli_print(cli, "%3d seconds : %7.2f%% (%6d)", i * 5, (double) buckets[i] * 100.0 / count , buckets[i]);
5154 }
5155 cli_print(cli, "lots of secs : %7.2f%% (%6d)", (double) buckets[63] * 100.0 / count , buckets[i]);
5156 cli_print(cli, "%d total sessions open.", count);
5157 return CLI_OK;
5158 }
5159
5160 int cmd_show_hist_open(struct cli_def *cli, char *command, char **argv, int argc)
5161 {
5162 int s, i;
5163 int count = 0;
5164 int buckets[64];
5165
5166 if (CLI_HELP_REQUESTED)
5167 return CLI_HELP_NO_ARGS;
5168
5169 time(&time_now);
5170 for (i = 0; i < 64;++i) buckets[i] = 0;
5171
5172 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
5173 {
5174 int open = 0, d;
5175 if (!session[s].opened)
5176 continue;
5177
5178 d = time_now - session[s].opened;
5179 if (d < 0)
5180 d = 0;
5181 while (d > 1 && open < 32)
5182 {
5183 ++open;
5184 d >>= 1; // half.
5185 }
5186 ++count;
5187 ++buckets[open];
5188 }
5189
5190 s = 1;
5191 for (i = 0; i < 30; ++i)
5192 {
5193 cli_print(cli, " < %8d seconds : %7.2f%% (%6d)", s, (double) buckets[i] * 100.0 / count , buckets[i]);
5194 s <<= 1;
5195 }
5196 cli_print(cli, "%d total sessions open.", count);
5197 return CLI_OK;
5198 }
5199
5200 /* Unhide an avp.
5201 *
5202 * This unencodes the AVP using the L2TP secret and the previously
5203 * stored random vector. It overwrites the hidden data with the
5204 * unhidden AVP subformat.
5205 */
5206 static void unhide_value(uint8_t *value, size_t len, uint16_t type, uint8_t *vector, size_t vec_len)
5207 {
5208 MD5_CTX ctx;
5209 uint8_t digest[16];
5210 uint8_t *last;
5211 size_t d = 0;
5212 uint16_t m = htons(type);
5213
5214 // Compute initial pad
5215 MD5_Init(&ctx);
5216 MD5_Update(&ctx, (unsigned char *) &m, 2);
5217 MD5_Update(&ctx, config->l2tp_secret, strlen(config->l2tp_secret));
5218 MD5_Update(&ctx, vector, vec_len);
5219 MD5_Final(digest, &ctx);
5220
5221 // pointer to last decoded 16 octets
5222 last = value;
5223
5224 while (len > 0)
5225 {
5226 // calculate a new pad based on the last decoded block
5227 if (d >= sizeof(digest))
5228 {
5229 MD5_Init(&ctx);
5230 MD5_Update(&ctx, config->l2tp_secret, strlen(config->l2tp_secret));
5231 MD5_Update(&ctx, last, sizeof(digest));
5232 MD5_Final(digest, &ctx);
5233
5234 d = 0;
5235 last = value;
5236 }
5237
5238 *value++ ^= digest[d++];
5239 len--;
5240 }
5241 }
5242
5243 int find_filter(char const *name, size_t len)
5244 {
5245 int free = -1;
5246 int i;
5247
5248 for (i = 0; i < MAXFILTER; i++)
5249 {
5250 if (!*ip_filters[i].name)
5251 {
5252 if (free < 0)
5253 free = i;
5254
5255 continue;
5256 }
5257
5258 if (strlen(ip_filters[i].name) != len)
5259 continue;
5260
5261 if (!strncmp(ip_filters[i].name, name, len))
5262 return i;
5263 }
5264
5265 return free;
5266 }
5267
5268 static int ip_filter_port(ip_filter_portt *p, uint16_t port)
5269 {
5270 switch (p->op)
5271 {
5272 case FILTER_PORT_OP_EQ: return port == p->port;
5273 case FILTER_PORT_OP_NEQ: return port != p->port;
5274 case FILTER_PORT_OP_GT: return port > p->port;
5275 case FILTER_PORT_OP_LT: return port < p->port;
5276 case FILTER_PORT_OP_RANGE: return port >= p->port && port <= p->port2;
5277 }
5278
5279 return 0;
5280 }
5281
5282 static int ip_filter_flag(uint8_t op, uint8_t sflags, uint8_t cflags, uint8_t flags)
5283 {
5284 switch (op)
5285 {
5286 case FILTER_FLAG_OP_ANY:
5287 return (flags & sflags) || (~flags & cflags);
5288
5289 case FILTER_FLAG_OP_ALL:
5290 return (flags & sflags) == sflags && (~flags & cflags) == cflags;
5291
5292 case FILTER_FLAG_OP_EST:
5293 return (flags & (TCP_FLAG_ACK|TCP_FLAG_RST)) && (~flags & TCP_FLAG_SYN);
5294 }
5295
5296 return 0;
5297 }
5298
5299 int ip_filter(uint8_t *buf, int len, uint8_t filter)
5300 {
5301 uint16_t frag_offset;
5302 uint8_t proto;
5303 in_addr_t src_ip;
5304 in_addr_t dst_ip;
5305 uint16_t src_port = 0;
5306 uint16_t dst_port = 0;
5307 uint8_t flags = 0;
5308 ip_filter_rulet *rule;
5309
5310 if (len < 20) // up to end of destination address
5311 return 0;
5312
5313 if ((*buf >> 4) != 4) // IPv4
5314 return 0;
5315
5316 frag_offset = ntohs(*(uint16_t *) (buf + 6)) & 0x1fff;
5317 proto = buf[9];
5318 src_ip = *(in_addr_t *) (buf + 12);
5319 dst_ip = *(in_addr_t *) (buf + 16);
5320
5321 if (frag_offset == 0 && (proto == IPPROTO_TCP || proto == IPPROTO_UDP))
5322 {
5323 int l = (buf[0] & 0xf) * 4; // length of IP header
5324 if (len < l + 4) // ports
5325 return 0;
5326
5327 src_port = ntohs(*(uint16_t *) (buf + l));
5328 dst_port = ntohs(*(uint16_t *) (buf + l + 2));
5329 if (proto == IPPROTO_TCP)
5330 {
5331 if (len < l + 14) // flags
5332 return 0;
5333
5334 flags = buf[l + 13] & 0x3f;
5335 }
5336 }
5337
5338 for (rule = ip_filters[filter].rules; rule->action; rule++)
5339 {
5340 if (rule->proto != IPPROTO_IP && proto != rule->proto)
5341 continue;
5342
5343 if (rule->src_wild != INADDR_BROADCAST &&
5344 (src_ip & ~rule->src_wild) != (rule->src_ip & ~rule->src_wild))
5345 continue;
5346
5347 if (rule->dst_wild != INADDR_BROADCAST &&
5348 (dst_ip & ~rule->dst_wild) != (rule->dst_ip & ~rule->dst_wild))
5349 continue;
5350
5351 if (frag_offset)
5352 {
5353 // non-fragmented deny rules are skipped if containing L4 matches
5354 if (!rule->frag &&
5355 (rule->src_ports.op || rule->dst_ports.op || rule->tcp_flag_op) &&
5356 rule->action == FILTER_ACTION_DENY)
5357 continue;
5358 }
5359 else
5360 {
5361 if (rule->frag)
5362 continue;
5363
5364 if (proto == IPPROTO_TCP || proto == IPPROTO_UDP)
5365 {
5366 if (rule->src_ports.op && !ip_filter_port(&rule->src_ports, src_port))
5367 continue;
5368
5369 if (rule->dst_ports.op && !ip_filter_port(&rule->dst_ports, dst_port))
5370 continue;
5371
5372 if (proto == IPPROTO_TCP && rule->tcp_flag_op &&
5373 !ip_filter_flag(rule->tcp_flag_op, rule->tcp_sflags, rule->tcp_cflags, flags))
5374 continue;
5375 }
5376 }
5377
5378 // matched
5379 rule->counter++;
5380 return rule->action == FILTER_ACTION_PERMIT;
5381 }
5382
5383 // default deny
5384 return 0;
5385 }