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