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