3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
16 #include <net/route.h>
19 #include <netinet/in.h>
20 #include <netinet/ip6.h>
26 #include <sys/ioctl.h>
27 #include <sys/socket.h>
30 #include <sys/resource.h>
38 #include <sys/sysinfo.h>
46 #include "constants.h"
56 configt
*config
= NULL
; // all configuration
57 int tunfd
= -1; // tun interface file handle. (network device)
58 int udpfd
= -1; // UDP file handle
59 int controlfd
= -1; // Control signal handle
60 int clifd
= -1; // Socket listening for CLI connections.
61 int daefd
= -1; // Socket listening for DAE connections.
62 int snoopfd
= -1; // UDP file handle for sending out intercept data
63 int *radfds
= NULL
; // RADIUS requests file handles
64 int ifrfd
= -1; // File descriptor for routing, etc
65 int ifr6fd
= -1; // File descriptor for IPv6 routing, etc
66 int rand_fd
= -1; // Random data source
67 int cluster_sockfd
= -1; // Intra-cluster communications socket.
68 int epollfd
= -1; // event polling
69 time_t basetime
= 0; // base clock
70 char hostname
[1000] = ""; // us.
71 static int tunidx
; // ifr_ifindex of tun device
72 static int syslog_log
= 0; // are we logging to syslog
73 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
74 uint32_t last_id
= 0; // Unique ID for radius accounting
76 char guest_users
[10][32]; // Array of guest users
77 int guest_accounts_num
= 0; // Number of guest users
79 // calculated from config->l2tp_mtu
80 uint16_t MRU
= 0; // PPP MRU
81 uint16_t MSS
= 0; // TCP MSS
83 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
84 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
89 } ip_hash
[256]; // Mapping from IP address to session structures.
93 struct ipv6radix
*branch
;
94 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
97 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
98 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
101 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
102 time_t time_now
= 0; // Current time in seconds since epoch.
103 static char time_now_string
[64] = {0}; // Current time as a string.
104 static int time_changed
= 0; // time_now changed
105 char main_quit
= 0; // True if we're in the process of exiting.
106 static char main_reload
= 0; // Re-load pending
107 linked_list
*loaded_plugins
;
108 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
110 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
111 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
113 config_descriptt config_values
[] = {
114 CONFIG("debug", debug
, INT
),
115 CONFIG("log_file", log_filename
, STRING
),
116 CONFIG("pid_file", pid_file
, STRING
),
117 CONFIG("random_device", random_device
, STRING
),
118 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
119 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
120 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
121 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
122 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
123 CONFIG("primary_dns", default_dns1
, IPv4
),
124 CONFIG("secondary_dns", default_dns2
, IPv4
),
125 CONFIG("primary_radius", radiusserver
[0], IPv4
),
126 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
127 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
128 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
129 CONFIG("radius_accounting", radius_accounting
, BOOL
),
130 CONFIG("radius_interim", radius_interim
, INT
),
131 CONFIG("radius_secret", radiussecret
, STRING
),
132 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
133 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
134 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
135 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
136 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
137 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
138 CONFIG("guest_account", guest_user
, STRING
),
139 CONFIG("bind_address", bind_address
, IPv4
),
140 CONFIG("peer_address", peer_address
, IPv4
),
141 CONFIG("send_garp", send_garp
, BOOL
),
142 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
143 CONFIG("throttle_buckets", num_tbfs
, INT
),
144 CONFIG("accounting_dir", accounting_dir
, STRING
),
145 CONFIG("dump_speed", dump_speed
, BOOL
),
146 CONFIG("multi_read_count", multi_read_count
, INT
),
147 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
148 CONFIG("lock_pages", lock_pages
, BOOL
),
149 CONFIG("icmp_rate", icmp_rate
, INT
),
150 CONFIG("packet_limit", max_packets
, INT
),
151 CONFIG("cluster_address", cluster_address
, IPv4
),
152 CONFIG("cluster_interface", cluster_interface
, STRING
),
153 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
154 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
155 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
156 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
157 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
161 static char *plugin_functions
[] = {
168 "plugin_new_session",
169 "plugin_kill_session",
171 "plugin_radius_response",
172 "plugin_radius_reset",
173 "plugin_radius_account",
174 "plugin_become_master",
175 "plugin_new_session_master",
178 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
180 // Counters for shutdown sessions
181 static sessiont shut_acct
[8192];
182 static sessionidt shut_acct_n
= 0;
184 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
185 bundlet
*bundle
= NULL
; // Array of bundle structures.
186 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
187 sessiont
*session
= NULL
; // Array of session structures.
188 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
189 radiust
*radius
= NULL
; // Array of radius structures.
190 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
191 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
192 static controlt
*controlfree
= 0;
193 struct Tstats
*_statistics
= NULL
;
195 struct Tringbuffer
*ringbuffer
= NULL
;
198 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
199 static void uncache_ipmap(in_addr_t ip
);
200 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
201 static void free_ip_address(sessionidt s
);
202 static void dump_acct_info(int all
);
203 static void sighup_handler(int sig
);
204 static void shutdown_handler(int sig
);
205 static void sigchild_handler(int sig
);
206 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
207 static void update_config(void);
208 static void read_config_file(void);
209 static void initplugins(void);
210 static int add_plugin(char *plugin_name
);
211 static int remove_plugin(char *plugin_name
);
212 static void plugins_done(void);
213 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
214 static tunnelidt
new_tunnel(void);
215 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
216 static void bundleclear(bundleidt b
);
218 // on slaves, alow BGP to withdraw cleanly before exiting
221 // quit actions (master)
222 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
223 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
225 // return internal time (10ths since process startup), set f if given
226 // as a side-effect sets time_now, and time_changed
227 static clockt
now(double *f
)
231 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
232 if (t
.tv_sec
!= time_now
)
237 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
240 // work out a retry time based on try number
241 // This is a straight bounded exponential backoff.
242 // Maximum re-try time is 32 seconds. (2^5).
243 clockt
backoff(uint8_t try)
245 if (try > 5) try = 5; // max backoff
246 return now(NULL
) + 10 * (1 << try);
251 // Log a debug message. Typically called via the LOG macro
253 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
255 static char message
[65536] = {0};
261 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
262 ringbuffer
->tail
= 0;
263 if (ringbuffer
->tail
== ringbuffer
->head
)
264 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
265 ringbuffer
->head
= 0;
267 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
268 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
269 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
270 va_start(ap
, format
);
271 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, 4095, format
, ap
);
276 if (config
->debug
< level
) return;
278 va_start(ap
, format
);
279 vsnprintf(message
, sizeof(message
), format
, ap
);
282 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
284 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
289 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
292 const uint8_t *d
= data
;
294 if (config
->debug
< level
) return;
296 // No support for _log_hex to syslog
299 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
300 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
302 for (i
= 0; i
< maxsize
; )
304 fprintf(log_stream
, "%4X: ", i
);
305 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
307 fprintf(log_stream
, "%02X ", d
[j
]);
309 fputs(": ", log_stream
);
312 for (; j
< i
+ 16; j
++)
314 fputs(" ", log_stream
);
316 fputs(": ", log_stream
);
319 fputs(" ", log_stream
);
320 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
322 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
323 fputc(d
[j
], log_stream
);
325 fputc('.', log_stream
);
328 fputs(" ", log_stream
);
332 fputs("\n", log_stream
);
336 setbuf(log_stream
, NULL
);
340 // update a counter, accumulating 2^32 wraps
341 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
343 uint32_t new = *counter
+ delta
;
350 // initialise the random generator
351 static void initrandom(char *source
)
353 static char path
[sizeof(config
->random_device
)] = "*undefined*";
355 // reinitialise only if we are forced to do so or if the config has changed
356 if (source
&& !strncmp(path
, source
, sizeof(path
)))
359 // close previous source, if any
368 snprintf(path
, sizeof(path
), "%s", source
);
372 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
374 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
375 path
, strerror(errno
));
380 // fill buffer with random data
381 void random_data(uint8_t *buf
, int len
)
388 n
= read(rand_fd
, buf
, len
);
389 if (n
>= len
) return;
394 LOG(0, 0, 0, "Error reading from random source: %s\n",
397 // fall back to rand()
405 // append missing data
407 // not using the low order bits from the prng stream
408 buf
[n
++] = (rand() >> 4) & 0xff;
413 // This adds it to the routing table, advertises it
414 // via BGP if enabled, and stuffs it into the
415 // 'sessionbyip' cache.
417 // 'ip' and 'mask' must be in _host_ order.
419 static void routeset(sessionidt s
, in_addr_t ip
, in_addr_t mask
, in_addr_t gw
, int add
)
424 if (!mask
) mask
= 0xffffffff;
426 ip
&= mask
; // Force the ip to be the first one in the route.
428 memset(&r
, 0, sizeof(r
));
429 r
.rt_dev
= config
->tundevice
;
430 r
.rt_dst
.sa_family
= AF_INET
;
431 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_dst
)->sin_addr
.s_addr
) = htonl(ip
);
432 r
.rt_gateway
.sa_family
= AF_INET
;
433 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_gateway
)->sin_addr
.s_addr
) = htonl(gw
);
434 r
.rt_genmask
.sa_family
= AF_INET
;
435 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_genmask
)->sin_addr
.s_addr
) = htonl(mask
);
436 r
.rt_flags
= (RTF_UP
| RTF_STATIC
);
438 r
.rt_flags
|= RTF_GATEWAY
;
439 else if (mask
== 0xffffffff)
440 r
.rt_flags
|= RTF_HOST
;
442 LOG(1, s
, 0, "Route %s %s/%s%s%s\n", add
? "add" : "del",
443 fmtaddr(htonl(ip
), 0), fmtaddr(htonl(mask
), 1),
444 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
446 if (ioctl(ifrfd
, add
? SIOCADDRT
: SIOCDELRT
, (void *) &r
) < 0)
447 LOG(0, 0, 0, "routeset() error in ioctl: %s\n", strerror(errno
));
451 bgp_add_route(htonl(ip
), htonl(mask
));
453 bgp_del_route(htonl(ip
), htonl(mask
));
456 // Add/Remove the IPs to the 'sessionbyip' cache.
457 // Note that we add the zero address in the case of
458 // a network route. Roll on CIDR.
460 // Note that 's == 0' implies this is the address pool.
461 // We still cache it here, because it will pre-fill
462 // the malloc'ed tree.
466 if (!add
) // Are we deleting a route?
467 s
= 0; // Caching the session as '0' is the same as uncaching.
469 for (i
= ip
; (i
&mask
) == (ip
&mask
) ; ++i
)
474 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
477 char ipv6addr
[INET6_ADDRSTRLEN
];
481 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
485 memset(&rt
, 0, sizeof(rt
));
487 memcpy(&rt
.rtmsg_dst
, &ip
, sizeof(struct in6_addr
));
488 rt
.rtmsg_dst_len
= prefixlen
;
490 rt
.rtmsg_flags
= RTF_UP
;
491 rt
.rtmsg_ifindex
= tunidx
;
493 LOG(1, 0, 0, "Route %s %s/%d\n",
495 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
498 if (ioctl(ifr6fd
, add
? SIOCADDRT
: SIOCDELRT
, (void *) &rt
) < 0)
499 LOG(0, 0, 0, "route6set() error in ioctl: %s\n",
502 // FIXME: need to add BGP routing (RFC2858)
506 if (!add
) // Are we deleting a route?
507 s
= 0; // Caching the session as '0' is the same as uncaching.
509 cache_ipv6map(ip
, prefixlen
, s
);
515 // defined in linux/ipv6.h, but tricky to include from user-space
516 // TODO: move routing to use netlink rather than ioctl
518 struct in6_addr ifr6_addr
;
519 __u32 ifr6_prefixlen
;
520 unsigned int ifr6_ifindex
;
524 // Set up TUN interface
525 static void inittun(void)
528 struct in6_ifreq ifr6
;
529 struct sockaddr_in sin
= {0};
530 memset(&ifr
, 0, sizeof(ifr
));
531 ifr
.ifr_flags
= IFF_TUN
;
533 tunfd
= open(TUNDEVICE
, O_RDWR
);
536 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
540 int flags
= fcntl(tunfd
, F_GETFL
, 0);
541 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
543 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
545 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
548 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevice
));
549 strncpy(config
->tundevice
, ifr
.ifr_name
, sizeof(config
->tundevice
) - 1);
550 ifrfd
= socket(PF_INET
, SOCK_DGRAM
, IPPROTO_IP
);
552 sin
.sin_family
= AF_INET
;
553 sin
.sin_addr
.s_addr
= config
->bind_address
? config
->bind_address
: 0x01010101; // 1.1.1.1
554 memcpy(&ifr
.ifr_addr
, &sin
, sizeof(struct sockaddr
));
556 if (ioctl(ifrfd
, SIOCSIFADDR
, (void *) &ifr
) < 0)
558 LOG(0, 0, 0, "Error setting tun address: %s\n", strerror(errno
));
561 /* Bump up the qlen to deal with bursts from the network */
563 if (ioctl(ifrfd
, SIOCSIFTXQLEN
, (void *) &ifr
) < 0)
565 LOG(0, 0, 0, "Error setting tun queue length: %s\n", strerror(errno
));
568 /* set MTU to modem MRU */
570 if (ioctl(ifrfd
, SIOCSIFMTU
, (void *) &ifr
) < 0)
572 LOG(0, 0, 0, "Error setting tun MTU: %s\n", strerror(errno
));
575 ifr
.ifr_flags
= IFF_UP
;
576 if (ioctl(ifrfd
, SIOCSIFFLAGS
, (void *) &ifr
) < 0)
578 LOG(0, 0, 0, "Error setting tun flags: %s\n", strerror(errno
));
581 if (ioctl(ifrfd
, SIOCGIFINDEX
, (void *) &ifr
) < 0)
583 LOG(0, 0, 0, "Error getting tun ifindex: %s\n", strerror(errno
));
586 tunidx
= ifr
.ifr_ifindex
;
588 // Only setup IPv6 on the tun device if we have a configured prefix
589 if (config
->ipv6_prefix
.s6_addr
[0]) {
590 ifr6fd
= socket(PF_INET6
, SOCK_DGRAM
, 0);
592 // Link local address is FE80::1
593 memset(&ifr6
.ifr6_addr
, 0, sizeof(ifr6
.ifr6_addr
));
594 ifr6
.ifr6_addr
.s6_addr
[0] = 0xFE;
595 ifr6
.ifr6_addr
.s6_addr
[1] = 0x80;
596 ifr6
.ifr6_addr
.s6_addr
[15] = 1;
597 ifr6
.ifr6_prefixlen
= 64;
598 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
599 if (ioctl(ifr6fd
, SIOCSIFADDR
, (void *) &ifr6
) < 0)
601 LOG(0, 0, 0, "Error setting tun IPv6 link local address:"
602 " %s\n", strerror(errno
));
605 // Global address is prefix::1
606 memset(&ifr6
.ifr6_addr
, 0, sizeof(ifr6
.ifr6_addr
));
607 ifr6
.ifr6_addr
= config
->ipv6_prefix
;
608 ifr6
.ifr6_addr
.s6_addr
[15] = 1;
609 ifr6
.ifr6_prefixlen
= 64;
610 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
611 if (ioctl(ifr6fd
, SIOCSIFADDR
, (void *) &ifr6
) < 0)
613 LOG(0, 0, 0, "Error setting tun IPv6 global address: %s\n",
620 static void initudp(void)
623 struct sockaddr_in addr
;
626 memset(&addr
, 0, sizeof(addr
));
627 addr
.sin_family
= AF_INET
;
628 addr
.sin_port
= htons(L2TPPORT
);
629 addr
.sin_addr
.s_addr
= config
->bind_address
;
630 udpfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
631 setsockopt(udpfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
633 int flags
= fcntl(udpfd
, F_GETFL
, 0);
634 fcntl(udpfd
, F_SETFL
, flags
| O_NONBLOCK
);
636 if (bind(udpfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
638 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
643 memset(&addr
, 0, sizeof(addr
));
644 addr
.sin_family
= AF_INET
;
645 addr
.sin_port
= htons(NSCTL_PORT
);
646 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
647 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
648 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
649 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
651 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
655 // Dynamic Authorization Extensions to RADIUS
656 memset(&addr
, 0, sizeof(addr
));
657 addr
.sin_family
= AF_INET
;
658 addr
.sin_port
= htons(config
->radius_dae_port
);
659 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
660 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
661 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
662 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
664 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
669 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
673 // Find session by IP, < 1 for not found
675 // Confusingly enough, this 'ip' must be
676 // in _network_ order. This being the common
677 // case when looking it up from IP packet headers.
679 // We actually use this cache for two things.
680 // #1. For used IP addresses, this maps to the
681 // session ID that it's used by.
682 // #2. For un-used IP addresses, this maps to the
683 // index into the pool table that contains that
687 static sessionidt
lookup_ipmap(in_addr_t ip
)
689 uint8_t *a
= (uint8_t *) &ip
;
690 union iphash
*h
= ip_hash
;
692 if (!(h
= h
[*a
++].idx
)) return 0;
693 if (!(h
= h
[*a
++].idx
)) return 0;
694 if (!(h
= h
[*a
++].idx
)) return 0;
699 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
701 struct ipv6radix
*curnode
;
704 char ipv6addr
[INET6_ADDRSTRLEN
];
706 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
710 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
712 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
717 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
718 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
725 sessionidt
sessionbyip(in_addr_t ip
)
727 sessionidt s
= lookup_ipmap(ip
);
730 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
736 sessionidt
sessionbyipv6(struct in6_addr ip
)
739 CSTAT(sessionbyipv6
);
741 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
742 (ip
.s6_addr
[0] == 0xFE &&
743 ip
.s6_addr
[1] == 0x80 &&
744 ip
.s6_addr16
[1] == 0 &&
745 ip
.s6_addr16
[2] == 0 &&
746 ip
.s6_addr16
[3] == 0)) {
747 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
749 s
= lookup_ipv6map(ip
);
752 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
759 // Take an IP address in HOST byte order and
760 // add it to the sessionid by IP cache.
762 // (It's actually cached in network order)
764 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
766 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
767 uint8_t *a
= (uint8_t *) &nip
;
768 union iphash
*h
= ip_hash
;
771 for (i
= 0; i
< 3; i
++)
773 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
782 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
785 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
786 // else a map to an ip pool index.
789 static void uncache_ipmap(in_addr_t ip
)
791 cache_ipmap(ip
, 0); // Assign it to the NULL session.
794 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
798 struct ipv6radix
*curnode
;
799 char ipv6addr
[INET6_ADDRSTRLEN
];
801 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
803 bytes
= prefixlen
>> 3;
806 if (curnode
->branch
== NULL
)
808 if (!(curnode
->branch
= calloc(256,
809 sizeof (struct ipv6radix
))))
812 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
819 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
820 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
824 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
825 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
831 // CLI list to dump current ipcache.
833 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
835 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
839 if (CLI_HELP_REQUESTED
)
840 return CLI_HELP_NO_ARGS
;
842 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
844 for (i
= 0; i
< 256; ++i
)
850 for (j
= 0; j
< 256; ++j
)
856 for (k
= 0; k
< 256; ++k
)
862 for (l
= 0; l
< 256; ++l
)
867 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
873 cli_print(cli
, "%d entries in cache", count
);
878 // Find session by username, 0 for not found
879 // walled garden users aren't authenticated, so the username is
880 // reasonably useless. Ignore them to avoid incorrect actions
882 // This is VERY inefficent. Don't call it often. :)
884 sessionidt
sessionbyuser(char *username
)
887 CSTAT(sessionbyuser
);
889 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
891 if (!session
[s
].opened
)
894 if (session
[s
].walled_garden
)
895 continue; // Skip walled garden users.
897 if (!strncmp(session
[s
].user
, username
, 128))
901 return 0; // Not found.
904 void send_garp(in_addr_t ip
)
910 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
913 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
916 memset(&ifr
, 0, sizeof(ifr
));
917 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
918 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
920 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
924 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
925 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
927 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
932 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
935 static sessiont
*sessiontbysessionidt(sessionidt s
)
937 if (!s
|| s
>= MAXSESSION
) return NULL
;
941 static sessionidt
sessionidtbysessiont(sessiont
*s
)
943 sessionidt val
= s
-session
;
944 if (s
< session
|| val
>= MAXSESSION
) return 0;
948 // actually send a control message for a specific tunnel
949 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
951 struct sockaddr_in addr
;
957 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
958 STAT(tunnel_tx_errors
);
964 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
965 STAT(tunnel_tx_errors
);
969 memset(&addr
, 0, sizeof(addr
));
970 addr
.sin_family
= AF_INET
;
971 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
972 addr
.sin_port
= htons(tunnel
[t
].port
);
974 // sequence expected, if sequence in message
975 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
977 // If this is a control message, deal with retries
980 tunnel
[t
].last
= time_now
; // control message sent
981 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
984 STAT(tunnel_retries
);
985 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
989 if (sendto(udpfd
, buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
991 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
992 strerror(errno
), udpfd
, buf
, l
, inet_ntoa(addr
.sin_addr
));
993 STAT(tunnel_tx_errors
);
997 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
998 STAT(tunnel_tx_packets
);
999 INC_STAT(tunnel_tx_bytes
, l
);
1003 // Tiny helper function to write data to
1004 // the 'tun' device.
1006 int tun_write(uint8_t * data
, int size
)
1008 return write(tunfd
, data
, size
);
1011 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1012 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1014 int d
= (tcp
[12] >> 4) * 4;
1021 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1024 if (tcp
+ d
> buf
+ len
) // short?
1032 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1035 if (mss
+ 2 > data
) return; // short?
1039 if (*opts
== 0) return; // end of options
1040 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1043 opts
+= opts
[1]; // skip over option
1046 if (!mss
) return; // not found
1047 orig
= ntohs(*(uint16_t *) mss
);
1049 if (orig
<= MSS
) return; // mss OK
1051 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1052 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1053 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1054 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1057 *(int16_t *) mss
= htons(MSS
);
1059 // adjust checksum (see rfc1141)
1060 sum
= orig
+ (~MSS
& 0xffff);
1061 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1062 sum
= (sum
& 0xffff) + (sum
>> 16);
1063 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1066 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1070 // Skip the four extra bytes
1082 proto
= ntohs(*(uint16_t *) p
);
1090 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1091 return; // closing session, PPP not processed
1093 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1094 processipin(s
, t
, p
, l
);
1096 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1100 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1101 return; // closing session, PPP not processed
1104 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1105 processipv6in(s
, t
, p
, l
);
1107 else if (proto
== PPPIPCP
)
1109 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1110 processipcp(s
, t
, p
, l
);
1112 else if (proto
== PPPCCP
)
1114 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1115 processccp(s
, t
, p
, l
);
1119 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1123 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1125 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1126 sp
->cout_delta
+= len
;
1128 sp
->last_data
= time_now
;
1130 sess_local
[s
].cout
+= len
; // To send to master..
1131 sess_local
[s
].pout
++;
1134 // process outgoing (to tunnel) IP
1136 static void processipout(uint8_t *buf
, int len
)
1143 uint8_t *data
= buf
; // Keep a copy of the originals.
1146 uint8_t fragbuf
[MAXETHER
+ 20];
1148 CSTAT(processipout
);
1150 if (len
< MIN_IP_SIZE
)
1152 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1153 STAT(tun_rx_errors
);
1156 if (len
>= MAXETHER
)
1158 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1159 STAT(tun_rx_errors
);
1163 // Skip the tun header
1167 // Got an IP header now
1168 if (*(uint8_t *)(buf
) >> 4 != 4)
1170 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1174 ip
= *(uint32_t *)(buf
+ 16);
1175 if (!(s
= sessionbyip(ip
)))
1177 // Is this a packet for a session that doesn't exist?
1178 static int rate
= 0; // Number of ICMP packets we've sent this second.
1179 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1181 if (last
!= time_now
)
1187 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1189 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1190 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1191 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1196 t
= session
[s
].tunnel
;
1197 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1199 LOG(3, s
, t
, "Packet size more than session MRU\n");
1205 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1206 if (config
->max_packets
> 0)
1208 if (sess_local
[s
].last_packet_out
== TIME
)
1210 int max
= config
->max_packets
;
1212 // All packets for throttled sessions are handled by the
1213 // master, so further limit by using the throttle rate.
1214 // A bit of a kludge, since throttle rate is in kbps,
1215 // but should still be generous given our average DSL
1216 // packet size is 200 bytes: a limit of 28kbps equates
1217 // to around 180 packets per second.
1218 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1219 max
= sp
->throttle_out
;
1221 if (++sess_local
[s
].packets_out
> max
)
1223 sess_local
[s
].packets_dropped
++;
1229 if (sess_local
[s
].packets_dropped
)
1231 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1232 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1233 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1234 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1238 sess_local
[s
].last_packet_out
= TIME
;
1239 sess_local
[s
].packets_out
= 1;
1240 sess_local
[s
].packets_dropped
= 0;
1244 // run access-list if any
1245 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1248 // adjust MSS on SYN and SYN,ACK packets with options
1249 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1251 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1252 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1253 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1258 // Are we throttling this session?
1259 if (config
->cluster_iam_master
)
1260 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1262 master_throttle_packet(sp
->tbf_out
, data
, size
);
1266 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1268 // We are walled-gardening this
1269 master_garden_packet(s
, data
, size
);
1273 // Add on L2TP header
1276 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1278 bid
= session
[s
].bundle
;
1279 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1280 t
= session
[s
].tunnel
;
1282 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1283 if(len
> MINFRAGLEN
)
1285 // Partition the packet to "bundle[b].num_of_links" fragments
1286 bundlet
*b
= &bundle
[bid
];
1287 uint32_t num_of_links
= b
->num_of_links
;
1288 uint32_t fraglen
= len
/ num_of_links
;
1289 fraglen
= (fraglen
> session
[s
].mru
? session
[s
].mru
: fraglen
);
1290 uint32_t last_fraglen
= fraglen
+ len
% num_of_links
;
1291 last_fraglen
= (last_fraglen
> session
[s
].mru
? len
% num_of_links
: last_fraglen
);
1292 uint32_t remain
= len
;
1294 // send the first packet
1295 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1297 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1299 update_session_out_stat(s
, sp
, fraglen
);
1301 while (remain
> last_fraglen
)
1303 s
= b
->members
[b
->current_ses
= ++b
->current_ses
% num_of_links
];
1304 t
= session
[s
].tunnel
;
1306 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1307 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1309 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1310 update_session_out_stat(s
, sp
, fraglen
);
1313 // send the last fragment
1314 s
= b
->members
[b
->current_ses
= ++b
->current_ses
% num_of_links
];
1315 t
= session
[s
].tunnel
;
1317 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1318 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1320 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1321 update_session_out_stat(s
, sp
, remain
);
1322 if (remain
!= last_fraglen
)
1323 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1326 // Send it as one frame
1327 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1329 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1330 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1331 update_session_out_stat(s
, sp
, len
);
1336 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1338 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1339 update_session_out_stat(s
, sp
, len
);
1343 // Snooping this session, send it to intercept box
1344 if (sp
->snoop_ip
&& sp
->snoop_port
)
1345 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1350 // process outgoing (to tunnel) IPv6
1352 static void processipv6out(uint8_t * buf
, int len
)
1358 struct in6_addr ip6
;
1360 uint8_t *data
= buf
; // Keep a copy of the originals.
1363 uint8_t b
[MAXETHER
+ 20];
1365 CSTAT(processipv6out
);
1367 if (len
< MIN_IP_SIZE
)
1369 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1370 STAT(tunnel_tx_errors
);
1373 if (len
>= MAXETHER
)
1375 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1376 STAT(tunnel_tx_errors
);
1380 // Skip the tun header
1384 // Got an IP header now
1385 if (*(uint8_t *)(buf
) >> 4 != 6)
1387 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1391 ip6
= *(struct in6_addr
*)(buf
+24);
1392 s
= sessionbyipv6(ip6
);
1396 ip
= *(uint32_t *)(buf
+ 32);
1397 s
= sessionbyip(ip
);
1402 // Is this a packet for a session that doesn't exist?
1403 static int rate
= 0; // Number of ICMP packets we've sent this second.
1404 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1406 if (last
!= time_now
)
1412 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1414 // FIXME: Should send icmp6 host unreachable
1418 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1420 bundleidt bid
= session
[s
].bundle
;
1421 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1422 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1424 t
= session
[s
].tunnel
;
1426 sp
->last_data
= time_now
;
1428 // FIXME: add DoS prevention/filters?
1432 // Are we throttling this session?
1433 if (config
->cluster_iam_master
)
1434 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1436 master_throttle_packet(sp
->tbf_out
, data
, size
);
1439 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1441 // We are walled-gardening this
1442 master_garden_packet(s
, data
, size
);
1446 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1448 // Add on L2TP header
1450 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1452 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1455 // Snooping this session, send it to intercept box
1456 if (sp
->snoop_ip
&& sp
->snoop_port
)
1457 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1459 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1460 sp
->cout_delta
+= len
;
1464 sess_local
[s
].cout
+= len
; // To send to master..
1465 sess_local
[s
].pout
++;
1469 // Helper routine for the TBF filters.
1470 // Used to send queued data in to the user!
1472 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1478 uint8_t b
[MAXETHER
+ 20];
1480 if (len
< 0 || len
> MAXETHER
)
1482 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1486 // Skip the tun header
1490 ip
= *(in_addr_t
*)(buf
+ 16);
1495 t
= session
[s
].tunnel
;
1498 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1500 // Add on L2TP header
1502 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1504 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1507 // Snooping this session.
1508 if (sp
->snoop_ip
&& sp
->snoop_port
)
1509 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1511 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1512 sp
->cout_delta
+= len
;
1516 sess_local
[s
].cout
+= len
; // To send to master..
1517 sess_local
[s
].pout
++;
1520 // add an AVP (16 bit)
1521 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1523 uint16_t l
= (m
? 0x8008 : 0x0008);
1524 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1525 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1526 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1527 *(uint16_t *) (c
->buf
+ c
->length
+ 6) = htons(val
);
1531 // add an AVP (32 bit)
1532 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1534 uint16_t l
= (m
? 0x800A : 0x000A);
1535 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1536 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1537 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1538 *(uint32_t *) (c
->buf
+ c
->length
+ 6) = htonl(val
);
1542 // add an AVP (string)
1543 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1545 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1546 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1547 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1548 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1549 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1550 c
->length
+= 6 + strlen(val
);
1554 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1556 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1557 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1558 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1559 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1560 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1561 c
->length
+= 6 + len
;
1564 // new control connection
1565 static controlt
*controlnew(uint16_t mtype
)
1569 c
= malloc(sizeof(controlt
));
1573 controlfree
= c
->next
;
1577 *(uint16_t *) (c
->buf
+ 0) = htons(0xC802); // flags/ver
1579 control16(c
, 0, mtype
, 1);
1583 // send zero block if nothing is waiting
1585 static void controlnull(tunnelidt t
)
1588 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1591 *(uint16_t *) (buf
+ 0) = htons(0xC802); // flags/ver
1592 *(uint16_t *) (buf
+ 2) = htons(12); // length
1593 *(uint16_t *) (buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1594 *(uint16_t *) (buf
+ 6) = htons(0); // session
1595 *(uint16_t *) (buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1596 *(uint16_t *) (buf
+ 10) = htons(tunnel
[t
].nr
); // sequence
1597 tunnelsend(buf
, 12, t
);
1600 // add a control message to a tunnel, and send if within window
1601 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1603 *(uint16_t *) (c
->buf
+ 2) = htons(c
->length
); // length
1604 *(uint16_t *) (c
->buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1605 *(uint16_t *) (c
->buf
+ 6) = htons(far
); // session
1606 *(uint16_t *) (c
->buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1607 tunnel
[t
].ns
++; // advance sequence
1608 // link in message in to queue
1609 if (tunnel
[t
].controlc
)
1610 tunnel
[t
].controle
->next
= c
;
1612 tunnel
[t
].controls
= c
;
1614 tunnel
[t
].controle
= c
;
1615 tunnel
[t
].controlc
++;
1617 // send now if space in window
1618 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1620 tunnel
[t
].try = 0; // first send
1621 tunnelsend(c
->buf
, c
->length
, t
);
1626 // Throttle or Unthrottle a session
1628 // Throttle the data from/to through a session to no more than
1629 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1632 // If either value is -1, the current value is retained for that
1635 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1637 if (!session
[s
].opened
)
1638 return; // No-one home.
1640 if (!*session
[s
].user
)
1641 return; // User not logged in
1645 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1646 if (session
[s
].tbf_in
)
1647 free_tbf(session
[s
].tbf_in
);
1650 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1652 session
[s
].tbf_in
= 0;
1654 session
[s
].throttle_in
= rate_in
;
1659 int bytes
= rate_out
* 1024 / 8;
1660 if (session
[s
].tbf_out
)
1661 free_tbf(session
[s
].tbf_out
);
1664 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1666 session
[s
].tbf_out
= 0;
1668 session
[s
].throttle_out
= rate_out
;
1672 // add/remove filters from session (-1 = no change)
1673 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1675 if (!session
[s
].opened
)
1676 return; // No-one home.
1678 if (!*session
[s
].user
)
1679 return; // User not logged in
1682 if (filter_in
> MAXFILTER
) filter_in
= -1;
1683 if (filter_out
> MAXFILTER
) filter_out
= -1;
1684 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
1685 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
1689 if (session
[s
].filter_in
)
1690 ip_filters
[session
[s
].filter_in
- 1].used
--;
1693 ip_filters
[filter_in
- 1].used
++;
1695 session
[s
].filter_in
= filter_in
;
1698 if (filter_out
>= 0)
1700 if (session
[s
].filter_out
)
1701 ip_filters
[session
[s
].filter_out
- 1].used
--;
1704 ip_filters
[filter_out
- 1].used
++;
1706 session
[s
].filter_out
= filter_out
;
1710 // start tidy shutdown of session
1711 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
1713 int walled_garden
= session
[s
].walled_garden
;
1714 bundleidt b
= session
[s
].bundle
;
1715 //delete routes only for last session in bundle (in case of MPPP)
1716 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
1718 CSTAT(sessionshutdown
);
1720 if (!session
[s
].opened
)
1722 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
1723 return; // not a live session
1726 if (!session
[s
].die
)
1728 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
1729 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
1730 run_plugins(PLUGIN_KILL_SESSION
, &data
);
1731 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
1734 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
1736 // RADIUS Stop message
1737 uint16_t r
= radiusnew(s
);
1740 // stop, if not already trying
1741 if (radius
[r
].state
!= RADIUSSTOP
)
1743 radius
[r
].term_cause
= term_cause
;
1744 radius
[r
].term_msg
= reason
;
1745 radiussend(r
, RADIUSSTOP
);
1749 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
1751 // Save counters to dump to accounting file
1752 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
1753 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
1757 { // IP allocated, clear and unroute
1760 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
1762 if ((session
[s
].ip
& session
[s
].route
[r
].mask
) ==
1763 (session
[s
].route
[r
].ip
& session
[s
].route
[r
].mask
))
1766 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].mask
, 0, 0);
1767 session
[s
].route
[r
].ip
= 0;
1770 if (session
[s
].ip_pool_index
== -1) // static ip
1772 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
1778 // unroute IPv6, if setup
1779 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
1780 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
1784 // This session was part of a bundle
1785 bundle
[b
].num_of_links
--;
1786 LOG(3, s
, 0, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
1787 if(bundle
[b
].num_of_links
== 0)
1790 LOG(3, s
, 0, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
1794 // Adjust the members array to accomodate the new change
1795 uint8_t mem_num
= 0;
1796 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
1797 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
1800 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
1801 if(bundle
[b
].members
[ml
] == s
)
1806 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
1807 LOG(3, s
, 0, "MPPP: Adjusted member links array\n");
1810 cluster_send_bundle(b
);
1814 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
1815 throttle_session(s
, 0, 0);
1819 controlt
*c
= controlnew(14); // sending CDN
1823 *(uint16_t *) buf
= htons(cdn_result
);
1824 *(uint16_t *) (buf
+2) = htons(cdn_error
);
1825 controlb(c
, 1, buf
, 4, 1);
1828 control16(c
, 1, cdn_result
, 1);
1830 control16(c
, 14, s
, 1); // assigned session (our end)
1831 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
1834 // update filter refcounts
1835 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
1836 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
1839 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
1840 sess_local
[s
].lcp
.restart
= 0;
1841 sess_local
[s
].ipcp
.restart
= 0;
1842 sess_local
[s
].ipv6cp
.restart
= 0;
1843 sess_local
[s
].ccp
.restart
= 0;
1845 cluster_send_session(s
);
1848 void sendipcp(sessionidt s
, tunnelidt t
)
1850 uint8_t buf
[MAXETHER
];
1854 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
1856 if (!session
[s
].unique_id
)
1858 if (!++last_id
) ++last_id
; // skip zero
1859 session
[s
].unique_id
= last_id
;
1862 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
1866 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
1867 *(uint16_t *) (q
+ 2) = htons(10); // packet length
1868 q
[4] = 3; // ip address option
1869 q
[5] = 6; // option length
1870 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
1871 config
->bind_address
? config
->bind_address
:
1872 my_address
; // send my IP
1874 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
1875 restart_timer(s
, ipcp
);
1878 void sendipv6cp(sessionidt s
, tunnelidt t
)
1880 uint8_t buf
[MAXETHER
];
1884 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
1886 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
1890 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
1891 // only send one type
1893 *(uint16_t *) (q
+ 2) = htons(14);
1894 q
[4] = 1; // interface identifier option
1895 q
[5] = 10; // option length
1896 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
1897 *(uint32_t *) (q
+ 10) = 0;
1900 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
1901 restart_timer(s
, ipv6cp
);
1904 static void sessionclear(sessionidt s
)
1906 memset(&session
[s
], 0, sizeof(session
[s
]));
1907 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
1908 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
1910 session
[s
].tunnel
= T_FREE
; // Mark it as free.
1911 session
[s
].next
= sessionfree
;
1915 // kill a session now
1916 void sessionkill(sessionidt s
, char *reason
)
1920 if (!session
[s
].opened
) // not alive
1923 if (session
[s
].next
)
1925 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
1929 if (!session
[s
].die
)
1930 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
1932 if (sess_local
[s
].radius
)
1933 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
1935 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
1937 cluster_send_session(s
);
1940 static void tunnelclear(tunnelidt t
)
1943 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
1944 tunnel
[t
].state
= TUNNELFREE
;
1947 static void bundleclear(bundleidt b
)
1950 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
1951 bundle
[b
].state
= BUNDLEFREE
;
1954 // kill a tunnel now
1955 static void tunnelkill(tunnelidt t
, char *reason
)
1962 tunnel
[t
].state
= TUNNELDIE
;
1964 // free control messages
1965 while ((c
= tunnel
[t
].controls
))
1967 controlt
* n
= c
->next
;
1968 tunnel
[t
].controls
= n
;
1969 tunnel
[t
].controlc
--;
1970 c
->next
= controlfree
;
1974 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1975 if (session
[s
].tunnel
== t
)
1976 sessionkill(s
, reason
);
1980 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
1981 cli_tunnel_actions
[t
].action
= 0;
1982 cluster_send_tunnel(t
);
1985 // shut down a tunnel cleanly
1986 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
1990 CSTAT(tunnelshutdown
);
1992 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
1994 // never set up, can immediately kill
1995 tunnelkill(t
, reason
);
1998 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2001 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2002 if (session
[s
].tunnel
== t
)
2003 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2005 tunnel
[t
].state
= TUNNELDIE
;
2006 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2007 cluster_send_tunnel(t
);
2008 // TBA - should we wait for sessions to stop?
2011 controlt
*c
= controlnew(4); // sending StopCCN
2016 *(uint16_t *) buf
= htons(result
);
2017 *(uint16_t *) (buf
+2) = htons(error
);
2020 int m
= strlen(msg
);
2021 if (m
+ 4 > sizeof(buf
))
2022 m
= sizeof(buf
) - 4;
2024 memcpy(buf
+4, msg
, m
);
2028 controlb(c
, 1, buf
, l
, 1);
2031 control16(c
, 1, result
, 1);
2033 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2034 controladd(c
, 0, t
); // send the message
2038 // read and process packet on tunnel (UDP)
2039 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
)
2041 uint8_t *chapresponse
= NULL
;
2042 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2043 uint8_t *p
= buf
+ 2;
2050 LOG_HEX(5, "UDP Data", buf
, len
);
2051 STAT(tunnel_rx_packets
);
2052 INC_STAT(tunnel_rx_bytes
, len
);
2055 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2056 STAT(tunnel_rx_errors
);
2059 if ((buf
[1] & 0x0F) != 2)
2061 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2062 STAT(tunnel_rx_errors
);
2067 l
= ntohs(*(uint16_t *) p
);
2070 t
= ntohs(*(uint16_t *) p
);
2072 s
= ntohs(*(uint16_t *) p
);
2074 if (s
>= MAXSESSION
)
2076 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2077 STAT(tunnel_rx_errors
);
2082 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2083 STAT(tunnel_rx_errors
);
2088 ns
= ntohs(*(uint16_t *) p
);
2090 nr
= ntohs(*(uint16_t *) p
);
2095 uint16_t o
= ntohs(*(uint16_t *) p
);
2100 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2101 STAT(tunnel_rx_errors
);
2106 // used to time out old tunnels
2107 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2108 tunnel
[t
].lastrec
= time_now
;
2112 uint16_t message
= 0xFFFF; // message type
2114 uint8_t mandatory
= 0;
2115 uint16_t asession
= 0; // assigned session
2116 uint32_t amagic
= 0; // magic number
2117 uint8_t aflags
= 0; // flags from last LCF
2118 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2119 char called
[MAXTEL
] = ""; // called number
2120 char calling
[MAXTEL
] = ""; // calling number
2122 if (!config
->cluster_iam_master
)
2124 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2128 // control messages must have bits 0x80|0x40|0x08
2129 // (type, length and sequence) set, and bits 0x02|0x01
2130 // (offset and priority) clear
2131 if ((*buf
& 0xCB) != 0xC8)
2133 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2134 STAT(tunnel_rx_errors
);
2138 // check for duplicate tunnel open message
2144 // Is this a duplicate of the first packet? (SCCRQ)
2146 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2148 if (tunnel
[i
].state
!= TUNNELOPENING
||
2149 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2150 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2153 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2158 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2159 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2161 // if no tunnel specified, assign one
2164 if (!(t
= new_tunnel()))
2166 LOG(1, 0, 0, "No more tunnels\n");
2167 STAT(tunnel_overflow
);
2171 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2172 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2173 tunnel
[t
].window
= 4; // default window
2174 STAT(tunnel_created
);
2175 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2176 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2179 // If the 'ns' just received is not the 'nr' we're
2180 // expecting, just send an ack and drop it.
2182 // if 'ns' is less, then we got a retransmitted packet.
2183 // if 'ns' is greater than missed a packet. Either way
2184 // we should ignore it.
2185 if (ns
!= tunnel
[t
].nr
)
2187 // is this the sequence we were expecting?
2188 STAT(tunnel_rx_errors
);
2189 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2190 t
, ns
, tunnel
[t
].nr
);
2192 if (l
) // Is this not a ZLB?
2197 // check sequence of this message
2199 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2200 // some to clear maybe?
2201 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2203 controlt
*c
= tunnel
[t
].controls
;
2204 tunnel
[t
].controls
= c
->next
;
2205 tunnel
[t
].controlc
--;
2206 c
->next
= controlfree
;
2209 tunnel
[t
].try = 0; // we have progress
2212 // receiver advance (do here so quoted correctly in any sends below)
2213 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2214 if (skip
< 0) skip
= 0;
2215 if (skip
< tunnel
[t
].controlc
)
2217 // some control packets can now be sent that were previous stuck out of window
2218 int tosend
= tunnel
[t
].window
- skip
;
2219 controlt
*c
= tunnel
[t
].controls
;
2227 tunnel
[t
].try = 0; // first send
2228 tunnelsend(c
->buf
, c
->length
, t
);
2233 if (!tunnel
[t
].controlc
)
2234 tunnel
[t
].retry
= 0; // caught up
2237 { // if not a null message
2242 // Default disconnect cause/message on receipt of CDN. Set to
2243 // more specific value from attribute 1 (result code) or 46
2244 // (disconnect cause) if present below.
2245 int disc_cause_set
= 0;
2246 int disc_cause
= TERM_NAS_REQUEST
;
2247 char const *disc_reason
= "Closed (Received CDN).";
2250 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2252 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2259 LOG(1, s
, t
, "Invalid length in AVP\n");
2260 STAT(tunnel_rx_errors
);
2265 if (flags
& 0x3C) // reserved bits, should be clear
2267 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2269 result
= 2; // general error
2270 error
= 3; // reserved field non-zero
2275 if (*(uint16_t *) (b
))
2277 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2279 result
= 2; // general error
2280 error
= 6; // generic vendor-specific error
2281 msg
= "unsupported vendor-specific";
2285 mtype
= ntohs(*(uint16_t *) (b
));
2293 // handle hidden AVPs
2294 if (!*config
->l2tp_secret
)
2296 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2298 result
= 2; // general error
2299 error
= 6; // generic vendor-specific error
2300 msg
= "secret not specified";
2303 if (!session
[s
].random_vector_length
)
2305 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2307 result
= 2; // general error
2308 error
= 6; // generic
2309 msg
= "no random vector";
2314 LOG(2, s
, t
, "Short hidden AVP.\n");
2316 result
= 2; // general error
2317 error
= 2; // length is wrong
2323 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2325 orig_len
= ntohs(*(uint16_t *) b
);
2326 if (orig_len
> n
+ 2)
2328 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2332 result
= 2; // general error
2333 error
= 2; // length is wrong
2342 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2343 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2347 case 0: // message type
2348 message
= ntohs(*(uint16_t *) b
);
2349 mandatory
= flags
& 0x80;
2350 LOG(4, s
, t
, " Message type = %u (%s)\n", *b
, l2tp_code(message
));
2352 case 1: // result code
2354 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2355 char const *resdesc
= "(unknown)";
2356 char const *errdesc
= NULL
;
2361 resdesc
= l2tp_stopccn_result_code(rescode
);
2362 cause
= TERM_LOST_SERVICE
;
2364 else if (message
== 14)
2366 resdesc
= l2tp_cdn_result_code(rescode
);
2368 cause
= TERM_LOST_CARRIER
;
2370 cause
= TERM_ADMIN_RESET
;
2373 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2376 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2377 errdesc
= l2tp_error_code(errcode
);
2378 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2381 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2383 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2385 disc_cause_set
= mtype
;
2386 disc_reason
= errdesc
? errdesc
: resdesc
;
2393 case 2: // protocol version
2395 version
= ntohs(*(uint16_t *) (b
));
2396 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2397 if (version
&& version
!= 0x0100)
2398 { // allow 0.0 and 1.0
2399 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2401 result
= 5; // unspported protocol version
2402 error
= 0x0100; // supported version
2408 case 3: // framing capabilities
2410 case 4: // bearer capabilities
2412 case 5: // tie breaker
2413 // We never open tunnels, so we don't care about tie breakers
2415 case 6: // firmware revision
2417 case 7: // host name
2418 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2419 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2420 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2421 // TBA - to send to RADIUS
2423 case 8: // vendor name
2424 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2425 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2426 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2428 case 9: // assigned tunnel
2429 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2430 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2432 case 10: // rx window
2433 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2434 if (!tunnel
[t
].window
)
2435 tunnel
[t
].window
= 1; // window of 0 is silly
2436 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2438 case 11: // Challenge
2440 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2441 build_chap_response(b
, 2, n
, &chapresponse
);
2444 case 13: // Response
2445 // Why did they send a response? We never challenge.
2446 LOG(2, s
, t
, " received unexpected challenge response\n");
2449 case 14: // assigned session
2450 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2451 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2453 case 15: // call serial number
2454 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2456 case 18: // bearer type
2457 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2460 case 19: // framing type
2461 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2464 case 21: // called number
2465 memset(called
, 0, sizeof(called
));
2466 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2467 LOG(4, s
, t
, " Called <%s>\n", called
);
2469 case 22: // calling number
2470 memset(calling
, 0, sizeof(calling
));
2471 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2472 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2476 case 24: // tx connect speed
2479 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2483 // AS5300s send connect speed as a string
2485 memset(tmp
, 0, sizeof(tmp
));
2486 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2487 session
[s
].tx_connect_speed
= atol(tmp
);
2489 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2491 case 38: // rx connect speed
2494 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2498 // AS5300s send connect speed as a string
2500 memset(tmp
, 0, sizeof(tmp
));
2501 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2502 session
[s
].rx_connect_speed
= atol(tmp
);
2504 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2506 case 25: // Physical Channel ID
2508 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2509 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2512 case 29: // Proxy Authentication Type
2514 uint16_t atype
= ntohs(*(uint16_t *)b
);
2515 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2518 case 30: // Proxy Authentication Name
2521 memset(authname
, 0, sizeof(authname
));
2522 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2523 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2527 case 31: // Proxy Authentication Challenge
2529 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2532 case 32: // Proxy Authentication ID
2534 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2535 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2538 case 33: // Proxy Authentication Response
2539 LOG(4, s
, t
, " Proxy Auth Response\n");
2541 case 27: // last sent lcp
2542 { // find magic number
2543 uint8_t *p
= b
, *e
= p
+ n
;
2544 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2546 if (*p
== 5 && p
[1] == 6) // Magic-Number
2547 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2548 else if (*p
== 7) // Protocol-Field-Compression
2549 aflags
|= SESSION_PFC
;
2550 else if (*p
== 8) // Address-and-Control-Field-Compression
2551 aflags
|= SESSION_ACFC
;
2556 case 28: // last recv lcp confreq
2558 case 26: // Initial Received LCP CONFREQ
2560 case 39: // seq required - we control it as an LNS anyway...
2562 case 36: // Random Vector
2563 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2564 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2565 if (n
> sizeof(session
[s
].random_vector
))
2566 n
= sizeof(session
[s
].random_vector
);
2567 memcpy(session
[s
].random_vector
, b
, n
);
2568 session
[s
].random_vector_length
= n
;
2570 case 46: // ppp disconnect cause
2573 uint16_t code
= ntohs(*(uint16_t *) b
);
2574 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2575 uint8_t dir
= *(b
+ 4);
2577 LOG(4, s
, t
, " PPP disconnect cause "
2578 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2579 code
, proto
, dir
, n
- 5, b
+ 5);
2581 disc_cause_set
= mtype
;
2585 case 1: // admin disconnect
2586 disc_cause
= TERM_ADMIN_RESET
;
2587 disc_reason
= "Administrative disconnect";
2589 case 3: // lcp terminate
2590 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2591 disc_cause
= TERM_USER_REQUEST
;
2592 disc_reason
= "Normal disconnection";
2594 case 4: // compulsory encryption unavailable
2595 if (dir
!= 1) break; // 1=refused by peer, 2=local
2596 disc_cause
= TERM_USER_ERROR
;
2597 disc_reason
= "Compulsory encryption refused";
2599 case 5: // lcp: fsm timeout
2600 disc_cause
= TERM_PORT_ERROR
;
2601 disc_reason
= "LCP: FSM timeout";
2603 case 6: // lcp: no recognisable lcp packets received
2604 disc_cause
= TERM_PORT_ERROR
;
2605 disc_reason
= "LCP: no recognisable LCP packets";
2607 case 7: // lcp: magic-no error (possibly looped back)
2608 disc_cause
= TERM_PORT_ERROR
;
2609 disc_reason
= "LCP: magic-no error (possible loop)";
2611 case 8: // lcp: echo request timeout
2612 disc_cause
= TERM_PORT_ERROR
;
2613 disc_reason
= "LCP: echo request timeout";
2615 case 13: // auth: fsm timeout
2616 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2617 disc_reason
= "Authentication: FSM timeout";
2619 case 15: // auth: unacceptable auth protocol
2620 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2621 disc_reason
= "Unacceptable authentication protocol";
2623 case 16: // auth: authentication failed
2624 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2625 disc_reason
= "Authentication failed";
2627 case 17: // ncp: fsm timeout
2628 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2629 disc_reason
= "NCP: FSM timeout";
2631 case 18: // ncp: no ncps available
2632 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2633 disc_reason
= "NCP: no NCPs available";
2635 case 19: // ncp: failure to converge on acceptable address
2636 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2637 disc_reason
= (dir
== 1)
2638 ? "NCP: too many Configure-Naks received from peer"
2639 : "NCP: too many Configure-Naks sent to peer";
2641 case 20: // ncp: user not permitted to use any address
2642 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2643 disc_reason
= (dir
== 1)
2644 ? "NCP: local link address not acceptable to peer"
2645 : "NCP: remote link address not acceptable";
2652 static char e
[] = "unknown AVP 0xXXXX";
2653 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
2655 result
= 2; // general error
2656 error
= 8; // unknown mandatory AVP
2657 sprintf((msg
= e
) + 14, "%04x", mtype
);
2664 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
2668 case 1: // SCCRQ - Start Control Connection Request
2669 tunnel
[t
].state
= TUNNELOPENING
;
2670 if (main_quit
!= QUIT_SHUTDOWN
)
2672 controlt
*c
= controlnew(2); // sending SCCRP
2673 control16(c
, 2, version
, 1); // protocol version
2674 control32(c
, 3, 3, 1); // framing
2675 controls(c
, 7, hostname
, 1); // host name
2676 if (chapresponse
) controlb(c
, 13, chapresponse
, 16, 1); // Challenge response
2677 control16(c
, 9, t
, 1); // assigned tunnel
2678 controladd(c
, 0, t
); // send the resply
2682 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
2686 tunnel
[t
].state
= TUNNELOPEN
;
2687 tunnel
[t
].lastrec
= time_now
;
2690 tunnel
[t
].state
= TUNNELOPEN
;
2691 tunnel
[t
].lastrec
= time_now
;
2692 controlnull(t
); // ack
2695 controlnull(t
); // ack
2696 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
2699 controlnull(t
); // simply ACK
2711 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
2713 controlt
*c
= controlnew(11); // ICRP
2716 sessionfree
= session
[s
].next
;
2717 memset(&session
[s
], 0, sizeof(session
[s
]));
2719 if (s
> config
->cluster_highest_sessionid
)
2720 config
->cluster_highest_sessionid
= s
;
2722 session
[s
].opened
= time_now
;
2723 session
[s
].tunnel
= t
;
2724 session
[s
].far
= asession
;
2725 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2726 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
2727 control16(c
, 14, s
, 1); // assigned session
2728 controladd(c
, asession
, t
); // send the reply
2730 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
2731 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
2733 session
[s
].ppp
.phase
= Establish
;
2734 session
[s
].ppp
.lcp
= Starting
;
2736 STAT(session_created
);
2741 controlt
*c
= controlnew(14); // CDN
2744 STAT(session_overflow
);
2745 LOG(1, 0, t
, "No free sessions\n");
2746 control16(c
, 1, 4, 0); // temporary lack of resources
2749 control16(c
, 1, 2, 7); // shutting down, try another
2751 controladd(c
, asession
, t
); // send the message
2758 if (amagic
== 0) amagic
= time_now
;
2759 session
[s
].magic
= amagic
; // set magic number
2760 session
[s
].flags
= aflags
; // set flags received
2761 session
[s
].mru
= PPPoE_MRU
; // default
2762 controlnull(t
); // ack
2765 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
2766 sess_local
[s
].ppp_mru
= MRU
;
2768 // Set multilink options before sending initial LCP packet
2769 sess_local
[s
].mp_mrru
= 1614;
2770 sess_local
[s
].mp_epdis
= config
->bind_address
? config
->bind_address
: my_address
;
2773 change_state(s
, lcp
, RequestSent
);
2777 controlnull(t
); // ack
2778 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
2781 LOG(1, s
, t
, "Missing message type\n");
2784 STAT(tunnel_rx_errors
);
2786 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
2788 LOG(1, s
, t
, "Unknown message type %u\n", message
);
2791 if (chapresponse
) free(chapresponse
);
2792 cluster_send_tunnel(t
);
2796 LOG(4, s
, t
, " Got a ZLB ack\n");
2803 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
2804 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
2805 { // HDLC address header, discard
2811 LOG(1, s
, t
, "Short ppp length %d\n", l
);
2812 STAT(tunnel_rx_errors
);
2822 proto
= ntohs(*(uint16_t *) p
);
2827 if (s
&& !session
[s
].opened
) // Is something wrong??
2829 if (!config
->cluster_iam_master
)
2831 // Pass it off to the master to deal with..
2832 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2837 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
2838 STAT(tunnel_rx_errors
);
2842 if (proto
== PPPPAP
)
2844 session
[s
].last_packet
= time_now
;
2845 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2846 processpap(s
, t
, p
, l
);
2848 else if (proto
== PPPCHAP
)
2850 session
[s
].last_packet
= time_now
;
2851 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2852 processchap(s
, t
, p
, l
);
2854 else if (proto
== PPPLCP
)
2856 session
[s
].last_packet
= time_now
;
2857 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2858 processlcp(s
, t
, p
, l
);
2860 else if (proto
== PPPIPCP
)
2862 session
[s
].last_packet
= time_now
;
2863 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2864 processipcp(s
, t
, p
, l
);
2866 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
2868 session
[s
].last_packet
= time_now
;
2869 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2870 processipv6cp(s
, t
, p
, l
);
2872 else if (proto
== PPPCCP
)
2874 session
[s
].last_packet
= time_now
;
2875 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2876 processccp(s
, t
, p
, l
);
2878 else if (proto
== PPPIP
)
2882 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2883 return; // closing session, PPP not processed
2886 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2887 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2889 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2893 processipin(s
, t
, p
, l
);
2895 else if (proto
== PPPMP
)
2899 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2900 return; // closing session, PPP not processed
2903 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2904 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2906 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2910 processmpin(s
, t
, p
, l
);
2912 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
2916 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2917 return; // closing session, PPP not processed
2920 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2921 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2923 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2927 processipv6in(s
, t
, p
, l
);
2929 else if (session
[s
].ppp
.lcp
== Opened
)
2931 session
[s
].last_packet
= time_now
;
2932 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2933 protoreject(s
, t
, p
, l
, proto
);
2937 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
2938 proto
, ppp_state(session
[s
].ppp
.lcp
));
2943 // read and process packet on tun
2944 static void processtun(uint8_t * buf
, int len
)
2946 LOG_HEX(5, "Receive TUN Data", buf
, len
);
2947 STAT(tun_rx_packets
);
2948 INC_STAT(tun_rx_bytes
, len
);
2956 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
2957 STAT(tun_rx_errors
);
2961 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
2962 processipout(buf
, len
);
2963 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
2964 && config
->ipv6_prefix
.s6_addr
[0])
2965 processipv6out(buf
, len
);
2970 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
2971 // that we look at the whole of the tunnel, radius and session tables
2973 static void regular_cleanups(double period
)
2975 // Next tunnel, radius and session to check for actions on.
2976 static tunnelidt t
= 0;
2978 static sessionidt s
= 0;
2991 // divide up tables into slices based on the last run
2992 t_slice
= config
->cluster_highest_tunnelid
* period
;
2993 r_slice
= (MAXRADIUS
- 1) * period
;
2994 s_slice
= config
->cluster_highest_sessionid
* period
;
2998 else if (t_slice
> config
->cluster_highest_tunnelid
)
2999 t_slice
= config
->cluster_highest_tunnelid
;
3003 else if (r_slice
> (MAXRADIUS
- 1))
3004 r_slice
= MAXRADIUS
- 1;
3008 else if (s_slice
> config
->cluster_highest_sessionid
)
3009 s_slice
= config
->cluster_highest_sessionid
;
3011 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3013 for (i
= 0; i
< t_slice
; i
++)
3016 if (t
> config
->cluster_highest_tunnelid
)
3019 // check for expired tunnels
3020 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3022 STAT(tunnel_timeout
);
3023 tunnelkill(t
, "Expired");
3027 // check for message resend
3028 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3030 // resend pending messages as timeout on reply
3031 if (tunnel
[t
].retry
<= TIME
)
3033 controlt
*c
= tunnel
[t
].controls
;
3034 uint16_t w
= tunnel
[t
].window
;
3035 tunnel
[t
].try++; // another try
3036 if (tunnel
[t
].try > 5)
3037 tunnelkill(t
, "Timeout on control message"); // game over
3041 tunnelsend(c
->buf
, c
->length
, t
);
3049 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3051 controlt
*c
= controlnew(6); // sending HELLO
3052 controladd(c
, 0, t
); // send the message
3053 LOG(3, 0, t
, "Sending HELLO message\n");
3057 // Check for tunnel changes requested from the CLI
3058 if ((a
= cli_tunnel_actions
[t
].action
))
3060 cli_tunnel_actions
[t
].action
= 0;
3061 if (a
& CLI_TUN_KILL
)
3063 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3064 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3070 for (i
= 0; i
< r_slice
; i
++)
3076 if (!radius
[r
].state
)
3079 if (radius
[r
].retry
<= TIME
)
3086 for (i
= 0; i
< s_slice
; i
++)
3089 if (s
> config
->cluster_highest_sessionid
)
3092 if (!session
[s
].opened
) // Session isn't in use
3095 // check for expired sessions
3098 if (session
[s
].die
<= TIME
)
3100 sessionkill(s
, "Expired");
3107 if (sess_local
[s
].lcp
.restart
<= time_now
)
3109 int next_state
= session
[s
].ppp
.lcp
;
3110 switch (session
[s
].ppp
.lcp
)
3114 next_state
= RequestSent
;
3117 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3119 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3120 sendlcp(s
, session
[s
].tunnel
);
3121 change_state(s
, lcp
, next_state
);
3125 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3126 STAT(session_timeout
);
3136 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3138 int next_state
= session
[s
].ppp
.ipcp
;
3139 switch (session
[s
].ppp
.ipcp
)
3143 next_state
= RequestSent
;
3146 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3148 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3149 sendipcp(s
, session
[s
].tunnel
);
3150 change_state(s
, ipcp
, next_state
);
3154 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3155 STAT(session_timeout
);
3165 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3167 int next_state
= session
[s
].ppp
.ipv6cp
;
3168 switch (session
[s
].ppp
.ipv6cp
)
3172 next_state
= RequestSent
;
3175 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3177 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3178 sendipv6cp(s
, session
[s
].tunnel
);
3179 change_state(s
, ipv6cp
, next_state
);
3183 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3184 change_state(s
, ipv6cp
, Stopped
);
3191 if (sess_local
[s
].ccp
.restart
<= time_now
)
3193 int next_state
= session
[s
].ppp
.ccp
;
3194 switch (session
[s
].ppp
.ccp
)
3198 next_state
= RequestSent
;
3201 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3203 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3204 sendccp(s
, session
[s
].tunnel
);
3205 change_state(s
, ccp
, next_state
);
3209 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3210 change_state(s
, ccp
, Stopped
);
3217 // Drop sessions who have not responded within IDLE_TIMEOUT seconds
3218 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= IDLE_TIMEOUT
))
3220 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3221 STAT(session_timeout
);
3226 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3227 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= ECHO_TIMEOUT
) &&
3228 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3230 uint8_t b
[MAXETHER
];
3232 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3236 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3237 *(uint16_t *)(q
+ 2) = htons(8); // Length
3238 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3240 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3241 (int)(time_now
- session
[s
].last_packet
));
3242 tunnelsend(b
, 24, session
[s
].tunnel
); // send it
3243 sess_local
[s
].last_echo
= time_now
;
3247 // Drop sessions who have reached session_timeout seconds
3248 if (session
[s
].session_timeout
)
3250 bundleidt bid
= session
[s
].bundle
;
3253 if (time_now
- bundle
[bid
].last_check
>= 1)
3255 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3256 bundle
[bid
].last_check
= time_now
;
3257 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3260 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3262 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3269 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3271 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3277 // Drop sessions who have reached idle_timeout seconds
3278 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3280 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3281 STAT(session_timeout
);
3286 // Check for actions requested from the CLI
3287 if ((a
= cli_session_actions
[s
].action
))
3291 cli_session_actions
[s
].action
= 0;
3292 if (a
& CLI_SESS_KILL
)
3294 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3295 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3296 a
= 0; // dead, no need to check for other actions
3300 if (a
& CLI_SESS_NOSNOOP
)
3302 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3303 session
[s
].snoop_ip
= 0;
3304 session
[s
].snoop_port
= 0;
3308 else if (a
& CLI_SESS_SNOOP
)
3310 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3311 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3312 cli_session_actions
[s
].snoop_port
);
3314 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3315 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3320 if (a
& CLI_SESS_NOTHROTTLE
)
3322 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3323 throttle_session(s
, 0, 0);
3327 else if (a
& CLI_SESS_THROTTLE
)
3329 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3330 cli_session_actions
[s
].throttle_in
,
3331 cli_session_actions
[s
].throttle_out
);
3333 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3338 if (a
& CLI_SESS_NOFILTER
)
3340 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3341 filter_session(s
, 0, 0);
3345 else if (a
& CLI_SESS_FILTER
)
3347 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3348 cli_session_actions
[s
].filter_in
,
3349 cli_session_actions
[s
].filter_out
);
3351 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3357 cluster_send_session(s
);
3360 // RADIUS interim accounting
3361 if (config
->radius_accounting
&& config
->radius_interim
> 0
3362 && session
[s
].ip
&& !session
[s
].walled_garden
3363 && !sess_local
[s
].radius
// RADIUS already in progress
3364 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3365 && session
[s
].flags
& SESSION_STARTED
)
3367 int rad
= radiusnew(s
);
3370 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3371 STAT(radius_overflow
);
3375 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3376 session
[s
].user
, session
[s
].unique_id
);
3378 radiussend(rad
, RADIUSINTERIM
);
3379 sess_local
[s
].last_interim
= time_now
;
3384 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3385 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3389 // Are we in the middle of a tunnel update, or radius
3392 static int still_busy(void)
3395 static clockt last_talked
= 0;
3396 static clockt start_busy_wait
= 0;
3398 if (!config
->cluster_iam_master
)
3401 static time_t stopped_bgp
= 0;
3406 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3408 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3409 if (bgp_peers
[i
].state
== Established
)
3410 bgp_stop(&bgp_peers
[i
]);
3412 stopped_bgp
= time_now
;
3414 // we don't want to become master
3415 cluster_send_ping(0);
3420 if (time_now
< (stopped_bgp
+ QUIT_DELAY
))
3428 if (main_quit
== QUIT_SHUTDOWN
)
3430 static int dropped
= 0;
3435 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3436 for (i
= 1; i
< MAXTUNNEL
; i
++)
3437 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3438 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3444 if (start_busy_wait
== 0)
3445 start_busy_wait
= TIME
;
3447 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3449 if (!tunnel
[i
].controlc
)
3452 if (last_talked
!= TIME
)
3454 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3460 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3461 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3463 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3467 for (i
= 1; i
< MAXRADIUS
; i
++)
3469 if (radius
[i
].state
== RADIUSNULL
)
3471 if (radius
[i
].state
== RADIUSWAIT
)
3474 if (last_talked
!= TIME
)
3476 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3486 # include <sys/epoll.h>
3488 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3489 # include "fake_epoll.h"
3492 // the base set of fds polled: cli, cluster, tun, udp, control, dae
3495 // additional polled fds
3497 # define EXTRA_FDS BGP_NUM_PEERS
3499 # define EXTRA_FDS 0
3502 // main loop - gets packets on tun or udp and processes them
3503 static void mainloop(void)
3507 clockt next_cluster_ping
= 0; // send initial ping immediately
3508 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3509 int maxevent
= sizeof(events
)/sizeof(*events
);
3511 if ((epollfd
= epoll_create(maxevent
)) < 0)
3513 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
3517 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d\n",
3518 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
);
3520 /* setup our fds to poll for input */
3522 static struct event_data d
[BASE_FDS
];
3523 struct epoll_event e
;
3530 d
[i
].type
= FD_TYPE_CLI
;
3531 e
.data
.ptr
= &d
[i
++];
3532 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
3535 d
[i
].type
= FD_TYPE_CLUSTER
;
3536 e
.data
.ptr
= &d
[i
++];
3537 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
3539 d
[i
].type
= FD_TYPE_TUN
;
3540 e
.data
.ptr
= &d
[i
++];
3541 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
3543 d
[i
].type
= FD_TYPE_UDP
;
3544 e
.data
.ptr
= &d
[i
++];
3545 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
, &e
);
3547 d
[i
].type
= FD_TYPE_CONTROL
;
3548 e
.data
.ptr
= &d
[i
++];
3549 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
3551 d
[i
].type
= FD_TYPE_DAE
;
3552 e
.data
.ptr
= &d
[i
++];
3553 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
3557 signal(SIGPIPE
, SIG_IGN
);
3558 bgp_setup(config
->as_number
);
3559 if (config
->bind_address
)
3560 bgp_add_route(config
->bind_address
, 0xffffffff);
3562 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3564 if (config
->neighbour
[i
].name
[0])
3565 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
3566 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
3567 config
->neighbour
[i
].hold
, 0); /* 0 = routing disabled */
3571 while (!main_quit
|| still_busy())
3581 config
->reload_config
++;
3584 if (config
->reload_config
)
3586 config
->reload_config
= 0;
3594 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
3595 STAT(select_called
);
3600 if (errno
== EINTR
||
3601 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
3604 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
3610 struct sockaddr_in addr
;
3611 struct in_addr local
;
3616 int cluster_ready
= 0;
3619 int cluster_pkts
= 0;
3621 uint32_t bgp_events
[BGP_NUM_PEERS
];
3622 memset(bgp_events
, 0, sizeof(bgp_events
));
3625 for (c
= n
, i
= 0; i
< c
; i
++)
3627 struct event_data
*d
= events
[i
].data
.ptr
;
3631 case FD_TYPE_CLI
: // CLI connections
3635 alen
= sizeof(addr
);
3636 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
3642 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
3648 // these are handled below, with multiple interleaved reads
3649 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
3650 case FD_TYPE_TUN
: tun_ready
++; break;
3651 case FD_TYPE_UDP
: udp_ready
++; break;
3653 case FD_TYPE_CONTROL
: // nsctl commands
3654 alen
= sizeof(addr
);
3655 s
= recvfromto(controlfd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3656 if (s
> 0) processcontrol(buf
, s
, &addr
, alen
, &local
);
3660 case FD_TYPE_DAE
: // DAE requests
3661 alen
= sizeof(addr
);
3662 s
= recvfromto(daefd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3663 if (s
> 0) processdae(buf
, s
, &addr
, alen
, &local
);
3667 case FD_TYPE_RADIUS
: // RADIUS response
3668 alen
= sizeof(addr
);
3669 s
= recvfrom(radfds
[d
->index
], buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
3670 if (s
>= 0 && config
->cluster_iam_master
)
3672 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
3673 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
3674 processrad(buf
, s
, d
->index
);
3676 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
3677 fmtaddr(addr
.sin_addr
.s_addr
, 0));
3685 bgp_events
[d
->index
] = events
[i
].events
;
3691 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
3696 bgp_process(bgp_events
);
3699 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
3704 alen
= sizeof(addr
);
3705 if ((s
= recvfrom(udpfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
3707 processudp(buf
, s
, &addr
);
3720 if ((s
= read(tunfd
, buf
, sizeof(buf
))) > 0)
3735 alen
= sizeof(addr
);
3736 if ((s
= recvfrom(cluster_sockfd
, buf
, sizeof(buf
), MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
3738 processcluster(buf
, s
, addr
.sin_addr
.s_addr
);
3749 if (udp_pkts
> 1 || tun_pkts
> 1 || cluster_pkts
> 1)
3750 STAT(multi_read_used
);
3752 if (c
>= config
->multi_read_count
)
3754 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
3755 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
);
3757 STAT(multi_read_exceeded
);
3764 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
3766 // Log current traffic stats
3767 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
3768 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
3769 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
3770 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
3771 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
3773 udp_tx
= udp_rx
= 0;
3774 udp_rx_pkt
= eth_rx_pkt
= 0;
3775 eth_tx
= eth_rx
= 0;
3778 if (config
->dump_speed
)
3779 printf("%s\n", config
->bandwidth
);
3781 // Update the internal time counter
3782 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
3786 struct param_timer p
= { time_now
};
3787 run_plugins(PLUGIN_TIMER
, &p
);
3791 // Runs on every machine (master and slaves).
3792 if (next_cluster_ping
<= TIME
)
3794 // Check to see which of the cluster is still alive..
3796 cluster_send_ping(basetime
); // Only does anything if we're a slave
3797 cluster_check_master(); // ditto.
3799 cluster_heartbeat(); // Only does anything if we're a master.
3800 cluster_check_slaves(); // ditto.
3802 master_update_counts(); // If we're a slave, send our byte counters to our master.
3804 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
3805 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
3807 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
3810 if (!config
->cluster_iam_master
)
3813 // Run token bucket filtering queue..
3814 // Only run it every 1/10th of a second.
3816 static clockt last_run
= 0;
3817 if (last_run
!= TIME
)
3824 // Handle timeouts, retries etc.
3826 static double last_clean
= 0;
3830 TIME
= now(&this_clean
);
3831 diff
= this_clean
- last_clean
;
3833 // Run during idle time (after we've handled
3834 // all incoming packets) or every 1/10th sec
3835 if (!more
|| diff
> 0.1)
3837 regular_cleanups(diff
);
3838 last_clean
= this_clean
;
3842 if (*config
->accounting_dir
)
3844 static clockt next_acct
= 0;
3845 static clockt next_shut_acct
= 0;
3847 if (next_acct
<= TIME
)
3849 // Dump accounting data
3850 next_acct
= TIME
+ ACCT_TIME
;
3851 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
3854 else if (next_shut_acct
<= TIME
)
3856 // Dump accounting data for shutdown sessions
3857 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
3864 // Are we the master and shutting down??
3865 if (config
->cluster_iam_master
)
3866 cluster_heartbeat(); // Flush any queued changes..
3868 // Ok. Notify everyone we're shutting down. If we're
3869 // the master, this will force an election.
3870 cluster_send_ping(0);
3873 // Important!!! We MUST not process any packets past this point!
3874 LOG(1, 0, 0, "Shutdown complete\n");
3877 static void stripdomain(char *host
)
3881 if ((p
= strchr(host
, '.')))
3887 FILE *resolv
= fopen("/etc/resolv.conf", "r");
3893 while (fgets(buf
, sizeof(buf
), resolv
))
3895 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
3898 if (!isspace(buf
[6]))
3902 while (isspace(*b
)) b
++;
3907 while (*b
&& !isspace(*b
)) b
++;
3909 if (buf
[0] == 'd') // domain is canonical
3915 // first search line
3918 // hold, may be subsequent domain line
3919 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
3930 int hl
= strlen(host
);
3931 int dl
= strlen(domain
);
3932 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
3933 host
[hl
-dl
- 1] = 0;
3937 *p
= 0; // everything after first dot
3942 // Init data structures
3943 static void initdata(int optdebug
, char *optconfig
)
3947 if (!(config
= shared_malloc(sizeof(configt
))))
3949 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
3953 memset(config
, 0, sizeof(configt
));
3954 time(&config
->start_time
);
3955 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
3956 config
->debug
= optdebug
;
3957 config
->num_tbfs
= MAXTBFS
;
3958 config
->rl_rate
= 28; // 28kbps
3959 config
->cluster_mcast_ttl
= 1;
3960 config
->cluster_master_min_adv
= 1;
3961 config
->ppp_restart_time
= 3;
3962 config
->ppp_max_configure
= 10;
3963 config
->ppp_max_failure
= 5;
3964 config
->kill_timedout_sessions
= 1;
3965 strcpy(config
->random_device
, RANDOMDEVICE
);
3967 log_stream
= stderr
;
3970 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
3972 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
3975 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
3978 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
3980 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
3983 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
3985 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
3988 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
3990 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
3993 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
3995 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
3998 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4000 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4004 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4006 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4010 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4012 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4016 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4018 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4022 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4024 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4027 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4029 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4031 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4034 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4036 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4038 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4041 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4043 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4044 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4045 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4046 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4047 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4049 // Put all the sessions on the free list marked as undefined.
4050 for (i
= 1; i
< MAXSESSION
; i
++)
4052 session
[i
].next
= i
+ 1;
4053 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4055 session
[MAXSESSION
- 1].next
= 0;
4058 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4059 for (i
= 1; i
< MAXTUNNEL
; i
++)
4060 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4062 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4063 bundle
[i
].state
= BUNDLEUNDEF
;
4068 // Grab my hostname unless it's been specified
4069 gethostname(hostname
, sizeof(hostname
));
4070 stripdomain(hostname
);
4073 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4076 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4078 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4084 static int assign_ip_address(sessionidt s
)
4088 time_t best_time
= time_now
;
4089 char *u
= session
[s
].user
;
4093 CSTAT(assign_ip_address
);
4095 for (i
= 1; i
< ip_pool_size
; i
++)
4097 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4100 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4107 if (ip_address_pool
[i
].last
< best_time
)
4110 if (!(best_time
= ip_address_pool
[i
].last
))
4111 break; // never used, grab this one
4117 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4121 session
[s
].ip
= ip_address_pool
[best
].address
;
4122 session
[s
].ip_pool_index
= best
;
4123 ip_address_pool
[best
].assigned
= 1;
4124 ip_address_pool
[best
].last
= time_now
;
4125 ip_address_pool
[best
].session
= s
;
4126 if (session
[s
].walled_garden
)
4127 /* Don't track addresses of users in walled garden (note: this
4128 means that their address isn't "sticky" even if they get
4130 ip_address_pool
[best
].user
[0] = 0;
4132 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4135 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4136 reuse
? "Reusing" : "Allocating", best
);
4141 static void free_ip_address(sessionidt s
)
4143 int i
= session
[s
].ip_pool_index
;
4146 CSTAT(free_ip_address
);
4149 return; // what the?
4151 if (i
< 0) // Is this actually part of the ip pool?
4155 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4157 ip_address_pool
[i
].assigned
= 0;
4158 ip_address_pool
[i
].session
= 0;
4159 ip_address_pool
[i
].last
= time_now
;
4163 // Fsck the address pool against the session table.
4164 // Normally only called when we become a master.
4166 // This isn't perfect: We aren't keep tracking of which
4167 // users used to have an IP address.
4169 void rebuild_address_pool(void)
4174 // Zero the IP pool allocation, and build
4175 // a map from IP address to pool index.
4176 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4178 ip_address_pool
[i
].assigned
= 0;
4179 ip_address_pool
[i
].session
= 0;
4180 if (!ip_address_pool
[i
].address
)
4183 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4186 for (i
= 0; i
< MAXSESSION
; ++i
)
4189 if (!(session
[i
].opened
&& session
[i
].ip
))
4192 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4194 if (session
[i
].ip_pool_index
< 0)
4196 // Not allocated out of the pool.
4197 if (ipid
< 1) // Not found in the pool either? good.
4200 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4201 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4203 // Fall through and process it as part of the pool.
4207 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4209 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4211 session
[i
].ip_pool_index
= ipid
;
4215 ip_address_pool
[ipid
].assigned
= 1;
4216 ip_address_pool
[ipid
].session
= i
;
4217 ip_address_pool
[ipid
].last
= time_now
;
4218 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4219 session
[i
].ip_pool_index
= ipid
;
4220 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4225 // Fix the address pool to match a changed session.
4226 // (usually when the master sends us an update).
4227 static void fix_address_pool(int sid
)
4231 ipid
= session
[sid
].ip_pool_index
;
4233 if (ipid
> ip_pool_size
)
4234 return; // Ignore it. rebuild_address_pool will fix it up.
4236 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4237 return; // Just ignore it. rebuild_address_pool will take care of it.
4239 ip_address_pool
[ipid
].assigned
= 1;
4240 ip_address_pool
[ipid
].session
= sid
;
4241 ip_address_pool
[ipid
].last
= time_now
;
4242 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4246 // Add a block of addresses to the IP pool to hand out.
4248 static void add_to_ip_pool(in_addr_t addr
, in_addr_t mask
)
4252 mask
= 0xffffffff; // Host route only.
4256 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4259 for (i
= addr
;(i
& mask
) == addr
; ++i
)
4261 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4262 continue; // Skip 0 and broadcast addresses.
4264 ip_address_pool
[ip_pool_size
].address
= i
;
4265 ip_address_pool
[ip_pool_size
].assigned
= 0;
4267 if (ip_pool_size
>= MAXIPPOOL
)
4269 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4275 // Initialize the IP address pool
4276 static void initippool()
4281 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4283 if (!(f
= fopen(IPPOOLFILE
, "r")))
4285 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4289 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4292 buf
[4095] = 0; // Force it to be zero terminated/
4294 if (*buf
== '#' || *buf
== '\n')
4295 continue; // Skip comments / blank lines
4296 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4297 if ((p
= (char *)strchr(buf
, ':')))
4301 src
= inet_addr(buf
);
4302 if (src
== INADDR_NONE
)
4304 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4307 // This entry is for a specific IP only
4308 if (src
!= config
->bind_address
)
4313 if ((p
= (char *)strchr(pool
, '/')))
4317 in_addr_t start
= 0, mask
= 0;
4319 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4321 if (!*p
|| !(numbits
= atoi(p
)))
4323 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4326 start
= ntohl(inet_addr(pool
));
4327 mask
= (in_addr_t
) (pow(2, numbits
) - 1) << (32 - numbits
);
4329 // Add a static route for this pool
4330 LOG(5, 0, 0, "Adding route for address pool %s/%u\n",
4331 fmtaddr(htonl(start
), 0), 32 + mask
);
4333 routeset(0, start
, mask
, 0, 1);
4335 add_to_ip_pool(start
, mask
);
4339 // It's a single ip address
4340 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4344 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4347 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4349 struct sockaddr_in snoop_addr
= {0};
4350 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4353 snoop_addr
.sin_family
= AF_INET
;
4354 snoop_addr
.sin_addr
.s_addr
= destination
;
4355 snoop_addr
.sin_port
= ntohs(port
);
4357 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4358 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4359 htons(snoop_addr
.sin_port
));
4361 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4362 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4364 STAT(packets_snooped
);
4367 static int dump_session(FILE **f
, sessiont
*s
)
4369 if (!s
->opened
|| !s
->ip
|| !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4374 char filename
[1024];
4376 time_t now
= time(NULL
);
4378 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4379 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4381 if (!(*f
= fopen(filename
, "w")))
4383 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4387 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4388 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4393 "# format: username ip qos uptxoctets downrxoctets\n",
4395 fmtaddr(config
->bind_address
? config
->bind_address
: my_address
, 0),
4400 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4401 fprintf(*f
, "%s %s %d %u %u\n",
4402 s
->user
, // username
4403 fmtaddr(htonl(s
->ip
), 0), // ip
4404 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4405 (uint32_t) s
->cin_delta
, // uptxoctets
4406 (uint32_t) s
->cout_delta
); // downrxoctets
4408 s
->cin_delta
= s
->cout_delta
= 0;
4413 static void dump_acct_info(int all
)
4419 CSTAT(dump_acct_info
);
4423 for (i
= 0; i
< shut_acct_n
; i
++)
4424 dump_session(&f
, &shut_acct
[i
]);
4430 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4431 dump_session(&f
, &session
[i
]);
4438 int main(int argc
, char *argv
[])
4442 char *optconfig
= CONFIGFILE
;
4444 time(&basetime
); // start clock
4447 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
4452 if (fork()) exit(0);
4454 freopen("/dev/null", "r", stdin
);
4455 freopen("/dev/null", "w", stdout
);
4456 freopen("/dev/null", "w", stderr
);
4465 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
4468 printf("Args are:\n"
4469 "\t-d\t\tDetach from terminal\n"
4470 "\t-c <file>\tConfig file\n"
4471 "\t-h <hostname>\tForce hostname\n"
4479 // Start the timer routine off
4481 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4484 initdata(optdebug
, optconfig
);
4489 init_tbf(config
->num_tbfs
);
4491 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
4492 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
4493 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4496 rlim
.rlim_cur
= RLIM_INFINITY
;
4497 rlim
.rlim_max
= RLIM_INFINITY
;
4498 // Remove the maximum core size
4499 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
4500 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
4502 // Make core dumps go to /tmp
4506 if (config
->scheduler_fifo
)
4509 struct sched_param params
= {0};
4510 params
.sched_priority
= 1;
4512 if (get_nprocs() < 2)
4514 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
4515 config
->scheduler_fifo
= 0;
4519 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
4521 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
4525 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
4526 config
->scheduler_fifo
= 0;
4531 /* Set up the cluster communications port. */
4532 if (cluster_init() < 0)
4536 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevice
);
4544 unsigned seed
= time_now
^ getpid();
4545 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
4549 signal(SIGHUP
, sighup_handler
);
4550 signal(SIGCHLD
, sigchild_handler
);
4551 signal(SIGTERM
, shutdown_handler
);
4552 signal(SIGINT
, shutdown_handler
);
4553 signal(SIGQUIT
, shutdown_handler
);
4555 // Prevent us from getting paged out
4556 if (config
->lock_pages
)
4558 if (!mlockall(MCL_CURRENT
))
4559 LOG(1, 0, 0, "Locking pages into memory\n");
4561 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
4566 /* remove plugins (so cleanup code gets run) */
4569 // Remove the PID file if we wrote it
4570 if (config
->wrote_pid
&& *config
->pid_file
== '/')
4571 unlink(config
->pid_file
);
4573 /* kill CLI children */
4574 signal(SIGTERM
, SIG_IGN
);
4579 static void sighup_handler(int sig
)
4584 static void shutdown_handler(int sig
)
4586 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
4589 static void sigchild_handler(int sig
)
4591 while (waitpid(-1, NULL
, WNOHANG
) > 0)
4595 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
4598 *challenge_response
= NULL
;
4600 if (!*config
->l2tp_secret
)
4602 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
4606 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
4608 *challenge_response
= calloc(17, 1);
4611 MD5_Update(&ctx
, &id
, 1);
4612 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
4613 MD5_Update(&ctx
, challenge
, challenge_length
);
4614 MD5_Final(*challenge_response
, &ctx
);
4619 static int facility_value(char *name
)
4622 for (i
= 0; facilitynames
[i
].c_name
; i
++)
4624 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
4625 return facilitynames
[i
].c_val
;
4630 static void update_config()
4634 static int timeout
= 0;
4635 static int interval
= 0;
4642 if (log_stream
!= stderr
)
4648 if (*config
->log_filename
)
4650 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
4652 char *p
= config
->log_filename
+ 7;
4655 openlog("l2tpns", LOG_PID
, facility_value(p
));
4659 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
4661 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
4663 fseek(log_stream
, 0, SEEK_END
);
4664 setbuf(log_stream
, NULL
);
4668 log_stream
= stderr
;
4669 setbuf(log_stream
, NULL
);
4675 log_stream
= stderr
;
4676 setbuf(log_stream
, NULL
);
4679 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
4680 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
4682 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
4683 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
4684 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
4686 // reset MRU/MSS globals
4687 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
4688 if (MRU
> PPPoE_MRU
)
4691 MSS
= MRU
- TCP_HDRS
;
4694 config
->numradiusservers
= 0;
4695 for (i
= 0; i
< MAXRADSERVER
; i
++)
4696 if (config
->radiusserver
[i
])
4698 config
->numradiusservers
++;
4699 // Set radius port: if not set, take the port from the
4700 // first radius server. For the first radius server,
4701 // take the #defined default value from l2tpns.h
4703 // test twice, In case someone works with
4704 // a secondary radius server without defining
4705 // a primary one, this will work even then.
4706 if (i
> 0 && !config
->radiusport
[i
])
4707 config
->radiusport
[i
] = config
->radiusport
[i
-1];
4708 if (!config
->radiusport
[i
])
4709 config
->radiusport
[i
] = RADPORT
;
4712 if (!config
->numradiusservers
)
4713 LOG(0, 0, 0, "No RADIUS servers defined!\n");
4715 // parse radius_authtypes_s
4716 config
->radius_authtypes
= config
->radius_authprefer
= 0;
4717 p
= config
->radius_authtypes_s
;
4720 char *s
= strpbrk(p
, " \t,");
4726 while (*s
== ' ' || *s
== '\t')
4733 if (!strncasecmp("chap", p
, strlen(p
)))
4735 else if (!strncasecmp("pap", p
, strlen(p
)))
4738 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
4740 config
->radius_authtypes
|= type
;
4741 if (!config
->radius_authprefer
)
4742 config
->radius_authprefer
= type
;
4747 if (!config
->radius_authtypes
)
4749 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
4750 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
4753 // normalise radius_authtypes_s
4754 if (config
->radius_authprefer
== AUTHPAP
)
4756 strcpy(config
->radius_authtypes_s
, "pap");
4757 if (config
->radius_authtypes
& AUTHCHAP
)
4758 strcat(config
->radius_authtypes_s
, ", chap");
4762 strcpy(config
->radius_authtypes_s
, "chap");
4763 if (config
->radius_authtypes
& AUTHPAP
)
4764 strcat(config
->radius_authtypes_s
, ", pap");
4767 if (!config
->radius_dae_port
)
4768 config
->radius_dae_port
= DAEPORT
;
4770 // re-initialise the random number source
4771 initrandom(config
->random_device
);
4774 for (i
= 0; i
< MAXPLUGINS
; i
++)
4776 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
4779 if (*config
->plugins
[i
])
4782 add_plugin(config
->plugins
[i
]);
4784 else if (*config
->old_plugins
[i
])
4787 remove_plugin(config
->old_plugins
[i
]);
4792 guest_accounts_num
= 0;
4793 char *p2
= config
->guest_user
;
4796 char *s
= strpbrk(p2
, " \t,");
4800 while (*s
== ' ' || *s
== '\t')
4807 strcpy(guest_users
[guest_accounts_num
], p2
);
4808 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
4809 guest_accounts_num
++;
4812 // Rebuild the guest_user array
4813 strcpy(config
->guest_user
, "");
4815 for (ui
=0; ui
<guest_accounts_num
; ui
++)
4817 strcat(config
->guest_user
, guest_users
[ui
]);
4818 if (ui
<guest_accounts_num
-1)
4820 strcat(config
->guest_user
, ",");
4825 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
4826 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
4827 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
4828 if (!*config
->cluster_interface
)
4829 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
4831 if (!config
->cluster_hb_interval
)
4832 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
4834 if (!config
->cluster_hb_timeout
)
4835 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
4837 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
4839 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
4840 // late, ensure we're sufficiently larger than that
4841 int t
= 4 * config
->cluster_hb_interval
+ 11;
4843 if (config
->cluster_hb_timeout
< t
)
4845 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
4846 config
->cluster_hb_timeout
= t
;
4849 // Push timing changes to the slaves immediately if we're the master
4850 if (config
->cluster_iam_master
)
4851 cluster_heartbeat();
4853 interval
= config
->cluster_hb_interval
;
4854 timeout
= config
->cluster_hb_timeout
;
4858 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
4861 if ((f
= fopen(config
->pid_file
, "w")))
4863 fprintf(f
, "%d\n", getpid());
4865 config
->wrote_pid
= 1;
4869 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
4874 static void read_config_file()
4878 if (!config
->config_file
) return;
4879 if (!(f
= fopen(config
->config_file
, "r")))
4881 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
4885 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
4887 LOG(3, 0, 0, "Done reading config file\n");
4891 int sessionsetup(sessionidt s
, tunnelidt t
)
4893 // A session now exists, set it up
4899 CSTAT(sessionsetup
);
4901 LOG(3, s
, t
, "Doing session setup for session\n");
4903 // Join a bundle if the MRRU option is accepted
4904 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
4906 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
4907 if (join_bundle(s
) > 0)
4908 cluster_send_bundle(session
[s
].bundle
);
4911 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
4912 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
4919 assign_ip_address(s
);
4922 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
4923 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
4926 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
4927 fmtaddr(htonl(session
[s
].ip
), 0));
4931 // Make sure this is right
4932 session
[s
].tunnel
= t
;
4934 // zap old sessions with same IP and/or username
4935 // Don't kill gardened sessions - doing so leads to a DoS
4936 // from someone who doesn't need to know the password
4939 user
= session
[s
].user
;
4940 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4942 if (i
== s
) continue;
4943 if (!session
[s
].opened
) continue;
4944 // Allow duplicate sessions for multilink ones of the same bundle.
4945 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
)
4947 if (ip
== session
[i
].ip
)
4949 sessionkill(i
, "Duplicate IP address");
4953 if (config
->allow_duplicate_users
) continue;
4954 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
4958 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
4960 if (!strcasecmp(user
, guest_users
[gu
]))
4966 if (found
) continue;
4968 // Drop the new session in case of duplicate sessionss, not the old one.
4969 if (!strcasecmp(user
, session
[i
].user
))
4970 sessionkill(i
, "Duplicate session for users");
4974 // no need to set a route for the same IP address of the bundle
4975 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
4979 // Add the route for this session.
4980 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
4982 if ((session
[s
].ip
& session
[s
].route
[r
].mask
) ==
4983 (session
[s
].route
[r
].ip
& session
[s
].route
[r
].mask
))
4986 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].mask
, 0, 1);
4989 // Static IPs need to be routed if not already
4990 // convered by a Framed-Route. Anything else is part
4991 // of the IP address pool and is already routed, it
4992 // just needs to be added to the IP cache.
4993 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
4994 if (session
[s
].ip_pool_index
== -1) // static ip
4996 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
4999 cache_ipmap(session
[s
].ip
, s
);
5002 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5003 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5005 // Run the plugin's against this new session.
5007 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5008 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5011 // Allocate TBFs if throttled
5012 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5013 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5015 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5017 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5018 fmtaddr(htonl(session
[s
].ip
), 0),
5019 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5021 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5023 return 1; // RADIUS OK and IP allocated, done...
5027 // This session just got dropped on us by the master or something.
5028 // Make sure our tables up up to date...
5030 int load_session(sessionidt s
, sessiont
*new)
5036 if (new->ip_pool_index
>= MAXIPPOOL
||
5037 new->tunnel
>= MAXTUNNEL
)
5039 LOG(0, s
, 0, "Strange session update received!\n");
5040 // FIXME! What to do here?
5045 // Ok. All sanity checks passed. Now we're committed to
5046 // loading the new session.
5049 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5051 // See if routes/ip cache need updating
5052 if (new->ip
!= session
[s
].ip
)
5055 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5056 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5057 new->route
[i
].mask
!= session
[s
].route
[i
].mask
)
5065 // remove old routes...
5066 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5068 if ((session
[s
].ip
& session
[s
].route
[i
].mask
) ==
5069 (session
[s
].route
[i
].ip
& session
[s
].route
[i
].mask
))
5072 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].mask
, 0, 0);
5078 if (session
[s
].ip_pool_index
== -1) // static IP
5080 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5082 else // It's part of the IP pool, remove it manually.
5083 uncache_ipmap(session
[s
].ip
);
5088 // add new routes...
5089 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5091 if ((new->ip
& new->route
[i
].mask
) ==
5092 (new->route
[i
].ip
& new->route
[i
].mask
))
5095 routeset(s
, new->route
[i
].ip
, new->route
[i
].mask
, 0, 1);
5101 // If there's a new one, add it.
5102 if (new->ip_pool_index
== -1)
5104 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5107 cache_ipmap(new->ip
, s
);
5112 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5113 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5116 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5118 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5122 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5124 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5125 new->filter_out
= 0;
5128 if (new->filter_in
!= session
[s
].filter_in
)
5130 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5131 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5134 if (new->filter_out
!= session
[s
].filter_out
)
5136 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5137 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5140 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5141 // for walking the sessions to forward byte counts to the master.
5142 config
->cluster_highest_sessionid
= s
;
5144 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5146 // Do fixups into address pool.
5147 if (new->ip_pool_index
!= -1)
5148 fix_address_pool(s
);
5153 static void initplugins()
5157 loaded_plugins
= ll_init();
5158 // Initialize the plugins to nothing
5159 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5160 plugins
[i
] = ll_init();
5163 static void *open_plugin(char *plugin_name
, int load
)
5165 char path
[256] = "";
5167 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5168 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5169 return dlopen(path
, RTLD_NOW
);
5172 // plugin callback to get a config value
5173 static void *getconfig(char *key
, enum config_typet type
)
5177 for (i
= 0; config_values
[i
].key
; i
++)
5179 if (!strcmp(config_values
[i
].key
, key
))
5181 if (config_values
[i
].type
== type
)
5182 return ((void *) config
) + config_values
[i
].offset
;
5184 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5185 key
, type
, config_values
[i
].type
);
5191 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5195 static int add_plugin(char *plugin_name
)
5197 static struct pluginfuncs funcs
= {
5202 sessiontbysessionidt
,
5203 sessionidtbysessiont
,
5210 cluster_send_session
,
5213 void *p
= open_plugin(plugin_name
, 1);
5214 int (*initfunc
)(struct pluginfuncs
*);
5219 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5223 if (ll_contains(loaded_plugins
, p
))
5226 return 0; // already loaded
5230 int *v
= dlsym(p
, "plugin_api_version");
5231 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5233 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5239 if ((initfunc
= dlsym(p
, "plugin_init")))
5241 if (!initfunc(&funcs
))
5243 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5249 ll_push(loaded_plugins
, p
);
5251 for (i
= 0; i
< max_plugin_functions
; i
++)
5254 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5256 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5257 ll_push(plugins
[i
], x
);
5261 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5265 static void run_plugin_done(void *plugin
)
5267 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5273 static int remove_plugin(char *plugin_name
)
5275 void *p
= open_plugin(plugin_name
, 0);
5281 if (ll_contains(loaded_plugins
, p
))
5284 for (i
= 0; i
< max_plugin_functions
; i
++)
5287 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5288 ll_delete(plugins
[i
], x
);
5291 ll_delete(loaded_plugins
, p
);
5297 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5301 int run_plugins(int plugin_type
, void *data
)
5303 int (*func
)(void *data
);
5305 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5306 return PLUGIN_RET_ERROR
;
5308 ll_reset(plugins
[plugin_type
]);
5309 while ((func
= ll_next(plugins
[plugin_type
])))
5313 if (r
!= PLUGIN_RET_OK
)
5314 return r
; // stop here
5317 return PLUGIN_RET_OK
;
5320 static void plugins_done()
5324 ll_reset(loaded_plugins
);
5325 while ((p
= ll_next(loaded_plugins
)))
5329 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
5331 struct nsctl request
;
5332 struct nsctl response
;
5333 int type
= unpack_control(&request
, buf
, len
);
5337 if (log_stream
&& config
->debug
>= 4)
5341 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
5342 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
5346 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5347 dump_control(&request
, log_stream
);
5353 case NSCTL_REQ_LOAD
:
5354 if (request
.argc
!= 1)
5356 response
.type
= NSCTL_RES_ERR
;
5358 response
.argv
[0] = "name of plugin required";
5360 else if ((r
= add_plugin(request
.argv
[0])) < 1)
5362 response
.type
= NSCTL_RES_ERR
;
5364 response
.argv
[0] = !r
5365 ? "plugin already loaded"
5366 : "error loading plugin";
5370 response
.type
= NSCTL_RES_OK
;
5376 case NSCTL_REQ_UNLOAD
:
5377 if (request
.argc
!= 1)
5379 response
.type
= NSCTL_RES_ERR
;
5381 response
.argv
[0] = "name of plugin required";
5383 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
5385 response
.type
= NSCTL_RES_ERR
;
5387 response
.argv
[0] = !r
5388 ? "plugin not loaded"
5389 : "plugin not found";
5393 response
.type
= NSCTL_RES_OK
;
5399 case NSCTL_REQ_HELP
:
5400 response
.type
= NSCTL_RES_OK
;
5403 ll_reset(loaded_plugins
);
5404 while ((p
= ll_next(loaded_plugins
)))
5406 char **help
= dlsym(p
, "plugin_control_help");
5407 while (response
.argc
< 0xff && help
&& *help
)
5408 response
.argv
[response
.argc
++] = *help
++;
5413 case NSCTL_REQ_CONTROL
:
5415 struct param_control param
= {
5416 config
->cluster_iam_master
,
5423 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
5425 if (r
== PLUGIN_RET_ERROR
)
5427 response
.type
= NSCTL_RES_ERR
;
5429 response
.argv
[0] = param
.additional
5431 : "error returned by plugin";
5433 else if (r
== PLUGIN_RET_NOTMASTER
)
5435 static char msg
[] = "must be run on master: 000.000.000.000";
5437 response
.type
= NSCTL_RES_ERR
;
5439 if (config
->cluster_master_address
)
5441 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
5442 response
.argv
[0] = msg
;
5446 response
.argv
[0] = "must be run on master: none elected";
5449 else if (!(param
.response
& NSCTL_RESPONSE
))
5451 response
.type
= NSCTL_RES_ERR
;
5453 response
.argv
[0] = param
.response
5454 ? "unrecognised response value from plugin"
5455 : "unhandled action";
5459 response
.type
= param
.response
;
5461 if (param
.additional
)
5464 response
.argv
[0] = param
.additional
;
5472 response
.type
= NSCTL_RES_ERR
;
5474 response
.argv
[0] = "error unpacking control packet";
5477 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
5480 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5484 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
5487 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
5488 if (log_stream
&& config
->debug
>= 4)
5490 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5491 dump_control(&response
, log_stream
);
5495 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
5496 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
5501 static tunnelidt
new_tunnel()
5504 for (i
= 1; i
< MAXTUNNEL
; i
++)
5506 if (tunnel
[i
].state
== TUNNELFREE
)
5508 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
5509 if (i
> config
->cluster_highest_tunnelid
)
5510 config
->cluster_highest_tunnelid
= i
;
5514 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
5519 // We're becoming the master. Do any required setup..
5521 // This is principally telling all the plugins that we're
5522 // now a master, and telling them about all the sessions
5523 // that are active too..
5525 void become_master(void)
5528 static struct event_data d
[RADIUS_FDS
];
5529 struct epoll_event e
;
5531 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
5533 // running a bunch of iptables commands is slow and can cause
5534 // the master to drop tunnels on takeover--kludge around the
5535 // problem by forking for the moment (note: race)
5536 if (!fork_and_close())
5538 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5540 if (!session
[s
].opened
) // Not an in-use session.
5543 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
5550 for (i
= 0; i
< RADIUS_FDS
; i
++)
5552 d
[i
].type
= FD_TYPE_RADIUS
;
5556 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
5560 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5566 if (CLI_HELP_REQUESTED
)
5567 return CLI_HELP_NO_ARGS
;
5570 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5572 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5575 if (!session
[s
].opened
)
5578 idle
= time_now
- session
[s
].last_data
;
5579 idle
/= 5 ; // In multiples of 5 seconds.
5589 for (i
= 0; i
< 63; ++i
)
5591 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5593 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
5594 cli_print(cli
, "%d total sessions open.", count
);
5598 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5604 if (CLI_HELP_REQUESTED
)
5605 return CLI_HELP_NO_ARGS
;
5608 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5610 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5613 if (!session
[s
].opened
)
5616 d
= time_now
- session
[s
].opened
;
5619 while (d
> 1 && open
< 32)
5629 for (i
= 0; i
< 30; ++i
)
5631 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5634 cli_print(cli
, "%d total sessions open.", count
);
5640 * This unencodes the AVP using the L2TP secret and the previously
5641 * stored random vector. It overwrites the hidden data with the
5642 * unhidden AVP subformat.
5644 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
5650 uint16_t m
= htons(type
);
5652 // Compute initial pad
5654 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
5655 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5656 MD5_Update(&ctx
, vector
, vec_len
);
5657 MD5_Final(digest
, &ctx
);
5659 // pointer to last decoded 16 octets
5664 // calculate a new pad based on the last decoded block
5665 if (d
>= sizeof(digest
))
5668 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5669 MD5_Update(&ctx
, last
, sizeof(digest
));
5670 MD5_Final(digest
, &ctx
);
5676 *value
++ ^= digest
[d
++];
5681 int find_filter(char const *name
, size_t len
)
5686 for (i
= 0; i
< MAXFILTER
; i
++)
5688 if (!*ip_filters
[i
].name
)
5696 if (strlen(ip_filters
[i
].name
) != len
)
5699 if (!strncmp(ip_filters
[i
].name
, name
, len
))
5706 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
5710 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
5711 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
5712 case FILTER_PORT_OP_GT
: return port
> p
->port
;
5713 case FILTER_PORT_OP_LT
: return port
< p
->port
;
5714 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
5720 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
5724 case FILTER_FLAG_OP_ANY
:
5725 return (flags
& sflags
) || (~flags
& cflags
);
5727 case FILTER_FLAG_OP_ALL
:
5728 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
5730 case FILTER_FLAG_OP_EST
:
5731 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
5737 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
5739 uint16_t frag_offset
;
5743 uint16_t src_port
= 0;
5744 uint16_t dst_port
= 0;
5746 ip_filter_rulet
*rule
;
5748 if (len
< 20) // up to end of destination address
5751 if ((*buf
>> 4) != 4) // IPv4
5754 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
5756 src_ip
= *(in_addr_t
*) (buf
+ 12);
5757 dst_ip
= *(in_addr_t
*) (buf
+ 16);
5759 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
5761 int l
= (buf
[0] & 0xf) * 4; // length of IP header
5762 if (len
< l
+ 4) // ports
5765 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
5766 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
5767 if (proto
== IPPROTO_TCP
)
5769 if (len
< l
+ 14) // flags
5772 flags
= buf
[l
+ 13] & 0x3f;
5776 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
5778 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
5781 if (rule
->src_wild
!= INADDR_BROADCAST
&&
5782 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
5785 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
5786 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
5791 // layer 4 deny rules are skipped
5792 if (rule
->action
== FILTER_ACTION_DENY
&&
5793 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
5801 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
5803 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
5806 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
5809 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
5810 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
5817 return rule
->action
== FILTER_ACTION_PERMIT
;