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