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