3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
7 char const *cvs_id_l2tpns
= "$Id: l2tpns.c,v 1.167 2006-06-11 12:46:18 bodea Exp $";
13 #include <linux/if_tun.h>
18 #include <net/route.h>
21 #include <netinet/in.h>
22 #include <netinet/ip6.h>
28 #include <sys/ioctl.h>
29 #include <sys/socket.h>
32 #include <sys/resource.h>
40 #include <sys/sysinfo.h>
48 #include "constants.h"
58 configt
*config
= NULL
; // all configuration
59 int tunfd
= -1; // tun interface file handle. (network device)
60 int udpfd
= -1; // UDP file handle
61 int controlfd
= -1; // Control signal handle
62 int clifd
= -1; // Socket listening for CLI connections.
63 int daefd
= -1; // Socket listening for DAE connections.
64 int snoopfd
= -1; // UDP file handle for sending out intercept data
65 int *radfds
= NULL
; // RADIUS requests file handles
66 int ifrfd
= -1; // File descriptor for routing, etc
67 int ifr6fd
= -1; // File descriptor for IPv6 routing, etc
68 int rand_fd
= -1; // Random data source
69 int cluster_sockfd
= -1; // Intra-cluster communications socket.
70 int epollfd
= -1; // event polling
71 time_t basetime
= 0; // base clock
72 char hostname
[1000] = ""; // us.
73 static int tunidx
; // ifr_ifindex of tun device
74 static int syslog_log
= 0; // are we logging to syslog
75 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
76 uint32_t last_id
= 0; // Unique ID for radius accounting
78 // calculated from config->l2tp_mtu
79 uint16_t MRU
= 0; // PPP MRU
80 uint16_t MSS
= 0; // TCP MSS
82 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
83 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
85 static void *ip_hash
[256]; // Mapping from IP address to session structures.
88 struct ipv6radix
*branch
;
89 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
92 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
93 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
96 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
97 time_t time_now
= 0; // Current time in seconds since epoch.
98 static char time_now_string
[64] = {0}; // Current time as a string.
99 static int time_changed
= 0; // time_now changed
100 char main_quit
= 0; // True if we're in the process of exiting.
101 static char main_reload
= 0; // Re-load pending
102 linked_list
*loaded_plugins
;
103 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
105 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
106 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
108 config_descriptt config_values
[] = {
109 CONFIG("debug", debug
, INT
),
110 CONFIG("log_file", log_filename
, STRING
),
111 CONFIG("pid_file", pid_file
, STRING
),
112 CONFIG("random_device", random_device
, STRING
),
113 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
114 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
115 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
116 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
117 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
118 CONFIG("primary_dns", default_dns1
, IPv4
),
119 CONFIG("secondary_dns", default_dns2
, IPv4
),
120 CONFIG("primary_radius", radiusserver
[0], IPv4
),
121 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
122 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
123 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
124 CONFIG("radius_accounting", radius_accounting
, BOOL
),
125 CONFIG("radius_interim", radius_interim
, INT
),
126 CONFIG("radius_secret", radiussecret
, STRING
),
127 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
128 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
129 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
130 CONFIG("guest_account", guest_user
, STRING
),
131 CONFIG("bind_address", bind_address
, IPv4
),
132 CONFIG("peer_address", peer_address
, IPv4
),
133 CONFIG("send_garp", send_garp
, BOOL
),
134 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
135 CONFIG("throttle_buckets", num_tbfs
, INT
),
136 CONFIG("accounting_dir", accounting_dir
, STRING
),
137 CONFIG("dump_speed", dump_speed
, BOOL
),
138 CONFIG("multi_read_count", multi_read_count
, INT
),
139 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
140 CONFIG("lock_pages", lock_pages
, BOOL
),
141 CONFIG("icmp_rate", icmp_rate
, INT
),
142 CONFIG("packet_limit", max_packets
, INT
),
143 CONFIG("cluster_address", cluster_address
, IPv4
),
144 CONFIG("cluster_interface", cluster_interface
, STRING
),
145 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
146 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
147 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
148 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
149 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
153 static char *plugin_functions
[] = {
160 "plugin_new_session",
161 "plugin_kill_session",
163 "plugin_radius_response",
164 "plugin_radius_reset",
165 "plugin_radius_account",
166 "plugin_become_master",
167 "plugin_new_session_master",
170 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
172 // Counters for shutdown sessions
173 static sessiont shut_acct
[8192];
174 static sessionidt shut_acct_n
= 0;
176 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
177 bundlet
*bundle
= NULL
; // Array of bundle structures.
178 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
179 sessiont
*session
= NULL
; // Array of session structures.
180 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
181 radiust
*radius
= NULL
; // Array of radius structures.
182 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
183 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
184 static controlt
*controlfree
= 0;
185 struct Tstats
*_statistics
= NULL
;
187 struct Tringbuffer
*ringbuffer
= NULL
;
190 static void cache_ipmap(in_addr_t ip
, int s
);
191 static void uncache_ipmap(in_addr_t ip
);
192 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, int s
);
193 static void free_ip_address(sessionidt s
);
194 static void dump_acct_info(int all
);
195 static void sighup_handler(int sig
);
196 static void shutdown_handler(int sig
);
197 static void sigchild_handler(int sig
);
198 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
199 static void update_config(void);
200 static void read_config_file(void);
201 static void initplugins(void);
202 static int add_plugin(char *plugin_name
);
203 static int remove_plugin(char *plugin_name
);
204 static void plugins_done(void);
205 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
206 static tunnelidt
new_tunnel(void);
207 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
208 static void bundleclear(bundleidt b
);
210 // on slaves, alow BGP to withdraw cleanly before exiting
213 // quit actions (master)
214 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
215 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
217 // return internal time (10ths since process startup), set f if given
218 // as a side-effect sets time_now, and time_changed
219 static clockt
now(double *f
)
223 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
224 if (t
.tv_sec
!= time_now
)
229 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
232 // work out a retry time based on try number
233 // This is a straight bounded exponential backoff.
234 // Maximum re-try time is 32 seconds. (2^5).
235 clockt
backoff(uint8_t try)
237 if (try > 5) try = 5; // max backoff
238 return now(NULL
) + 10 * (1 << try);
243 // Log a debug message. Typically called via the LOG macro
245 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
247 static char message
[65536] = {0};
253 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
254 ringbuffer
->tail
= 0;
255 if (ringbuffer
->tail
== ringbuffer
->head
)
256 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
257 ringbuffer
->head
= 0;
259 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
260 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
261 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
262 va_start(ap
, format
);
263 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, 4095, format
, ap
);
268 if (config
->debug
< level
) return;
270 va_start(ap
, format
);
271 vsnprintf(message
, sizeof(message
), format
, ap
);
274 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
276 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
281 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
284 const uint8_t *d
= data
;
286 if (config
->debug
< level
) return;
288 // No support for _log_hex to syslog
291 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
292 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
294 for (i
= 0; i
< maxsize
; )
296 fprintf(log_stream
, "%4X: ", i
);
297 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
299 fprintf(log_stream
, "%02X ", d
[j
]);
301 fputs(": ", log_stream
);
304 for (; j
< i
+ 16; j
++)
306 fputs(" ", log_stream
);
308 fputs(": ", log_stream
);
311 fputs(" ", log_stream
);
312 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
314 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
315 fputc(d
[j
], log_stream
);
317 fputc('.', log_stream
);
320 fputs(" ", log_stream
);
324 fputs("\n", log_stream
);
328 setbuf(log_stream
, NULL
);
332 // update a counter, accumulating 2^32 wraps
333 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
335 uint32_t new = *counter
+ delta
;
342 // initialise the random generator
343 static void initrandom(char *source
)
345 static char path
[sizeof(config
->random_device
)] = "*undefined*";
347 // reinitialise only if we are forced to do so or if the config has changed
348 if (source
&& !strncmp(path
, source
, sizeof(path
)))
351 // close previous source, if any
360 snprintf(path
, sizeof(path
), "%s", source
);
364 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
366 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
367 path
, strerror(errno
));
372 // fill buffer with random data
373 void random_data(uint8_t *buf
, int len
)
380 n
= read(rand_fd
, buf
, len
);
381 if (n
>= len
) return;
386 LOG(0, 0, 0, "Error reading from random source: %s\n",
389 // fall back to rand()
397 // append missing data
399 // not using the low order bits from the prng stream
400 buf
[n
++] = (rand() >> 4) & 0xff;
405 // This adds it to the routing table, advertises it
406 // via BGP if enabled, and stuffs it into the
407 // 'sessionbyip' cache.
409 // 'ip' and 'mask' must be in _host_ order.
411 static void routeset(sessionidt s
, in_addr_t ip
, in_addr_t mask
, in_addr_t gw
, int add
)
416 if (!mask
) mask
= 0xffffffff;
418 ip
&= mask
; // Force the ip to be the first one in the route.
420 memset(&r
, 0, sizeof(r
));
421 r
.rt_dev
= config
->tundevice
;
422 r
.rt_dst
.sa_family
= AF_INET
;
423 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_dst
)->sin_addr
.s_addr
) = htonl(ip
);
424 r
.rt_gateway
.sa_family
= AF_INET
;
425 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_gateway
)->sin_addr
.s_addr
) = htonl(gw
);
426 r
.rt_genmask
.sa_family
= AF_INET
;
427 *(uint32_t *) & (((struct sockaddr_in
*) &r
.rt_genmask
)->sin_addr
.s_addr
) = htonl(mask
);
428 r
.rt_flags
= (RTF_UP
| RTF_STATIC
);
430 r
.rt_flags
|= RTF_GATEWAY
;
431 else if (mask
== 0xffffffff)
432 r
.rt_flags
|= RTF_HOST
;
434 LOG(1, s
, 0, "Route %s %s/%s%s%s\n", add
? "add" : "del",
435 fmtaddr(htonl(ip
), 0), fmtaddr(htonl(mask
), 1),
436 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
438 if (ioctl(ifrfd
, add
? SIOCADDRT
: SIOCDELRT
, (void *) &r
) < 0)
439 LOG(0, 0, 0, "routeset() error in ioctl: %s\n", strerror(errno
));
443 bgp_add_route(htonl(ip
), htonl(mask
));
445 bgp_del_route(htonl(ip
), htonl(mask
));
448 // Add/Remove the IPs to the 'sessionbyip' cache.
449 // Note that we add the zero address in the case of
450 // a network route. Roll on CIDR.
452 // Note that 's == 0' implies this is the address pool.
453 // We still cache it here, because it will pre-fill
454 // the malloc'ed tree.
458 if (!add
) // Are we deleting a route?
459 s
= 0; // Caching the session as '0' is the same as uncaching.
461 for (i
= ip
; (i
&mask
) == (ip
&mask
) ; ++i
)
466 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
469 char ipv6addr
[INET6_ADDRSTRLEN
];
473 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
477 memset(&rt
, 0, sizeof(rt
));
479 memcpy(&rt
.rtmsg_dst
, &ip
, sizeof(struct in6_addr
));
480 rt
.rtmsg_dst_len
= prefixlen
;
482 rt
.rtmsg_flags
= RTF_UP
;
483 rt
.rtmsg_ifindex
= tunidx
;
485 LOG(1, 0, 0, "Route %s %s/%d\n",
487 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
490 if (ioctl(ifr6fd
, add
? SIOCADDRT
: SIOCDELRT
, (void *) &rt
) < 0)
491 LOG(0, 0, 0, "route6set() error in ioctl: %s\n",
494 // FIXME: need to add BGP routing (RFC2858)
498 if (!add
) // Are we deleting a route?
499 s
= 0; // Caching the session as '0' is the same as uncaching.
501 cache_ipv6map(ip
, prefixlen
, s
);
507 // defined in linux/ipv6.h, but tricky to include from user-space
508 // TODO: move routing to use netlink rather than ioctl
510 struct in6_addr ifr6_addr
;
511 __u32 ifr6_prefixlen
;
512 unsigned int ifr6_ifindex
;
516 // Set up TUN interface
517 static void inittun(void)
520 struct in6_ifreq ifr6
;
521 struct sockaddr_in sin
= {0};
522 memset(&ifr
, 0, sizeof(ifr
));
523 ifr
.ifr_flags
= IFF_TUN
;
525 tunfd
= open(TUNDEVICE
, O_RDWR
);
528 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
532 int flags
= fcntl(tunfd
, F_GETFL
, 0);
533 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
535 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
537 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
540 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevice
));
541 strncpy(config
->tundevice
, ifr
.ifr_name
, sizeof(config
->tundevice
) - 1);
542 ifrfd
= socket(PF_INET
, SOCK_DGRAM
, IPPROTO_IP
);
544 sin
.sin_family
= AF_INET
;
545 sin
.sin_addr
.s_addr
= config
->bind_address
? config
->bind_address
: 0x01010101; // 1.1.1.1
546 memcpy(&ifr
.ifr_addr
, &sin
, sizeof(struct sockaddr
));
548 if (ioctl(ifrfd
, SIOCSIFADDR
, (void *) &ifr
) < 0)
550 LOG(0, 0, 0, "Error setting tun address: %s\n", strerror(errno
));
553 /* Bump up the qlen to deal with bursts from the network */
555 if (ioctl(ifrfd
, SIOCSIFTXQLEN
, (void *) &ifr
) < 0)
557 LOG(0, 0, 0, "Error setting tun queue length: %s\n", strerror(errno
));
560 /* set MTU to modem MRU */
562 if (ioctl(ifrfd
, SIOCSIFMTU
, (void *) &ifr
) < 0)
564 LOG(0, 0, 0, "Error setting tun MTU: %s\n", strerror(errno
));
567 ifr
.ifr_flags
= IFF_UP
;
568 if (ioctl(ifrfd
, SIOCSIFFLAGS
, (void *) &ifr
) < 0)
570 LOG(0, 0, 0, "Error setting tun flags: %s\n", strerror(errno
));
573 if (ioctl(ifrfd
, SIOCGIFINDEX
, (void *) &ifr
) < 0)
575 LOG(0, 0, 0, "Error getting tun ifindex: %s\n", strerror(errno
));
578 tunidx
= ifr
.ifr_ifindex
;
580 // Only setup IPv6 on the tun device if we have a configured prefix
581 if (config
->ipv6_prefix
.s6_addr
[0]) {
582 ifr6fd
= socket(PF_INET6
, SOCK_DGRAM
, 0);
584 // Link local address is FE80::1
585 memset(&ifr6
.ifr6_addr
, 0, sizeof(ifr6
.ifr6_addr
));
586 ifr6
.ifr6_addr
.s6_addr
[0] = 0xFE;
587 ifr6
.ifr6_addr
.s6_addr
[1] = 0x80;
588 ifr6
.ifr6_addr
.s6_addr
[15] = 1;
589 ifr6
.ifr6_prefixlen
= 64;
590 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
591 if (ioctl(ifr6fd
, SIOCSIFADDR
, (void *) &ifr6
) < 0)
593 LOG(0, 0, 0, "Error setting tun IPv6 link local address:"
594 " %s\n", strerror(errno
));
597 // Global address is prefix::1
598 memset(&ifr6
.ifr6_addr
, 0, sizeof(ifr6
.ifr6_addr
));
599 ifr6
.ifr6_addr
= config
->ipv6_prefix
;
600 ifr6
.ifr6_addr
.s6_addr
[15] = 1;
601 ifr6
.ifr6_prefixlen
= 64;
602 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
603 if (ioctl(ifr6fd
, SIOCSIFADDR
, (void *) &ifr6
) < 0)
605 LOG(0, 0, 0, "Error setting tun IPv6 global address: %s\n",
612 static void initudp(void)
615 struct sockaddr_in addr
;
618 memset(&addr
, 0, sizeof(addr
));
619 addr
.sin_family
= AF_INET
;
620 addr
.sin_port
= htons(L2TPPORT
);
621 addr
.sin_addr
.s_addr
= config
->bind_address
;
622 udpfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
623 setsockopt(udpfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
625 int flags
= fcntl(udpfd
, F_GETFL
, 0);
626 fcntl(udpfd
, F_SETFL
, flags
| O_NONBLOCK
);
628 if (bind(udpfd
, (void *) &addr
, sizeof(addr
)) < 0)
630 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
635 memset(&addr
, 0, sizeof(addr
));
636 addr
.sin_family
= AF_INET
;
637 addr
.sin_port
= htons(NSCTL_PORT
);
638 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
639 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
640 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
641 if (bind(controlfd
, (void *) &addr
, sizeof(addr
)) < 0)
643 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
647 // Dynamic Authorization Extensions to RADIUS
648 memset(&addr
, 0, sizeof(addr
));
649 addr
.sin_family
= AF_INET
;
650 addr
.sin_port
= htons(config
->radius_dae_port
);
651 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
652 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
653 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
654 if (bind(daefd
, (void *) &addr
, sizeof(addr
)) < 0)
656 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
661 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
665 // Find session by IP, < 1 for not found
667 // Confusingly enough, this 'ip' must be
668 // in _network_ order. This being the common
669 // case when looking it up from IP packet headers.
671 // We actually use this cache for two things.
672 // #1. For used IP addresses, this maps to the
673 // session ID that it's used by.
674 // #2. For un-used IP addresses, this maps to the
675 // index into the pool table that contains that
679 static int lookup_ipmap(in_addr_t ip
)
681 uint8_t *a
= (uint8_t *) &ip
;
682 uint8_t **d
= (uint8_t **) ip_hash
;
684 if (!(d
= (uint8_t **) d
[(size_t) *a
++])) return 0;
685 if (!(d
= (uint8_t **) d
[(size_t) *a
++])) return 0;
686 if (!(d
= (uint8_t **) d
[(size_t) *a
++])) return 0;
688 return (int) (intptr_t) d
[(size_t) *a
];
691 static int lookup_ipv6map(struct in6_addr ip
)
693 struct ipv6radix
*curnode
;
696 char ipv6addr
[INET6_ADDRSTRLEN
];
698 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
702 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
704 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
709 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
710 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
717 sessionidt
sessionbyip(in_addr_t ip
)
719 int s
= lookup_ipmap(ip
);
722 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
723 return (sessionidt
) s
;
728 sessionidt
sessionbyipv6(struct in6_addr ip
)
731 CSTAT(sessionbyipv6
);
733 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
734 (ip
.s6_addr
[0] == 0xFE &&
735 ip
.s6_addr
[1] == 0x80 &&
736 ip
.s6_addr16
[1] == 0 &&
737 ip
.s6_addr16
[2] == 0 &&
738 ip
.s6_addr16
[3] == 0)) {
739 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
741 s
= lookup_ipv6map(ip
);
744 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
751 // Take an IP address in HOST byte order and
752 // add it to the sessionid by IP cache.
754 // (It's actually cached in network order)
756 static void cache_ipmap(in_addr_t ip
, int s
)
758 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
759 uint8_t *a
= (uint8_t *) &nip
;
760 uint8_t **d
= (uint8_t **) ip_hash
;
763 for (i
= 0; i
< 3; i
++)
765 if (!d
[(size_t) a
[i
]])
767 if (!(d
[(size_t) a
[i
]] = calloc(256, sizeof(void *))))
771 d
= (uint8_t **) d
[(size_t) a
[i
]];
774 d
[(size_t) a
[3]] = (uint8_t *) (intptr_t) s
;
777 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
780 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
781 // else a map to an ip pool index.
784 static void uncache_ipmap(in_addr_t ip
)
786 cache_ipmap(ip
, 0); // Assign it to the NULL session.
789 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, int s
)
793 struct ipv6radix
*curnode
;
794 char ipv6addr
[INET6_ADDRSTRLEN
];
796 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
798 bytes
= prefixlen
>> 3;
801 if (curnode
->branch
== NULL
)
803 if (!(curnode
->branch
= calloc(256,
804 sizeof (struct ipv6radix
))))
807 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
814 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
815 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
819 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
820 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
826 // CLI list to dump current ipcache.
828 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
830 char **d
= (char **) ip_hash
, **e
, **f
, **g
;
834 if (CLI_HELP_REQUESTED
)
835 return CLI_HELP_NO_ARGS
;
837 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
839 for (i
= 0; i
< 256; ++i
)
844 for (j
= 0; j
< 256; ++j
)
849 for (k
= 0; k
< 256; ++k
)
854 for (l
= 0; l
< 256; ++l
)
858 cli_print(cli
, "%7d %d.%d.%d.%d", (int) (intptr_t) g
[l
], i
, j
, k
, l
);
864 cli_print(cli
, "%d entries in cache", count
);
869 // Find session by username, 0 for not found
870 // walled garden users aren't authenticated, so the username is
871 // reasonably useless. Ignore them to avoid incorrect actions
873 // This is VERY inefficent. Don't call it often. :)
875 sessionidt
sessionbyuser(char *username
)
878 CSTAT(sessionbyuser
);
880 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
882 if (!session
[s
].opened
)
885 if (session
[s
].walled_garden
)
886 continue; // Skip walled garden users.
888 if (!strncmp(session
[s
].user
, username
, 128))
892 return 0; // Not found.
895 void send_garp(in_addr_t ip
)
901 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
904 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
907 memset(&ifr
, 0, sizeof(ifr
));
908 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
909 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
911 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
915 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
916 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
918 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
923 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
926 static sessiont
*sessiontbysessionidt(sessionidt s
)
928 if (!s
|| s
>= MAXSESSION
) return NULL
;
932 static sessionidt
sessionidtbysessiont(sessiont
*s
)
934 sessionidt val
= s
-session
;
935 if (s
< session
|| val
>= MAXSESSION
) return 0;
939 // actually send a control message for a specific tunnel
940 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
942 struct sockaddr_in addr
;
948 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
949 STAT(tunnel_tx_errors
);
955 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
956 STAT(tunnel_tx_errors
);
960 memset(&addr
, 0, sizeof(addr
));
961 addr
.sin_family
= AF_INET
;
962 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
963 addr
.sin_port
= htons(tunnel
[t
].port
);
965 // sequence expected, if sequence in message
966 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
968 // If this is a control message, deal with retries
971 tunnel
[t
].last
= time_now
; // control message sent
972 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
975 STAT(tunnel_retries
);
976 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
980 if (sendto(udpfd
, buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
982 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
983 strerror(errno
), udpfd
, buf
, l
, inet_ntoa(addr
.sin_addr
));
984 STAT(tunnel_tx_errors
);
988 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
989 STAT(tunnel_tx_packets
);
990 INC_STAT(tunnel_tx_bytes
, l
);
994 // Tiny helper function to write data to
997 int tun_write(uint8_t * data
, int size
)
999 return write(tunfd
, data
, size
);
1002 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1003 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1005 int d
= (tcp
[12] >> 4) * 4;
1012 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1015 if (tcp
+ d
> buf
+ len
) // short?
1023 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1026 if (mss
+ 2 > data
) return; // short?
1030 if (*opts
== 0) return; // end of options
1031 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1034 opts
+= opts
[1]; // skip over option
1037 if (!mss
) return; // not found
1038 orig
= ntohs(*(uint16_t *) mss
);
1040 if (orig
<= MSS
) return; // mss OK
1042 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1043 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1044 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1045 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1048 *(int16_t *) mss
= htons(MSS
);
1050 // adjust checksum (see rfc1141)
1051 sum
= orig
+ (~MSS
& 0xffff);
1052 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1053 sum
= (sum
& 0xffff) + (sum
>> 16);
1054 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1057 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1061 // Skip the four extra bytes
1066 // Process this frame
1074 proto
= ntohs(*(uint16_t *) p
);
1083 LOG(4, s
, t
, "MPPP: Session %u is closing. Don't process PPP packets\n", s
);
1084 return; // closing session, PPP not processed
1087 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1088 processipin(s
, t
, p
, l
);
1090 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1094 LOG(4, s
, t
, "MPPP: Session %u is closing. Don't process PPP packets\n", s
);
1095 return; // closing session, PPP not processed
1098 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1099 processipv6in(s
, t
, p
, l
);
1103 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1107 // process outgoing (to tunnel) IP
1109 static void processipout(uint8_t *buf
, int len
)
1116 uint8_t *data
= buf
; // Keep a copy of the originals.
1119 uint8_t b1
[MAXETHER
+ 20];
1120 uint8_t b2
[MAXETHER
+ 20];
1122 CSTAT(processipout
);
1124 if (len
< MIN_IP_SIZE
)
1126 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1127 STAT(tun_rx_errors
);
1130 if (len
>= MAXETHER
)
1132 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1133 STAT(tun_rx_errors
);
1137 // Skip the tun header
1141 // Got an IP header now
1142 if (*(uint8_t *)(buf
) >> 4 != 4)
1144 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1148 ip
= *(uint32_t *)(buf
+ 16);
1149 if (!(s
= sessionbyip(ip
)))
1151 // Is this a packet for a session that doesn't exist?
1152 static int rate
= 0; // Number of ICMP packets we've sent this second.
1153 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1155 if (last
!= time_now
)
1161 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1163 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1164 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1165 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1169 t
= session
[s
].tunnel
;
1171 sp
->last_data
= time_now
;
1173 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1174 if (config
->max_packets
> 0)
1176 if (sess_local
[s
].last_packet_out
== TIME
)
1178 int max
= config
->max_packets
;
1180 // All packets for throttled sessions are handled by the
1181 // master, so further limit by using the throttle rate.
1182 // A bit of a kludge, since throttle rate is in kbps,
1183 // but should still be generous given our average DSL
1184 // packet size is 200 bytes: a limit of 28kbps equates
1185 // to around 180 packets per second.
1186 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1187 max
= sp
->throttle_out
;
1189 if (++sess_local
[s
].packets_out
> max
)
1191 sess_local
[s
].packets_dropped
++;
1197 if (sess_local
[s
].packets_dropped
)
1199 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1200 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1201 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1202 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1206 sess_local
[s
].last_packet_out
= TIME
;
1207 sess_local
[s
].packets_out
= 1;
1208 sess_local
[s
].packets_dropped
= 0;
1212 // run access-list if any
1213 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1216 // adjust MSS on SYN and SYN,ACK packets with options
1217 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1219 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1220 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1221 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1226 // Are we throttling this session?
1227 if (config
->cluster_iam_master
)
1228 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1230 master_throttle_packet(sp
->tbf_out
, data
, size
);
1234 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1236 // We are walled-gardening this
1237 master_garden_packet(s
, data
, size
);
1241 // Add on L2TP header
1244 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1246 bid
= session
[s
].bundle
;
1247 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1248 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %u\n", s
);
1251 // Partition the packet to 2 fragments
1252 uint32_t frag1len
= len
/ 2;
1253 uint32_t frag2len
= len
- frag1len
;
1254 uint8_t *p
= makeppp(b1
, sizeof(b1
), buf
, frag1len
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1258 tunnelsend(b1
, frag1len
+ (p
-b1
), t
); // send it...
1259 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1260 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %u\n", s
);
1261 q
= makeppp(b2
, sizeof(b2
), buf
+frag1len
, frag2len
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1263 tunnelsend(b2
, frag2len
+ (q
-b2
), t
); // send it...
1266 // Send it as one frame
1267 uint8_t *p
= makeppp(b1
, sizeof(b1
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1269 tunnelsend(b1
, len
+ (p
-b1
), t
); // send it...
1274 uint8_t *p
= makeppp(b1
, sizeof(b1
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1276 tunnelsend(b1
, len
+ (p
-b1
), t
); // send it...
1280 // Snooping this session, send it to intercept box
1281 if (sp
->snoop_ip
&& sp
->snoop_port
)
1282 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1284 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1285 sp
->cout_delta
+= len
;
1289 sess_local
[s
].cout
+= len
; // To send to master..
1290 sess_local
[s
].pout
++;
1293 // process outgoing (to tunnel) IPv6
1295 static void processipv6out(uint8_t * buf
, int len
)
1301 struct in6_addr ip6
;
1303 uint8_t *data
= buf
; // Keep a copy of the originals.
1306 uint8_t b
[MAXETHER
+ 20];
1308 CSTAT(processipv6out
);
1310 if (len
< MIN_IP_SIZE
)
1312 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1313 STAT(tunnel_tx_errors
);
1316 if (len
>= MAXETHER
)
1318 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1319 STAT(tunnel_tx_errors
);
1323 // Skip the tun header
1327 // Got an IP header now
1328 if (*(uint8_t *)(buf
) >> 4 != 6)
1330 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1334 ip6
= *(struct in6_addr
*)(buf
+24);
1335 s
= sessionbyipv6(ip6
);
1339 ip
= *(uint32_t *)(buf
+ 32);
1340 s
= sessionbyip(ip
);
1345 // Is this a packet for a session that doesn't exist?
1346 static int rate
= 0; // Number of ICMP packets we've sent this second.
1347 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1349 if (last
!= time_now
)
1355 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1357 // FIXME: Should send icmp6 host unreachable
1361 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1363 bundleidt bid
= session
[s
].bundle
;
1364 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1365 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1367 t
= session
[s
].tunnel
;
1369 sp
->last_data
= time_now
;
1371 // FIXME: add DoS prevention/filters?
1375 // Are we throttling this session?
1376 if (config
->cluster_iam_master
)
1377 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1379 master_throttle_packet(sp
->tbf_out
, data
, size
);
1382 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1384 // We are walled-gardening this
1385 master_garden_packet(s
, data
, size
);
1389 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1391 // Add on L2TP header
1393 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1395 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1398 // Snooping this session, send it to intercept box
1399 if (sp
->snoop_ip
&& sp
->snoop_port
)
1400 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1402 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1403 sp
->cout_delta
+= len
;
1407 sess_local
[s
].cout
+= len
; // To send to master..
1408 sess_local
[s
].pout
++;
1412 // Helper routine for the TBF filters.
1413 // Used to send queued data in to the user!
1415 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1421 uint8_t b
[MAXETHER
+ 20];
1423 if (len
< 0 || len
> MAXETHER
)
1425 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1429 // Skip the tun header
1433 ip
= *(in_addr_t
*)(buf
+ 16);
1438 t
= session
[s
].tunnel
;
1441 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1443 // Add on L2TP header
1445 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1447 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1450 // Snooping this session.
1451 if (sp
->snoop_ip
&& sp
->snoop_port
)
1452 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1454 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1455 sp
->cout_delta
+= len
;
1459 sess_local
[s
].cout
+= len
; // To send to master..
1460 sess_local
[s
].pout
++;
1463 // add an AVP (16 bit)
1464 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1466 uint16_t l
= (m
? 0x8008 : 0x0008);
1467 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1468 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1469 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1470 *(uint16_t *) (c
->buf
+ c
->length
+ 6) = htons(val
);
1474 // add an AVP (32 bit)
1475 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1477 uint16_t l
= (m
? 0x800A : 0x000A);
1478 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1479 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1480 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1481 *(uint32_t *) (c
->buf
+ c
->length
+ 6) = htonl(val
);
1485 // add an AVP (string)
1486 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1488 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1489 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1490 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1491 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1492 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1493 c
->length
+= 6 + strlen(val
);
1497 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1499 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1500 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1501 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1502 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1503 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1504 c
->length
+= 6 + len
;
1507 // new control connection
1508 static controlt
*controlnew(uint16_t mtype
)
1512 c
= malloc(sizeof(controlt
));
1516 controlfree
= c
->next
;
1520 *(uint16_t *) (c
->buf
+ 0) = htons(0xC802); // flags/ver
1522 control16(c
, 0, mtype
, 1);
1526 // send zero block if nothing is waiting
1528 static void controlnull(tunnelidt t
)
1531 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1534 *(uint16_t *) (buf
+ 0) = htons(0xC802); // flags/ver
1535 *(uint16_t *) (buf
+ 2) = htons(12); // length
1536 *(uint16_t *) (buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1537 *(uint16_t *) (buf
+ 6) = htons(0); // session
1538 *(uint16_t *) (buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1539 *(uint16_t *) (buf
+ 10) = htons(tunnel
[t
].nr
); // sequence
1540 tunnelsend(buf
, 12, t
);
1543 // add a control message to a tunnel, and send if within window
1544 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1546 *(uint16_t *) (c
->buf
+ 2) = htons(c
->length
); // length
1547 *(uint16_t *) (c
->buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1548 *(uint16_t *) (c
->buf
+ 6) = htons(far
); // session
1549 *(uint16_t *) (c
->buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1550 tunnel
[t
].ns
++; // advance sequence
1551 // link in message in to queue
1552 if (tunnel
[t
].controlc
)
1553 tunnel
[t
].controle
->next
= c
;
1555 tunnel
[t
].controls
= c
;
1557 tunnel
[t
].controle
= c
;
1558 tunnel
[t
].controlc
++;
1560 // send now if space in window
1561 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1563 tunnel
[t
].try = 0; // first send
1564 tunnelsend(c
->buf
, c
->length
, t
);
1569 // Throttle or Unthrottle a session
1571 // Throttle the data from/to through a session to no more than
1572 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1575 // If either value is -1, the current value is retained for that
1578 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1580 if (!session
[s
].opened
)
1581 return; // No-one home.
1583 if (!*session
[s
].user
)
1584 return; // User not logged in
1588 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1589 if (session
[s
].tbf_in
)
1590 free_tbf(session
[s
].tbf_in
);
1593 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1595 session
[s
].tbf_in
= 0;
1597 session
[s
].throttle_in
= rate_in
;
1602 int bytes
= rate_out
* 1024 / 8;
1603 if (session
[s
].tbf_out
)
1604 free_tbf(session
[s
].tbf_out
);
1607 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1609 session
[s
].tbf_out
= 0;
1611 session
[s
].throttle_out
= rate_out
;
1615 // add/remove filters from session (-1 = no change)
1616 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1618 if (!session
[s
].opened
)
1619 return; // No-one home.
1621 if (!*session
[s
].user
)
1622 return; // User not logged in
1625 if (filter_in
> MAXFILTER
) filter_in
= -1;
1626 if (filter_out
> MAXFILTER
) filter_out
= -1;
1627 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
1628 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
1632 if (session
[s
].filter_in
)
1633 ip_filters
[session
[s
].filter_in
- 1].used
--;
1636 ip_filters
[filter_in
- 1].used
++;
1638 session
[s
].filter_in
= filter_in
;
1641 if (filter_out
>= 0)
1643 if (session
[s
].filter_out
)
1644 ip_filters
[session
[s
].filter_out
- 1].used
--;
1647 ip_filters
[filter_out
- 1].used
++;
1649 session
[s
].filter_out
= filter_out
;
1653 // start tidy shutdown of session
1654 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
1656 int walled_garden
= session
[s
].walled_garden
;
1659 CSTAT(sessionshutdown
);
1661 if (!session
[s
].opened
)
1663 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
1664 return; // not a live session
1667 if (!session
[s
].die
)
1669 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
1670 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
1671 run_plugins(PLUGIN_KILL_SESSION
, &data
);
1674 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
1676 // RADIUS Stop message
1677 uint16_t r
= radiusnew(s
);
1680 // stop, if not already trying
1681 if (radius
[r
].state
!= RADIUSSTOP
)
1683 radius
[r
].term_cause
= term_cause
;
1684 radius
[r
].term_msg
= reason
;
1685 radiussend(r
, RADIUSSTOP
);
1689 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
1691 // Save counters to dump to accounting file
1692 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
1693 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
1697 { // IP allocated, clear and unroute
1700 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
1702 if ((session
[s
].ip
& session
[s
].route
[r
].mask
) ==
1703 (session
[s
].route
[r
].ip
& session
[s
].route
[r
].mask
))
1706 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].mask
, 0, 0);
1707 session
[s
].route
[r
].ip
= 0;
1710 if (session
[s
].ip_pool_index
== -1) // static ip
1712 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
1718 // unroute IPv6, if setup
1719 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
)
1720 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
1723 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
1724 throttle_session(s
, 0, 0);
1728 controlt
*c
= controlnew(14); // sending CDN
1732 *(uint16_t *) buf
= htons(cdn_result
);
1733 *(uint16_t *) (buf
+2) = htons(cdn_error
);
1734 controlb(c
, 1, buf
, 4, 1);
1737 control16(c
, 1, cdn_result
, 1);
1739 control16(c
, 14, s
, 1); // assigned session (our end)
1740 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
1743 if (!session
[s
].die
)
1744 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
1746 // update filter refcounts
1747 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
1748 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
1751 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
1752 sess_local
[s
].lcp
.restart
= 0;
1753 sess_local
[s
].ipcp
.restart
= 0;
1754 sess_local
[s
].ipv6cp
.restart
= 0;
1755 sess_local
[s
].ccp
.restart
= 0;
1757 cluster_send_session(s
);
1760 void sendipcp(sessionidt s
, tunnelidt t
)
1762 uint8_t buf
[MAXETHER
];
1766 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
1768 if (!session
[s
].unique_id
)
1770 if (!++last_id
) ++last_id
; // skip zero
1771 session
[s
].unique_id
= last_id
;
1774 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
1778 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
1779 *(uint16_t *) (q
+ 2) = htons(10); // packet length
1780 q
[4] = 3; // ip address option
1781 q
[5] = 6; // option length
1782 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
1783 config
->bind_address
? config
->bind_address
:
1784 my_address
; // send my IP
1786 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
1787 restart_timer(s
, ipcp
);
1790 void sendipv6cp(sessionidt s
, tunnelidt t
)
1792 uint8_t buf
[MAXETHER
];
1796 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
1798 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
1802 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
1803 // only send one type
1805 *(uint16_t *) (q
+ 2) = htons(14);
1806 q
[4] = 1; // interface identifier option
1807 q
[5] = 10; // option length
1808 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
1809 *(uint32_t *) (q
+ 10) = 0;
1812 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
1813 restart_timer(s
, ipv6cp
);
1816 static void sessionclear(sessionidt s
)
1818 memset(&session
[s
], 0, sizeof(session
[s
]));
1819 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
1820 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
1822 session
[s
].tunnel
= T_FREE
; // Mark it as free.
1823 session
[s
].next
= sessionfree
;
1827 // kill a session now
1828 void sessionkill(sessionidt s
, char *reason
)
1834 if (!session
[s
].opened
) // not alive
1837 if (session
[s
].next
)
1839 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
1843 session
[s
].die
= TIME
;
1844 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
1845 if (sess_local
[s
].radius
)
1846 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
1848 LOG(2, s
, session
[s
].tunnel
, "Kill session %u (%s): %s\n", s
, session
[s
].user
, reason
);
1849 if ((b
= session
[s
].bundle
))
1851 // This session was part of a bundle
1852 bundle
[b
].num_of_links
--;
1853 LOG(3, s
, 0, "MPPP: Dropping member link: %u from bundle %u\n", s
, b
);
1854 if (bundle
[b
].num_of_links
== 0)
1857 LOG(3, s
, 0, "MPPP: Kill bundle: %u (No remaing member links)\n", b
);
1861 // Adjust the members array to accomodate the new change
1862 uint8_t mem_num
= 0;
1863 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
1864 if (bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
1867 for (ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
1869 if (bundle
[b
].members
[ml
] == s
)
1875 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
1876 LOG(3, s
, 0, "MPPP: Adjusted member links array\n");
1879 cluster_send_bundle(b
);
1882 cluster_send_session(s
);
1885 static void tunnelclear(tunnelidt t
)
1888 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
1889 tunnel
[t
].state
= TUNNELFREE
;
1892 static void bundleclear(bundleidt b
)
1895 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
1896 bundle
[b
].state
= BUNDLEFREE
;
1899 // kill a tunnel now
1900 static void tunnelkill(tunnelidt t
, char *reason
)
1907 tunnel
[t
].state
= TUNNELDIE
;
1909 // free control messages
1910 while ((c
= tunnel
[t
].controls
))
1912 controlt
* n
= c
->next
;
1913 tunnel
[t
].controls
= n
;
1914 tunnel
[t
].controlc
--;
1915 c
->next
= controlfree
;
1919 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1920 if (session
[s
].tunnel
== t
)
1921 sessionkill(s
, reason
);
1925 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
1926 cli_tunnel_actions
[t
].action
= 0;
1927 cluster_send_tunnel(t
);
1930 // shut down a tunnel cleanly
1931 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
1935 CSTAT(tunnelshutdown
);
1937 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
1939 // never set up, can immediately kill
1940 tunnelkill(t
, reason
);
1943 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
1946 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1947 if (session
[s
].tunnel
== t
)
1948 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
1950 tunnel
[t
].state
= TUNNELDIE
;
1951 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
1952 cluster_send_tunnel(t
);
1953 // TBA - should we wait for sessions to stop?
1956 controlt
*c
= controlnew(4); // sending StopCCN
1961 *(uint16_t *) buf
= htons(result
);
1962 *(uint16_t *) (buf
+2) = htons(error
);
1965 int m
= strlen(msg
);
1966 if (m
+ 4 > sizeof(buf
))
1967 m
= sizeof(buf
) - 4;
1969 memcpy(buf
+4, msg
, m
);
1973 controlb(c
, 1, buf
, l
, 1);
1976 control16(c
, 1, result
, 1);
1978 control16(c
, 9, t
, 1); // assigned tunnel (our end)
1979 controladd(c
, 0, t
); // send the message
1983 // read and process packet on tunnel (UDP)
1984 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
)
1986 uint8_t *chapresponse
= NULL
;
1987 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
1988 uint8_t *p
= buf
+ 2;
1995 LOG_HEX(5, "UDP Data", buf
, len
);
1996 STAT(tunnel_rx_packets
);
1997 INC_STAT(tunnel_rx_bytes
, len
);
2000 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2001 STAT(tunnel_rx_errors
);
2004 if ((buf
[1] & 0x0F) != 2)
2006 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2007 STAT(tunnel_rx_errors
);
2012 l
= ntohs(*(uint16_t *) p
);
2015 t
= ntohs(*(uint16_t *) p
);
2017 s
= ntohs(*(uint16_t *) p
);
2019 if (s
>= MAXSESSION
)
2021 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2022 STAT(tunnel_rx_errors
);
2027 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2028 STAT(tunnel_rx_errors
);
2033 ns
= ntohs(*(uint16_t *) p
);
2035 nr
= ntohs(*(uint16_t *) p
);
2040 uint16_t o
= ntohs(*(uint16_t *) p
);
2045 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2046 STAT(tunnel_rx_errors
);
2051 // used to time out old tunnels
2052 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2053 tunnel
[t
].lastrec
= time_now
;
2057 uint16_t message
= 0xFFFF; // message type
2059 uint8_t mandatory
= 0;
2060 uint16_t asession
= 0; // assigned session
2061 uint32_t amagic
= 0; // magic number
2062 uint8_t aflags
= 0; // flags from last LCF
2063 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2064 char called
[MAXTEL
] = ""; // called number
2065 char calling
[MAXTEL
] = ""; // calling number
2067 if (!config
->cluster_iam_master
)
2069 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2073 // control messages must have bits 0x80|0x40|0x08
2074 // (type, length and sequence) set, and bits 0x02|0x01
2075 // (offset and priority) clear
2076 if ((*buf
& 0xCB) != 0xC8)
2078 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2079 STAT(tunnel_rx_errors
);
2083 // check for duplicate tunnel open message
2089 // Is this a duplicate of the first packet? (SCCRQ)
2091 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2093 if (tunnel
[i
].state
!= TUNNELOPENING
||
2094 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2095 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2098 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2103 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2104 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2106 // if no tunnel specified, assign one
2109 if (!(t
= new_tunnel()))
2111 LOG(1, 0, 0, "No more tunnels\n");
2112 STAT(tunnel_overflow
);
2116 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2117 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2118 tunnel
[t
].window
= 4; // default window
2119 STAT(tunnel_created
);
2120 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2121 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2124 // If the 'ns' just received is not the 'nr' we're
2125 // expecting, just send an ack and drop it.
2127 // if 'ns' is less, then we got a retransmitted packet.
2128 // if 'ns' is greater than missed a packet. Either way
2129 // we should ignore it.
2130 if (ns
!= tunnel
[t
].nr
)
2132 // is this the sequence we were expecting?
2133 STAT(tunnel_rx_errors
);
2134 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2135 t
, ns
, tunnel
[t
].nr
);
2137 if (l
) // Is this not a ZLB?
2142 // check sequence of this message
2144 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2145 // some to clear maybe?
2146 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2148 controlt
*c
= tunnel
[t
].controls
;
2149 tunnel
[t
].controls
= c
->next
;
2150 tunnel
[t
].controlc
--;
2151 c
->next
= controlfree
;
2154 tunnel
[t
].try = 0; // we have progress
2157 // receiver advance (do here so quoted correctly in any sends below)
2158 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2159 if (skip
< 0) skip
= 0;
2160 if (skip
< tunnel
[t
].controlc
)
2162 // some control packets can now be sent that were previous stuck out of window
2163 int tosend
= tunnel
[t
].window
- skip
;
2164 controlt
*c
= tunnel
[t
].controls
;
2172 tunnel
[t
].try = 0; // first send
2173 tunnelsend(c
->buf
, c
->length
, t
);
2178 if (!tunnel
[t
].controlc
)
2179 tunnel
[t
].retry
= 0; // caught up
2182 { // if not a null message
2187 // default disconnect cause/message on receipt
2188 // of CDN (set to more specific value from
2189 // attribute 46 if present below).
2190 int disc_cause
= TERM_NAS_REQUEST
;
2191 char const *disc_reason
= "Closed (Received CDN).";
2194 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2196 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2203 LOG(1, s
, t
, "Invalid length in AVP\n");
2204 STAT(tunnel_rx_errors
);
2209 if (flags
& 0x3C) // reserved bits, should be clear
2211 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2213 result
= 2; // general error
2214 error
= 3; // reserved field non-zero
2219 if (*(uint16_t *) (b
))
2221 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2223 result
= 2; // general error
2224 error
= 6; // generic vendor-specific error
2225 msg
= "unsupported vendor-specific";
2229 mtype
= ntohs(*(uint16_t *) (b
));
2237 // handle hidden AVPs
2238 if (!*config
->l2tp_secret
)
2240 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2242 result
= 2; // general error
2243 error
= 6; // generic vendor-specific error
2244 msg
= "secret not specified";
2247 if (!session
[s
].random_vector_length
)
2249 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2251 result
= 2; // general error
2252 error
= 6; // generic
2253 msg
= "no random vector";
2258 LOG(2, s
, t
, "Short hidden AVP.\n");
2260 result
= 2; // general error
2261 error
= 2; // length is wrong
2267 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2269 orig_len
= ntohs(*(uint16_t *) b
);
2270 if (orig_len
> n
+ 2)
2272 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2276 result
= 2; // general error
2277 error
= 2; // length is wrong
2286 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2287 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2291 case 0: // message type
2292 message
= ntohs(*(uint16_t *) b
);
2293 mandatory
= flags
& 0x80;
2294 LOG(4, s
, t
, " Message type = %u (%s)\n", *b
, l2tp_code(message
));
2296 case 1: // result code
2298 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2299 const char* resdesc
= "(unknown)";
2302 resdesc
= l2tp_stopccn_result_code(rescode
);
2304 else if (message
== 14)
2306 resdesc
= l2tp_cdn_result_code(rescode
);
2309 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2312 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2313 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, l2tp_error_code(errcode
));
2316 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2321 case 2: // protocol version
2323 version
= ntohs(*(uint16_t *) (b
));
2324 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2325 if (version
&& version
!= 0x0100)
2326 { // allow 0.0 and 1.0
2327 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2329 result
= 5; // unspported protocol version
2330 error
= 0x0100; // supported version
2336 case 3: // framing capabilities
2338 case 4: // bearer capabilities
2340 case 5: // tie breaker
2341 // We never open tunnels, so we don't care about tie breakers
2343 case 6: // firmware revision
2345 case 7: // host name
2346 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2347 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2348 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2349 // TBA - to send to RADIUS
2351 case 8: // vendor name
2352 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2353 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2354 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2356 case 9: // assigned tunnel
2357 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2358 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2360 case 10: // rx window
2361 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2362 if (!tunnel
[t
].window
)
2363 tunnel
[t
].window
= 1; // window of 0 is silly
2364 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2366 case 11: // Challenge
2368 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2369 build_chap_response(b
, 2, n
, &chapresponse
);
2372 case 13: // Response
2373 // Why did they send a response? We never challenge.
2374 LOG(2, s
, t
, " received unexpected challenge response\n");
2377 case 14: // assigned session
2378 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2379 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2381 case 15: // call serial number
2382 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2384 case 18: // bearer type
2385 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2388 case 19: // framing type
2389 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2392 case 21: // called number
2393 memset(called
, 0, sizeof(called
));
2394 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2395 LOG(4, s
, t
, " Called <%s>\n", called
);
2397 case 22: // calling number
2398 memset(calling
, 0, sizeof(calling
));
2399 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2400 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2404 case 24: // tx connect speed
2407 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2411 // AS5300s send connect speed as a string
2413 memset(tmp
, 0, sizeof(tmp
));
2414 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2415 session
[s
].tx_connect_speed
= atol(tmp
);
2417 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2419 case 38: // rx connect speed
2422 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2426 // AS5300s send connect speed as a string
2428 memset(tmp
, 0, sizeof(tmp
));
2429 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2430 session
[s
].rx_connect_speed
= atol(tmp
);
2432 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2434 case 25: // Physical Channel ID
2436 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2437 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2440 case 29: // Proxy Authentication Type
2442 uint16_t atype
= ntohs(*(uint16_t *)b
);
2443 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2446 case 30: // Proxy Authentication Name
2449 memset(authname
, 0, sizeof(authname
));
2450 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2451 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2455 case 31: // Proxy Authentication Challenge
2457 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2460 case 32: // Proxy Authentication ID
2462 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2463 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2466 case 33: // Proxy Authentication Response
2467 LOG(4, s
, t
, " Proxy Auth Response\n");
2469 case 27: // last sent lcp
2470 { // find magic number
2471 uint8_t *p
= b
, *e
= p
+ n
;
2472 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2474 if (*p
== 5 && p
[1] == 6) // Magic-Number
2475 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2476 else if (*p
== 7) // Protocol-Field-Compression
2477 aflags
|= SESSION_PFC
;
2478 else if (*p
== 8) // Address-and-Control-Field-Compression
2479 aflags
|= SESSION_ACFC
;
2484 case 28: // last recv lcp confreq
2486 case 26: // Initial Received LCP CONFREQ
2488 case 39: // seq required - we control it as an LNS anyway...
2490 case 36: // Random Vector
2491 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2492 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2493 if (n
> sizeof(session
[s
].random_vector
))
2494 n
= sizeof(session
[s
].random_vector
);
2495 memcpy(session
[s
].random_vector
, b
, n
);
2496 session
[s
].random_vector_length
= n
;
2498 case 46: // ppp disconnect cause
2501 uint16_t code
= ntohs(*(uint16_t *) b
);
2502 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2503 uint8_t dir
= *(b
+ 4);
2505 LOG(4, s
, t
, " PPP disconnect cause "
2506 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2507 code
, proto
, dir
, n
- 5, b
+ 5);
2511 case 1: // admin disconnect
2512 disc_cause
= TERM_ADMIN_RESET
;
2513 disc_reason
= "Administrative disconnect";
2515 case 3: // lcp terminate
2516 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2517 disc_cause
= TERM_USER_REQUEST
;
2518 disc_reason
= "Normal disconnection";
2520 case 4: // compulsory encryption unavailable
2521 if (dir
!= 1) break; // 1=refused by peer, 2=local
2522 disc_cause
= TERM_USER_ERROR
;
2523 disc_reason
= "Compulsory encryption refused";
2525 case 5: // lcp: fsm timeout
2526 disc_cause
= TERM_PORT_ERROR
;
2527 disc_reason
= "LCP: FSM timeout";
2529 case 6: // lcp: no recognisable lcp packets received
2530 disc_cause
= TERM_PORT_ERROR
;
2531 disc_reason
= "LCP: no recognisable LCP packets";
2533 case 7: // lcp: magic-no error (possibly looped back)
2534 disc_cause
= TERM_PORT_ERROR
;
2535 disc_reason
= "LCP: magic-no error (possible loop)";
2537 case 8: // lcp: echo request timeout
2538 disc_cause
= TERM_PORT_ERROR
;
2539 disc_reason
= "LCP: echo request timeout";
2541 case 13: // auth: fsm timeout
2542 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2543 disc_reason
= "Authentication: FSM timeout";
2545 case 15: // auth: unacceptable auth protocol
2546 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2547 disc_reason
= "Unacceptable authentication protocol";
2549 case 16: // auth: authentication failed
2550 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2551 disc_reason
= "Authentication failed";
2553 case 17: // ncp: fsm timeout
2554 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2555 disc_reason
= "NCP: FSM timeout";
2557 case 18: // ncp: no ncps available
2558 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2559 disc_reason
= "NCP: no NCPs available";
2561 case 19: // ncp: failure to converge on acceptable address
2562 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2563 disc_reason
= (dir
== 1)
2564 ? "NCP: too many Configure-Naks received from peer"
2565 : "NCP: too many Configure-Naks sent to peer";
2567 case 20: // ncp: user not permitted to use any address
2568 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2569 disc_reason
= (dir
== 1)
2570 ? "NCP: local link address not acceptable to peer"
2571 : "NCP: remote link address not acceptable";
2578 static char e
[] = "unknown AVP 0xXXXX";
2579 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
2581 result
= 2; // general error
2582 error
= 8; // unknown mandatory AVP
2583 sprintf((msg
= e
) + 14, "%04x", mtype
);
2590 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
2594 case 1: // SCCRQ - Start Control Connection Request
2595 tunnel
[t
].state
= TUNNELOPENING
;
2596 if (main_quit
!= QUIT_SHUTDOWN
)
2598 controlt
*c
= controlnew(2); // sending SCCRP
2599 control16(c
, 2, version
, 1); // protocol version
2600 control32(c
, 3, 3, 1); // framing
2601 controls(c
, 7, hostname
, 1); // host name
2602 if (chapresponse
) controlb(c
, 13, chapresponse
, 16, 1); // Challenge response
2603 control16(c
, 9, t
, 1); // assigned tunnel
2604 controladd(c
, 0, t
); // send the resply
2608 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
2612 tunnel
[t
].state
= TUNNELOPEN
;
2615 tunnel
[t
].state
= TUNNELOPEN
;
2616 controlnull(t
); // ack
2619 controlnull(t
); // ack
2620 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
2623 controlnull(t
); // simply ACK
2635 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
2637 controlt
*c
= controlnew(11); // ICRP
2640 sessionfree
= session
[s
].next
;
2641 memset(&session
[s
], 0, sizeof(session
[s
]));
2643 if (s
> config
->cluster_highest_sessionid
)
2644 config
->cluster_highest_sessionid
= s
;
2646 session
[s
].opened
= time_now
;
2647 session
[s
].tunnel
= t
;
2648 session
[s
].far
= asession
;
2649 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2650 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
2651 control16(c
, 14, s
, 1); // assigned session
2652 controladd(c
, asession
, t
); // send the reply
2654 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
2655 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
2657 session
[s
].ppp
.phase
= Establish
;
2658 session
[s
].ppp
.lcp
= Starting
;
2660 STAT(session_created
);
2665 controlt
*c
= controlnew(14); // CDN
2668 STAT(session_overflow
);
2669 LOG(1, 0, t
, "No free sessions\n");
2670 control16(c
, 1, 4, 0); // temporary lack of resources
2673 control16(c
, 1, 2, 7); // shutting down, try another
2675 controladd(c
, asession
, t
); // send the message
2682 if (amagic
== 0) amagic
= time_now
;
2683 session
[s
].magic
= amagic
; // set magic number
2684 session
[s
].flags
= aflags
; // set flags received
2685 session
[s
].mru
= PPPoE_MRU
; // default
2686 controlnull(t
); // ack
2689 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
2690 sess_local
[s
].ppp_mru
= MRU
;
2692 // Set multilink options before sending initial LCP packet
2693 sess_local
[s
].mp_mrru
= 1614;
2694 sess_local
[s
].mp_epdis
= config
->bind_address
? config
->bind_address
: my_address
;
2697 change_state(s
, lcp
, RequestSent
);
2701 controlnull(t
); // ack
2702 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
2705 LOG(1, s
, t
, "Missing message type\n");
2708 STAT(tunnel_rx_errors
);
2710 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
2712 LOG(1, s
, t
, "Unknown message type %u\n", message
);
2715 if (chapresponse
) free(chapresponse
);
2716 cluster_send_tunnel(t
);
2720 LOG(4, s
, t
, " Got a ZLB ack\n");
2727 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
2728 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
2729 { // HDLC address header, discard
2735 LOG(1, s
, t
, "Short ppp length %d\n", l
);
2736 STAT(tunnel_rx_errors
);
2746 proto
= ntohs(*(uint16_t *) p
);
2751 if (s
&& !session
[s
].opened
) // Is something wrong??
2753 if (!config
->cluster_iam_master
)
2755 // Pass it off to the master to deal with..
2756 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2761 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
2762 STAT(tunnel_rx_errors
);
2766 if (proto
== PPPPAP
)
2768 session
[s
].last_packet
= time_now
;
2769 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2770 processpap(s
, t
, p
, l
);
2772 else if (proto
== PPPCHAP
)
2774 session
[s
].last_packet
= time_now
;
2775 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2776 processchap(s
, t
, p
, l
);
2778 else if (proto
== PPPLCP
)
2780 session
[s
].last_packet
= time_now
;
2781 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2782 processlcp(s
, t
, p
, l
);
2784 else if (proto
== PPPIPCP
)
2786 session
[s
].last_packet
= time_now
;
2787 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2788 processipcp(s
, t
, p
, l
);
2790 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
2792 session
[s
].last_packet
= time_now
;
2793 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2794 processipv6cp(s
, t
, p
, l
);
2796 else if (proto
== PPPCCP
)
2798 session
[s
].last_packet
= time_now
;
2799 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2800 processccp(s
, t
, p
, l
);
2802 else if (proto
== PPPIP
)
2806 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2807 return; // closing session, PPP not processed
2810 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2811 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2813 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2817 processipin(s
, t
, p
, l
);
2819 else if (proto
== PPPMP
)
2823 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2824 return; // closing session, PPP not processed
2827 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2828 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2830 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2834 processmpin(s
, t
, p
, l
);
2836 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
2840 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
2841 return; // closing session, PPP not processed
2844 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2845 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
2847 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2851 processipv6in(s
, t
, p
, l
);
2853 else if (session
[s
].ppp
.lcp
== Opened
)
2855 session
[s
].last_packet
= time_now
;
2856 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
2857 protoreject(s
, t
, p
, l
, proto
);
2861 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
2862 proto
, ppp_state(session
[s
].ppp
.lcp
));
2867 // read and process packet on tun
2868 static void processtun(uint8_t * buf
, int len
)
2870 LOG_HEX(5, "Receive TUN Data", buf
, len
);
2871 STAT(tun_rx_packets
);
2872 INC_STAT(tun_rx_bytes
, len
);
2880 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
2881 STAT(tun_rx_errors
);
2885 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
2886 processipout(buf
, len
);
2887 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
2888 && config
->ipv6_prefix
.s6_addr
[0])
2889 processipv6out(buf
, len
);
2894 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
2895 // that we look at the whole of the tunnel, radius and session tables
2897 static void regular_cleanups(double period
)
2899 // Next tunnel, radius and session to check for actions on.
2900 static tunnelidt t
= 0;
2902 static sessionidt s
= 0;
2915 // divide up tables into slices based on the last run
2916 t_slice
= config
->cluster_highest_tunnelid
* period
;
2917 r_slice
= (MAXRADIUS
- 1) * period
;
2918 s_slice
= config
->cluster_highest_sessionid
* period
;
2922 else if (t_slice
> config
->cluster_highest_tunnelid
)
2923 t_slice
= config
->cluster_highest_tunnelid
;
2927 else if (r_slice
> (MAXRADIUS
- 1))
2928 r_slice
= MAXRADIUS
- 1;
2932 else if (s_slice
> config
->cluster_highest_sessionid
)
2933 s_slice
= config
->cluster_highest_sessionid
;
2935 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
2937 for (i
= 0; i
< t_slice
; i
++)
2940 if (t
> config
->cluster_highest_tunnelid
)
2943 // check for expired tunnels
2944 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
2946 STAT(tunnel_timeout
);
2947 tunnelkill(t
, "Expired");
2951 // check for message resend
2952 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
2954 // resend pending messages as timeout on reply
2955 if (tunnel
[t
].retry
<= TIME
)
2957 controlt
*c
= tunnel
[t
].controls
;
2958 uint8_t w
= tunnel
[t
].window
;
2959 tunnel
[t
].try++; // another try
2960 if (tunnel
[t
].try > 5)
2961 tunnelkill(t
, "Timeout on control message"); // game over
2965 tunnelsend(c
->buf
, c
->length
, t
);
2973 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
2975 controlt
*c
= controlnew(6); // sending HELLO
2976 controladd(c
, 0, t
); // send the message
2977 LOG(3, 0, t
, "Sending HELLO message\n");
2981 // Check for tunnel changes requested from the CLI
2982 if ((a
= cli_tunnel_actions
[t
].action
))
2984 cli_tunnel_actions
[t
].action
= 0;
2985 if (a
& CLI_TUN_KILL
)
2987 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
2988 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
2994 for (i
= 0; i
< r_slice
; i
++)
3000 if (!radius
[r
].state
)
3003 if (radius
[r
].retry
<= TIME
)
3010 for (i
= 0; i
< s_slice
; i
++)
3013 if (s
> config
->cluster_highest_sessionid
)
3016 if (!session
[s
].opened
) // Session isn't in use
3019 // check for expired sessions
3022 if (session
[s
].die
<= TIME
)
3024 sessionkill(s
, "Expired");
3030 // check for timed out sessions
3031 if (session
[s
].timeout
)
3033 bundleidt bid
= session
[s
].bundle
;
3036 clockt curr_time
= time_now
;
3037 if (curr_time
- bundle
[bid
].last_check
>= 1)
3039 bundle
[bid
].online_time
+= (curr_time
-bundle
[bid
].last_check
)*bundle
[bid
].num_of_links
;
3040 bundle
[bid
].last_check
= curr_time
;
3041 if (bundle
[bid
].online_time
>= session
[s
].timeout
)
3044 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3046 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3053 else if (session
[s
].timeout
<= time_now
- session
[s
].opened
)
3055 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3062 if (sess_local
[s
].lcp
.restart
<= time_now
)
3064 int next_state
= session
[s
].ppp
.lcp
;
3065 switch (session
[s
].ppp
.lcp
)
3069 next_state
= RequestSent
;
3072 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3074 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3075 sendlcp(s
, session
[s
].tunnel
);
3076 change_state(s
, lcp
, next_state
);
3080 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3081 STAT(session_timeout
);
3091 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3093 int next_state
= session
[s
].ppp
.ipcp
;
3094 switch (session
[s
].ppp
.ipcp
)
3098 next_state
= RequestSent
;
3101 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3103 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3104 sendipcp(s
, session
[s
].tunnel
);
3105 change_state(s
, ipcp
, next_state
);
3109 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3110 STAT(session_timeout
);
3120 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3122 int next_state
= session
[s
].ppp
.ipv6cp
;
3123 switch (session
[s
].ppp
.ipv6cp
)
3127 next_state
= RequestSent
;
3130 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3132 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3133 sendipv6cp(s
, session
[s
].tunnel
);
3134 change_state(s
, ipv6cp
, next_state
);
3138 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3139 change_state(s
, ipv6cp
, Stopped
);
3146 if (sess_local
[s
].ccp
.restart
<= time_now
)
3148 int next_state
= session
[s
].ppp
.ccp
;
3149 switch (session
[s
].ppp
.ccp
)
3153 next_state
= RequestSent
;
3156 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3158 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3159 sendccp(s
, session
[s
].tunnel
);
3160 change_state(s
, ccp
, next_state
);
3164 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3165 change_state(s
, ccp
, Stopped
);
3172 // Drop sessions who have not responded within IDLE_TIMEOUT seconds
3173 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= IDLE_TIMEOUT
))
3175 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3176 STAT(session_timeout
);
3181 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3182 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= ECHO_TIMEOUT
) &&
3183 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3185 uint8_t b
[MAXETHER
];
3187 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3191 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3192 *(uint16_t *)(q
+ 2) = htons(8); // Length
3193 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3195 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3196 (int)(time_now
- session
[s
].last_packet
));
3197 tunnelsend(b
, 24, session
[s
].tunnel
); // send it
3198 sess_local
[s
].last_echo
= time_now
;
3202 // Drop sessions who have reached session_timeout seconds
3203 if (session
[s
].session_timeout
&& (time_now
- session
[s
].opened
>= session
[s
].session_timeout
))
3205 sessionshutdown(s
, "Session Timeout Reached", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3206 STAT(session_timeout
);
3211 // Drop sessions who have reached idle_timeout seconds
3212 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3214 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3215 STAT(session_timeout
);
3220 // Check for actions requested from the CLI
3221 if ((a
= cli_session_actions
[s
].action
))
3225 cli_session_actions
[s
].action
= 0;
3226 if (a
& CLI_SESS_KILL
)
3228 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3229 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3230 a
= 0; // dead, no need to check for other actions
3234 if (a
& CLI_SESS_NOSNOOP
)
3236 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3237 session
[s
].snoop_ip
= 0;
3238 session
[s
].snoop_port
= 0;
3242 else if (a
& CLI_SESS_SNOOP
)
3244 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3245 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3246 cli_session_actions
[s
].snoop_port
);
3248 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3249 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3254 if (a
& CLI_SESS_NOTHROTTLE
)
3256 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3257 throttle_session(s
, 0, 0);
3261 else if (a
& CLI_SESS_THROTTLE
)
3263 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3264 cli_session_actions
[s
].throttle_in
,
3265 cli_session_actions
[s
].throttle_out
);
3267 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3272 if (a
& CLI_SESS_NOFILTER
)
3274 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3275 filter_session(s
, 0, 0);
3279 else if (a
& CLI_SESS_FILTER
)
3281 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3282 cli_session_actions
[s
].filter_in
,
3283 cli_session_actions
[s
].filter_out
);
3285 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3291 cluster_send_session(s
);
3294 // RADIUS interim accounting
3295 if (config
->radius_accounting
&& config
->radius_interim
> 0
3296 && session
[s
].ip
&& !session
[s
].walled_garden
3297 && !sess_local
[s
].radius
// RADIUS already in progress
3298 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
)
3300 int rad
= radiusnew(s
);
3303 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3304 STAT(radius_overflow
);
3308 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3309 session
[s
].user
, session
[s
].unique_id
);
3311 radiussend(rad
, RADIUSINTERIM
);
3312 sess_local
[s
].last_interim
= time_now
;
3317 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3318 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3322 // Are we in the middle of a tunnel update, or radius
3325 static int still_busy(void)
3328 static clockt last_talked
= 0;
3329 static clockt start_busy_wait
= 0;
3331 if (!config
->cluster_iam_master
)
3334 static time_t stopped_bgp
= 0;
3339 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3341 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3342 if (bgp_peers
[i
].state
== Established
)
3343 bgp_stop(&bgp_peers
[i
]);
3345 stopped_bgp
= time_now
;
3347 // we don't want to become master
3348 cluster_send_ping(0);
3353 if (time_now
< (stopped_bgp
+ QUIT_DELAY
))
3361 if (main_quit
== QUIT_SHUTDOWN
)
3363 static int dropped
= 0;
3368 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3369 for (i
= 1; i
< MAXTUNNEL
; i
++)
3370 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3371 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3377 if (start_busy_wait
== 0)
3378 start_busy_wait
= TIME
;
3380 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3382 if (!tunnel
[i
].controlc
)
3385 if (last_talked
!= TIME
)
3387 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3393 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3394 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3396 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3400 for (i
= 1; i
< MAXRADIUS
; i
++)
3402 if (radius
[i
].state
== RADIUSNULL
)
3404 if (radius
[i
].state
== RADIUSWAIT
)
3407 if (last_talked
!= TIME
)
3409 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3419 # include <sys/epoll.h>
3421 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3422 # include "fake_epoll.h"
3425 // the base set of fds polled: cli, cluster, tun, udp, control, dae
3428 // additional polled fds
3430 # define EXTRA_FDS BGP_NUM_PEERS
3432 # define EXTRA_FDS 0
3435 // main loop - gets packets on tun or udp and processes them
3436 static void mainloop(void)
3440 clockt next_cluster_ping
= 0; // send initial ping immediately
3441 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3442 int maxevent
= sizeof(events
)/sizeof(*events
);
3444 if ((epollfd
= epoll_create(maxevent
)) < 0)
3446 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
3450 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d\n",
3451 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
);
3453 /* setup our fds to poll for input */
3455 static struct event_data d
[BASE_FDS
];
3456 struct epoll_event e
;
3463 d
[i
].type
= FD_TYPE_CLI
;
3464 e
.data
.ptr
= &d
[i
++];
3465 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
3468 d
[i
].type
= FD_TYPE_CLUSTER
;
3469 e
.data
.ptr
= &d
[i
++];
3470 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
3472 d
[i
].type
= FD_TYPE_TUN
;
3473 e
.data
.ptr
= &d
[i
++];
3474 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
3476 d
[i
].type
= FD_TYPE_UDP
;
3477 e
.data
.ptr
= &d
[i
++];
3478 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
, &e
);
3480 d
[i
].type
= FD_TYPE_CONTROL
;
3481 e
.data
.ptr
= &d
[i
++];
3482 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
3484 d
[i
].type
= FD_TYPE_DAE
;
3485 e
.data
.ptr
= &d
[i
++];
3486 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
3490 signal(SIGPIPE
, SIG_IGN
);
3491 bgp_setup(config
->as_number
);
3492 if (config
->bind_address
)
3493 bgp_add_route(config
->bind_address
, 0xffffffff);
3495 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3497 if (config
->neighbour
[i
].name
[0])
3498 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
3499 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
3500 config
->neighbour
[i
].hold
, 0); /* 0 = routing disabled */
3504 while (!main_quit
|| still_busy())
3514 config
->reload_config
++;
3517 if (config
->reload_config
)
3519 config
->reload_config
= 0;
3527 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
3528 STAT(select_called
);
3533 if (errno
== EINTR
||
3534 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
3537 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
3543 struct sockaddr_in addr
;
3544 struct in_addr local
;
3549 int cluster_ready
= 0;
3552 int cluster_pkts
= 0;
3554 uint32_t bgp_events
[BGP_NUM_PEERS
];
3555 memset(bgp_events
, 0, sizeof(bgp_events
));
3558 for (c
= n
, i
= 0; i
< c
; i
++)
3560 struct event_data
*d
= events
[i
].data
.ptr
;
3564 case FD_TYPE_CLI
: // CLI connections
3568 alen
= sizeof(addr
);
3569 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
3575 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
3581 // these are handled below, with multiple interleaved reads
3582 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
3583 case FD_TYPE_TUN
: tun_ready
++; break;
3584 case FD_TYPE_UDP
: udp_ready
++; break;
3586 case FD_TYPE_CONTROL
: // nsctl commands
3587 alen
= sizeof(addr
);
3588 s
= recvfromto(controlfd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3589 if (s
> 0) processcontrol(buf
, s
, &addr
, alen
, &local
);
3593 case FD_TYPE_DAE
: // DAE requests
3594 alen
= sizeof(addr
);
3595 s
= recvfromto(daefd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3596 if (s
> 0) processdae(buf
, s
, &addr
, alen
, &local
);
3600 case FD_TYPE_RADIUS
: // RADIUS response
3601 alen
= sizeof(addr
);
3602 s
= recvfrom(radfds
[d
->index
], buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
3603 if (s
>= 0 && config
->cluster_iam_master
)
3605 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
3606 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
3607 processrad(buf
, s
, d
->index
);
3609 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
3610 fmtaddr(addr
.sin_addr
.s_addr
, 0));
3618 bgp_events
[d
->index
] = events
[i
].events
;
3624 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
3629 bgp_process(bgp_events
);
3632 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
3637 alen
= sizeof(addr
);
3638 if ((s
= recvfrom(udpfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
3640 processudp(buf
, s
, &addr
);
3653 if ((s
= read(tunfd
, buf
, sizeof(buf
))) > 0)
3668 alen
= sizeof(addr
);
3669 if ((s
= recvfrom(cluster_sockfd
, buf
, sizeof(buf
), MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
3671 processcluster(buf
, s
, addr
.sin_addr
.s_addr
);
3682 if (udp_pkts
> 1 || tun_pkts
> 1 || cluster_pkts
> 1)
3683 STAT(multi_read_used
);
3685 if (c
>= config
->multi_read_count
)
3687 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
3688 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
);
3690 STAT(multi_read_exceeded
);
3697 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
3699 // Log current traffic stats
3700 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
3701 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
3702 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
3703 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
3704 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
3706 udp_tx
= udp_rx
= 0;
3707 udp_rx_pkt
= eth_rx_pkt
= 0;
3708 eth_tx
= eth_rx
= 0;
3711 if (config
->dump_speed
)
3712 printf("%s\n", config
->bandwidth
);
3714 // Update the internal time counter
3715 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
3719 struct param_timer p
= { time_now
};
3720 run_plugins(PLUGIN_TIMER
, &p
);
3724 // Runs on every machine (master and slaves).
3725 if (next_cluster_ping
<= TIME
)
3727 // Check to see which of the cluster is still alive..
3729 cluster_send_ping(basetime
); // Only does anything if we're a slave
3730 cluster_check_master(); // ditto.
3732 cluster_heartbeat(); // Only does anything if we're a master.
3733 cluster_check_slaves(); // ditto.
3735 master_update_counts(); // If we're a slave, send our byte counters to our master.
3737 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
3738 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
3740 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
3743 if (!config
->cluster_iam_master
)
3746 // Run token bucket filtering queue..
3747 // Only run it every 1/10th of a second.
3749 static clockt last_run
= 0;
3750 if (last_run
!= TIME
)
3757 // Handle timeouts, retries etc.
3759 static double last_clean
= 0;
3763 TIME
= now(&this_clean
);
3764 diff
= this_clean
- last_clean
;
3766 // Run during idle time (after we've handled
3767 // all incoming packets) or every 1/10th sec
3768 if (!more
|| diff
> 0.1)
3770 regular_cleanups(diff
);
3771 last_clean
= this_clean
;
3775 if (*config
->accounting_dir
)
3777 static clockt next_acct
= 0;
3778 static clockt next_shut_acct
= 0;
3780 if (next_acct
<= TIME
)
3782 // Dump accounting data
3783 next_acct
= TIME
+ ACCT_TIME
;
3784 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
3787 else if (next_shut_acct
<= TIME
)
3789 // Dump accounting data for shutdown sessions
3790 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
3797 // Are we the master and shutting down??
3798 if (config
->cluster_iam_master
)
3799 cluster_heartbeat(); // Flush any queued changes..
3801 // Ok. Notify everyone we're shutting down. If we're
3802 // the master, this will force an election.
3803 cluster_send_ping(0);
3806 // Important!!! We MUST not process any packets past this point!
3807 LOG(1, 0, 0, "Shutdown complete\n");
3810 static void stripdomain(char *host
)
3814 if ((p
= strchr(host
, '.')))
3820 FILE *resolv
= fopen("/etc/resolv.conf", "r");
3826 while (fgets(buf
, sizeof(buf
), resolv
))
3828 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
3831 if (!isspace(buf
[6]))
3835 while (isspace(*b
)) b
++;
3840 while (*b
&& !isspace(*b
)) b
++;
3842 if (buf
[0] == 'd') // domain is canonical
3848 // first search line
3851 // hold, may be subsequent domain line
3852 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
3863 int hl
= strlen(host
);
3864 int dl
= strlen(domain
);
3865 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
3866 host
[hl
-dl
- 1] = 0;
3870 *p
= 0; // everything after first dot
3875 // Init data structures
3876 static void initdata(int optdebug
, char *optconfig
)
3880 if (!(config
= shared_malloc(sizeof(configt
))))
3882 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
3886 memset(config
, 0, sizeof(configt
));
3887 time(&config
->start_time
);
3888 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
3889 config
->debug
= optdebug
;
3890 config
->num_tbfs
= MAXTBFS
;
3891 config
->rl_rate
= 28; // 28kbps
3892 config
->cluster_mcast_ttl
= 1;
3893 config
->cluster_master_min_adv
= 1;
3894 config
->ppp_restart_time
= 3;
3895 config
->ppp_max_configure
= 10;
3896 config
->ppp_max_failure
= 5;
3897 strcpy(config
->random_device
, RANDOMDEVICE
);
3899 log_stream
= stderr
;
3902 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
3904 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
3907 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
3910 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
3912 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
3915 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
3917 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
3920 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
3922 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
3925 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
3927 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
3930 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
3932 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
3936 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
3938 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
3942 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
3944 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
3948 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
3950 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
3954 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
3956 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
3959 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
3961 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
3963 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
3966 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
3968 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
3970 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
3973 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
3975 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
3976 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
3977 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
3978 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
3979 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
3981 // Put all the sessions on the free list marked as undefined.
3982 for (i
= 1; i
< MAXSESSION
; i
++)
3984 session
[i
].next
= i
+ 1;
3985 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
3987 session
[MAXSESSION
- 1].next
= 0;
3990 // Mark all the tunnels as undefined (waiting to be filled in by a download).
3991 for (i
= 1; i
< MAXTUNNEL
; i
++)
3992 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
3994 for (i
= 1; i
< MAXBUNDLE
; i
++) {
3995 bundle
[i
].state
= BUNDLEUNDEF
;
4000 // Grab my hostname unless it's been specified
4001 gethostname(hostname
, sizeof(hostname
));
4002 stripdomain(hostname
);
4005 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4008 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4010 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4016 static int assign_ip_address(sessionidt s
)
4020 time_t best_time
= time_now
;
4021 char *u
= session
[s
].user
;
4025 CSTAT(assign_ip_address
);
4027 for (i
= 1; i
< ip_pool_size
; i
++)
4029 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4032 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4039 if (ip_address_pool
[i
].last
< best_time
)
4042 if (!(best_time
= ip_address_pool
[i
].last
))
4043 break; // never used, grab this one
4049 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4053 session
[s
].ip
= ip_address_pool
[best
].address
;
4054 session
[s
].ip_pool_index
= best
;
4055 ip_address_pool
[best
].assigned
= 1;
4056 ip_address_pool
[best
].last
= time_now
;
4057 ip_address_pool
[best
].session
= s
;
4058 if (session
[s
].walled_garden
)
4059 /* Don't track addresses of users in walled garden (note: this
4060 means that their address isn't "sticky" even if they get
4062 ip_address_pool
[best
].user
[0] = 0;
4064 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4067 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4068 reuse
? "Reusing" : "Allocating", best
);
4073 static void free_ip_address(sessionidt s
)
4075 int i
= session
[s
].ip_pool_index
;
4078 CSTAT(free_ip_address
);
4081 return; // what the?
4083 if (i
< 0) // Is this actually part of the ip pool?
4087 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4089 ip_address_pool
[i
].assigned
= 0;
4090 ip_address_pool
[i
].session
= 0;
4091 ip_address_pool
[i
].last
= time_now
;
4095 // Fsck the address pool against the session table.
4096 // Normally only called when we become a master.
4098 // This isn't perfect: We aren't keep tracking of which
4099 // users used to have an IP address.
4101 void rebuild_address_pool(void)
4106 // Zero the IP pool allocation, and build
4107 // a map from IP address to pool index.
4108 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4110 ip_address_pool
[i
].assigned
= 0;
4111 ip_address_pool
[i
].session
= 0;
4112 if (!ip_address_pool
[i
].address
)
4115 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4118 for (i
= 0; i
< MAXSESSION
; ++i
)
4121 if (!(session
[i
].opened
&& session
[i
].ip
))
4124 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4126 if (session
[i
].ip_pool_index
< 0)
4128 // Not allocated out of the pool.
4129 if (ipid
< 1) // Not found in the pool either? good.
4132 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4133 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4135 // Fall through and process it as part of the pool.
4139 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4141 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4143 session
[i
].ip_pool_index
= ipid
;
4147 ip_address_pool
[ipid
].assigned
= 1;
4148 ip_address_pool
[ipid
].session
= i
;
4149 ip_address_pool
[ipid
].last
= time_now
;
4150 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4151 session
[i
].ip_pool_index
= ipid
;
4152 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4157 // Fix the address pool to match a changed session.
4158 // (usually when the master sends us an update).
4159 static void fix_address_pool(int sid
)
4163 ipid
= session
[sid
].ip_pool_index
;
4165 if (ipid
> ip_pool_size
)
4166 return; // Ignore it. rebuild_address_pool will fix it up.
4168 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4169 return; // Just ignore it. rebuild_address_pool will take care of it.
4171 ip_address_pool
[ipid
].assigned
= 1;
4172 ip_address_pool
[ipid
].session
= sid
;
4173 ip_address_pool
[ipid
].last
= time_now
;
4174 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4178 // Add a block of addresses to the IP pool to hand out.
4180 static void add_to_ip_pool(in_addr_t addr
, in_addr_t mask
)
4184 mask
= 0xffffffff; // Host route only.
4188 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4191 for (i
= addr
;(i
& mask
) == addr
; ++i
)
4193 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4194 continue; // Skip 0 and broadcast addresses.
4196 ip_address_pool
[ip_pool_size
].address
= i
;
4197 ip_address_pool
[ip_pool_size
].assigned
= 0;
4199 if (ip_pool_size
>= MAXIPPOOL
)
4201 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4207 // Initialize the IP address pool
4208 static void initippool()
4213 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4215 if (!(f
= fopen(IPPOOLFILE
, "r")))
4217 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4221 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4224 buf
[4095] = 0; // Force it to be zero terminated/
4226 if (*buf
== '#' || *buf
== '\n')
4227 continue; // Skip comments / blank lines
4228 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4229 if ((p
= (char *)strchr(buf
, ':')))
4233 src
= inet_addr(buf
);
4234 if (src
== INADDR_NONE
)
4236 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4239 // This entry is for a specific IP only
4240 if (src
!= config
->bind_address
)
4245 if ((p
= (char *)strchr(pool
, '/')))
4249 in_addr_t start
= 0, mask
= 0;
4251 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4253 if (!*p
|| !(numbits
= atoi(p
)))
4255 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4258 start
= ntohl(inet_addr(pool
));
4259 mask
= (in_addr_t
) (pow(2, numbits
) - 1) << (32 - numbits
);
4261 // Add a static route for this pool
4262 LOG(5, 0, 0, "Adding route for address pool %s/%u\n",
4263 fmtaddr(htonl(start
), 0), 32 + mask
);
4265 routeset(0, start
, mask
, 0, 1);
4267 add_to_ip_pool(start
, mask
);
4271 // It's a single ip address
4272 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4276 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4279 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4281 struct sockaddr_in snoop_addr
= {0};
4282 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4285 snoop_addr
.sin_family
= AF_INET
;
4286 snoop_addr
.sin_addr
.s_addr
= destination
;
4287 snoop_addr
.sin_port
= ntohs(port
);
4289 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4290 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4291 htons(snoop_addr
.sin_port
));
4293 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4294 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4296 STAT(packets_snooped
);
4299 static int dump_session(FILE **f
, sessiont
*s
)
4301 if (!s
->opened
|| !s
->ip
|| !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4306 char filename
[1024];
4308 time_t now
= time(NULL
);
4310 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4311 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4313 if (!(*f
= fopen(filename
, "w")))
4315 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4319 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4320 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4325 "# format: username ip qos uptxoctets downrxoctets\n",
4327 fmtaddr(config
->bind_address
? config
->bind_address
: my_address
, 0),
4332 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4333 fprintf(*f
, "%s %s %d %u %u\n",
4334 s
->user
, // username
4335 fmtaddr(htonl(s
->ip
), 0), // ip
4336 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4337 (uint32_t) s
->cin_delta
, // uptxoctets
4338 (uint32_t) s
->cout_delta
); // downrxoctets
4340 s
->cin_delta
= s
->cout_delta
= 0;
4345 static void dump_acct_info(int all
)
4351 CSTAT(dump_acct_info
);
4355 for (i
= 0; i
< shut_acct_n
; i
++)
4356 dump_session(&f
, &shut_acct
[i
]);
4362 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4363 dump_session(&f
, &session
[i
]);
4370 int main(int argc
, char *argv
[])
4374 char *optconfig
= CONFIGFILE
;
4376 time(&basetime
); // start clock
4379 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
4384 if (fork()) exit(0);
4386 freopen("/dev/null", "r", stdin
);
4387 freopen("/dev/null", "w", stdout
);
4388 freopen("/dev/null", "w", stderr
);
4397 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
4400 printf("Args are:\n"
4401 "\t-d\t\tDetach from terminal\n"
4402 "\t-c <file>\tConfig file\n"
4403 "\t-h <hostname>\tForce hostname\n"
4411 // Start the timer routine off
4413 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4416 initdata(optdebug
, optconfig
);
4421 init_tbf(config
->num_tbfs
);
4423 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
4424 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
4425 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4428 rlim
.rlim_cur
= RLIM_INFINITY
;
4429 rlim
.rlim_max
= RLIM_INFINITY
;
4430 // Remove the maximum core size
4431 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
4432 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
4434 // Make core dumps go to /tmp
4438 if (config
->scheduler_fifo
)
4441 struct sched_param params
= {0};
4442 params
.sched_priority
= 1;
4444 if (get_nprocs() < 2)
4446 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
4447 config
->scheduler_fifo
= 0;
4451 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
4453 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
4457 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
4458 config
->scheduler_fifo
= 0;
4463 /* Set up the cluster communications port. */
4464 if (cluster_init() < 0)
4468 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevice
);
4476 unsigned seed
= time_now
^ getpid();
4477 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
4481 signal(SIGHUP
, sighup_handler
);
4482 signal(SIGCHLD
, sigchild_handler
);
4483 signal(SIGTERM
, shutdown_handler
);
4484 signal(SIGINT
, shutdown_handler
);
4485 signal(SIGQUIT
, shutdown_handler
);
4487 // Prevent us from getting paged out
4488 if (config
->lock_pages
)
4490 if (!mlockall(MCL_CURRENT
))
4491 LOG(1, 0, 0, "Locking pages into memory\n");
4493 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
4498 /* remove plugins (so cleanup code gets run) */
4501 // Remove the PID file if we wrote it
4502 if (config
->wrote_pid
&& *config
->pid_file
== '/')
4503 unlink(config
->pid_file
);
4505 /* kill CLI children */
4506 signal(SIGTERM
, SIG_IGN
);
4511 static void sighup_handler(int sig
)
4516 static void shutdown_handler(int sig
)
4518 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
4521 static void sigchild_handler(int sig
)
4523 while (waitpid(-1, NULL
, WNOHANG
) > 0)
4527 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
4530 *challenge_response
= NULL
;
4532 if (!*config
->l2tp_secret
)
4534 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
4538 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
4540 *challenge_response
= calloc(17, 1);
4543 MD5_Update(&ctx
, &id
, 1);
4544 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
4545 MD5_Update(&ctx
, challenge
, challenge_length
);
4546 MD5_Final(*challenge_response
, &ctx
);
4551 static int facility_value(char *name
)
4554 for (i
= 0; facilitynames
[i
].c_name
; i
++)
4556 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
4557 return facilitynames
[i
].c_val
;
4562 static void update_config()
4566 static int timeout
= 0;
4567 static int interval
= 0;
4574 if (log_stream
!= stderr
)
4580 if (*config
->log_filename
)
4582 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
4584 char *p
= config
->log_filename
+ 7;
4587 openlog("l2tpns", LOG_PID
, facility_value(p
));
4591 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
4593 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
4595 fseek(log_stream
, 0, SEEK_END
);
4596 setbuf(log_stream
, NULL
);
4600 log_stream
= stderr
;
4601 setbuf(log_stream
, NULL
);
4607 log_stream
= stderr
;
4608 setbuf(log_stream
, NULL
);
4611 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
4612 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
4614 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
4615 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
4616 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
4618 // reset MRU/MSS globals
4619 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
4620 if (MRU
> PPPoE_MRU
)
4623 MSS
= MRU
- TCP_HDRS
;
4626 config
->numradiusservers
= 0;
4627 for (i
= 0; i
< MAXRADSERVER
; i
++)
4628 if (config
->radiusserver
[i
])
4630 config
->numradiusservers
++;
4631 // Set radius port: if not set, take the port from the
4632 // first radius server. For the first radius server,
4633 // take the #defined default value from l2tpns.h
4635 // test twice, In case someone works with
4636 // a secondary radius server without defining
4637 // a primary one, this will work even then.
4638 if (i
> 0 && !config
->radiusport
[i
])
4639 config
->radiusport
[i
] = config
->radiusport
[i
-1];
4640 if (!config
->radiusport
[i
])
4641 config
->radiusport
[i
] = RADPORT
;
4644 if (!config
->numradiusservers
)
4645 LOG(0, 0, 0, "No RADIUS servers defined!\n");
4647 // parse radius_authtypes_s
4648 config
->radius_authtypes
= config
->radius_authprefer
= 0;
4649 p
= config
->radius_authtypes_s
;
4652 char *s
= strpbrk(p
, " \t,");
4658 while (*s
== ' ' || *s
== '\t')
4665 if (!strncasecmp("chap", p
, strlen(p
)))
4667 else if (!strncasecmp("pap", p
, strlen(p
)))
4670 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
4672 config
->radius_authtypes
|= type
;
4673 if (!config
->radius_authprefer
)
4674 config
->radius_authprefer
= type
;
4679 if (!config
->radius_authtypes
)
4681 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
4682 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
4685 // normalise radius_authtypes_s
4686 if (config
->radius_authprefer
== AUTHPAP
)
4688 strcpy(config
->radius_authtypes_s
, "pap");
4689 if (config
->radius_authtypes
& AUTHCHAP
)
4690 strcat(config
->radius_authtypes_s
, ", chap");
4694 strcpy(config
->radius_authtypes_s
, "chap");
4695 if (config
->radius_authtypes
& AUTHPAP
)
4696 strcat(config
->radius_authtypes_s
, ", pap");
4699 if (!config
->radius_dae_port
)
4700 config
->radius_dae_port
= DAEPORT
;
4702 // re-initialise the random number source
4703 initrandom(config
->random_device
);
4706 for (i
= 0; i
< MAXPLUGINS
; i
++)
4708 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
4711 if (*config
->plugins
[i
])
4714 add_plugin(config
->plugins
[i
]);
4716 else if (*config
->old_plugins
[i
])
4719 remove_plugin(config
->old_plugins
[i
]);
4723 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
4724 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
4725 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
4726 if (!*config
->cluster_interface
)
4727 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
4729 if (!config
->cluster_hb_interval
)
4730 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
4732 if (!config
->cluster_hb_timeout
)
4733 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
4735 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
4737 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
4738 // late, ensure we're sufficiently larger than that
4739 int t
= 4 * config
->cluster_hb_interval
+ 11;
4741 if (config
->cluster_hb_timeout
< t
)
4743 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
4744 config
->cluster_hb_timeout
= t
;
4747 // Push timing changes to the slaves immediately if we're the master
4748 if (config
->cluster_iam_master
)
4749 cluster_heartbeat();
4751 interval
= config
->cluster_hb_interval
;
4752 timeout
= config
->cluster_hb_timeout
;
4756 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
4759 if ((f
= fopen(config
->pid_file
, "w")))
4761 fprintf(f
, "%d\n", getpid());
4763 config
->wrote_pid
= 1;
4767 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
4772 static void read_config_file()
4776 if (!config
->config_file
) return;
4777 if (!(f
= fopen(config
->config_file
, "r")))
4779 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
4783 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
4785 LOG(3, 0, 0, "Done reading config file\n");
4789 int sessionsetup(sessionidt s
, tunnelidt t
)
4791 // A session now exists, set it up
4797 CSTAT(sessionsetup
);
4799 LOG(3, s
, t
, "Doing session setup for session\n");
4803 assign_ip_address(s
);
4806 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
4807 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
4810 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
4811 fmtaddr(htonl(session
[s
].ip
), 0));
4815 // Make sure this is right
4816 session
[s
].tunnel
= t
;
4818 // Join a bundle if the MRRU option is accepted
4819 if (session
[s
].mrru
> 0 && !session
[s
].bundle
)
4821 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
4823 cluster_send_bundle(session
[s
].bundle
);
4826 // zap old sessions with same IP and/or username
4827 // Don't kill gardened sessions - doing so leads to a DoS
4828 // from someone who doesn't need to know the password
4831 user
= session
[s
].user
;
4832 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4834 if (i
== s
) continue;
4835 if (!session
[s
].opened
) continue;
4836 if (ip
== session
[i
].ip
)
4838 sessionkill(i
, "Duplicate IP address");
4842 if (config
->allow_duplicate_users
)
4845 if (session
[s
].walled_garden
|| session
[i
].walled_garden
)
4848 // Allow duplicate sessions for guest account.
4849 if (*config
->guest_user
&& !strcasecmp(user
, config
->guest_user
))
4852 // Allow duplicate sessions for multilink ones of the same bundle.
4853 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
)
4856 // Drop the new session in case of duplicate sessionss, not the old one.
4857 if (!strcasecmp(user
, session
[i
].user
))
4858 sessionkill(i
, "Duplicate session for users");
4865 // Add the route for this session.
4866 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
4868 if ((session
[s
].ip
& session
[s
].route
[r
].mask
) ==
4869 (session
[s
].route
[r
].ip
& session
[s
].route
[r
].mask
))
4872 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].mask
, 0, 1);
4875 // Static IPs need to be routed if not already
4876 // convered by a Framed-Route. Anything else is part
4877 // of the IP address pool and is already routed, it
4878 // just needs to be added to the IP cache.
4879 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
4880 if (session
[s
].ip_pool_index
== -1) // static ip
4882 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
4885 cache_ipmap(session
[s
].ip
, s
);
4888 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
4889 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
4891 // Run the plugin's against this new session.
4893 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
4894 run_plugins(PLUGIN_NEW_SESSION
, &data
);
4897 // Allocate TBFs if throttled
4898 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
4899 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
4901 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
4903 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
4904 fmtaddr(htonl(session
[s
].ip
), 0),
4905 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
4907 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
4909 return 1; // RADIUS OK and IP allocated, done...
4913 // This session just got dropped on us by the master or something.
4914 // Make sure our tables up up to date...
4916 int load_session(sessionidt s
, sessiont
*new)
4922 if (new->ip_pool_index
>= MAXIPPOOL
||
4923 new->tunnel
>= MAXTUNNEL
)
4925 LOG(0, s
, 0, "Strange session update received!\n");
4926 // FIXME! What to do here?
4931 // Ok. All sanity checks passed. Now we're committed to
4932 // loading the new session.
4935 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
4937 // See if routes/ip cache need updating
4938 if (new->ip
!= session
[s
].ip
)
4941 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
4942 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
4943 new->route
[i
].mask
!= session
[s
].route
[i
].mask
)
4951 // remove old routes...
4952 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
4954 if ((session
[s
].ip
& session
[s
].route
[i
].mask
) ==
4955 (session
[s
].route
[i
].ip
& session
[s
].route
[i
].mask
))
4958 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].mask
, 0, 0);
4964 if (session
[s
].ip_pool_index
== -1) // static IP
4966 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
4968 else // It's part of the IP pool, remove it manually.
4969 uncache_ipmap(session
[s
].ip
);
4974 // add new routes...
4975 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
4977 if ((new->ip
& new->route
[i
].mask
) ==
4978 (new->route
[i
].ip
& new->route
[i
].mask
))
4981 routeset(s
, new->route
[i
].ip
, new->route
[i
].mask
, 0, 1);
4987 // If there's a new one, add it.
4988 if (new->ip_pool_index
== -1)
4990 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
4993 cache_ipmap(new->ip
, s
);
4998 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
4999 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5002 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5004 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5008 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5010 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5011 new->filter_out
= 0;
5014 if (new->filter_in
!= session
[s
].filter_in
)
5016 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5017 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5020 if (new->filter_out
!= session
[s
].filter_out
)
5022 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5023 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5026 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5027 // for walking the sessions to forward byte counts to the master.
5028 config
->cluster_highest_sessionid
= s
;
5030 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5032 // Do fixups into address pool.
5033 if (new->ip_pool_index
!= -1)
5034 fix_address_pool(s
);
5039 static void initplugins()
5043 loaded_plugins
= ll_init();
5044 // Initialize the plugins to nothing
5045 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5046 plugins
[i
] = ll_init();
5049 static void *open_plugin(char *plugin_name
, int load
)
5051 char path
[256] = "";
5053 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5054 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5055 return dlopen(path
, RTLD_NOW
);
5058 // plugin callback to get a config value
5059 static void *getconfig(char *key
, enum config_typet type
)
5063 for (i
= 0; config_values
[i
].key
; i
++)
5065 if (!strcmp(config_values
[i
].key
, key
))
5067 if (config_values
[i
].type
== type
)
5068 return ((void *) config
) + config_values
[i
].offset
;
5070 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5071 key
, type
, config_values
[i
].type
);
5077 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5081 static int add_plugin(char *plugin_name
)
5083 static struct pluginfuncs funcs
= {
5088 sessiontbysessionidt
,
5089 sessionidtbysessiont
,
5096 cluster_send_session
,
5099 void *p
= open_plugin(plugin_name
, 1);
5100 int (*initfunc
)(struct pluginfuncs
*);
5105 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5109 if (ll_contains(loaded_plugins
, p
))
5112 return 0; // already loaded
5116 int *v
= dlsym(p
, "plugin_api_version");
5117 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5119 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5125 if ((initfunc
= dlsym(p
, "plugin_init")))
5127 if (!initfunc(&funcs
))
5129 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5135 ll_push(loaded_plugins
, p
);
5137 for (i
= 0; i
< max_plugin_functions
; i
++)
5140 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5142 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5143 ll_push(plugins
[i
], x
);
5147 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5151 static void run_plugin_done(void *plugin
)
5153 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5159 static int remove_plugin(char *plugin_name
)
5161 void *p
= open_plugin(plugin_name
, 0);
5167 if (ll_contains(loaded_plugins
, p
))
5170 for (i
= 0; i
< max_plugin_functions
; i
++)
5173 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5174 ll_delete(plugins
[i
], x
);
5177 ll_delete(loaded_plugins
, p
);
5183 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5187 int run_plugins(int plugin_type
, void *data
)
5189 int (*func
)(void *data
);
5191 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5192 return PLUGIN_RET_ERROR
;
5194 ll_reset(plugins
[plugin_type
]);
5195 while ((func
= ll_next(plugins
[plugin_type
])))
5199 if (r
!= PLUGIN_RET_OK
)
5200 return r
; // stop here
5203 return PLUGIN_RET_OK
;
5206 static void plugins_done()
5210 ll_reset(loaded_plugins
);
5211 while ((p
= ll_next(loaded_plugins
)))
5215 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
5217 struct nsctl request
;
5218 struct nsctl response
;
5219 int type
= unpack_control(&request
, buf
, len
);
5223 if (log_stream
&& config
->debug
>= 4)
5227 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
5228 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
5232 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5233 dump_control(&request
, log_stream
);
5239 case NSCTL_REQ_LOAD
:
5240 if (request
.argc
!= 1)
5242 response
.type
= NSCTL_RES_ERR
;
5244 response
.argv
[0] = "name of plugin required";
5246 else if ((r
= add_plugin(request
.argv
[0])) < 1)
5248 response
.type
= NSCTL_RES_ERR
;
5250 response
.argv
[0] = !r
5251 ? "plugin already loaded"
5252 : "error loading plugin";
5256 response
.type
= NSCTL_RES_OK
;
5262 case NSCTL_REQ_UNLOAD
:
5263 if (request
.argc
!= 1)
5265 response
.type
= NSCTL_RES_ERR
;
5267 response
.argv
[0] = "name of plugin required";
5269 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
5271 response
.type
= NSCTL_RES_ERR
;
5273 response
.argv
[0] = !r
5274 ? "plugin not loaded"
5275 : "plugin not found";
5279 response
.type
= NSCTL_RES_OK
;
5285 case NSCTL_REQ_HELP
:
5286 response
.type
= NSCTL_RES_OK
;
5289 ll_reset(loaded_plugins
);
5290 while ((p
= ll_next(loaded_plugins
)))
5292 char **help
= dlsym(p
, "plugin_control_help");
5293 while (response
.argc
< 0xff && help
&& *help
)
5294 response
.argv
[response
.argc
++] = *help
++;
5299 case NSCTL_REQ_CONTROL
:
5301 struct param_control param
= {
5302 config
->cluster_iam_master
,
5309 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
5311 if (r
== PLUGIN_RET_ERROR
)
5313 response
.type
= NSCTL_RES_ERR
;
5315 response
.argv
[0] = param
.additional
5317 : "error returned by plugin";
5319 else if (r
== PLUGIN_RET_NOTMASTER
)
5321 static char msg
[] = "must be run on master: 000.000.000.000";
5323 response
.type
= NSCTL_RES_ERR
;
5325 if (config
->cluster_master_address
)
5327 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
5328 response
.argv
[0] = msg
;
5332 response
.argv
[0] = "must be run on master: none elected";
5335 else if (!(param
.response
& NSCTL_RESPONSE
))
5337 response
.type
= NSCTL_RES_ERR
;
5339 response
.argv
[0] = param
.response
5340 ? "unrecognised response value from plugin"
5341 : "unhandled action";
5345 response
.type
= param
.response
;
5347 if (param
.additional
)
5350 response
.argv
[0] = param
.additional
;
5358 response
.type
= NSCTL_RES_ERR
;
5360 response
.argv
[0] = "error unpacking control packet";
5363 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
5366 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5370 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
5373 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
5374 if (log_stream
&& config
->debug
>= 4)
5376 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5377 dump_control(&response
, log_stream
);
5381 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
5382 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
5387 static tunnelidt
new_tunnel()
5390 for (i
= 1; i
< MAXTUNNEL
; i
++)
5392 if (tunnel
[i
].state
== TUNNELFREE
)
5394 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
5395 if (i
> config
->cluster_highest_tunnelid
)
5396 config
->cluster_highest_tunnelid
= i
;
5400 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
5405 // We're becoming the master. Do any required setup..
5407 // This is principally telling all the plugins that we're
5408 // now a master, and telling them about all the sessions
5409 // that are active too..
5411 void become_master(void)
5414 static struct event_data d
[RADIUS_FDS
];
5415 struct epoll_event e
;
5417 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
5419 // running a bunch of iptables commands is slow and can cause
5420 // the master to drop tunnels on takeover--kludge around the
5421 // problem by forking for the moment (note: race)
5422 if (!fork_and_close())
5424 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5426 if (!session
[s
].opened
) // Not an in-use session.
5429 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
5436 for (i
= 0; i
< RADIUS_FDS
; i
++)
5438 d
[i
].type
= FD_TYPE_RADIUS
;
5442 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
5446 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5452 if (CLI_HELP_REQUESTED
)
5453 return CLI_HELP_NO_ARGS
;
5456 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5458 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5461 if (!session
[s
].opened
)
5464 idle
= time_now
- session
[s
].last_data
;
5465 idle
/= 5 ; // In multiples of 5 seconds.
5475 for (i
= 0; i
< 63; ++i
)
5477 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5479 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
5480 cli_print(cli
, "%d total sessions open.", count
);
5484 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5490 if (CLI_HELP_REQUESTED
)
5491 return CLI_HELP_NO_ARGS
;
5494 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5496 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5499 if (!session
[s
].opened
)
5502 d
= time_now
- session
[s
].opened
;
5505 while (d
> 1 && open
< 32)
5515 for (i
= 0; i
< 30; ++i
)
5517 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5520 cli_print(cli
, "%d total sessions open.", count
);
5526 * This unencodes the AVP using the L2TP secret and the previously
5527 * stored random vector. It overwrites the hidden data with the
5528 * unhidden AVP subformat.
5530 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
5536 uint16_t m
= htons(type
);
5538 // Compute initial pad
5540 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
5541 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5542 MD5_Update(&ctx
, vector
, vec_len
);
5543 MD5_Final(digest
, &ctx
);
5545 // pointer to last decoded 16 octets
5550 // calculate a new pad based on the last decoded block
5551 if (d
>= sizeof(digest
))
5554 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5555 MD5_Update(&ctx
, last
, sizeof(digest
));
5556 MD5_Final(digest
, &ctx
);
5562 *value
++ ^= digest
[d
++];
5567 int find_filter(char const *name
, size_t len
)
5572 for (i
= 0; i
< MAXFILTER
; i
++)
5574 if (!*ip_filters
[i
].name
)
5582 if (strlen(ip_filters
[i
].name
) != len
)
5585 if (!strncmp(ip_filters
[i
].name
, name
, len
))
5592 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
5596 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
5597 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
5598 case FILTER_PORT_OP_GT
: return port
> p
->port
;
5599 case FILTER_PORT_OP_LT
: return port
< p
->port
;
5600 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
5606 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
5610 case FILTER_FLAG_OP_ANY
:
5611 return (flags
& sflags
) || (~flags
& cflags
);
5613 case FILTER_FLAG_OP_ALL
:
5614 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
5616 case FILTER_FLAG_OP_EST
:
5617 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
5623 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
5625 uint16_t frag_offset
;
5629 uint16_t src_port
= 0;
5630 uint16_t dst_port
= 0;
5632 ip_filter_rulet
*rule
;
5634 if (len
< 20) // up to end of destination address
5637 if ((*buf
>> 4) != 4) // IPv4
5640 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
5642 src_ip
= *(in_addr_t
*) (buf
+ 12);
5643 dst_ip
= *(in_addr_t
*) (buf
+ 16);
5645 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
5647 int l
= (buf
[0] & 0xf) * 4; // length of IP header
5648 if (len
< l
+ 4) // ports
5651 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
5652 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
5653 if (proto
== IPPROTO_TCP
)
5655 if (len
< l
+ 14) // flags
5658 flags
= buf
[l
+ 13] & 0x3f;
5662 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
5664 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
5667 if (rule
->src_wild
!= INADDR_BROADCAST
&&
5668 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
5671 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
5672 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
5677 // layer 4 deny rules are skipped
5678 if (rule
->action
== FILTER_ACTION_DENY
&&
5679 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
5687 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
5689 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
5692 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
5695 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
5696 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
5703 return rule
->action
== FILTER_ACTION_PERMIT
;