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