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