simplify AVP unhiding code
[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.85 2005-03-10 03:08:08 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 uint32_t sessionid = 0; // session id for radius accounting
72 static int syslog_log = 0; // are we logging to syslog
73 static FILE *log_stream = NULL; // file handle for direct logging (i.e. direct into file, not via syslog).
74 extern int cluster_sockfd; // Intra-cluster communications socket.
75 uint32_t last_id = 0; // Last used PPP SID. Can I kill this?? -- mo
76
77 struct cli_session_actions *cli_session_actions = NULL; // Pending session changes requested by CLI
78 struct cli_tunnel_actions *cli_tunnel_actions = NULL; // Pending tunnel changes required by CLI
79
80 static void *ip_hash[256]; // Mapping from IP address to session structures.
81 struct ipv6radix {
82 int sess;
83 struct ipv6radix *branch;
84 } ipv6_hash[256]; // Mapping from IPv6 address to session structures.
85
86 // Traffic counters.
87 static uint32_t udp_rx = 0, udp_rx_pkt = 0, udp_tx = 0;
88 static uint32_t eth_rx = 0, eth_rx_pkt = 0;
89 uint32_t eth_tx = 0;
90
91 static uint32_t ip_pool_size = 1; // Size of the pool of addresses used for dynamic address allocation.
92 time_t time_now = 0; // Current time in seconds since epoch.
93 static char time_now_string[64] = {0}; // Current time as a string.
94 static char main_quit = 0; // True if we're in the process of exiting.
95 linked_list *loaded_plugins;
96 linked_list *plugins[MAX_PLUGIN_TYPES];
97
98 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
99 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
100
101 config_descriptt config_values[] = {
102 CONFIG("debug", debug, INT),
103 CONFIG("log_file", log_filename, STRING),
104 CONFIG("pid_file", pid_file, STRING),
105 CONFIG("random_device", random_device, STRING),
106 CONFIG("l2tp_secret", l2tpsecret, STRING),
107 CONFIG("primary_dns", default_dns1, IPv4),
108 CONFIG("secondary_dns", default_dns2, IPv4),
109 CONFIG("primary_radius", radiusserver[0], IPv4),
110 CONFIG("secondary_radius", radiusserver[1], IPv4),
111 CONFIG("primary_radius_port", radiusport[0], SHORT),
112 CONFIG("secondary_radius_port", radiusport[1], SHORT),
113 CONFIG("radius_accounting", radius_accounting, BOOL),
114 CONFIG("radius_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 (32 bit)
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)
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 (!walled_garden && !session[s].die)
1457 {
1458 // RADIUS Stop message
1459 uint16_t r = session[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 { // Send CDN
1512 controlt *c = controlnew(14); // sending CDN
1513 control16(c, 1, 3, 1); // result code (admin reasons - TBA make error, general error, add message
1514 control16(c, 14, s, 1); // assigned session (our end)
1515 controladd(c, session[s].tunnel, s); // send the message
1516 }
1517
1518 if (!session[s].die)
1519 session[s].die = TIME + 150; // Clean up in 15 seconds
1520
1521 // update filter refcounts
1522 if (session[s].filter_in) ip_filters[session[s].filter_in - 1].used--;
1523 if (session[s].filter_out) ip_filters[session[s].filter_out - 1].used--;
1524
1525 cluster_send_session(s);
1526 }
1527
1528 void sendipcp(tunnelidt t, sessionidt s)
1529 {
1530 uint8_t buf[MAXCONTROL];
1531 uint16_t r = session[s].radius;
1532 uint8_t *q;
1533
1534 CSTAT(sendipcp);
1535
1536 if (!r)
1537 r = radiusnew(s);
1538
1539 if (radius[r].state != RADIUSIPCP)
1540 {
1541 radius[r].state = RADIUSIPCP;
1542 radius[r].try = 0;
1543 }
1544
1545 radius[r].retry = backoff(radius[r].try++);
1546 if (radius[r].try > 10)
1547 {
1548 radiusclear(r, s); // Clear radius session.
1549 sessionshutdown(s, "No reply on IPCP");
1550 return;
1551 }
1552
1553 q = makeppp(buf,sizeof(buf), 0, 0, t, s, PPPIPCP);
1554 if (!q) return;
1555
1556 *q = ConfigReq;
1557 q[1] = r << RADIUS_SHIFT; // ID, dont care, we only send one type of request
1558 *(uint16_t *) (q + 2) = htons(10);
1559 q[4] = 3;
1560 q[5] = 6;
1561 *(in_addr_t *) (q + 6) = config->peer_address ? config->peer_address :
1562 config->bind_address ? config->bind_address :
1563 my_address; // send my IP
1564
1565 tunnelsend(buf, 10 + (q - buf), t); // send it
1566 session[s].flags &= ~SF_IPCP_ACKED; // Clear flag.
1567
1568 // If we have an IPv6 prefix length configured, assume we should
1569 // try to negotiate an IPv6 session as well. Unless we've had a
1570 // (N)ACK for IPV6CP.
1571 if (config->ipv6_prefix.s6_addr[0] > 0 &&
1572 !(session[s].flags & SF_IPV6CP_ACKED) &&
1573 !(session[s].flags & SF_IPV6_NACKED))
1574 {
1575 q = makeppp(buf,sizeof(buf), 0, 0, t, s, PPPIPV6CP);
1576 if (!q) return;
1577
1578 *q = ConfigReq;
1579 q[1] = r << RADIUS_SHIFT; // ID, don't care, we
1580 // only send one type
1581 // of request
1582 *(uint16_t *) (q + 2) = htons(14);
1583 q[4] = 1;
1584 q[5] = 10;
1585 *(uint32_t *) (q + 6) = 0; // We'll be prefix::1
1586 *(uint32_t *) (q + 10) = 0;
1587 q[13] = 1;
1588
1589 tunnelsend(buf, 14 + (q - buf), t); // send it
1590 }
1591 }
1592
1593 // kill a session now
1594 void sessionkill(sessionidt s, char *reason)
1595 {
1596
1597 CSTAT(sessionkill);
1598
1599 if (!session[s].opened) // not alive
1600 return;
1601
1602 if (session[s].next)
1603 {
1604 LOG(0, s, session[s].tunnel, "Tried to kill a session with next pointer set (%d)\n", session[s].next);
1605 return;
1606 }
1607
1608 session[s].die = TIME;
1609 sessionshutdown(s, reason); // close radius/routes, etc.
1610 if (session[s].radius)
1611 radiusclear(session[s].radius, s); // cant send clean accounting data, session is killed
1612
1613 LOG(2, s, session[s].tunnel, "Kill session %d (%s): %s\n", s, session[s].user, reason);
1614
1615 memset(&session[s], 0, sizeof(session[s]));
1616 session[s].tunnel = T_FREE; // Mark it as free.
1617 session[s].next = sessionfree;
1618 sessionfree = s;
1619 cli_session_actions[s].action = 0;
1620 cluster_send_session(s);
1621 }
1622
1623 static void tunnelclear(tunnelidt t)
1624 {
1625 if (!t) return;
1626 memset(&tunnel[t], 0, sizeof(tunnel[t]));
1627 tunnel[t].state = TUNNELFREE;
1628 }
1629
1630 // kill a tunnel now
1631 static void tunnelkill(tunnelidt t, char *reason)
1632 {
1633 sessionidt s;
1634 controlt *c;
1635
1636 CSTAT(tunnelkill);
1637
1638 tunnel[t].state = TUNNELDIE;
1639
1640 // free control messages
1641 while ((c = tunnel[t].controls))
1642 {
1643 controlt * n = c->next;
1644 tunnel[t].controls = n;
1645 tunnel[t].controlc--;
1646 c->next = controlfree;
1647 controlfree = c;
1648 }
1649 // kill sessions
1650 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
1651 if (session[s].tunnel == t)
1652 sessionkill(s, reason);
1653
1654 // free tunnel
1655 tunnelclear(t);
1656 LOG(1, 0, t, "Kill tunnel %d: %s\n", t, reason);
1657 cli_tunnel_actions[s].action = 0;
1658 cluster_send_tunnel(t);
1659 }
1660
1661 // shut down a tunnel cleanly
1662 static void tunnelshutdown(tunnelidt t, char *reason)
1663 {
1664 sessionidt s;
1665
1666 CSTAT(tunnelshutdown);
1667
1668 if (!tunnel[t].last || !tunnel[t].far || tunnel[t].state == TUNNELFREE)
1669 {
1670 // never set up, can immediately kill
1671 tunnelkill(t, reason);
1672 return;
1673 }
1674 LOG(1, 0, t, "Shutting down tunnel %d (%s)\n", t, reason);
1675
1676 // close session
1677 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
1678 if (session[s].tunnel == t)
1679 sessionshutdown(s, reason);
1680
1681 tunnel[t].state = TUNNELDIE;
1682 tunnel[t].die = TIME + 700; // Clean up in 70 seconds
1683 cluster_send_tunnel(t);
1684 // TBA - should we wait for sessions to stop?
1685 { // Send StopCCN
1686 controlt *c = controlnew(4); // sending StopCCN
1687 control16(c, 1, 1, 1); // result code (admin reasons - TBA make error, general error, add message)
1688 control16(c, 9, t, 1); // assigned tunnel (our end)
1689 controladd(c, t, 0); // send the message
1690 }
1691 }
1692
1693 // read and process packet on tunnel (UDP)
1694 void processudp(uint8_t * buf, int len, struct sockaddr_in *addr)
1695 {
1696 char *chapresponse = NULL;
1697 uint16_t l = len, t = 0, s = 0, ns = 0, nr = 0;
1698 uint8_t *p = buf + 2;
1699
1700
1701 CSTAT(processudp);
1702
1703 udp_rx += len;
1704 udp_rx_pkt++;
1705 LOG_HEX(5, "UDP Data", buf, len);
1706 STAT(tunnel_rx_packets);
1707 INC_STAT(tunnel_rx_bytes, len);
1708 if (len < 6)
1709 {
1710 LOG(1, 0, 0, "Short UDP, %d bytes\n", len);
1711 STAT(tunnel_rx_errors);
1712 return;
1713 }
1714 if ((buf[1] & 0x0F) != 2)
1715 {
1716 LOG(1, 0, 0, "Bad L2TP ver %d\n", (buf[1] & 0x0F) != 2);
1717 STAT(tunnel_rx_errors);
1718 return;
1719 }
1720 if (*buf & 0x40)
1721 { // length
1722 l = ntohs(*(uint16_t *) p);
1723 p += 2;
1724 }
1725 t = ntohs(*(uint16_t *) p);
1726 p += 2;
1727 s = ntohs(*(uint16_t *) p);
1728 p += 2;
1729 if (s >= MAXSESSION)
1730 {
1731 LOG(1, s, t, "Received UDP packet with invalid session ID\n");
1732 STAT(tunnel_rx_errors);
1733 return;
1734 }
1735 if (t >= MAXTUNNEL)
1736 {
1737 LOG(1, s, t, "Received UDP packet with invalid tunnel ID\n");
1738 STAT(tunnel_rx_errors);
1739 return;
1740 }
1741 if (*buf & 0x08)
1742 { // ns/nr
1743 ns = ntohs(*(uint16_t *) p);
1744 p += 2;
1745 nr = ntohs(*(uint16_t *) p);
1746 p += 2;
1747 }
1748 if (*buf & 0x02)
1749 { // offset
1750 uint16_t o = ntohs(*(uint16_t *) p);
1751 p += o + 2;
1752 }
1753 if ((p - buf) > l)
1754 {
1755 LOG(1, s, t, "Bad length %d>%d\n", (int) (p - buf), l);
1756 STAT(tunnel_rx_errors);
1757 return;
1758 }
1759 l -= (p - buf);
1760 if (*buf & 0x80)
1761 { // control
1762 uint16_t message = 0xFFFF; // message type
1763 uint8_t fatal = 0;
1764 uint8_t mandatory = 0;
1765 uint8_t chap = 0; // if CHAP being used
1766 uint16_t asession = 0; // assigned session
1767 uint32_t amagic = 0; // magic number
1768 uint8_t aflags = 0; // flags from last LCF
1769 uint16_t version = 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
1770 int requestchap = 0; // do we request PAP instead of original CHAP request?
1771 char called[MAXTEL] = ""; // called number
1772 char calling[MAXTEL] = ""; // calling number
1773
1774 if (!config->cluster_iam_master)
1775 {
1776 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
1777 return;
1778 }
1779
1780 // control messages must have bits 0x80|0x40|0x08
1781 // (type, length and sequence) set, and bits 0x02|0x01
1782 // (offset and priority) clear
1783 if ((*buf & 0xCB) != 0xC8)
1784 {
1785 LOG(1, s, t, "Bad control header %02X\n", *buf);
1786 STAT(tunnel_rx_errors);
1787 return;
1788 }
1789
1790 // check for duplicate tunnel open message
1791 if (!t && ns == 0)
1792 {
1793 int i;
1794
1795 //
1796 // Is this a duplicate of the first packet? (SCCRQ)
1797 //
1798 for (i = 1; i <= config->cluster_highest_tunnelid ; ++i)
1799 {
1800 if (tunnel[i].state != TUNNELOPENING ||
1801 tunnel[i].ip != ntohl(*(in_addr_t *) & addr->sin_addr) ||
1802 tunnel[i].port != ntohs(addr->sin_port) )
1803 continue;
1804 t = i;
1805 LOG(3, s, t, "Duplicate SCCRQ?\n");
1806 break;
1807 }
1808 }
1809
1810 LOG(3, s, t, "Control message (%d bytes): (unacked %d) l-ns %d l-nr %d r-ns %d r-nr %d\n",
1811 l, tunnel[t].controlc, tunnel[t].ns, tunnel[t].nr, ns, nr);
1812
1813 // if no tunnel specified, assign one
1814 if (!t)
1815 {
1816 if (!(t = new_tunnel()))
1817 {
1818 LOG(1, 0, 0, "No more tunnels\n");
1819 STAT(tunnel_overflow);
1820 return;
1821 }
1822 tunnelclear(t);
1823 tunnel[t].ip = ntohl(*(in_addr_t *) & addr->sin_addr);
1824 tunnel[t].port = ntohs(addr->sin_port);
1825 tunnel[t].window = 4; // default window
1826 STAT(tunnel_created);
1827 LOG(1, 0, t, " New tunnel from %s:%u ID %d\n",
1828 fmtaddr(htonl(tunnel[t].ip), 0), tunnel[t].port, t);
1829 }
1830
1831 // If the 'ns' just received is not the 'nr' we're
1832 // expecting, just send an ack and drop it.
1833 //
1834 // if 'ns' is less, then we got a retransmitted packet.
1835 // if 'ns' is greater than missed a packet. Either way
1836 // we should ignore it.
1837 if (ns != tunnel[t].nr)
1838 {
1839 // is this the sequence we were expecting?
1840 STAT(tunnel_rx_errors);
1841 LOG(1, 0, t, " Out of sequence tunnel %d, (%d is not the expected %d)\n",
1842 t, ns, tunnel[t].nr);
1843
1844 if (l) // Is this not a ZLB?
1845 controlnull(t);
1846 return;
1847 }
1848
1849 // This is used to time out old tunnels
1850 tunnel[t].lastrec = time_now;
1851
1852 // check sequence of this message
1853 {
1854 int skip = tunnel[t].window; // track how many in-window packets are still in queue
1855 // some to clear maybe?
1856 while (tunnel[t].controlc > 0 && (((tunnel[t].ns - tunnel[t].controlc) - nr) & 0x8000))
1857 {
1858 controlt *c = tunnel[t].controls;
1859 tunnel[t].controls = c->next;
1860 tunnel[t].controlc--;
1861 c->next = controlfree;
1862 controlfree = c;
1863 skip--;
1864 tunnel[t].try = 0; // we have progress
1865 }
1866
1867 // receiver advance (do here so quoted correctly in any sends below)
1868 if (l) tunnel[t].nr = (ns + 1);
1869 if (skip < 0) skip = 0;
1870 if (skip < tunnel[t].controlc)
1871 {
1872 // some control packets can now be sent that were previous stuck out of window
1873 int tosend = tunnel[t].window - skip;
1874 controlt *c = tunnel[t].controls;
1875 while (c && skip)
1876 {
1877 c = c->next;
1878 skip--;
1879 }
1880 while (c && tosend)
1881 {
1882 tunnel[t].try = 0; // first send
1883 tunnelsend(c->buf, c->length, t);
1884 c = c->next;
1885 tosend--;
1886 }
1887 }
1888 if (!tunnel[t].controlc)
1889 tunnel[t].retry = 0; // caught up
1890 }
1891 if (l)
1892 { // if not a null message
1893 // process AVPs
1894 while (l && !(fatal & 0x80)) // 0x80 = mandatory AVP
1895 {
1896 uint16_t n = (ntohs(*(uint16_t *) p) & 0x3FF);
1897 uint8_t *b = p;
1898 uint8_t flags = *p;
1899 uint16_t mtype;
1900 if (n > l)
1901 {
1902 LOG(1, s, t, "Invalid length in AVP\n");
1903 STAT(tunnel_rx_errors);
1904 return;
1905 }
1906 p += n; // next
1907 l -= n;
1908 if (flags & 0x3C) // reserved bits, should be clear
1909 {
1910 LOG(1, s, t, "Unrecognised AVP flags %02X\n", *b);
1911 fatal = flags;
1912 continue; // next
1913 }
1914 b += 2;
1915 if (*(uint16_t *) (b))
1916 {
1917 LOG(2, s, t, "Unknown AVP vendor %d\n", ntohs(*(uint16_t *) (b)));
1918 fatal = flags;
1919 continue; // next
1920 }
1921 b += 2;
1922 mtype = ntohs(*(uint16_t *) (b));
1923 b += 2;
1924 n -= 6;
1925
1926 if (flags & 0x40)
1927 {
1928 uint16_t orig_len;
1929
1930 // handle hidden AVPs
1931 if (!*config->l2tpsecret)
1932 {
1933 LOG(1, s, t, "Hidden AVP requested, but no L2TP secret.\n");
1934 fatal = flags;
1935 continue;
1936 }
1937 if (!session[s].random_vector_length)
1938 {
1939 LOG(1, s, t, "Hidden AVP requested, but no random vector.\n");
1940 fatal = flags;
1941 continue;
1942 }
1943 if (n < 8)
1944 {
1945 LOG(2, s, t, "Short hidden AVP.\n");
1946 fatal = flags;
1947 continue;
1948 }
1949
1950 LOG(4, s, t, "Hidden AVP\n");
1951
1952 // Unhide the AVP
1953 unhide_value(b, n, mtype, session[s].random_vector, session[s].random_vector_length);
1954
1955 orig_len = ntohs(*(uint16_t *) b);
1956 if (orig_len > n + 2)
1957 {
1958 fatal = flags;
1959 continue;
1960 }
1961
1962 b += 2;
1963 n = orig_len;
1964 }
1965
1966 LOG(4, s, t, " AVP %d (%s) len %d\n", mtype, avp_name(mtype), n);
1967 switch (mtype)
1968 {
1969 case 0: // message type
1970 message = ntohs(*(uint16_t *) b);
1971 mandatory = flags & 0x80;
1972 LOG(4, s, t, " Message type = %d (%s)\n", *b, l2tp_message_type(message));
1973 break;
1974 case 1: // result code
1975 {
1976 uint16_t rescode = ntohs(*(uint16_t *) b);
1977 const char* resdesc = "(unknown)";
1978 if (message == 4)
1979 { /* StopCCN */
1980 resdesc = stopccn_result_code(rescode);
1981 }
1982 else if (message == 14)
1983 { /* CDN */
1984 resdesc = cdn_result_code(rescode);
1985 }
1986
1987 LOG(4, s, t, " Result Code %d: %s\n", rescode, resdesc);
1988 if (n >= 4)
1989 {
1990 uint16_t errcode = ntohs(*(uint16_t *)(b + 2));
1991 LOG(4, s, t, " Error Code %d: %s\n", errcode, error_code(errcode));
1992 }
1993 if (n > 4)
1994 LOG(4, s, t, " Error String: %.*s\n", n-4, b+4);
1995
1996 break;
1997 }
1998 break;
1999 case 2: // protocol version
2000 {
2001 version = ntohs(*(uint16_t *) (b));
2002 LOG(4, s, t, " Protocol version = %d\n", version);
2003 if (version && version != 0x0100)
2004 { // allow 0.0 and 1.0
2005 LOG(1, s, t, " Bad protocol version %04X\n", version);
2006 fatal = flags;
2007 continue; // next
2008 }
2009 }
2010 break;
2011 case 3: // framing capabilities
2012 // LOG(4, s, t, "Framing capabilities\n");
2013 break;
2014 case 4: // bearer capabilities
2015 // LOG(4, s, t, "Bearer capabilities\n");
2016 break;
2017 case 5: // tie breaker
2018 // We never open tunnels, so we don't care about tie breakers
2019 // LOG(4, s, t, "Tie breaker\n");
2020 continue;
2021 case 6: // firmware revision
2022 // LOG(4, s, t, "Firmware revision\n");
2023 break;
2024 case 7: // host name
2025 memset(tunnel[t].hostname, 0, 128);
2026 memcpy(tunnel[t].hostname, b, (n >= 127) ? 127 : n);
2027 LOG(4, s, t, " Tunnel hostname = \"%s\"\n", tunnel[t].hostname);
2028 // TBA - to send to RADIUS
2029 break;
2030 case 8: // vendor name
2031 memset(tunnel[t].vendor, 0, sizeof(tunnel[t].vendor));
2032 memcpy(tunnel[t].vendor, b, (n >= sizeof(tunnel[t].vendor) - 1) ? sizeof(tunnel[t].vendor) - 1 : n);
2033 LOG(4, s, t, " Vendor name = \"%s\"\n", tunnel[t].vendor);
2034 break;
2035 case 9: // assigned tunnel
2036 tunnel[t].far = ntohs(*(uint16_t *) (b));
2037 LOG(4, s, t, " Remote tunnel id = %d\n", tunnel[t].far);
2038 break;
2039 case 10: // rx window
2040 tunnel[t].window = ntohs(*(uint16_t *) (b));
2041 if (!tunnel[t].window)
2042 tunnel[t].window = 1; // window of 0 is silly
2043 LOG(4, s, t, " rx window = %d\n", tunnel[t].window);
2044 break;
2045 case 11: // Challenge
2046 {
2047 LOG(4, s, t, " LAC requested CHAP authentication for tunnel\n");
2048 build_chap_response(b, 2, n, &chapresponse);
2049 }
2050 break;
2051 case 13: // Response
2052 // Why did they send a response? We never challenge.
2053 LOG(2, s, t, " received unexpected challenge response\n");
2054 break;
2055
2056 case 14: // assigned session
2057 asession = session[s].far = ntohs(*(uint16_t *) (b));
2058 LOG(4, s, t, " assigned session = %d\n", asession);
2059 break;
2060 case 15: // call serial number
2061 LOG(4, s, t, " call serial number = %d\n", ntohl(*(uint32_t *)b));
2062 break;
2063 case 18: // bearer type
2064 LOG(4, s, t, " bearer type = %d\n", ntohl(*(uint32_t *)b));
2065 // TBA - for RADIUS
2066 break;
2067 case 19: // framing type
2068 LOG(4, s, t, " framing type = %d\n", ntohl(*(uint32_t *)b));
2069 // TBA
2070 break;
2071 case 21: // called number
2072 memset(called, 0, MAXTEL);
2073 memcpy(called, b, (n >= MAXTEL) ? (MAXTEL-1) : n);
2074 LOG(4, s, t, " Called <%s>\n", called);
2075 break;
2076 case 22: // calling number
2077 memset(calling, 0, MAXTEL);
2078 memcpy(calling, b, (n >= MAXTEL) ? (MAXTEL-1) : n);
2079 LOG(4, s, t, " Calling <%s>\n", calling);
2080 break;
2081 case 23: // subtype
2082 break;
2083 case 24: // tx connect speed
2084 if (n == 4)
2085 {
2086 session[s].tx_connect_speed = ntohl(*(uint32_t *)b);
2087 }
2088 else
2089 {
2090 // AS5300s send connect speed as a string
2091 char tmp[30] = {0};
2092 memcpy(tmp, b, (n >= 30) ? 30 : n);
2093 session[s].tx_connect_speed = atol(tmp);
2094 }
2095 LOG(4, s, t, " TX connect speed <%u>\n", session[s].tx_connect_speed);
2096 break;
2097 case 38: // rx connect speed
2098 if (n == 4)
2099 {
2100 session[s].rx_connect_speed = ntohl(*(uint32_t *)b);
2101 }
2102 else
2103 {
2104 // AS5300s send connect speed as a string
2105 char tmp[30] = {0};
2106 memcpy(tmp, b, (n >= 30) ? 30 : n);
2107 session[s].rx_connect_speed = atol(tmp);
2108 }
2109 LOG(4, s, t, " RX connect speed <%u>\n", session[s].rx_connect_speed);
2110 break;
2111 case 25: // Physical Channel ID
2112 {
2113 uint32_t tmp = ntohl(*(uint32_t *) b);
2114 LOG(4, s, t, " Physical Channel ID <%X>\n", tmp);
2115 break;
2116 }
2117 case 29: // Proxy Authentication Type
2118 {
2119 uint16_t atype = ntohs(*(uint16_t *)b);
2120 LOG(4, s, t, " Proxy Auth Type %d (%s)\n", atype, auth_type(atype));
2121 requestchap = (atype == 2);
2122 break;
2123 }
2124 case 30: // Proxy Authentication Name
2125 {
2126 char authname[64] = {0};
2127 memcpy(authname, b, (n > 63) ? 63 : n);
2128 LOG(4, s, t, " Proxy Auth Name (%s)\n",
2129 authname);
2130 break;
2131 }
2132 case 31: // Proxy Authentication Challenge
2133 {
2134 memcpy(radius[session[s].radius].auth, b, 16);
2135 LOG(4, s, t, " Proxy Auth Challenge\n");
2136 break;
2137 }
2138 case 32: // Proxy Authentication ID
2139 {
2140 uint16_t authid = ntohs(*(uint16_t *)(b));
2141 LOG(4, s, t, " Proxy Auth ID (%d)\n", authid);
2142 if (session[s].radius)
2143 radius[session[s].radius].id = authid;
2144 break;
2145 }
2146 case 33: // Proxy Authentication Response
2147 {
2148 char authresp[64] = {0};
2149 memcpy(authresp, b, (n > 63) ? 63 : n);
2150 LOG(4, s, t, " Proxy Auth Response\n");
2151 break;
2152 }
2153 case 27: // last send lcp
2154 { // find magic number
2155 uint8_t *p = b, *e = p + n;
2156 while (p + 1 < e && p[1] && p + p[1] <= e)
2157 {
2158 if (*p == 5 && p[1] == 6) // Magic-Number
2159 amagic = ntohl(*(uint32_t *) (p + 2));
2160 else if (*p == 3 && p[1] == 5 && *(uint16_t *) (p + 2) == htons(PPPCHAP) && p[4] == 5) // Authentication-Protocol
2161 chap = 1;
2162 else if (*p == 7) // Protocol-Field-Compression
2163 aflags |= SESSIONPFC;
2164 else if (*p == 8) // Address-and-Control-Field-Compression
2165 aflags |= SESSIONACFC;
2166 p += p[1];
2167 }
2168 }
2169 break;
2170 case 28: // last recv lcp confreq
2171 break;
2172 case 26: // Initial Received LCP CONFREQ
2173 break;
2174 case 39: // seq required - we control it as an LNS anyway...
2175 break;
2176 case 36: // Random Vector
2177 LOG(4, s, t, " Random Vector received. Enabled AVP Hiding.\n");
2178 memset(session[s].random_vector, 0, sizeof(session[s].random_vector));
2179 memcpy(session[s].random_vector, b, n);
2180 session[s].random_vector_length = n;
2181 break;
2182 default:
2183 LOG(2, s, t, " Unknown AVP type %d\n", mtype);
2184 fatal = flags;
2185 continue; // next
2186 }
2187 }
2188 // process message
2189 if (fatal & 0x80)
2190 tunnelshutdown(t, "Unknown Mandatory AVP");
2191 else
2192 switch (message)
2193 {
2194 case 1: // SCCRQ - Start Control Connection Request
2195 {
2196 controlt *c = controlnew(2); // sending SCCRP
2197 control16(c, 2, version, 1); // protocol version
2198 control32(c, 3, 3, 1); // framing
2199 controls(c, 7, tunnel[t].hostname, 1); // host name (TBA)
2200 if (chapresponse) controlb(c, 13, chapresponse, 16, 1); // Challenge response
2201 control16(c, 9, t, 1); // assigned tunnel
2202 controladd(c, t, s); // send the resply
2203 }
2204 tunnel[t].state = TUNNELOPENING;
2205 break;
2206 case 2: // SCCRP
2207 tunnel[t].state = TUNNELOPEN;
2208 break;
2209 case 3: // SCCN
2210 tunnel[t].state = TUNNELOPEN;
2211 controlnull(t); // ack
2212 break;
2213 case 4: // StopCCN
2214 controlnull(t); // ack
2215 tunnelshutdown(t, "Stopped"); // Shut down cleanly
2216 tunnelkill(t, "Stopped"); // Immediately force everything dead
2217 break;
2218 case 6: // HELLO
2219 controlnull(t); // simply ACK
2220 break;
2221 case 7: // OCRQ
2222 // TBA
2223 break;
2224 case 8: // OCRO
2225 // TBA
2226 break;
2227 case 9: // OCCN
2228 // TBA
2229 break;
2230 case 10: // ICRQ
2231 if (!sessionfree)
2232 {
2233 STAT(session_overflow);
2234 LOG(1, 0, t, "No free sessions");
2235 return;
2236 }
2237 else
2238 {
2239 uint16_t r;
2240 controlt *c;
2241
2242 s = sessionfree;
2243 sessionfree = session[s].next;
2244 memset(&session[s], 0, sizeof(session[s]));
2245
2246 if (s > config->cluster_highest_sessionid)
2247 config->cluster_highest_sessionid = s;
2248
2249 // make a RADIUS session
2250 if (!(r = radiusnew(s)))
2251 {
2252 LOG(1, s, t, "No free RADIUS sessions for ICRQ\n");
2253 sessionkill(s, "no free RADIUS sesions");
2254 return;
2255 }
2256
2257 c = controlnew(11); // sending ICRP
2258 session[s].id = sessionid++;
2259 session[s].opened = time_now;
2260 session[s].tunnel = t;
2261 session[s].far = asession;
2262 session[s].last_packet = time_now;
2263 LOG(3, s, t, "New session (%d/%d)\n", tunnel[t].far, session[s].far);
2264 control16(c, 14, s, 1); // assigned session
2265 controladd(c, t, s); // send the reply
2266
2267 // Generate a random challenge
2268 random_data(radius[r].auth, sizeof(radius[r].auth));
2269 strncpy(radius[r].calling, calling, sizeof(radius[r].calling) - 1);
2270 strncpy(session[s].called, called, sizeof(session[s].called) - 1);
2271 strncpy(session[s].calling, calling, sizeof(session[s].calling) - 1);
2272 STAT(session_created);
2273 }
2274 break;
2275 case 11: // ICRP
2276 // TBA
2277 break;
2278 case 12: // ICCN
2279 if (amagic == 0) amagic = time_now;
2280 session[s].magic = amagic; // set magic number
2281 session[s].l2tp_flags = aflags; // set flags received
2282 LOG(3, s, t, "Magic %X Flags %X\n", amagic, aflags);
2283 controlnull(t); // ack
2284 // In CHAP state, request PAP instead
2285 if (requestchap)
2286 initlcp(t, s);
2287 break;
2288 case 14: // CDN
2289 controlnull(t); // ack
2290 sessionshutdown(s, "Closed (Received CDN)");
2291 break;
2292 case 0xFFFF:
2293 LOG(1, s, t, "Missing message type\n");
2294 break;
2295 default:
2296 STAT(tunnel_rx_errors);
2297 if (mandatory)
2298 tunnelshutdown(t, "Unknown message type");
2299 else
2300 LOG(1, s, t, "Unknown message type %d\n", message);
2301 break;
2302 }
2303 if (chapresponse) free(chapresponse);
2304 cluster_send_tunnel(t);
2305 }
2306 else
2307 {
2308 LOG(4, s, t, " Got a ZLB ack\n");
2309 }
2310 }
2311 else
2312 { // data
2313 uint16_t prot;
2314
2315 LOG_HEX(5, "Receive Tunnel Data", p, l);
2316 if (l > 2 && p[0] == 0xFF && p[1] == 0x03)
2317 { // HDLC address header, discard
2318 p += 2;
2319 l -= 2;
2320 }
2321 if (l < 2)
2322 {
2323 LOG(1, s, t, "Short ppp length %d\n", l);
2324 STAT(tunnel_rx_errors);
2325 return;
2326 }
2327 if (*p & 1)
2328 {
2329 prot = *p++;
2330 l--;
2331 }
2332 else
2333 {
2334 prot = ntohs(*(uint16_t *) p);
2335 p += 2;
2336 l -= 2;
2337 }
2338
2339 if (s && !session[s].opened) // Is something wrong??
2340 {
2341 if (!config->cluster_iam_master)
2342 {
2343 // Pass it off to the master to deal with..
2344 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2345 return;
2346 }
2347
2348
2349 LOG(1, s, t, "UDP packet contains session which is not opened. Dropping packet.\n");
2350 STAT(tunnel_rx_errors);
2351 return;
2352 }
2353
2354 if (prot == PPPPAP)
2355 {
2356 session[s].last_packet = time_now;
2357 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2358 processpap(t, s, p, l);
2359 }
2360 else if (prot == PPPCHAP)
2361 {
2362 session[s].last_packet = time_now;
2363 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2364 processchap(t, s, p, l);
2365 }
2366 else if (prot == PPPLCP)
2367 {
2368 session[s].last_packet = time_now;
2369 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2370 processlcp(t, s, p, l);
2371 }
2372 else if (prot == PPPIPCP)
2373 {
2374 session[s].last_packet = time_now;
2375 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2376 processipcp(t, s, p, l);
2377 }
2378 else if (prot == PPPIPV6CP)
2379 {
2380 if (config->ipv6_prefix.s6_addr[0] > 0)
2381 {
2382 session[s].last_packet = time_now;
2383 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2384 processipv6cp(t, s, p, l);
2385 }
2386 else
2387 {
2388 LOG(1, s, t, "IPv6 not configured; ignoring IPv6CP\n");
2389 }
2390 }
2391 else if (prot == PPPCCP)
2392 {
2393 session[s].last_packet = time_now;
2394 if (!config->cluster_iam_master) { master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port); return; }
2395 processccp(t, s, p, l);
2396 }
2397 else if (prot == PPPIP)
2398 {
2399 if (session[s].die)
2400 {
2401 LOG(4, s, t, "Session %d is closing. Don't process PPP packets\n", s);
2402 return; // closing session, PPP not processed
2403 }
2404
2405 session[s].last_packet = time_now;
2406 if (session[s].walled_garden && !config->cluster_iam_master)
2407 {
2408 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2409 return;
2410 }
2411
2412 processipin(t, s, p, l);
2413 }
2414 else if (prot == PPPIPV6)
2415 {
2416 if (!config->ipv6_prefix.s6_addr[0] > 0)
2417 {
2418 LOG(1, s, t, "IPv6 not configured; yet received IPv6 packet. Ignoring.\n");
2419 return;
2420 }
2421 if (session[s].die)
2422 {
2423 LOG(4, s, t, "Session %d is closing. Don't process PPP packets\n", s);
2424 return; // closing session, PPP not processed
2425 }
2426
2427 session[s].last_packet = time_now;
2428 if (session[s].walled_garden && !config->cluster_iam_master)
2429 {
2430 master_forward_packet(buf, len, addr->sin_addr.s_addr, addr->sin_port);
2431 return;
2432 }
2433
2434 processipv6in(t, s, p, l);
2435 }
2436 else
2437 {
2438 STAT(tunnel_rx_errors);
2439 LOG(1, s, t, "Unknown PPP protocol %04X\n", prot);
2440 }
2441 }
2442 }
2443
2444 // read and process packet on tun
2445 static void processtun(uint8_t * buf, int len)
2446 {
2447 LOG_HEX(5, "Receive TUN Data", buf, len);
2448 STAT(tun_rx_packets);
2449 INC_STAT(tun_rx_bytes, len);
2450
2451 CSTAT(processtun);
2452
2453 eth_rx_pkt++;
2454 eth_rx += len;
2455 if (len < 22)
2456 {
2457 LOG(1, 0, 0, "Short tun packet %d bytes\n", len);
2458 STAT(tun_rx_errors);
2459 return;
2460 }
2461
2462 if (*(uint16_t *) (buf + 2) == htons(PKTIP)) // IPv4
2463 processipout(buf, len);
2464 else if (*(uint16_t *) (buf + 2) == htons(PKTIPV6) // IPV6
2465 && config->ipv6_prefix.s6_addr[0] > 0)
2466 processipv6out(buf, len);
2467
2468 // Else discard.
2469 }
2470
2471 //
2472 // Maximum number of actions to complete.
2473 // This is to avoid sending out too many packets
2474 // at once.
2475 #define MAX_ACTIONS 500
2476
2477 static int regular_cleanups(void)
2478 {
2479 static sessionidt s = 0; // Next session to check for actions on.
2480 tunnelidt t;
2481 int count=0,i;
2482 uint16_t r;
2483 static clockt next_acct = 0;
2484 static clockt next_shut_acct = 0;
2485 int a;
2486
2487 LOG(3, 0, 0, "Begin regular cleanup\n");
2488
2489 for (r = 1; r < MAXRADIUS; r++)
2490 {
2491 if (!radius[r].state)
2492 continue;
2493 if (radius[r].retry)
2494 {
2495 if (radius[r].retry <= TIME)
2496 radiusretry(r);
2497 } else
2498 radius[r].retry = backoff(radius[r].try+1); // Is this really needed? --mo
2499 }
2500 for (t = 1; t <= config->cluster_highest_tunnelid; t++)
2501 {
2502 // check for expired tunnels
2503 if (tunnel[t].die && tunnel[t].die <= TIME)
2504 {
2505 STAT(tunnel_timeout);
2506 tunnelkill(t, "Expired");
2507 continue;
2508 }
2509 // check for message resend
2510 if (tunnel[t].retry && tunnel[t].controlc)
2511 {
2512 // resend pending messages as timeout on reply
2513 if (tunnel[t].retry <= TIME)
2514 {
2515 controlt *c = tunnel[t].controls;
2516 uint8_t w = tunnel[t].window;
2517 tunnel[t].try++; // another try
2518 if (tunnel[t].try > 5)
2519 tunnelkill(t, "Timeout on control message"); // game over
2520 else
2521 while (c && w--)
2522 {
2523 tunnelsend(c->buf, c->length, t);
2524 c = c->next;
2525 }
2526 }
2527 }
2528 // Send hello
2529 if (tunnel[t].state == TUNNELOPEN && tunnel[t].lastrec < TIME + 600)
2530 {
2531 controlt *c = controlnew(6); // sending HELLO
2532 controladd(c, t, 0); // send the message
2533 LOG(3, 0, t, "Sending HELLO message\n");
2534 }
2535
2536 // Check for tunnel changes requested from the CLI
2537 if ((a = cli_tunnel_actions[t].action))
2538 {
2539 cli_tunnel_actions[t].action = 0;
2540 if (a & CLI_TUN_KILL)
2541 {
2542 LOG(2, 0, t, "Dropping tunnel by CLI\n");
2543 tunnelshutdown(t, "Requested by administrator");
2544 }
2545 }
2546
2547 }
2548
2549 count = 0;
2550 for (i = 1; i <= config->cluster_highest_sessionid; i++)
2551 {
2552 s++;
2553 if (s > config->cluster_highest_sessionid)
2554 s = 1;
2555
2556 if (!session[s].opened) // Session isn't in use
2557 continue;
2558
2559 if (!session[s].die && session[s].ip && !(session[s].flags & SF_IPCP_ACKED))
2560 {
2561 // IPCP has not completed yet. Resend
2562 LOG(3, s, session[s].tunnel, "No ACK for initial IPCP ConfigReq... resending\n");
2563 sendipcp(session[s].tunnel, s);
2564 }
2565
2566 // check for expired sessions
2567 if (session[s].die && session[s].die <= TIME)
2568 {
2569 sessionkill(s, "Expired");
2570 if (++count >= MAX_ACTIONS) break;
2571 continue;
2572 }
2573
2574 // Drop sessions who have not responded within IDLE_TIMEOUT seconds
2575 if (session[s].last_packet && (time_now - session[s].last_packet >= IDLE_TIMEOUT))
2576 {
2577 sessionshutdown(s, "No response to LCP ECHO requests");
2578 STAT(session_timeout);
2579 if (++count >= MAX_ACTIONS) break;
2580 continue;
2581 }
2582
2583 // No data in IDLE_TIMEOUT seconds, send LCP ECHO
2584 if (session[s].user[0] && (time_now - session[s].last_packet >= ECHO_TIMEOUT))
2585 {
2586 uint8_t b[MAXCONTROL] = {0};
2587
2588 uint8_t *q = makeppp(b, sizeof(b), 0, 0, session[s].tunnel, s, PPPLCP);
2589 if (!q) continue;
2590
2591 *q = EchoReq;
2592 *(uint8_t *)(q + 1) = (time_now % 255); // ID
2593 *(uint16_t *)(q + 2) = htons(8); // Length
2594 *(uint32_t *)(q + 4) = 0; // Magic Number (not supported)
2595
2596 LOG(4, s, session[s].tunnel, "No data in %d seconds, sending LCP ECHO\n",
2597 (int)(time_now - session[s].last_packet));
2598 tunnelsend(b, 24, session[s].tunnel); // send it
2599 if (++count >= MAX_ACTIONS) break;
2600 }
2601
2602 // Check for actions requested from the CLI
2603 if ((a = cli_session_actions[s].action))
2604 {
2605 int send = 0;
2606
2607 cli_session_actions[s].action = 0;
2608 if (a & CLI_SESS_KILL)
2609 {
2610 LOG(2, s, session[s].tunnel, "Dropping session by CLI\n");
2611 sessionshutdown(s, "Requested by administrator");
2612 a = 0; // dead, no need to check for other actions
2613 }
2614
2615 if (a & CLI_SESS_NOSNOOP)
2616 {
2617 LOG(2, s, session[s].tunnel, "Unsnooping session by CLI\n");
2618 session[s].snoop_ip = 0;
2619 session[s].snoop_port = 0;
2620 send++;
2621 }
2622 else if (a & CLI_SESS_SNOOP)
2623 {
2624 LOG(2, s, session[s].tunnel, "Snooping session by CLI (to %s:%d)\n",
2625 fmtaddr(cli_session_actions[s].snoop_ip, 0),
2626 cli_session_actions[s].snoop_port);
2627
2628 session[s].snoop_ip = cli_session_actions[s].snoop_ip;
2629 session[s].snoop_port = cli_session_actions[s].snoop_port;
2630 send++;
2631 }
2632
2633 if (a & CLI_SESS_NOTHROTTLE)
2634 {
2635 LOG(2, s, session[s].tunnel, "Un-throttling session by CLI\n");
2636 throttle_session(s, 0, 0);
2637 send++;
2638 }
2639 else if (a & CLI_SESS_THROTTLE)
2640 {
2641 LOG(2, s, session[s].tunnel, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
2642 cli_session_actions[s].throttle_in,
2643 cli_session_actions[s].throttle_out);
2644
2645 throttle_session(s, cli_session_actions[s].throttle_in, cli_session_actions[s].throttle_out);
2646 send++;
2647 }
2648
2649 if (a & CLI_SESS_NOFILTER)
2650 {
2651 LOG(2, s, session[s].tunnel, "Un-filtering session by CLI\n");
2652 filter_session(s, 0, 0);
2653 send++;
2654 }
2655 else if (a & CLI_SESS_FILTER)
2656 {
2657 LOG(2, s, session[s].tunnel, "Filtering session by CLI (in=%d, out=%d)\n",
2658 cli_session_actions[s].filter_in,
2659 cli_session_actions[s].filter_out);
2660
2661 filter_session(s, cli_session_actions[s].filter_in, cli_session_actions[s].filter_out);
2662 send++;
2663 }
2664
2665 if (send)
2666 cluster_send_session(s);
2667
2668 if (++count >= MAX_ACTIONS) break;
2669 }
2670 }
2671
2672 if (*config->accounting_dir)
2673 {
2674 if (next_acct <= TIME)
2675 {
2676 // Dump accounting data
2677 next_acct = TIME + ACCT_TIME;
2678 next_shut_acct = TIME + ACCT_SHUT_TIME;
2679 dump_acct_info(1);
2680 }
2681 else if (next_shut_acct <= TIME)
2682 {
2683 // Dump accounting data for shutdown sessions
2684 next_shut_acct = TIME + ACCT_SHUT_TIME;
2685 if (shut_acct_n)
2686 dump_acct_info(0);
2687 }
2688 }
2689
2690 if (count >= MAX_ACTIONS)
2691 return 1; // Didn't finish!
2692
2693 LOG(3, 0, 0, "End regular cleanup (%d actions), next in %d seconds\n", count, config->cleanup_interval);
2694 return 0;
2695 }
2696
2697
2698 //
2699 // Are we in the middle of a tunnel update, or radius
2700 // requests??
2701 //
2702 static int still_busy(void)
2703 {
2704 int i;
2705 static clockt last_talked = 0;
2706 static clockt start_busy_wait = 0;
2707 if (start_busy_wait == 0)
2708 start_busy_wait = TIME;
2709
2710 for (i = config->cluster_highest_tunnelid ; i > 0 ; --i)
2711 {
2712 if (!tunnel[i].controlc)
2713 continue;
2714
2715 if (last_talked != TIME)
2716 {
2717 LOG(2, 0, 0, "Tunnel %d still has un-acked control messages.\n", i);
2718 last_talked = TIME;
2719 }
2720 return 1;
2721 }
2722
2723 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
2724 if (abs(TIME - start_busy_wait) > BUSY_WAIT_TIME)
2725 {
2726 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
2727 return 0;
2728 }
2729
2730 for (i = 1; i < MAXRADIUS; i++)
2731 {
2732 if (radius[i].state == RADIUSNULL)
2733 continue;
2734 if (radius[i].state == RADIUSWAIT)
2735 continue;
2736
2737 if (last_talked != TIME)
2738 {
2739 LOG(2, 0, 0, "Radius session %d is still busy (sid %d)\n", i, radius[i].session);
2740 last_talked = TIME;
2741 }
2742 return 1;
2743 }
2744
2745 return 0;
2746 }
2747
2748 static fd_set readset;
2749 static int readset_n = 0;
2750
2751 // main loop - gets packets on tun or udp and processes them
2752 static void mainloop(void)
2753 {
2754 int i;
2755 uint8_t buf[65536];
2756 struct timeval to;
2757 clockt next_cluster_ping = 0; // send initial ping immediately
2758 time_t next_clean = time_now + config->cleanup_interval;
2759
2760 LOG(4, 0, 0, "Beginning of main loop. udpfd=%d, tunfd=%d, cluster_sockfd=%d, controlfd=%d\n",
2761 udpfd, tunfd, cluster_sockfd, controlfd);
2762
2763 FD_ZERO(&readset);
2764 FD_SET(udpfd, &readset);
2765 FD_SET(tunfd, &readset);
2766 FD_SET(controlfd, &readset);
2767 FD_SET(clifd, &readset);
2768 if (cluster_sockfd) FD_SET(cluster_sockfd, &readset);
2769 readset_n = udpfd;
2770 if (tunfd > readset_n) readset_n = tunfd;
2771 if (controlfd > readset_n) readset_n = controlfd;
2772 if (clifd > readset_n) readset_n = clifd;
2773 if (cluster_sockfd > readset_n) readset_n = cluster_sockfd;
2774
2775 while (!main_quit || still_busy())
2776 {
2777 fd_set r;
2778 int n = readset_n;
2779 #ifdef BGP
2780 fd_set w;
2781 int bgp_set[BGP_NUM_PEERS];
2782 #endif /* BGP */
2783
2784 if (config->reload_config)
2785 {
2786 // Update the config state based on config settings
2787 update_config();
2788 }
2789
2790 memcpy(&r, &readset, sizeof(fd_set));
2791 to.tv_sec = 0;
2792 to.tv_usec = 100000; // 1/10th of a second.
2793
2794 #ifdef BGP
2795 FD_ZERO(&w);
2796 for (i = 0; i < BGP_NUM_PEERS; i++)
2797 {
2798 bgp_set[i] = bgp_select_state(&bgp_peers[i]);
2799 if (bgp_set[i] & 1)
2800 {
2801 FD_SET(bgp_peers[i].sock, &r);
2802 if (bgp_peers[i].sock > n)
2803 n = bgp_peers[i].sock;
2804 }
2805
2806 if (bgp_set[i] & 2)
2807 {
2808 FD_SET(bgp_peers[i].sock, &w);
2809 if (bgp_peers[i].sock > n)
2810 n = bgp_peers[i].sock;
2811 }
2812 }
2813
2814 n = select(n + 1, &r, &w, 0, &to);
2815 #else /* BGP */
2816 n = select(n + 1, &r, 0, 0, &to);
2817 #endif /* BGP */
2818
2819 STAT(select_called);
2820
2821 TIME = now();
2822 if (n < 0)
2823 {
2824 if (errno == EINTR ||
2825 errno == ECHILD) // EINTR was clobbered by sigchild_handler()
2826 continue;
2827
2828 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno));
2829 main_quit++;
2830 break;
2831 }
2832 else if (n)
2833 {
2834 struct sockaddr_in addr;
2835 int alen, c, s;
2836 int udp_pkts = 0;
2837 int tun_pkts = 0;
2838 int cluster_pkts = 0;
2839
2840 // nsctl commands
2841 if (FD_ISSET(controlfd, &r))
2842 {
2843 alen = sizeof(addr);
2844 processcontrol(buf, recvfrom(controlfd, buf, sizeof(buf), MSG_WAITALL, (void *) &addr, &alen), &addr, alen);
2845 n--;
2846 }
2847
2848 // RADIUS responses
2849 if (config->cluster_iam_master)
2850 {
2851 for (i = 0; i < config->num_radfds; i++)
2852 {
2853 if (FD_ISSET(radfds[i], &r))
2854 {
2855 processrad(buf, recv(radfds[i], buf, sizeof(buf), 0), i);
2856 n--;
2857 }
2858 }
2859 }
2860
2861 // CLI connections
2862 if (FD_ISSET(clifd, &r))
2863 {
2864 int cli;
2865
2866 alen = sizeof(addr);
2867 if ((cli = accept(clifd, (struct sockaddr *)&addr, &alen)) >= 0)
2868 {
2869 cli_do(cli);
2870 close(cli);
2871 }
2872 else
2873 LOG(0, 0, 0, "accept error: %s\n", strerror(errno));
2874
2875 n--;
2876 }
2877
2878 #ifdef BGP
2879 for (i = 0; i < BGP_NUM_PEERS; i++)
2880 {
2881 int isr = bgp_set[i] ? FD_ISSET(bgp_peers[i].sock, &r) : 0;
2882 int isw = bgp_set[i] ? FD_ISSET(bgp_peers[i].sock, &w) : 0;
2883 bgp_process(&bgp_peers[i], isr, isw);
2884 if (isr) n--;
2885 if (isw) n--;
2886 }
2887 #endif /* BGP */
2888
2889 for (c = 0; n && c < config->multi_read_count; c++)
2890 {
2891 // L2TP
2892 if (FD_ISSET(udpfd, &r))
2893 {
2894 alen = sizeof(addr);
2895 if ((s = recvfrom(udpfd, buf, sizeof(buf), 0, (void *) &addr, &alen)) > 0)
2896 {
2897 processudp(buf, s, &addr);
2898 udp_pkts++;
2899 }
2900 else
2901 {
2902 FD_CLR(udpfd, &r);
2903 n--;
2904 }
2905 }
2906
2907 // incoming IP
2908 if (FD_ISSET(tunfd, &r))
2909 {
2910 if ((s = read(tunfd, buf, sizeof(buf))) > 0)
2911 {
2912 processtun(buf, s);
2913 tun_pkts++;
2914 }
2915 else
2916 {
2917 FD_CLR(tunfd, &r);
2918 n--;
2919 }
2920 }
2921
2922 // cluster
2923 if (FD_ISSET(cluster_sockfd, &r))
2924 {
2925 alen = sizeof(addr);
2926 if ((s = recvfrom(cluster_sockfd, buf, sizeof(buf), MSG_WAITALL, (void *) &addr, &alen)) > 0)
2927 {
2928 processcluster(buf, s, addr.sin_addr.s_addr);
2929 cluster_pkts++;
2930 }
2931 else
2932 {
2933 FD_CLR(cluster_sockfd, &r);
2934 n--;
2935 }
2936 }
2937 }
2938
2939 if (udp_pkts > 1 || tun_pkts > 1 || cluster_pkts > 1)
2940 STAT(multi_read_used);
2941
2942 if (c >= config->multi_read_count)
2943 {
2944 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
2945 config->multi_read_count, udp_pkts, tun_pkts, cluster_pkts);
2946
2947 STAT(multi_read_exceeded);
2948 }
2949 }
2950
2951 // Runs on every machine (master and slaves).
2952 if (cluster_sockfd && next_cluster_ping <= TIME)
2953 {
2954 // Check to see which of the cluster is still alive..
2955
2956 cluster_send_ping(basetime); // Only does anything if we're a slave
2957 cluster_check_master(); // ditto.
2958
2959 cluster_heartbeat(); // Only does anything if we're a master.
2960 cluster_check_slaves(); // ditto.
2961
2962 master_update_counts(); // If we're a slave, send our byte counters to our master.
2963
2964 if (config->cluster_iam_master && !config->cluster_iam_uptodate)
2965 next_cluster_ping = TIME + 1; // out-of-date slaves, do fast updates
2966 else
2967 next_cluster_ping = TIME + config->cluster_hb_interval;
2968 }
2969
2970 // Run token bucket filtering queue..
2971 // Only run it every 1/10th of a second.
2972 // Runs on all machines both master and slave.
2973 {
2974 static clockt last_run = 0;
2975 if (last_run != TIME)
2976 {
2977 last_run = TIME;
2978 tbf_run_timer();
2979 }
2980 }
2981
2982 /* Handle timeouts. Make sure that this gets run anyway, even if there was
2983 * something to read, else under load this will never actually run....
2984 *
2985 */
2986 if (config->cluster_iam_master && next_clean <= time_now)
2987 {
2988 if (regular_cleanups())
2989 {
2990 // Did it finish?
2991 next_clean = time_now + 1 ; // Didn't finish. Check quickly.
2992 }
2993 else
2994 {
2995 next_clean = time_now + config->cleanup_interval; // Did. Move to next interval.
2996 }
2997 }
2998 }
2999
3000 // Are we the master and shutting down??
3001 if (config->cluster_iam_master)
3002 cluster_heartbeat(); // Flush any queued changes..
3003
3004 // Ok. Notify everyone we're shutting down. If we're
3005 // the master, this will force an election.
3006 cluster_send_ping(0);
3007
3008 //
3009 // Important!!! We MUST not process any packets past this point!
3010 }
3011
3012 static void stripdomain(char *host)
3013 {
3014 char *p;
3015
3016 if ((p = strchr(host, '.')))
3017 {
3018 char *domain = 0;
3019 char _domain[1024];
3020
3021 // strip off domain
3022 FILE *resolv = fopen("/etc/resolv.conf", "r");
3023 if (resolv)
3024 {
3025 char buf[1024];
3026 char *b;
3027
3028 while (fgets(buf, sizeof(buf), resolv))
3029 {
3030 if (strncmp(buf, "domain", 6) && strncmp(buf, "search", 6))
3031 continue;
3032
3033 if (!isspace(buf[6]))
3034 continue;
3035
3036 b = buf + 7;
3037 while (isspace(*b)) b++;
3038
3039 if (*b)
3040 {
3041 char *d = b;
3042 while (*b && !isspace(*b)) b++;
3043 *b = 0;
3044 if (buf[0] == 'd') // domain is canonical
3045 {
3046 domain = d;
3047 break;
3048 }
3049
3050 // first search line
3051 if (!domain)
3052 {
3053 // hold, may be subsequent domain line
3054 strncpy(_domain, d, sizeof(_domain))[sizeof(_domain)-1] = 0;
3055 domain = _domain;
3056 }
3057 }
3058 }
3059
3060 fclose(resolv);
3061 }
3062
3063 if (domain)
3064 {
3065 int hl = strlen(host);
3066 int dl = strlen(domain);
3067 if (dl < hl && host[hl - dl - 1] == '.' && !strcmp(host + hl - dl, domain))
3068 host[hl -dl - 1] = 0;
3069 }
3070 else
3071 {
3072 *p = 0; // everything after first dot
3073 }
3074 }
3075 }
3076
3077 // Init data structures
3078 static void initdata(int optdebug, char *optconfig)
3079 {
3080 int i;
3081
3082 if (!(_statistics = shared_malloc(sizeof(struct Tstats))))
3083 {
3084 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno));
3085 exit(1);
3086 }
3087 if (!(config = shared_malloc(sizeof(configt))))
3088 {
3089 LOG(0, 0, 0, "Error doing malloc for configuration: %s\n", strerror(errno));
3090 exit(1);
3091 }
3092 memset(config, 0, sizeof(configt));
3093 time(&config->start_time);
3094 strncpy(config->config_file, optconfig, strlen(optconfig));
3095 config->debug = optdebug;
3096 config->num_tbfs = MAXTBFS;
3097 config->rl_rate = 28; // 28kbps
3098 strcpy(config->random_device, RANDOMDEVICE);
3099
3100 if (!(tunnel = shared_malloc(sizeof(tunnelt) * MAXTUNNEL)))
3101 {
3102 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno));
3103 exit(1);
3104 }
3105 if (!(session = shared_malloc(sizeof(sessiont) * MAXSESSION)))
3106 {
3107 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno));
3108 exit(1);
3109 }
3110
3111 if (!(sess_local = shared_malloc(sizeof(sessionlocalt) * MAXSESSION)))
3112 {
3113 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno));
3114 exit(1);
3115 }
3116
3117 if (!(radius = shared_malloc(sizeof(radiust) * MAXRADIUS)))
3118 {
3119 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno));
3120 exit(1);
3121 }
3122
3123 if (!(ip_address_pool = shared_malloc(sizeof(ippoolt) * MAXIPPOOL)))
3124 {
3125 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno));
3126 exit(1);
3127 }
3128
3129 if (!(ip_filters = shared_malloc(sizeof(ip_filtert) * MAXFILTER)))
3130 {
3131 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno));
3132 exit(1);
3133 }
3134 memset(ip_filters, 0, sizeof(ip_filtert) * MAXFILTER);
3135
3136 #ifdef RINGBUFFER
3137 if (!(ringbuffer = shared_malloc(sizeof(struct Tringbuffer))))
3138 {
3139 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno));
3140 exit(1);
3141 }
3142 memset(ringbuffer, 0, sizeof(struct Tringbuffer));
3143 #endif
3144
3145 if (!(cli_session_actions = shared_malloc(sizeof(struct cli_session_actions) * MAXSESSION)))
3146 {
3147 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno));
3148 exit(1);
3149 }
3150 memset(cli_session_actions, 0, sizeof(struct cli_session_actions) * MAXSESSION);
3151
3152 if (!(cli_tunnel_actions = shared_malloc(sizeof(struct cli_tunnel_actions) * MAXSESSION)))
3153 {
3154 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno));
3155 exit(1);
3156 }
3157 memset(cli_tunnel_actions, 0, sizeof(struct cli_tunnel_actions) * MAXSESSION);
3158
3159 memset(tunnel, 0, sizeof(tunnelt) * MAXTUNNEL);
3160 memset(session, 0, sizeof(sessiont) * MAXSESSION);
3161 memset(radius, 0, sizeof(radiust) * MAXRADIUS);
3162 memset(ip_address_pool, 0, sizeof(ippoolt) * MAXIPPOOL);
3163
3164 // Put all the sessions on the free list marked as undefined.
3165 for (i = 1; i < MAXSESSION; i++)
3166 {
3167 session[i].next = i + 1;
3168 session[i].tunnel = T_UNDEF; // mark it as not filled in.
3169 }
3170 session[MAXSESSION - 1].next = 0;
3171 sessionfree = 1;
3172
3173 // Mark all the tunnels as undefined (waiting to be filled in by a download).
3174 for (i = 1; i < MAXTUNNEL; i++)
3175 tunnel[i].state = TUNNELUNDEF; // mark it as not filled in.
3176
3177 if (!*hostname)
3178 {
3179 // Grab my hostname unless it's been specified
3180 gethostname(hostname, sizeof(hostname));
3181 stripdomain(hostname);
3182 }
3183
3184 _statistics->start_time = _statistics->last_reset = time(NULL);
3185
3186 #ifdef BGP
3187 if (!(bgp_peers = shared_malloc(sizeof(struct bgp_peer) * BGP_NUM_PEERS)))
3188 {
3189 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno));
3190 exit(1);
3191 }
3192 #endif /* BGP */
3193 }
3194
3195 static int assign_ip_address(sessionidt s)
3196 {
3197 uint32_t i;
3198 int best = -1;
3199 time_t best_time = time_now;
3200 char *u = session[s].user;
3201 char reuse = 0;
3202
3203
3204 CSTAT(assign_ip_address);
3205
3206 for (i = 1; i < ip_pool_size; i++)
3207 {
3208 if (!ip_address_pool[i].address || ip_address_pool[i].assigned)
3209 continue;
3210
3211 if (!session[s].walled_garden && ip_address_pool[i].user[0] && !strcmp(u, ip_address_pool[i].user))
3212 {
3213 best = i;
3214 reuse = 1;
3215 break;
3216 }
3217
3218 if (ip_address_pool[i].last < best_time)
3219 {
3220 best = i;
3221 if (!(best_time = ip_address_pool[i].last))
3222 break; // never used, grab this one
3223 }
3224 }
3225
3226 if (best < 0)
3227 {
3228 LOG(0, s, session[s].tunnel, "assign_ip_address(): out of addresses\n");
3229 return 0;
3230 }
3231
3232 session[s].ip = ip_address_pool[best].address;
3233 session[s].ip_pool_index = best;
3234 ip_address_pool[best].assigned = 1;
3235 ip_address_pool[best].last = time_now;
3236 ip_address_pool[best].session = s;
3237 if (session[s].walled_garden)
3238 /* Don't track addresses of users in walled garden (note: this
3239 means that their address isn't "sticky" even if they get
3240 un-gardened). */
3241 ip_address_pool[best].user[0] = 0;
3242 else
3243 strncpy(ip_address_pool[best].user, u, sizeof(ip_address_pool[best].user) - 1);
3244
3245 STAT(ip_allocated);
3246 LOG(4, s, session[s].tunnel, "assign_ip_address(): %s ip address %d from pool\n",
3247 reuse ? "Reusing" : "Allocating", best);
3248
3249 return 1;
3250 }
3251
3252 static void free_ip_address(sessionidt s)
3253 {
3254 int i = session[s].ip_pool_index;
3255
3256
3257 CSTAT(free_ip_address);
3258
3259 if (!session[s].ip)
3260 return; // what the?
3261
3262 if (i < 0) // Is this actually part of the ip pool?
3263 i = 0;
3264
3265 STAT(ip_freed);
3266 cache_ipmap(session[s].ip, -i); // Change the mapping to point back to the ip pool index.
3267 session[s].ip = 0;
3268 ip_address_pool[i].assigned = 0;
3269 ip_address_pool[i].session = 0;
3270 ip_address_pool[i].last = time_now;
3271 }
3272
3273 //
3274 // Fsck the address pool against the session table.
3275 // Normally only called when we become a master.
3276 //
3277 // This isn't perfect: We aren't keep tracking of which
3278 // users used to have an IP address.
3279 //
3280 void rebuild_address_pool(void)
3281 {
3282 int i;
3283
3284 //
3285 // Zero the IP pool allocation, and build
3286 // a map from IP address to pool index.
3287 for (i = 1; i < MAXIPPOOL; ++i)
3288 {
3289 ip_address_pool[i].assigned = 0;
3290 ip_address_pool[i].session = 0;
3291 if (!ip_address_pool[i].address)
3292 continue;
3293
3294 cache_ipmap(ip_address_pool[i].address, -i); // Map pool IP to pool index.
3295 }
3296
3297 for (i = 0; i < MAXSESSION; ++i)
3298 {
3299 int ipid;
3300 if (!(session[i].opened && session[i].ip))
3301 continue;
3302
3303 ipid = - lookup_ipmap(htonl(session[i].ip));
3304
3305 if (session[i].ip_pool_index < 0)
3306 {
3307 // Not allocated out of the pool.
3308 if (ipid < 1) // Not found in the pool either? good.
3309 continue;
3310
3311 LOG(0, i, 0, "Session %d has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
3312 i, fmtaddr(session[i].ip, 0), ipid);
3313
3314 // Fall through and process it as part of the pool.
3315 }
3316
3317
3318 if (ipid > MAXIPPOOL || ipid < 0)
3319 {
3320 LOG(0, i, 0, "Session %d has a pool IP that's not found in the pool! (%d)\n", i, ipid);
3321 ipid = -1;
3322 session[i].ip_pool_index = ipid;
3323 continue;
3324 }
3325
3326 ip_address_pool[ipid].assigned = 1;
3327 ip_address_pool[ipid].session = i;
3328 ip_address_pool[ipid].last = time_now;
3329 strncpy(ip_address_pool[ipid].user, session[i].user, sizeof(ip_address_pool[ipid].user) - 1);
3330 session[i].ip_pool_index = ipid;
3331 cache_ipmap(session[i].ip, i); // Fix the ip map.
3332 }
3333 }
3334
3335 //
3336 // Fix the address pool to match a changed session.
3337 // (usually when the master sends us an update).
3338 static void fix_address_pool(int sid)
3339 {
3340 int ipid;
3341
3342 ipid = session[sid].ip_pool_index;
3343
3344 if (ipid > ip_pool_size)
3345 return; // Ignore it. rebuild_address_pool will fix it up.
3346
3347 if (ip_address_pool[ipid].address != session[sid].ip)
3348 return; // Just ignore it. rebuild_address_pool will take care of it.
3349
3350 ip_address_pool[ipid].assigned = 1;
3351 ip_address_pool[ipid].session = sid;
3352 ip_address_pool[ipid].last = time_now;
3353 strncpy(ip_address_pool[ipid].user, session[sid].user, sizeof(ip_address_pool[ipid].user) - 1);
3354 }
3355
3356 //
3357 // Add a block of addresses to the IP pool to hand out.
3358 //
3359 static void add_to_ip_pool(in_addr_t addr, in_addr_t mask)
3360 {
3361 int i;
3362 if (mask == 0)
3363 mask = 0xffffffff; // Host route only.
3364
3365 addr &= mask;
3366
3367 if (ip_pool_size >= MAXIPPOOL) // Pool is full!
3368 return ;
3369
3370 for (i = addr ;(i & mask) == addr; ++i)
3371 {
3372 if ((i & 0xff) == 0 || (i&0xff) == 255)
3373 continue; // Skip 0 and broadcast addresses.
3374
3375 ip_address_pool[ip_pool_size].address = i;
3376 ip_address_pool[ip_pool_size].assigned = 0;
3377 ++ip_pool_size;
3378 if (ip_pool_size >= MAXIPPOOL)
3379 {
3380 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr), 0));
3381 return;
3382 }
3383 }
3384 }
3385
3386 // Initialize the IP address pool
3387 static void initippool()
3388 {
3389 FILE *f;
3390 char *p;
3391 char buf[4096];
3392 memset(ip_address_pool, 0, sizeof(ip_address_pool));
3393
3394 if (!(f = fopen(IPPOOLFILE, "r")))
3395 {
3396 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE ": %s\n", strerror(errno));
3397 exit(1);
3398 }
3399
3400 while (ip_pool_size < MAXIPPOOL && fgets(buf, 4096, f))
3401 {
3402 char *pool = buf;
3403 buf[4095] = 0; // Force it to be zero terminated/
3404
3405 if (*buf == '#' || *buf == '\n')
3406 continue; // Skip comments / blank lines
3407 if ((p = (char *)strrchr(buf, '\n'))) *p = 0;
3408 if ((p = (char *)strchr(buf, ':')))
3409 {
3410 in_addr_t src;
3411 *p = '\0';
3412 src = inet_addr(buf);
3413 if (src == INADDR_NONE)
3414 {
3415 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf);
3416 exit(1);
3417 }
3418 // This entry is for a specific IP only
3419 if (src != config->bind_address)
3420 continue;
3421 *p = ':';
3422 pool = p+1;
3423 }
3424 if ((p = (char *)strchr(pool, '/')))
3425 {
3426 // It's a range
3427 int numbits = 0;
3428 in_addr_t start = 0, mask = 0;
3429
3430 LOG(2, 0, 0, "Adding IP address range %s\n", buf);
3431 *p++ = 0;
3432 if (!*p || !(numbits = atoi(p)))
3433 {
3434 LOG(0, 0, 0, "Invalid pool range %s\n", buf);
3435 continue;
3436 }
3437 start = ntohl(inet_addr(pool));
3438 mask = (in_addr_t) (pow(2, numbits) - 1) << (32 - numbits);
3439
3440 // Add a static route for this pool
3441 LOG(5, 0, 0, "Adding route for address pool %s/%u\n",
3442 fmtaddr(htonl(start), 0), 32 + mask);
3443
3444 routeset(0, start, mask, 0, 1);
3445
3446 add_to_ip_pool(start, mask);
3447 }
3448 else
3449 {
3450 // It's a single ip address
3451 add_to_ip_pool(inet_addr(pool), 0);
3452 }
3453 }
3454 fclose(f);
3455 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size - 1);
3456 }
3457
3458 void snoop_send_packet(char *packet, uint16_t size, in_addr_t destination, uint16_t port)
3459 {
3460 struct sockaddr_in snoop_addr = {0};
3461 if (!destination || !port || snoopfd <= 0 || size <= 0 || !packet)
3462 return;
3463
3464 snoop_addr.sin_family = AF_INET;
3465 snoop_addr.sin_addr.s_addr = destination;
3466 snoop_addr.sin_port = ntohs(port);
3467
3468 LOG(5, 0, 0, "Snooping %d byte packet to %s:%d\n", size,
3469 fmtaddr(snoop_addr.sin_addr.s_addr, 0),
3470 htons(snoop_addr.sin_port));
3471
3472 if (sendto(snoopfd, packet, size, MSG_DONTWAIT | MSG_NOSIGNAL, (void *) &snoop_addr, sizeof(snoop_addr)) < 0)
3473 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno));
3474
3475 STAT(packets_snooped);
3476 }
3477
3478 static int dump_session(FILE **f, sessiont *s)
3479 {
3480 if (!s->opened || !s->ip || !(s->cin || s->cout) || !*s->user || s->walled_garden)
3481 return 1;
3482
3483 if (!*f)
3484 {
3485 char filename[1024];
3486 char timestr[64];
3487 time_t now = time(NULL);
3488
3489 strftime(timestr, sizeof(timestr), "%Y%m%d%H%M%S", localtime(&now));
3490 snprintf(filename, sizeof(filename), "%s/%s", config->accounting_dir, timestr);
3491
3492 if (!(*f = fopen(filename, "w")))
3493 {
3494 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename, strerror(errno));
3495 return 0;
3496 }
3497
3498 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename);
3499 fprintf(*f, "# dslwatch.pl dump file V1.01\n"
3500 "# host: %s\n"
3501 "# time: %ld\n"
3502 "# uptime: %ld\n"
3503 "# format: username ip qos uptxoctets downrxoctets\n",
3504 hostname,
3505 now,
3506 now - basetime);
3507 }
3508
3509 LOG(4, 0, 0, "Dumping accounting information for %s\n", s->user);
3510 fprintf(*f, "%s %s %d %u %u\n",
3511 s->user, // username
3512 fmtaddr(htonl(s->ip), 0), // ip
3513 (s->throttle_in || s->throttle_out) ? 2 : 1, // qos
3514 (uint32_t) s->cin, // uptxoctets
3515 (uint32_t) s->cout); // downrxoctets
3516
3517 s->pin = s->cin = 0;
3518 s->pout = s->cout = 0;
3519
3520 return 1;
3521 }
3522
3523 static void dump_acct_info(int all)
3524 {
3525 int i;
3526 FILE *f = NULL;
3527
3528
3529 CSTAT(dump_acct_info);
3530
3531 if (shut_acct_n)
3532 {
3533 for (i = 0; i < shut_acct_n; i++)
3534 dump_session(&f, &shut_acct[i]);
3535
3536 shut_acct_n = 0;
3537 }
3538
3539 if (all)
3540 for (i = 1; i <= config->cluster_highest_sessionid; i++)
3541 dump_session(&f, &session[i]);
3542
3543 if (f)
3544 fclose(f);
3545 }
3546
3547 // Main program
3548 int main(int argc, char *argv[])
3549 {
3550 int i;
3551 int optdebug = 0;
3552 char *optconfig = CONFIGFILE;
3553
3554 time(&basetime); // start clock
3555
3556 // scan args
3557 while ((i = getopt(argc, argv, "dvc:h:")) >= 0)
3558 {
3559 switch (i)
3560 {
3561 case 'd':
3562 if (fork()) exit(0);
3563 setsid();
3564 freopen("/dev/null", "r", stdin);
3565 freopen("/dev/null", "w", stdout);
3566 freopen("/dev/null", "w", stderr);
3567 break;
3568 case 'v':
3569 optdebug++;
3570 break;
3571 case 'c':
3572 optconfig = optarg;
3573 break;
3574 case 'h':
3575 snprintf(hostname, sizeof(hostname), "%s", optarg);
3576 break;
3577 default:
3578 printf("Args are:\n"
3579 "\t-d\t\tDetach from terminal\n"
3580 "\t-c <file>\tConfig file\n"
3581 "\t-h <hostname>\tForce hostname\n"
3582 "\t-v\t\tDebug\n");
3583
3584 return (0);
3585 break;
3586 }
3587 }
3588
3589 // Start the timer routine off
3590 time(&time_now);
3591 strftime(time_now_string, sizeof(time_now_string), "%Y-%m-%d %H:%M:%S", localtime(&time_now));
3592 signal(SIGALRM, sigalrm_handler);
3593 siginterrupt(SIGALRM, 0);
3594
3595 initplugins();
3596 initdata(optdebug, optconfig);
3597
3598 init_cli(hostname);
3599 read_config_file();
3600 init_tbf(config->num_tbfs);
3601
3602 LOG(0, 0, 0, "L2TPNS version " VERSION "\n");
3603 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005 Optus Internet Engineering\n");
3604 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
3605 {
3606 struct rlimit rlim;
3607 rlim.rlim_cur = RLIM_INFINITY;
3608 rlim.rlim_max = RLIM_INFINITY;
3609 // Remove the maximum core size
3610 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
3611 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno));
3612
3613 // Make core dumps go to /tmp
3614 chdir("/tmp");
3615 }
3616
3617 if (config->scheduler_fifo)
3618 {
3619 int ret;
3620 struct sched_param params = {0};
3621 params.sched_priority = 1;
3622
3623 if (get_nprocs() < 2)
3624 {
3625 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
3626 config->scheduler_fifo = 0;
3627 }
3628 else
3629 {
3630 if ((ret = sched_setscheduler(0, SCHED_FIFO, &params)) == 0)
3631 {
3632 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
3633 }
3634 else
3635 {
3636 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno));
3637 config->scheduler_fifo = 0;
3638 }
3639 }
3640 }
3641
3642 /* Set up the cluster communications port. */
3643 if (cluster_init() < 0)
3644 exit(1);
3645
3646 #ifdef BGP
3647 signal(SIGPIPE, SIG_IGN);
3648 bgp_setup(config->as_number);
3649 bgp_add_route(config->bind_address, 0xffffffff);
3650 for (i = 0; i < BGP_NUM_PEERS; i++)
3651 {
3652 if (config->neighbour[i].name[0])
3653 bgp_start(&bgp_peers[i], config->neighbour[i].name,
3654 config->neighbour[i].as, config->neighbour[i].keepalive,
3655 config->neighbour[i].hold, 0); /* 0 = routing disabled */
3656 }
3657 #endif /* BGP */
3658
3659 inittun();
3660 LOG(1, 0, 0, "Set up on interface %s\n", config->tundevice);
3661
3662 initudp();
3663 initrad();
3664 initippool();
3665
3666 signal(SIGHUP, sighup_handler);
3667 signal(SIGTERM, sigterm_handler);
3668 signal(SIGINT, sigterm_handler);
3669 signal(SIGQUIT, sigquit_handler);
3670 signal(SIGCHLD, sigchild_handler);
3671
3672 // Prevent us from getting paged out
3673 if (config->lock_pages)
3674 {
3675 if (!mlockall(MCL_CURRENT))
3676 LOG(1, 0, 0, "Locking pages into memory\n");
3677 else
3678 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno));
3679 }
3680
3681 alarm(1);
3682
3683 // Drop privileges here
3684 if (config->target_uid > 0 && geteuid() == 0)
3685 setuid(config->target_uid);
3686
3687 mainloop();
3688
3689 #ifdef BGP
3690 /* try to shut BGP down cleanly; with luck the sockets will be
3691 writable since we're out of the select */
3692 for (i = 0; i < BGP_NUM_PEERS; i++)
3693 if (bgp_peers[i].state == Established)
3694 bgp_stop(&bgp_peers[i]);
3695 #endif /* BGP */
3696
3697 /* remove plugins (so cleanup code gets run) */
3698 plugins_done();
3699
3700 // Remove the PID file if we wrote it
3701 if (config->wrote_pid && *config->pid_file == '/')
3702 unlink(config->pid_file);
3703
3704 /* kill CLI children */
3705 signal(SIGTERM, SIG_IGN);
3706 kill(0, SIGTERM);
3707 return 0;
3708 }
3709
3710 static void sighup_handler(int sig)
3711 {
3712 if (log_stream && log_stream != stderr)
3713 {
3714 fclose(log_stream);
3715 log_stream = NULL;
3716 }
3717
3718 read_config_file();
3719 }
3720
3721 static void sigalrm_handler(int sig)
3722 {
3723 // Log current traffic stats
3724
3725 snprintf(config->bandwidth, sizeof(config->bandwidth),
3726 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
3727 (udp_rx / 1024.0 / 1024.0 * 8),
3728 (eth_tx / 1024.0 / 1024.0 * 8),
3729 (eth_rx / 1024.0 / 1024.0 * 8),
3730 (udp_tx / 1024.0 / 1024.0 * 8),
3731 ((udp_tx + udp_rx + eth_tx + eth_rx) / 1024.0 / 1024.0 * 8),
3732 udp_rx_pkt, eth_rx_pkt);
3733
3734 udp_tx = udp_rx = 0;
3735 udp_rx_pkt = eth_rx_pkt = 0;
3736 eth_tx = eth_rx = 0;
3737
3738 if (config->dump_speed)
3739 printf("%s\n", config->bandwidth);
3740
3741 // Update the internal time counter
3742 time(&time_now);
3743 strftime(time_now_string, sizeof(time_now_string), "%Y-%m-%d %H:%M:%S", localtime(&time_now));
3744 alarm(1);
3745
3746 {
3747 // Run timer hooks
3748 struct param_timer p = { time_now };
3749 run_plugins(PLUGIN_TIMER, &p);
3750 }
3751
3752 }
3753
3754 static void sigterm_handler(int sig)
3755 {
3756 LOG(1, 0, 0, "Shutting down cleanly\n");
3757 main_quit++;
3758 }
3759
3760 static void sigquit_handler(int sig)
3761 {
3762 int i;
3763
3764 LOG(1, 0, 0, "Shutting down without saving sessions\n");
3765
3766 if (config->cluster_iam_master)
3767 {
3768 for (i = 1; i < MAXSESSION; i++)
3769 {
3770 if (session[i].opened)
3771 sessionkill(i, "L2TPNS Closing");
3772 }
3773 for (i = 1; i < MAXTUNNEL; i++)
3774 {
3775 if (tunnel[i].ip || tunnel[i].state)
3776 tunnelshutdown(i, "L2TPNS Closing");
3777 }
3778 }
3779
3780 main_quit++;
3781 }
3782
3783 static void sigchild_handler(int sig)
3784 {
3785 while (waitpid(-1, NULL, WNOHANG) > 0)
3786 ;
3787 }
3788
3789 static void build_chap_response(char *challenge, uint8_t id, uint16_t challenge_length, char **challenge_response)
3790 {
3791 MD5_CTX ctx;
3792 *challenge_response = NULL;
3793
3794 if (!*config->l2tpsecret)
3795 {
3796 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
3797 return;
3798 }
3799
3800 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
3801
3802 *challenge_response = (char *)calloc(17, 1);
3803
3804 MD5Init(&ctx);
3805 MD5Update(&ctx, &id, 1);
3806 MD5Update(&ctx, config->l2tpsecret, strlen(config->l2tpsecret));
3807 MD5Update(&ctx, challenge, challenge_length);
3808 MD5Final(*challenge_response, &ctx);
3809
3810 return;
3811 }
3812
3813 static int facility_value(char *name)
3814 {
3815 int i;
3816 for (i = 0; facilitynames[i].c_name; i++)
3817 {
3818 if (strcmp(facilitynames[i].c_name, name) == 0)
3819 return facilitynames[i].c_val;
3820 }
3821 return 0;
3822 }
3823
3824 static void update_config()
3825 {
3826 int i;
3827 char *p;
3828 static int timeout = 0;
3829 static int interval = 0;
3830
3831 // Update logging
3832 closelog();
3833 syslog_log = 0;
3834 if (log_stream)
3835 {
3836 fclose(log_stream);
3837 log_stream = NULL;
3838 }
3839
3840 if (*config->log_filename)
3841 {
3842 if (strstr(config->log_filename, "syslog:") == config->log_filename)
3843 {
3844 char *p = config->log_filename + 7;
3845 if (*p)
3846 {
3847 openlog("l2tpns", LOG_PID, facility_value(p));
3848 syslog_log = 1;
3849 }
3850 }
3851 else if (strchr(config->log_filename, '/') == config->log_filename)
3852 {
3853 if ((log_stream = fopen((char *)(config->log_filename), "a")))
3854 {
3855 fseek(log_stream, 0, SEEK_END);
3856 setbuf(log_stream, NULL);
3857 }
3858 else
3859 {
3860 log_stream = stderr;
3861 setbuf(log_stream, NULL);
3862 }
3863 }
3864 }
3865 else
3866 {
3867 log_stream = stderr;
3868 setbuf(log_stream, NULL);
3869 }
3870
3871 // Update radius
3872 config->numradiusservers = 0;
3873 for (i = 0; i < MAXRADSERVER; i++)
3874 if (config->radiusserver[i])
3875 {
3876 config->numradiusservers++;
3877 // Set radius port: if not set, take the port from the
3878 // first radius server. For the first radius server,
3879 // take the #defined default value from l2tpns.h
3880
3881 // test twice, In case someone works with
3882 // a secondary radius server without defining
3883 // a primary one, this will work even then.
3884 if (i>0 && !config->radiusport[i])
3885 config->radiusport[i] = config->radiusport[i-1];
3886 if (!config->radiusport[i])
3887 config->radiusport[i] = RADPORT;
3888 }
3889
3890 if (!config->numradiusservers)
3891 LOG(0, 0, 0, "No RADIUS servers defined!\n");
3892
3893 config->num_radfds = 2 << RADIUS_SHIFT;
3894
3895 // parse radius_authtypes_s
3896 config->radius_authtypes = config->radius_authprefer = 0;
3897 p = config->radius_authtypes_s;
3898 while (*p)
3899 {
3900 char *s = strpbrk(p, " \t,");
3901 int type = 0;
3902
3903 if (s)
3904 {
3905 *s++ = 0;
3906 while (*s == ' ' || *s == '\t')
3907 s++;
3908
3909 if (!*s)
3910 s = 0;
3911 }
3912
3913 if (!strncasecmp("chap", p, strlen(p)))
3914 type = AUTHCHAP;
3915 else if (!strncasecmp("pap", p, strlen(p)))
3916 type = AUTHPAP;
3917 else
3918 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"", p);
3919
3920 config->radius_authtypes |= type;
3921 if (!config->radius_authprefer)
3922 config->radius_authprefer = type;
3923 }
3924
3925 if (!config->radius_authtypes)
3926 {
3927 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
3928 config->radius_authtypes = config->radius_authprefer = AUTHPAP;
3929 }
3930
3931 // normalise radius_authtypes_s
3932 if (config->radius_authprefer == AUTHPAP)
3933 {
3934 strcpy(config->radius_authtypes_s, "pap");
3935 if (config->radius_authtypes & AUTHCHAP)
3936 strcat(config->radius_authtypes_s, ", chap");
3937 }
3938 else
3939 {
3940 strcpy(config->radius_authtypes_s, "chap");
3941 if (config->radius_authtypes & AUTHPAP)
3942 strcat(config->radius_authtypes_s, ", pap");
3943 }
3944
3945 // re-initialise the random number source
3946 initrandom(config->random_device);
3947
3948 // Update plugins
3949 for (i = 0; i < MAXPLUGINS; i++)
3950 {
3951 if (strcmp(config->plugins[i], config->old_plugins[i]) == 0)
3952 continue;
3953
3954 if (*config->plugins[i])
3955 {
3956 // Plugin added
3957 add_plugin(config->plugins[i]);
3958 }
3959 else if (*config->old_plugins[i])
3960 {
3961 // Plugin removed
3962 remove_plugin(config->old_plugins[i]);
3963 }
3964 }
3965
3966 memcpy(config->old_plugins, config->plugins, sizeof(config->plugins));
3967 if (!config->cleanup_interval) config->cleanup_interval = 10;
3968 if (!config->multi_read_count) config->multi_read_count = 10;
3969 if (!config->cluster_address) config->cluster_address = inet_addr(DEFAULT_MCAST_ADDR);
3970 if (!*config->cluster_interface)
3971 strncpy(config->cluster_interface, DEFAULT_MCAST_INTERFACE, sizeof(config->cluster_interface) - 1);
3972
3973 if (!config->cluster_hb_interval)
3974 config->cluster_hb_interval = PING_INTERVAL; // Heartbeat every 0.5 seconds.
3975
3976 if (!config->cluster_hb_timeout)
3977 config->cluster_hb_timeout = HB_TIMEOUT; // 10 missed heartbeat triggers an election.
3978
3979 if (interval != config->cluster_hb_interval || timeout != config->cluster_hb_timeout)
3980 {
3981 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
3982 // late, ensure we're sufficiently larger than that
3983 int t = 4 * config->cluster_hb_interval + 11;
3984
3985 if (config->cluster_hb_timeout < t)
3986 {
3987 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config->cluster_hb_timeout, t);
3988 config->cluster_hb_timeout = t;
3989 }
3990
3991 // Push timing changes to the slaves immediately if we're the master
3992 if (config->cluster_iam_master)
3993 cluster_heartbeat();
3994
3995 interval = config->cluster_hb_interval;
3996 timeout = config->cluster_hb_timeout;
3997 }
3998
3999 // Write PID file
4000 if (*config->pid_file == '/' && !config->wrote_pid)
4001 {
4002 FILE *f;
4003 if ((f = fopen(config->pid_file, "w")))
4004 {
4005 fprintf(f, "%d\n", getpid());
4006 fclose(f);
4007 config->wrote_pid = 1;
4008 }
4009 else
4010 {
4011 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config->pid_file, strerror(errno));
4012 }
4013 }
4014
4015 config->reload_config = 0;
4016 }
4017
4018 static void read_config_file()
4019 {
4020 FILE *f;
4021
4022 if (!config->config_file) return;
4023 if (!(f = fopen(config->config_file, "r")))
4024 {
4025 fprintf(stderr, "Can't open config file %s: %s\n", config->config_file, strerror(errno));
4026 return;
4027 }
4028
4029 LOG(3, 0, 0, "Reading config file %s\n", config->config_file);
4030 cli_do_file(f);
4031 LOG(3, 0, 0, "Done reading config file\n");
4032 fclose(f);
4033 update_config();
4034 }
4035
4036 int sessionsetup(tunnelidt t, sessionidt s)
4037 {
4038 // A session now exists, set it up
4039 in_addr_t ip;
4040 char *user;
4041 sessionidt i;
4042 int r;
4043
4044 CSTAT(sessionsetup);
4045
4046 LOG(3, s, t, "Doing session setup for session\n");
4047
4048 if (!session[s].ip)
4049 {
4050 assign_ip_address(s);
4051 if (!session[s].ip)
4052 {
4053 LOG(0, s, t, " No IP allocated. The IP address pool is FULL!\n");
4054 sessionshutdown(s, "No IP addresses available");
4055 return 0;
4056 }
4057 LOG(3, s, t, " No IP allocated. Assigned %s from pool\n",
4058 fmtaddr(htonl(session[s].ip), 0));
4059 }
4060
4061
4062 // Make sure this is right
4063 session[s].tunnel = t;
4064
4065 // zap old sessions with same IP and/or username
4066 // Don't kill gardened sessions - doing so leads to a DoS
4067 // from someone who doesn't need to know the password
4068 {
4069 ip = session[s].ip;
4070 user = session[s].user;
4071 for (i = 1; i <= config->cluster_highest_sessionid; i++)
4072 {
4073 if (i == s) continue;
4074 if (ip == session[i].ip) sessionkill(i, "Duplicate IP address");
4075 if (!session[s].walled_garden && !session[i].walled_garden && strcasecmp(user, session[i].user) == 0)
4076 sessionkill(i, "Duplicate session for users");
4077 }
4078 }
4079
4080 {
4081 int routed = 0;
4082
4083 // Add the route for this session.
4084 for (r = 0; r < MAXROUTE && session[s].route[r].ip; r++)
4085 {
4086 if ((session[s].ip & session[s].route[r].mask) ==
4087 (session[s].route[r].ip & session[s].route[r].mask))
4088 routed++;
4089
4090 routeset(s, session[s].route[r].ip, session[s].route[r].mask, 0, 1);
4091 }
4092
4093 // Static IPs need to be routed if not already
4094 // convered by a Framed-Route. Anything else is part
4095 // of the IP address pool and is already routed, it
4096 // just needs to be added to the IP cache.
4097 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
4098 if (session[s].ip_pool_index == -1) // static ip
4099 {
4100 if (!routed) routeset(s, session[s].ip, 0, 0, 1);
4101 }
4102 else
4103 cache_ipmap(session[s].ip, s);
4104 }
4105
4106 if (!session[s].unique_id)
4107 {
4108 // did this session just finish radius?
4109 LOG(3, s, t, "Sending initial IPCP to client\n");
4110 sendipcp(t, s);
4111 session[s].unique_id = ++last_id;
4112 }
4113
4114 // Run the plugin's against this new session.
4115 {
4116 struct param_new_session data = { &tunnel[t], &session[s] };
4117 run_plugins(PLUGIN_NEW_SESSION, &data);
4118 }
4119
4120 // Allocate TBFs if throttled
4121 if (session[s].throttle_in || session[s].throttle_out)
4122 throttle_session(s, session[s].throttle_in, session[s].throttle_out);
4123
4124 session[s].last_packet = time_now;
4125
4126 LOG(2, s, t, "Login by %s at %s from %s (%s)\n", session[s].user,
4127 fmtaddr(htonl(session[s].ip), 0),
4128 fmtaddr(htonl(tunnel[t].ip), 1), tunnel[t].hostname);
4129
4130 cluster_send_session(s); // Mark it as dirty, and needing to the flooded to the cluster.
4131
4132 return 1; // RADIUS OK and IP allocated, done...
4133 }
4134
4135 //
4136 // This session just got dropped on us by the master or something.
4137 // Make sure our tables up up to date...
4138 //
4139 int load_session(sessionidt s, sessiont *new)
4140 {
4141 int i;
4142 int newip = 0;
4143
4144 // Sanity checks.
4145 if (new->ip_pool_index >= MAXIPPOOL ||
4146 new->tunnel >= MAXTUNNEL)
4147 {
4148 LOG(0, s, 0, "Strange session update received!\n");
4149 // FIXME! What to do here?
4150 return 0;
4151 }
4152
4153 //
4154 // Ok. All sanity checks passed. Now we're committed to
4155 // loading the new session.
4156 //
4157
4158 session[s].tunnel = new->tunnel; // For logging in cache_ipmap
4159
4160 // See if routes/ip cache need updating
4161 if (new->ip != session[s].ip)
4162 newip++;
4163
4164 for (i = 0; !newip && i < MAXROUTE && (session[s].route[i].ip || new->route[i].ip); i++)
4165 if (new->route[i].ip != session[s].route[i].ip ||
4166 new->route[i].mask != session[s].route[i].mask)
4167 newip++;
4168
4169 // needs update
4170 if (newip)
4171 {
4172 int routed = 0;
4173
4174 // remove old routes...
4175 for (i = 0; i < MAXROUTE && session[s].route[i].ip; i++)
4176 {
4177 if ((session[s].ip & session[s].route[i].mask) ==
4178 (session[s].route[i].ip & session[s].route[i].mask))
4179 routed++;
4180
4181 routeset(s, session[s].route[i].ip, session[s].route[i].mask, 0, 0);
4182 }
4183
4184 // ...ip
4185 if (session[s].ip)
4186 {
4187 if (session[s].ip_pool_index == -1) // static IP
4188 {
4189 if (!routed) routeset(s, session[s].ip, 0, 0, 0);
4190 }
4191 else // It's part of the IP pool, remove it manually.
4192 uncache_ipmap(session[s].ip);
4193 }
4194
4195 routed = 0;
4196
4197 // add new routes...
4198 for (i = 0; i < MAXROUTE && new->route[i].ip; i++)
4199 {
4200 if ((new->ip & new->route[i].mask) ==
4201 (new->route[i].ip & new->route[i].mask))
4202 routed++;
4203
4204 routeset(s, new->route[i].ip, new->route[i].mask, 0, 1);
4205 }
4206
4207 // ...ip
4208 if (new->ip)
4209 {
4210 // If there's a new one, add it.
4211 if (new->ip_pool_index == -1)
4212 {
4213 if (!routed) routeset(s, new->ip, 0, 0, 1);
4214 }
4215 else
4216 cache_ipmap(new->ip, s);
4217 }
4218 }
4219
4220 // check v6 routing
4221 if (new->flags & SF_IPV6_ROUTED && !(session[s].flags & SF_IPV6_ROUTED))
4222 route6set(s, new->ipv6route, new->ipv6prefixlen, 1);
4223
4224 // check filters
4225 if (new->filter_in && (new->filter_in > MAXFILTER || !ip_filters[new->filter_in - 1].name[0]))
4226 {
4227 LOG(2, s, session[s].tunnel, "Dropping invalid input filter %d\n", (int) new->filter_in);
4228 new->filter_in = 0;
4229 }
4230
4231 if (new->filter_out && (new->filter_out > MAXFILTER || !ip_filters[new->filter_out - 1].name[0]))
4232 {
4233 LOG(2, s, session[s].tunnel, "Dropping invalid output filter %d\n", (int) new->filter_out);
4234 new->filter_out = 0;
4235 }
4236
4237 if (new->filter_in != session[s].filter_in)
4238 {
4239 if (session[s].filter_in) ip_filters[session[s].filter_in - 1].used--;
4240 if (new->filter_in) ip_filters[new->filter_in - 1].used++;
4241 }
4242
4243 if (new->filter_out != session[s].filter_out)
4244 {
4245 if (session[s].filter_out) ip_filters[session[s].filter_out - 1].used--;
4246 if (new->filter_out) ip_filters[new->filter_out - 1].used++;
4247 }
4248
4249 if (new->tunnel && s > config->cluster_highest_sessionid) // Maintain this in the slave. It's used
4250 // for walking the sessions to forward byte counts to the master.
4251 config->cluster_highest_sessionid = s;
4252
4253 // TEMP: old session struct used a uint32_t to define the throttle
4254 // speed for both up/down, new uses a uint16_t for each. Deal with
4255 // sessions from an old master for migration.
4256 if (new->throttle_out == 0 && new->tbf_out)
4257 new->throttle_out = new->throttle_in;
4258
4259 memcpy(&session[s], new, sizeof(session[s])); // Copy over..
4260
4261 // Do fixups into address pool.
4262 if (new->ip_pool_index != -1)
4263 fix_address_pool(s);
4264
4265 return 1;
4266 }
4267
4268 static void initplugins()
4269 {
4270 int i;
4271
4272 loaded_plugins = ll_init();
4273 // Initialize the plugins to nothing
4274 for (i = 0; i < MAX_PLUGIN_TYPES; i++)
4275 plugins[i] = ll_init();
4276 }
4277
4278 static void *open_plugin(char *plugin_name, int load)
4279 {
4280 char path[256] = "";
4281
4282 snprintf(path, 256, PLUGINDIR "/%s.so", plugin_name);
4283 LOG(2, 0, 0, "%soading plugin from %s\n", load ? "L" : "Un-l", path);
4284 return dlopen(path, RTLD_NOW);
4285 }
4286
4287 // plugin callback to get a config value
4288 static void *getconfig(char *key, enum config_typet type)
4289 {
4290 int i;
4291
4292 for (i = 0; config_values[i].key; i++)
4293 {
4294 if (!strcmp(config_values[i].key, key))
4295 {
4296 if (config_values[i].type == type)
4297 return ((void *) config) + config_values[i].offset;
4298
4299 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
4300 key, type, config_values[i].type);
4301
4302 return 0;
4303 }
4304 }
4305
4306 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key);
4307 return 0;
4308 }
4309
4310 static int add_plugin(char *plugin_name)
4311 {
4312 static struct pluginfuncs funcs = {
4313 _log,
4314 _log_hex,
4315 fmtaddr,
4316 sessionbyuser,
4317 sessiontbysessionidt,
4318 sessionidtbysessiont,
4319 radiusnew,
4320 radiussend,
4321 getconfig,
4322 sessionkill,
4323 throttle_session,
4324 cluster_send_session,
4325 };
4326
4327 void *p = open_plugin(plugin_name, 1);
4328 int (*initfunc)(struct pluginfuncs *);
4329 int i;
4330
4331 if (!p)
4332 {
4333 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
4334 return -1;
4335 }
4336
4337 if (ll_contains(loaded_plugins, p))
4338 {
4339 dlclose(p);
4340 return 0; // already loaded
4341 }
4342
4343 {
4344 int *v = dlsym(p, "plugin_api_version");
4345 if (!v || *v != PLUGIN_API_VERSION)
4346 {
4347 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
4348 dlclose(p);
4349 return -1;
4350 }
4351 }
4352
4353 if ((initfunc = dlsym(p, "plugin_init")))
4354 {
4355 if (!initfunc(&funcs))
4356 {
4357 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
4358 dlclose(p);
4359 return -1;
4360 }
4361 }
4362
4363 ll_push(loaded_plugins, p);
4364
4365 for (i = 0; i < max_plugin_functions; i++)
4366 {
4367 void *x;
4368 if (plugin_functions[i] && (x = dlsym(p, plugin_functions[i])))
4369 {
4370 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions[i]);
4371 ll_push(plugins[i], x);
4372 }
4373 }
4374
4375 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name);
4376 return 1;
4377 }
4378
4379 static void run_plugin_done(void *plugin)
4380 {
4381 int (*donefunc)(void) = dlsym(plugin, "plugin_done");
4382
4383 if (donefunc)
4384 donefunc();
4385 }
4386
4387 static int remove_plugin(char *plugin_name)
4388 {
4389 void *p = open_plugin(plugin_name, 0);
4390 int loaded = 0;
4391
4392 if (!p)
4393 return -1;
4394
4395 if (ll_contains(loaded_plugins, p))
4396 {
4397 int i;
4398 for (i = 0; i < max_plugin_functions; i++)
4399 {
4400 void *x;
4401 if (plugin_functions[i] && (x = dlsym(p, plugin_functions[i])))
4402 ll_delete(plugins[i], x);
4403 }
4404
4405 ll_delete(loaded_plugins, p);
4406 run_plugin_done(p);
4407 loaded = 1;
4408 }
4409
4410 dlclose(p);
4411 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name);
4412 return loaded;
4413 }
4414
4415 int run_plugins(int plugin_type, void *data)
4416 {
4417 int (*func)(void *data);
4418
4419 if (!plugins[plugin_type] || plugin_type > max_plugin_functions)
4420 return PLUGIN_RET_ERROR;
4421
4422 ll_reset(plugins[plugin_type]);
4423 while ((func = ll_next(plugins[plugin_type])))
4424 {
4425 int r = func(data);
4426
4427 if (r != PLUGIN_RET_OK)
4428 return r; // stop here
4429 }
4430
4431 return PLUGIN_RET_OK;
4432 }
4433
4434 static void plugins_done()
4435 {
4436 void *p;
4437
4438 ll_reset(loaded_plugins);
4439 while ((p = ll_next(loaded_plugins)))
4440 run_plugin_done(p);
4441 }
4442
4443 static void processcontrol(uint8_t * buf, int len, struct sockaddr_in *addr, int alen)
4444 {
4445 struct nsctl request;
4446 struct nsctl response;
4447 int type = unpack_control(&request, buf, len);
4448 int r;
4449 void *p;
4450
4451 if (log_stream && config->debug >= 4)
4452 {
4453 if (type < 0)
4454 {
4455 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
4456 fmtaddr(addr->sin_addr.s_addr, 0), type);
4457 }
4458 else
4459 {
4460 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr->sin_addr.s_addr, 0));
4461 dump_control(&request, log_stream);
4462 }
4463 }
4464
4465 switch (type)
4466 {
4467 case NSCTL_REQ_LOAD:
4468 if (request.argc != 1)
4469 {
4470 response.type = NSCTL_RES_ERR;
4471 response.argc = 1;
4472 response.argv[0] = "name of plugin required";
4473 }
4474 else if ((r = add_plugin(request.argv[0])) < 1)
4475 {
4476 response.type = NSCTL_RES_ERR;
4477 response.argc = 1;
4478 response.argv[0] = !r
4479 ? "plugin already loaded"
4480 : "error loading plugin";
4481 }
4482 else
4483 {
4484 response.type = NSCTL_RES_OK;
4485 response.argc = 0;
4486 }
4487
4488 break;
4489
4490 case NSCTL_REQ_UNLOAD:
4491 if (request.argc != 1)
4492 {
4493 response.type = NSCTL_RES_ERR;
4494 response.argc = 1;
4495 response.argv[0] = "name of plugin required";
4496 }
4497 else if ((r = remove_plugin(request.argv[0])) < 1)
4498 {
4499 response.type = NSCTL_RES_ERR;
4500 response.argc = 1;
4501 response.argv[0] = !r
4502 ? "plugin not loaded"
4503 : "plugin not found";
4504 }
4505 else
4506 {
4507 response.type = NSCTL_RES_OK;
4508 response.argc = 0;
4509 }
4510
4511 break;
4512
4513 case NSCTL_REQ_HELP:
4514 response.type = NSCTL_RES_OK;
4515 response.argc = 0;
4516
4517 ll_reset(loaded_plugins);
4518 while ((p = ll_next(loaded_plugins)))
4519 {
4520 char **help = dlsym(p, "plugin_control_help");
4521 while (response.argc < 0xff && help && *help)
4522 response.argv[response.argc++] = *help++;
4523 }
4524
4525 break;
4526
4527 case NSCTL_REQ_CONTROL:
4528 {
4529 struct param_control param = {
4530 config->cluster_iam_master,
4531 request.argc,
4532 request.argv,
4533 0,
4534 NULL,
4535 };
4536
4537 int r = run_plugins(PLUGIN_CONTROL, &param);
4538
4539 if (r == PLUGIN_RET_ERROR)
4540 {
4541 response.type = NSCTL_RES_ERR;
4542 response.argc = 1;
4543 response.argv[0] = param.additional
4544 ? param.additional
4545 : "error returned by plugin";
4546 }
4547 else if (r == PLUGIN_RET_NOTMASTER)
4548 {
4549 static char msg[] = "must be run on master: 000.000.000.000";
4550
4551 response.type = NSCTL_RES_ERR;
4552 response.argc = 1;
4553 if (config->cluster_master_address)
4554 {
4555 strcpy(msg + 23, fmtaddr(config->cluster_master_address, 0));
4556 response.argv[0] = msg;
4557 }
4558 else
4559 {
4560 response.argv[0] = "must be run on master: none elected";
4561 }
4562 }
4563 else if (!(param.response & NSCTL_RESPONSE))
4564 {
4565 response.type = NSCTL_RES_ERR;
4566 response.argc = 1;
4567 response.argv[0] = param.response
4568 ? "unrecognised response value from plugin"
4569 : "unhandled action";
4570 }
4571 else
4572 {
4573 response.type = param.response;
4574 response.argc = 0;
4575 if (param.additional)
4576 {
4577 response.argc = 1;
4578 response.argv[0] = param.additional;
4579 }
4580 }
4581 }
4582
4583 break;
4584
4585 default:
4586 response.type = NSCTL_RES_ERR;
4587 response.argc = 1;
4588 response.argv[0] = "error unpacking control packet";
4589 }
4590
4591 buf = calloc(NSCTL_MAX_PKT_SZ, 1);
4592 if (!buf)
4593 {
4594 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
4595 return;
4596 }
4597
4598 r = pack_control(buf, NSCTL_MAX_PKT_SZ, response.type, response.argc, response.argv);
4599 if (r > 0)
4600 {
4601 sendto(controlfd, buf, r, 0, (const struct sockaddr *) addr, alen);
4602 if (log_stream && config->debug >= 4)
4603 {
4604 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr->sin_addr.s_addr, 0));
4605 dump_control(&response, log_stream);
4606 }
4607 }
4608 else
4609 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
4610 fmtaddr(addr->sin_addr.s_addr, 0), r);
4611
4612 free(buf);
4613 }
4614
4615 static tunnelidt new_tunnel()
4616 {
4617 tunnelidt i;
4618 for (i = 1; i < MAXTUNNEL; i++)
4619 {
4620 if (tunnel[i].state == TUNNELFREE)
4621 {
4622 LOG(4, 0, i, "Assigning tunnel ID %d\n", i);
4623 if (i > config->cluster_highest_tunnelid)
4624 config->cluster_highest_tunnelid = i;
4625 return i;
4626 }
4627 }
4628 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
4629 return 0;
4630 }
4631
4632 //
4633 // We're becoming the master. Do any required setup..
4634 //
4635 // This is principally telling all the plugins that we're
4636 // now a master, and telling them about all the sessions
4637 // that are active too..
4638 //
4639 void become_master(void)
4640 {
4641 int s, i;
4642 run_plugins(PLUGIN_BECOME_MASTER, NULL);
4643
4644 // running a bunch of iptables commands is slow and can cause
4645 // the master to drop tunnels on takeover--kludge around the
4646 // problem by forking for the moment (note: race)
4647 if (!fork_and_close())
4648 {
4649 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
4650 {
4651 if (!session[s].opened) // Not an in-use session.
4652 continue;
4653
4654 run_plugins(PLUGIN_NEW_SESSION_MASTER, &session[s]);
4655 }
4656 exit(0);
4657 }
4658
4659 // add radius fds
4660 for (i = 0; i < config->num_radfds; i++)
4661 {
4662 FD_SET(radfds[i], &readset);
4663 if (radfds[i] > readset_n)
4664 readset_n = radfds[i];
4665 }
4666 }
4667
4668 int cmd_show_hist_idle(struct cli_def *cli, char *command, char **argv, int argc)
4669 {
4670 int s, i;
4671 int count = 0;
4672 int buckets[64];
4673
4674 if (CLI_HELP_REQUESTED)
4675 return CLI_HELP_NO_ARGS;
4676
4677 time(&time_now);
4678 for (i = 0; i < 64;++i) buckets[i] = 0;
4679
4680 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
4681 {
4682 int idle;
4683 if (!session[s].opened)
4684 continue;
4685
4686 idle = time_now - session[s].last_packet;
4687 idle /= 5 ; // In multiples of 5 seconds.
4688 if (idle < 0)
4689 idle = 0;
4690 if (idle > 63)
4691 idle = 63;
4692
4693 ++count;
4694 ++buckets[idle];
4695 }
4696
4697 for (i = 0; i < 63; ++i)
4698 {
4699 cli_print(cli, "%3d seconds : %7.2f%% (%6d)", i * 5, (double) buckets[i] * 100.0 / count , buckets[i]);
4700 }
4701 cli_print(cli, "lots of secs : %7.2f%% (%6d)", (double) buckets[63] * 100.0 / count , buckets[i]);
4702 cli_print(cli, "%d total sessions open.", count);
4703 return CLI_OK;
4704 }
4705
4706 int cmd_show_hist_open(struct cli_def *cli, char *command, char **argv, int argc)
4707 {
4708 int s, i;
4709 int count = 0;
4710 int buckets[64];
4711
4712 if (CLI_HELP_REQUESTED)
4713 return CLI_HELP_NO_ARGS;
4714
4715 time(&time_now);
4716 for (i = 0; i < 64;++i) buckets[i] = 0;
4717
4718 for (s = 1; s <= config->cluster_highest_sessionid ; ++s)
4719 {
4720 int open = 0, d;
4721 if (!session[s].opened)
4722 continue;
4723
4724 d = time_now - session[s].opened;
4725 if (d < 0)
4726 d = 0;
4727 while (d > 1 && open < 32)
4728 {
4729 ++open;
4730 d >>= 1; // half.
4731 }
4732 ++count;
4733 ++buckets[open];
4734 }
4735
4736 s = 1;
4737 for (i = 0; i < 30; ++i)
4738 {
4739 cli_print(cli, " < %8d seconds : %7.2f%% (%6d)", s, (double) buckets[i] * 100.0 / count , buckets[i]);
4740 s <<= 1;
4741 }
4742 cli_print(cli, "%d total sessions open.", count);
4743 return CLI_OK;
4744 }
4745
4746 /* Unhide an avp.
4747 *
4748 * This unencodes the AVP using the L2TP secret and the previously
4749 * stored random vector. It overwrites the hidden data with the
4750 * unhidden AVP subformat.
4751 */
4752 static void unhide_value(uint8_t *value, size_t len, uint16_t type, uint8_t *vector, size_t vec_len)
4753 {
4754 MD5_CTX ctx;
4755 uint8_t digest[16];
4756 uint8_t *last;
4757 size_t d = 0;
4758
4759 // Compute initial pad
4760 MD5Init(&ctx);
4761 MD5Update(&ctx, (uint8_t) (type >> 8) & 0xff, 1);
4762 MD5Update(&ctx, (uint8_t) type & 0xff, 1);
4763 MD5Update(&ctx, config->l2tpsecret, strlen(config->l2tpsecret));
4764 MD5Update(&ctx, vector, vec_len);
4765 MD5Final(digest, &ctx);
4766
4767 // pointer to last decoded 16 octets
4768 last = value;
4769
4770 while (len > 0)
4771 {
4772 // calculate a new pad based on the last decoded block
4773 if (d >= sizeof(digest))
4774 {
4775 MD5Init(&ctx);
4776 MD5Update(&ctx, config->l2tpsecret, strlen(config->l2tpsecret));
4777 MD5Update(&ctx, last, sizeof(digest));
4778 MD5Final(digest, &ctx);
4779
4780 d = 0;
4781 last = value;
4782 }
4783
4784 *value++ ^= digest[d++];
4785 len--;
4786 }
4787 }
4788
4789 static int ip_filter_port(ip_filter_portt *p, uint16_t port)
4790 {
4791 switch (p->op)
4792 {
4793 case FILTER_PORT_OP_EQ: return port == p->port;
4794 case FILTER_PORT_OP_NEQ: return port != p->port;
4795 case FILTER_PORT_OP_GT: return port > p->port;
4796 case FILTER_PORT_OP_LT: return port < p->port;
4797 case FILTER_PORT_OP_RANGE: return port >= p->port && port <= p->port2;
4798 }
4799
4800 return 0;
4801 }
4802
4803 static int ip_filter_flag(uint8_t op, uint8_t sflags, uint8_t cflags, uint8_t flags)
4804 {
4805 switch (op)
4806 {
4807 case FILTER_FLAG_OP_ANY:
4808 return (flags & sflags) || (~flags & cflags);
4809
4810 case FILTER_FLAG_OP_ALL:
4811 return (flags & sflags) == sflags && (~flags & cflags) == cflags;
4812
4813 case FILTER_FLAG_OP_EST:
4814 return (flags & (TCP_FLAG_ACK|TCP_FLAG_RST)) && (~flags & TCP_FLAG_SYN);
4815 }
4816
4817 return 0;
4818 }
4819
4820 int ip_filter(uint8_t *buf, int len, uint8_t filter)
4821 {
4822 uint16_t frag_offset;
4823 uint8_t proto;
4824 in_addr_t src_ip;
4825 in_addr_t dst_ip;
4826 uint16_t src_port = 0;
4827 uint16_t dst_port = 0;
4828 uint8_t flags = 0;
4829 ip_filter_rulet *rule;
4830
4831 if (len < 20) // up to end of destination address
4832 return 0;
4833
4834 if ((*buf >> 4) != 4) // IPv4
4835 return 0;
4836
4837 frag_offset = ntohs(*(uint16_t *) (buf + 6)) & 0x1fff;
4838 proto = buf[9];
4839 src_ip = *(in_addr_t *) (buf + 12);
4840 dst_ip = *(in_addr_t *) (buf + 16);
4841
4842 if (frag_offset == 0 && (proto == IPPROTO_TCP || proto == IPPROTO_UDP))
4843 {
4844 int l = (buf[0] & 0xf) * 4; // length of IP header
4845 if (len < l + 4) // ports
4846 return 0;
4847
4848 src_port = ntohs(*(uint16_t *) (buf + l));
4849 dst_port = ntohs(*(uint16_t *) (buf + l + 2));
4850 if (proto == IPPROTO_TCP)
4851 {
4852 if (len < l + 14) // flags
4853 return 0;
4854
4855 flags = buf[l + 13] & 0x3f;
4856 }
4857 }
4858
4859 for (rule = ip_filters[filter].rules; rule->action; rule++)
4860 {
4861 if (rule->proto != IPPROTO_IP && proto != rule->proto)
4862 continue;
4863
4864 if (rule->src_wild != INADDR_BROADCAST &&
4865 (src_ip & ~rule->src_wild) != (rule->src_ip & ~rule->src_wild))
4866 continue;
4867
4868 if (rule->dst_wild != INADDR_BROADCAST &&
4869 (dst_ip & ~rule->dst_wild) != (rule->dst_ip & ~rule->dst_wild))
4870 continue;
4871
4872 if (frag_offset)
4873 {
4874 if (!rule->frag || rule->action == FILTER_ACTION_DENY)
4875 continue;
4876 }
4877 else
4878 {
4879 if (rule->frag)
4880 continue;
4881
4882 if (proto == IPPROTO_TCP || proto == IPPROTO_UDP)
4883 {
4884 if (rule->src_ports.op && !ip_filter_port(&rule->src_ports, src_port))
4885 continue;
4886
4887 if (rule->dst_ports.op && !ip_filter_port(&rule->dst_ports, dst_port))
4888 continue;
4889
4890 if (proto == IPPROTO_TCP && rule->tcp_flag_op &&
4891 !ip_filter_flag(rule->tcp_flag_op, rule->tcp_sflags, rule->tcp_cflags, flags))
4892 continue;
4893 }
4894 }
4895
4896 // matched
4897 rule->counter++;
4898 return rule->action == FILTER_ACTION_PERMIT;
4899 }
4900
4901 // default deny
4902 return 0;
4903 }