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