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