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