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