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