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