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