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