3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
15 #include <net/route.h>
18 #include <netinet/in.h>
19 #include <netinet/ip6.h>
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
29 #include <sys/resource.h>
37 #include <sys/sysinfo.h>
39 #include <linux/netlink.h>
40 #include <linux/rtnetlink.h>
47 #include "constants.h"
57 configt
*config
= NULL
; // all configuration
58 int nlfd
= -1; // netlink socket
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 rand_fd
= -1; // Random data source
67 int cluster_sockfd
= -1; // Intra-cluster communications socket.
68 int epollfd
= -1; // event polling
69 time_t basetime
= 0; // base clock
70 char hostname
[MAXHOSTNAME
] = ""; // us.
71 static int tunidx
; // ifr_ifindex of tun device
72 int nlseqnum
= 0; // netlink sequence number
73 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
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 char guest_users
[10][32]; // Array of guest users
79 int guest_accounts_num
= 0; // Number of guest users
81 // calculated from config->l2tp_mtu
82 uint16_t MRU
= 0; // PPP MRU
83 uint16_t MSS
= 0; // TCP MSS
85 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
86 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
91 } ip_hash
[256]; // Mapping from IP address to session structures.
95 struct ipv6radix
*branch
;
96 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
99 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
100 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
103 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
104 time_t time_now
= 0; // Current time in seconds since epoch.
105 uint64_t time_now_ms
= 0; // Current time in milliseconds since epoch.
106 static char time_now_string
[64] = {0}; // Current time as a string.
107 static int time_changed
= 0; // time_now changed
108 char main_quit
= 0; // True if we're in the process of exiting.
109 static char main_reload
= 0; // Re-load pending
110 linked_list
*loaded_plugins
;
111 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
113 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
114 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
116 config_descriptt config_values
[] = {
117 CONFIG("debug", debug
, INT
),
118 CONFIG("log_file", log_filename
, STRING
),
119 CONFIG("pid_file", pid_file
, STRING
),
120 CONFIG("random_device", random_device
, STRING
),
121 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
122 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
123 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
124 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
125 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
126 CONFIG("primary_dns", default_dns1
, IPv4
),
127 CONFIG("secondary_dns", default_dns2
, IPv4
),
128 CONFIG("primary_radius", radiusserver
[0], IPv4
),
129 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
130 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
131 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
132 CONFIG("radius_accounting", radius_accounting
, BOOL
),
133 CONFIG("radius_interim", radius_interim
, INT
),
134 CONFIG("radius_secret", radiussecret
, STRING
),
135 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
136 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
137 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
138 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
139 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
140 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
141 CONFIG("guest_account", guest_user
, STRING
),
142 CONFIG("bind_address", bind_address
, IPv4
),
143 CONFIG("peer_address", peer_address
, IPv4
),
144 CONFIG("send_garp", send_garp
, BOOL
),
145 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
146 CONFIG("throttle_buckets", num_tbfs
, INT
),
147 CONFIG("accounting_dir", accounting_dir
, STRING
),
148 CONFIG("dump_speed", dump_speed
, BOOL
),
149 CONFIG("multi_read_count", multi_read_count
, INT
),
150 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
151 CONFIG("lock_pages", lock_pages
, BOOL
),
152 CONFIG("icmp_rate", icmp_rate
, INT
),
153 CONFIG("packet_limit", max_packets
, INT
),
154 CONFIG("cluster_address", cluster_address
, IPv4
),
155 CONFIG("cluster_interface", cluster_interface
, STRING
),
156 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
157 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
158 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
159 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
160 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
161 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
162 CONFIG("hostname", hostname
, STRING
),
163 CONFIG("nexthop_address", nexthop_address
, IPv4
),
164 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
165 CONFIG("echo_timeout", echo_timeout
, INT
),
166 CONFIG("idle_echo_timeout", idle_echo_timeout
, INT
),
170 static char *plugin_functions
[] = {
175 "plugin_new_session",
176 "plugin_kill_session",
178 "plugin_radius_response",
179 "plugin_radius_reset",
180 "plugin_radius_account",
181 "plugin_become_master",
182 "plugin_new_session_master",
185 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
187 // Counters for shutdown sessions
188 static sessiont shut_acct
[8192];
189 static sessionidt shut_acct_n
= 0;
191 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
192 bundlet
*bundle
= NULL
; // Array of bundle structures.
193 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
194 sessiont
*session
= NULL
; // Array of session structures.
195 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
196 radiust
*radius
= NULL
; // Array of radius structures.
197 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
198 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
199 static controlt
*controlfree
= 0;
200 struct Tstats
*_statistics
= NULL
;
202 struct Tringbuffer
*ringbuffer
= NULL
;
205 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
206 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
207 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
208 static void uncache_ipmap(in_addr_t ip
);
209 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
210 static void free_ip_address(sessionidt s
);
211 static void dump_acct_info(int all
);
212 static void sighup_handler(int sig
);
213 static void shutdown_handler(int sig
);
214 static void sigchild_handler(int sig
);
215 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
216 static void update_config(void);
217 static void read_config_file(void);
218 static void initplugins(void);
219 static int add_plugin(char *plugin_name
);
220 static int remove_plugin(char *plugin_name
);
221 static void plugins_done(void);
222 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
223 static tunnelidt
new_tunnel(void);
224 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
225 static void bundleclear(bundleidt b
);
227 // on slaves, alow BGP to withdraw cleanly before exiting
230 // quit actions (master)
231 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
232 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
234 // return internal time (10ths since process startup), set f if given
235 // as a side-effect sets time_now, and time_changed
236 static clockt
now(double *f
)
240 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
241 if (t
.tv_sec
!= time_now
)
247 // Time in milliseconds
248 time_now_ms
= (t
.tv_sec
* 1000) + (t
.tv_usec
/1000);
250 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
253 // work out a retry time based on try number
254 // This is a straight bounded exponential backoff.
255 // Maximum re-try time is 32 seconds. (2^5).
256 clockt
backoff(uint8_t try)
258 if (try > 5) try = 5; // max backoff
259 return now(NULL
) + 10 * (1 << try);
264 // Log a debug message. Typically called via the LOG macro
266 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
268 static char message
[65536] = {0};
274 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
275 ringbuffer
->tail
= 0;
276 if (ringbuffer
->tail
== ringbuffer
->head
)
277 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
278 ringbuffer
->head
= 0;
280 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
281 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
282 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
283 va_start(ap
, format
);
284 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, 4095, format
, ap
);
289 if (config
->debug
< level
) return;
291 va_start(ap
, format
);
292 vsnprintf(message
, sizeof(message
), format
, ap
);
295 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
297 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
302 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
305 const uint8_t *d
= data
;
307 if (config
->debug
< level
) return;
309 // No support for _log_hex to syslog
312 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
313 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
315 for (i
= 0; i
< maxsize
; )
317 fprintf(log_stream
, "%4X: ", i
);
318 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
320 fprintf(log_stream
, "%02X ", d
[j
]);
322 fputs(": ", log_stream
);
325 for (; j
< i
+ 16; j
++)
327 fputs(" ", log_stream
);
329 fputs(": ", log_stream
);
332 fputs(" ", log_stream
);
333 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
335 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
336 fputc(d
[j
], log_stream
);
338 fputc('.', log_stream
);
341 fputs(" ", log_stream
);
345 fputs("\n", log_stream
);
349 setbuf(log_stream
, NULL
);
353 // update a counter, accumulating 2^32 wraps
354 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
356 uint32_t new = *counter
+ delta
;
363 // initialise the random generator
364 static void initrandom(char *source
)
366 static char path
[sizeof(config
->random_device
)] = "*undefined*";
368 // reinitialise only if we are forced to do so or if the config has changed
369 if (source
&& !strncmp(path
, source
, sizeof(path
)))
372 // close previous source, if any
381 snprintf(path
, sizeof(path
), "%s", source
);
385 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
387 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
388 path
, strerror(errno
));
393 // fill buffer with random data
394 void random_data(uint8_t *buf
, int len
)
401 n
= read(rand_fd
, buf
, len
);
402 if (n
>= len
) return;
407 LOG(0, 0, 0, "Error reading from random source: %s\n",
410 // fall back to rand()
418 // append missing data
420 // not using the low order bits from the prng stream
421 buf
[n
++] = (rand() >> 4) & 0xff;
426 // This adds it to the routing table, advertises it
427 // via BGP if enabled, and stuffs it into the
428 // 'sessionbyip' cache.
430 // 'ip' must be in _host_ order.
432 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
442 if (!prefixlen
) prefixlen
= 32;
444 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
446 memset(&req
, 0, sizeof(req
));
450 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
451 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
455 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
456 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
459 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
461 req
.rt
.rtm_family
= AF_INET
;
462 req
.rt
.rtm_dst_len
= prefixlen
;
463 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
464 req
.rt
.rtm_protocol
= 42;
465 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
466 req
.rt
.rtm_type
= RTN_UNICAST
;
468 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
470 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
474 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
477 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
478 fmtaddr(htonl(ip
), 0), prefixlen
,
479 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
481 if (netlink_send(&req
.nh
) < 0)
482 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
486 bgp_add_route(htonl(ip
), prefixlen
);
488 bgp_del_route(htonl(ip
), prefixlen
);
491 // Add/Remove the IPs to the 'sessionbyip' cache.
492 // Note that we add the zero address in the case of
493 // a network route. Roll on CIDR.
495 // Note that 's == 0' implies this is the address pool.
496 // We still cache it here, because it will pre-fill
497 // the malloc'ed tree.
501 if (!add
) // Are we deleting a route?
502 s
= 0; // Caching the session as '0' is the same as uncaching.
504 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
509 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
517 char ipv6addr
[INET6_ADDRSTRLEN
];
519 if (!config
->ipv6_prefix
.s6_addr
[0])
521 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
525 memset(&req
, 0, sizeof(req
));
529 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
530 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
534 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
535 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
538 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
540 req
.rt
.rtm_family
= AF_INET6
;
541 req
.rt
.rtm_dst_len
= prefixlen
;
542 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
543 req
.rt
.rtm_protocol
= 42;
544 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
545 req
.rt
.rtm_type
= RTN_UNICAST
;
547 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
548 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
550 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
552 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
554 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
557 if (netlink_send(&req
.nh
) < 0)
558 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
562 bgp_add_route6(ip
, prefixlen
);
564 bgp_del_route6(ip
, prefixlen
);
569 if (!add
) // Are we deleting a route?
570 s
= 0; // Caching the session as '0' is the same as uncaching.
572 cache_ipv6map(ip
, prefixlen
, s
);
579 // Set up netlink socket
580 static void initnetlink(void)
582 struct sockaddr_nl nladdr
;
584 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
587 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
591 memset(&nladdr
, 0, sizeof(nladdr
));
592 nladdr
.nl_family
= AF_NETLINK
;
593 nladdr
.nl_pid
= getpid();
595 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
597 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
602 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
604 struct sockaddr_nl nladdr
;
608 nh
->nlmsg_pid
= getpid();
609 nh
->nlmsg_seq
= ++nlseqnum
;
611 // set kernel address
612 memset(&nladdr
, 0, sizeof(nladdr
));
613 nladdr
.nl_family
= AF_NETLINK
;
615 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
616 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
618 return sendmsg(nlfd
, &msg
, 0);
621 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
623 struct sockaddr_nl nladdr
;
627 // set kernel address
628 memset(&nladdr
, 0, sizeof(nladdr
));
629 nladdr
.nl_family
= AF_NETLINK
;
631 iov
= (struct iovec
){ buf
, len
};
632 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
634 return recvmsg(nlfd
, &msg
, 0);
637 /* adapted from iproute2 */
638 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
640 int len
= RTA_LENGTH(alen
);
643 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
644 rta
->rta_type
= type
;
646 memcpy(RTA_DATA(rta
), data
, alen
);
647 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
650 // messages corresponding to different phases seq number
651 static char *tun_nl_phase_msg
[] = {
653 "getting tun interface index",
654 "setting tun interface parameters",
655 "setting tun IPv4 address",
656 "setting tun LL IPv6 address",
657 "setting tun global IPv6 address",
661 // Set up TUN interface
662 static void inittun(void)
666 memset(&ifr
, 0, sizeof(ifr
));
667 ifr
.ifr_flags
= IFF_TUN
;
669 tunfd
= open(TUNDEVICE
, O_RDWR
);
672 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
676 int flags
= fcntl(tunfd
, F_GETFL
, 0);
677 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
679 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
681 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
684 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevice
) - 1);
685 strncpy(config
->tundevice
, ifr
.ifr_name
, sizeof(config
->tundevice
));
687 tunidx
= if_nametoindex(config
->tundevice
);
690 LOG(0, 0, 0, "Can't get tun interface index\n");
699 struct ifinfomsg ifinfo
;
700 struct ifaddrmsg ifaddr
;
702 char rtdata
[32]; // 32 should be enough
704 uint32_t txqlen
, mtu
;
707 memset(&req
, 0, sizeof(req
));
709 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
710 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
711 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
713 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
714 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
715 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
716 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
718 /* Bump up the qlen to deal with bursts from the network */
720 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
721 /* set MTU to modem MRU */
723 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
725 if (netlink_send(&req
.nh
) < 0)
728 memset(&req
, 0, sizeof(req
));
730 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
731 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
732 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
734 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
735 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
736 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
737 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
739 if (config
->bind_address
)
740 ip
= config
->bind_address
;
742 ip
= 0x01010101; // 1.1.1.1
743 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
745 if (netlink_send(&req
.nh
) < 0)
748 // Only setup IPv6 on the tun device if we have a configured prefix
749 if (config
->ipv6_prefix
.s6_addr
[0]) {
752 memset(&req
, 0, sizeof(req
));
754 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
755 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
756 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
758 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
759 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
760 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
761 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
763 // Link local address is FE80::1
764 memset(&ip6
, 0, sizeof(ip6
));
765 ip6
.s6_addr
[0] = 0xFE;
766 ip6
.s6_addr
[1] = 0x80;
768 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
770 if (netlink_send(&req
.nh
) < 0)
773 memset(&req
, 0, sizeof(req
));
775 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
776 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
777 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
779 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
780 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
781 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
782 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
784 // Global address is prefix::1
785 ip6
= config
->ipv6_prefix
;
787 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
789 if (netlink_send(&req
.nh
) < 0)
793 memset(&req
, 0, sizeof(req
));
795 req
.nh
.nlmsg_type
= NLMSG_DONE
;
796 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
798 if (netlink_send(&req
.nh
) < 0)
801 // if we get an error for seqnum < min_initok_nlseqnum,
802 // we must exit as initialization went wrong
803 if (config
->ipv6_prefix
.s6_addr
[0])
804 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
806 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
812 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
817 static void initudp(void)
820 struct sockaddr_in addr
;
823 memset(&addr
, 0, sizeof(addr
));
824 addr
.sin_family
= AF_INET
;
825 addr
.sin_port
= htons(L2TPPORT
);
826 addr
.sin_addr
.s_addr
= config
->bind_address
;
827 udpfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
828 setsockopt(udpfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
830 int flags
= fcntl(udpfd
, F_GETFL
, 0);
831 fcntl(udpfd
, F_SETFL
, flags
| O_NONBLOCK
);
833 if (bind(udpfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
835 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
840 memset(&addr
, 0, sizeof(addr
));
841 addr
.sin_family
= AF_INET
;
842 addr
.sin_port
= htons(NSCTL_PORT
);
843 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
844 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
845 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
846 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
848 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
852 // Dynamic Authorization Extensions to RADIUS
853 memset(&addr
, 0, sizeof(addr
));
854 addr
.sin_family
= AF_INET
;
855 addr
.sin_port
= htons(config
->radius_dae_port
);
856 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
857 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
858 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
859 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
861 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
866 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
870 // Find session by IP, < 1 for not found
872 // Confusingly enough, this 'ip' must be
873 // in _network_ order. This being the common
874 // case when looking it up from IP packet headers.
876 // We actually use this cache for two things.
877 // #1. For used IP addresses, this maps to the
878 // session ID that it's used by.
879 // #2. For un-used IP addresses, this maps to the
880 // index into the pool table that contains that
884 static sessionidt
lookup_ipmap(in_addr_t ip
)
886 uint8_t *a
= (uint8_t *) &ip
;
887 union iphash
*h
= ip_hash
;
889 if (!(h
= h
[*a
++].idx
)) return 0;
890 if (!(h
= h
[*a
++].idx
)) return 0;
891 if (!(h
= h
[*a
++].idx
)) return 0;
896 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
898 struct ipv6radix
*curnode
;
901 char ipv6addr
[INET6_ADDRSTRLEN
];
903 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
907 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
909 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
914 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
915 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
922 sessionidt
sessionbyip(in_addr_t ip
)
924 sessionidt s
= lookup_ipmap(ip
);
927 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
933 sessionidt
sessionbyipv6(struct in6_addr ip
)
936 CSTAT(sessionbyipv6
);
938 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
939 (ip
.s6_addr
[0] == 0xFE &&
940 ip
.s6_addr
[1] == 0x80 &&
941 ip
.s6_addr16
[1] == 0 &&
942 ip
.s6_addr16
[2] == 0 &&
943 ip
.s6_addr16
[3] == 0)) {
944 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
946 s
= lookup_ipv6map(ip
);
949 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
956 // Take an IP address in HOST byte order and
957 // add it to the sessionid by IP cache.
959 // (It's actually cached in network order)
961 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
963 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
964 uint8_t *a
= (uint8_t *) &nip
;
965 union iphash
*h
= ip_hash
;
968 for (i
= 0; i
< 3; i
++)
970 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
979 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
982 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
983 // else a map to an ip pool index.
986 static void uncache_ipmap(in_addr_t ip
)
988 cache_ipmap(ip
, 0); // Assign it to the NULL session.
991 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
995 struct ipv6radix
*curnode
;
996 char ipv6addr
[INET6_ADDRSTRLEN
];
998 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
1000 bytes
= prefixlen
>> 3;
1003 if (curnode
->branch
== NULL
)
1005 if (!(curnode
->branch
= calloc(256,
1006 sizeof (struct ipv6radix
))))
1009 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1016 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1017 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1021 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1022 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1028 // CLI list to dump current ipcache.
1030 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1032 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1036 if (CLI_HELP_REQUESTED
)
1037 return CLI_HELP_NO_ARGS
;
1039 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1041 for (i
= 0; i
< 256; ++i
)
1047 for (j
= 0; j
< 256; ++j
)
1053 for (k
= 0; k
< 256; ++k
)
1059 for (l
= 0; l
< 256; ++l
)
1064 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1070 cli_print(cli
, "%d entries in cache", count
);
1075 // Find session by username, 0 for not found
1076 // walled garden users aren't authenticated, so the username is
1077 // reasonably useless. Ignore them to avoid incorrect actions
1079 // This is VERY inefficent. Don't call it often. :)
1081 sessionidt
sessionbyuser(char *username
)
1084 CSTAT(sessionbyuser
);
1086 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1088 if (!session
[s
].opened
)
1091 if (session
[s
].walled_garden
)
1092 continue; // Skip walled garden users.
1094 if (!strncmp(session
[s
].user
, username
, 128))
1098 return 0; // Not found.
1101 void send_garp(in_addr_t ip
)
1107 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1110 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1113 memset(&ifr
, 0, sizeof(ifr
));
1114 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1115 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1117 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1121 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1122 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1124 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1129 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1132 static sessiont
*sessiontbysessionidt(sessionidt s
)
1134 if (!s
|| s
>= MAXSESSION
) return NULL
;
1138 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1140 sessionidt val
= s
-session
;
1141 if (s
< session
|| val
>= MAXSESSION
) return 0;
1145 // actually send a control message for a specific tunnel
1146 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1148 struct sockaddr_in addr
;
1154 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1155 STAT(tunnel_tx_errors
);
1161 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1162 STAT(tunnel_tx_errors
);
1166 memset(&addr
, 0, sizeof(addr
));
1167 addr
.sin_family
= AF_INET
;
1168 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1169 addr
.sin_port
= htons(tunnel
[t
].port
);
1171 // sequence expected, if sequence in message
1172 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1174 // If this is a control message, deal with retries
1177 tunnel
[t
].last
= time_now
; // control message sent
1178 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1181 STAT(tunnel_retries
);
1182 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1186 if (sendto(udpfd
, buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1188 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1189 strerror(errno
), udpfd
, buf
, l
, inet_ntoa(addr
.sin_addr
));
1190 STAT(tunnel_tx_errors
);
1194 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1195 STAT(tunnel_tx_packets
);
1196 INC_STAT(tunnel_tx_bytes
, l
);
1200 // Tiny helper function to write data to
1201 // the 'tun' device.
1203 int tun_write(uint8_t * data
, int size
)
1205 return write(tunfd
, data
, size
);
1208 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1209 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1211 int d
= (tcp
[12] >> 4) * 4;
1218 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1221 if (tcp
+ d
> buf
+ len
) // short?
1229 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1232 if (mss
+ 2 > data
) return; // short?
1236 if (*opts
== 0) return; // end of options
1237 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1240 opts
+= opts
[1]; // skip over option
1243 if (!mss
) return; // not found
1244 orig
= ntohs(*(uint16_t *) mss
);
1246 if (orig
<= MSS
) return; // mss OK
1248 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1249 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1250 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1251 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1254 *(int16_t *) mss
= htons(MSS
);
1256 // adjust checksum (see rfc1141)
1257 sum
= orig
+ (~MSS
& 0xffff);
1258 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1259 sum
= (sum
& 0xffff) + (sum
>> 16);
1260 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1263 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1267 // Skip the four extra bytes
1279 proto
= ntohs(*(uint16_t *) p
);
1287 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1288 return; // closing session, PPP not processed
1290 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1291 processipin(s
, t
, p
, l
);
1293 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1297 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1298 return; // closing session, PPP not processed
1301 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1302 processipv6in(s
, t
, p
, l
);
1304 else if (proto
== PPPIPCP
)
1306 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1307 processipcp(s
, t
, p
, l
);
1309 else if (proto
== PPPCCP
)
1311 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1312 processccp(s
, t
, p
, l
);
1316 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1320 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1322 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1323 sp
->cout_delta
+= len
;
1325 sp
->last_data
= time_now
;
1327 sess_local
[s
].cout
+= len
; // To send to master..
1328 sess_local
[s
].pout
++;
1331 // process outgoing (to tunnel) IP
1333 static void processipout(uint8_t *buf
, int len
)
1340 uint8_t *data
= buf
; // Keep a copy of the originals.
1343 uint8_t fragbuf
[MAXETHER
+ 20];
1345 CSTAT(processipout
);
1347 if (len
< MIN_IP_SIZE
)
1349 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1350 STAT(tun_rx_errors
);
1353 if (len
>= MAXETHER
)
1355 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1356 STAT(tun_rx_errors
);
1360 // Skip the tun header
1364 // Got an IP header now
1365 if (*(uint8_t *)(buf
) >> 4 != 4)
1367 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1371 ip
= *(uint32_t *)(buf
+ 16);
1372 if (!(s
= sessionbyip(ip
)))
1374 // Is this a packet for a session that doesn't exist?
1375 static int rate
= 0; // Number of ICMP packets we've sent this second.
1376 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1378 if (last
!= time_now
)
1384 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1386 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1387 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1388 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1393 t
= session
[s
].tunnel
;
1394 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1396 LOG(3, s
, t
, "Packet size more than session MRU\n");
1402 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1403 if (config
->max_packets
> 0)
1405 if (sess_local
[s
].last_packet_out
== TIME
)
1407 int max
= config
->max_packets
;
1409 // All packets for throttled sessions are handled by the
1410 // master, so further limit by using the throttle rate.
1411 // A bit of a kludge, since throttle rate is in kbps,
1412 // but should still be generous given our average DSL
1413 // packet size is 200 bytes: a limit of 28kbps equates
1414 // to around 180 packets per second.
1415 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1416 max
= sp
->throttle_out
;
1418 if (++sess_local
[s
].packets_out
> max
)
1420 sess_local
[s
].packets_dropped
++;
1426 if (sess_local
[s
].packets_dropped
)
1428 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1429 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1430 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1431 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1435 sess_local
[s
].last_packet_out
= TIME
;
1436 sess_local
[s
].packets_out
= 1;
1437 sess_local
[s
].packets_dropped
= 0;
1441 // run access-list if any
1442 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1445 // adjust MSS on SYN and SYN,ACK packets with options
1446 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1448 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1449 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1450 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1455 // Are we throttling this session?
1456 if (config
->cluster_iam_master
)
1457 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1459 master_throttle_packet(sp
->tbf_out
, data
, size
);
1463 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1465 // We are walled-gardening this
1466 master_garden_packet(s
, data
, size
);
1470 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1472 // Add on L2TP header
1473 sessionidt members
[MAXBUNDLESES
];
1474 bundleidt bid
= session
[s
].bundle
;
1475 bundlet
*b
= &bundle
[bid
];
1476 uint32_t num_of_links
, nb_opened
;
1479 num_of_links
= b
->num_of_links
;
1481 for (i
= 0;i
< num_of_links
;i
++)
1484 if (session
[s
].ppp
.lcp
== Opened
)
1486 members
[nb_opened
] = s
;
1493 LOG(2, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1497 num_of_links
= nb_opened
;
1498 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1499 s
= members
[b
->current_ses
];
1500 t
= session
[s
].tunnel
;
1502 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1504 if (num_of_links
> 1)
1506 if(len
> MINFRAGLEN
)
1508 //for rotate traffic among the member links
1509 uint32_t divisor
= num_of_links
;
1511 divisor
= divisor
/2 + (divisor
& 1);
1513 // Partition the packet to "num_of_links" fragments
1514 uint32_t fraglen
= len
/ divisor
;
1515 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1516 uint32_t remain
= len
;
1518 // send the first packet
1519 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1521 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1524 update_session_out_stat(s
, sp
, fraglen
);
1527 while (remain
> last_fraglen
)
1529 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1530 s
= members
[b
->current_ses
];
1531 t
= session
[s
].tunnel
;
1533 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1534 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1536 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1537 update_session_out_stat(s
, sp
, fraglen
);
1540 // send the last fragment
1541 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1542 s
= members
[b
->current_ses
];
1543 t
= session
[s
].tunnel
;
1545 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1546 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1548 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1549 update_session_out_stat(s
, sp
, remain
);
1550 if (remain
!= last_fraglen
)
1551 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1555 // Send it as one frame
1556 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1558 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1559 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1560 update_session_out_stat(s
, sp
, len
);
1565 // Send it as one frame (NO MPPP Frame)
1566 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1568 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1569 update_session_out_stat(s
, sp
, len
);
1574 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1576 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1577 update_session_out_stat(s
, sp
, len
);
1580 // Snooping this session, send it to intercept box
1581 if (sp
->snoop_ip
&& sp
->snoop_port
)
1582 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1587 // process outgoing (to tunnel) IPv6
1589 static void processipv6out(uint8_t * buf
, int len
)
1595 struct in6_addr ip6
;
1597 uint8_t *data
= buf
; // Keep a copy of the originals.
1600 uint8_t b
[MAXETHER
+ 20];
1602 CSTAT(processipv6out
);
1604 if (len
< MIN_IP_SIZE
)
1606 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1607 STAT(tunnel_tx_errors
);
1610 if (len
>= MAXETHER
)
1612 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1613 STAT(tunnel_tx_errors
);
1617 // Skip the tun header
1621 // Got an IP header now
1622 if (*(uint8_t *)(buf
) >> 4 != 6)
1624 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1628 ip6
= *(struct in6_addr
*)(buf
+24);
1629 s
= sessionbyipv6(ip6
);
1633 ip
= *(uint32_t *)(buf
+ 32);
1634 s
= sessionbyip(ip
);
1639 // Is this a packet for a session that doesn't exist?
1640 static int rate
= 0; // Number of ICMP packets we've sent this second.
1641 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1643 if (last
!= time_now
)
1649 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1651 // FIXME: Should send icmp6 host unreachable
1655 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1657 bundleidt bid
= session
[s
].bundle
;
1658 bundlet
*b
= &bundle
[bid
];
1660 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1661 s
= b
->members
[b
->current_ses
];
1662 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1664 t
= session
[s
].tunnel
;
1666 sp
->last_data
= time_now
;
1668 // FIXME: add DoS prevention/filters?
1672 // Are we throttling this session?
1673 if (config
->cluster_iam_master
)
1674 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1676 master_throttle_packet(sp
->tbf_out
, data
, size
);
1679 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1681 // We are walled-gardening this
1682 master_garden_packet(s
, data
, size
);
1686 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1688 // Add on L2TP header
1690 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1692 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1695 // Snooping this session, send it to intercept box
1696 if (sp
->snoop_ip
&& sp
->snoop_port
)
1697 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1699 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1700 sp
->cout_delta
+= len
;
1704 sess_local
[s
].cout
+= len
; // To send to master..
1705 sess_local
[s
].pout
++;
1709 // Helper routine for the TBF filters.
1710 // Used to send queued data in to the user!
1712 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1717 uint8_t b
[MAXETHER
+ 20];
1719 if (len
< 0 || len
> MAXETHER
)
1721 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1725 // Skip the tun header
1732 t
= session
[s
].tunnel
;
1735 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1737 // Add on L2TP header
1739 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1741 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1744 // Snooping this session.
1745 if (sp
->snoop_ip
&& sp
->snoop_port
)
1746 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1748 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1749 sp
->cout_delta
+= len
;
1753 sess_local
[s
].cout
+= len
; // To send to master..
1754 sess_local
[s
].pout
++;
1757 // add an AVP (16 bit)
1758 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1760 uint16_t l
= (m
? 0x8008 : 0x0008);
1761 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1762 c
->buf16
[c
->length
/2 + 1] = htons(0);
1763 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1764 c
->buf16
[c
->length
/2 + 3] = htons(val
);
1768 // add an AVP (32 bit)
1769 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1771 uint16_t l
= (m
? 0x800A : 0x000A);
1772 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1773 c
->buf16
[c
->length
/2 + 1] = htons(0);
1774 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1775 *(uint32_t *) &c
->buf
[c
->length
+ 6] = htonl(val
);
1779 // add an AVP (string)
1780 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1782 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1783 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1784 c
->buf16
[c
->length
/2 + 1] = htons(0);
1785 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1786 memcpy(&c
->buf
[c
->length
+ 6], val
, strlen(val
));
1787 c
->length
+= 6 + strlen(val
);
1791 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1793 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1794 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1795 c
->buf16
[c
->length
/2 + 1] = htons(0);
1796 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1797 memcpy(&c
->buf
[c
->length
+ 6], val
, len
);
1798 c
->length
+= 6 + len
;
1801 // new control connection
1802 static controlt
*controlnew(uint16_t mtype
)
1806 c
= malloc(sizeof(controlt
));
1810 controlfree
= c
->next
;
1814 c
->buf16
[0] = htons(0xC802); // flags/ver
1816 control16(c
, 0, mtype
, 1);
1820 // send zero block if nothing is waiting
1822 static void controlnull(tunnelidt t
)
1825 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1828 buf
[0] = htons(0xC802); // flags/ver
1829 buf
[1] = htons(12); // length
1830 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1831 buf
[3] = htons(0); // session
1832 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1833 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1834 tunnelsend((uint8_t *)buf
, 12, t
);
1837 // add a control message to a tunnel, and send if within window
1838 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1840 c
->buf16
[1] = htons(c
->length
); // length
1841 c
->buf16
[2] = htons(tunnel
[t
].far
); // tunnel
1842 c
->buf16
[3] = htons(far
); // session
1843 c
->buf16
[4] = htons(tunnel
[t
].ns
); // sequence
1844 tunnel
[t
].ns
++; // advance sequence
1845 // link in message in to queue
1846 if (tunnel
[t
].controlc
)
1847 tunnel
[t
].controle
->next
= c
;
1849 tunnel
[t
].controls
= c
;
1851 tunnel
[t
].controle
= c
;
1852 tunnel
[t
].controlc
++;
1854 // send now if space in window
1855 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1857 tunnel
[t
].try = 0; // first send
1858 tunnelsend(c
->buf
, c
->length
, t
);
1863 // Throttle or Unthrottle a session
1865 // Throttle the data from/to through a session to no more than
1866 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1869 // If either value is -1, the current value is retained for that
1872 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1874 if (!session
[s
].opened
)
1875 return; // No-one home.
1877 if (!*session
[s
].user
)
1878 return; // User not logged in
1882 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1883 if (session
[s
].tbf_in
)
1884 free_tbf(session
[s
].tbf_in
);
1887 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1889 session
[s
].tbf_in
= 0;
1891 session
[s
].throttle_in
= rate_in
;
1896 int bytes
= rate_out
* 1024 / 8;
1897 if (session
[s
].tbf_out
)
1898 free_tbf(session
[s
].tbf_out
);
1901 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1903 session
[s
].tbf_out
= 0;
1905 session
[s
].throttle_out
= rate_out
;
1909 // add/remove filters from session (-1 = no change)
1910 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1912 if (!session
[s
].opened
)
1913 return; // No-one home.
1915 if (!*session
[s
].user
)
1916 return; // User not logged in
1919 if (filter_in
> MAXFILTER
) filter_in
= -1;
1920 if (filter_out
> MAXFILTER
) filter_out
= -1;
1921 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
1922 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
1926 if (session
[s
].filter_in
)
1927 ip_filters
[session
[s
].filter_in
- 1].used
--;
1930 ip_filters
[filter_in
- 1].used
++;
1932 session
[s
].filter_in
= filter_in
;
1935 if (filter_out
>= 0)
1937 if (session
[s
].filter_out
)
1938 ip_filters
[session
[s
].filter_out
- 1].used
--;
1941 ip_filters
[filter_out
- 1].used
++;
1943 session
[s
].filter_out
= filter_out
;
1947 // start tidy shutdown of session
1948 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
1950 int walled_garden
= session
[s
].walled_garden
;
1951 bundleidt b
= session
[s
].bundle
;
1952 //delete routes only for last session in bundle (in case of MPPP)
1953 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
1955 CSTAT(sessionshutdown
);
1957 if (!session
[s
].opened
)
1959 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
1960 return; // not a live session
1963 if (!session
[s
].die
)
1965 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
1966 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
1967 run_plugins(PLUGIN_KILL_SESSION
, &data
);
1968 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
1971 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
1973 // RADIUS Stop message
1974 uint16_t r
= radiusnew(s
);
1977 // stop, if not already trying
1978 if (radius
[r
].state
!= RADIUSSTOP
)
1980 radius
[r
].term_cause
= term_cause
;
1981 radius
[r
].term_msg
= reason
;
1982 radiussend(r
, RADIUSSTOP
);
1986 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
1988 // Save counters to dump to accounting file
1989 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
1990 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
1994 { // IP allocated, clear and unroute
1997 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
1999 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2000 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2003 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2004 session
[s
].route
[r
].ip
= 0;
2007 if (session
[s
].ip_pool_index
== -1) // static ip
2009 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2015 // unroute IPv6, if setup
2016 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
2017 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
2021 // This session was part of a bundle
2022 bundle
[b
].num_of_links
--;
2023 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2024 if(bundle
[b
].num_of_links
== 0)
2027 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2031 // Adjust the members array to accomodate the new change
2032 uint8_t mem_num
= 0;
2033 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2034 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2037 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2038 if(bundle
[b
].members
[ml
] == s
)
2043 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2044 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2046 // If the killed session is the first of the bundle,
2047 // the new first session must be stored in the cache_ipmap
2048 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2051 sessionidt new_s
= bundle
[b
].members
[0];
2054 // Add the route for this session.
2055 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2060 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2061 ip
= session
[new_s
].route
[r
].ip
;
2063 if (!prefixlen
) prefixlen
= 32;
2064 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2066 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2067 cache_ipmap(i
, new_s
);
2069 cache_ipmap(session
[new_s
].ip
, new_s
);
2072 if (session
[new_s
].ipv6prefixlen
)
2073 cache_ipv6map(session
[new_s
].ipv6route
, session
[new_s
].ipv6prefixlen
, new_s
);
2078 cluster_send_bundle(b
);
2082 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2083 throttle_session(s
, 0, 0);
2087 controlt
*c
= controlnew(14); // sending CDN
2091 buf
[0] = htons(cdn_result
);
2092 buf
[1] = htons(cdn_error
);
2093 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2096 control16(c
, 1, cdn_result
, 1);
2098 control16(c
, 14, s
, 1); // assigned session (our end)
2099 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2102 // update filter refcounts
2103 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2104 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2107 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2108 sess_local
[s
].lcp
.restart
= 0;
2109 sess_local
[s
].ipcp
.restart
= 0;
2110 sess_local
[s
].ipv6cp
.restart
= 0;
2111 sess_local
[s
].ccp
.restart
= 0;
2113 cluster_send_session(s
);
2116 void sendipcp(sessionidt s
, tunnelidt t
)
2118 uint8_t buf
[MAXETHER
];
2122 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2124 if (!session
[s
].unique_id
)
2126 if (!++last_id
) ++last_id
; // skip zero
2127 session
[s
].unique_id
= last_id
;
2130 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2134 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2135 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2136 q
[4] = 3; // ip address option
2137 q
[5] = 6; // option length
2138 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2139 config
->bind_address
? config
->bind_address
:
2140 my_address
; // send my IP
2142 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2143 restart_timer(s
, ipcp
);
2146 void sendipv6cp(sessionidt s
, tunnelidt t
)
2148 uint8_t buf
[MAXETHER
];
2152 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2154 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2158 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2159 // only send one type
2161 *(uint16_t *) (q
+ 2) = htons(14);
2162 q
[4] = 1; // interface identifier option
2163 q
[5] = 10; // option length
2164 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2165 *(uint32_t *) (q
+ 10) = 0;
2168 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2169 restart_timer(s
, ipv6cp
);
2172 static void sessionclear(sessionidt s
)
2174 memset(&session
[s
], 0, sizeof(session
[s
]));
2175 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2176 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2178 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2179 session
[s
].next
= sessionfree
;
2183 // kill a session now
2184 void sessionkill(sessionidt s
, char *reason
)
2188 if (!session
[s
].opened
) // not alive
2191 if (session
[s
].next
)
2193 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2197 if (!session
[s
].die
)
2198 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2200 if (sess_local
[s
].radius
)
2201 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2203 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2205 cluster_send_session(s
);
2208 static void tunnelclear(tunnelidt t
)
2211 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2212 tunnel
[t
].state
= TUNNELFREE
;
2215 static void bundleclear(bundleidt b
)
2218 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2219 bundle
[b
].state
= BUNDLEFREE
;
2222 // kill a tunnel now
2223 static void tunnelkill(tunnelidt t
, char *reason
)
2230 tunnel
[t
].state
= TUNNELDIE
;
2232 // free control messages
2233 while ((c
= tunnel
[t
].controls
))
2235 controlt
* n
= c
->next
;
2236 tunnel
[t
].controls
= n
;
2237 tunnel
[t
].controlc
--;
2238 c
->next
= controlfree
;
2242 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2243 if (session
[s
].tunnel
== t
)
2244 sessionkill(s
, reason
);
2248 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2249 cli_tunnel_actions
[t
].action
= 0;
2250 cluster_send_tunnel(t
);
2253 // shut down a tunnel cleanly
2254 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2258 CSTAT(tunnelshutdown
);
2260 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2262 // never set up, can immediately kill
2263 tunnelkill(t
, reason
);
2266 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2269 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2270 if (session
[s
].tunnel
== t
)
2271 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2273 tunnel
[t
].state
= TUNNELDIE
;
2274 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2275 cluster_send_tunnel(t
);
2276 // TBA - should we wait for sessions to stop?
2279 controlt
*c
= controlnew(4); // sending StopCCN
2284 buf
[0] = htons(result
);
2285 buf
[1] = htons(error
);
2288 int m
= strlen(msg
);
2289 if (m
+ 4 > sizeof(buf
))
2290 m
= sizeof(buf
) - 4;
2292 memcpy(buf
+2, msg
, m
);
2296 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2299 control16(c
, 1, result
, 1);
2301 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2302 controladd(c
, 0, t
); // send the message
2306 // read and process packet on tunnel (UDP)
2307 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
)
2309 uint8_t *chapresponse
= NULL
;
2310 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2311 uint8_t *p
= buf
+ 2;
2318 LOG_HEX(5, "UDP Data", buf
, len
);
2319 STAT(tunnel_rx_packets
);
2320 INC_STAT(tunnel_rx_bytes
, len
);
2323 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2324 STAT(tunnel_rx_errors
);
2327 if ((buf
[1] & 0x0F) != 2)
2329 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2330 STAT(tunnel_rx_errors
);
2335 l
= ntohs(*(uint16_t *) p
);
2338 t
= ntohs(*(uint16_t *) p
);
2340 s
= ntohs(*(uint16_t *) p
);
2342 if (s
>= MAXSESSION
)
2344 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2345 STAT(tunnel_rx_errors
);
2350 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2351 STAT(tunnel_rx_errors
);
2356 ns
= ntohs(*(uint16_t *) p
);
2358 nr
= ntohs(*(uint16_t *) p
);
2363 uint16_t o
= ntohs(*(uint16_t *) p
);
2368 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2369 STAT(tunnel_rx_errors
);
2374 // used to time out old tunnels
2375 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2376 tunnel
[t
].lastrec
= time_now
;
2380 uint16_t message
= 0xFFFF; // message type
2382 uint8_t mandatory
= 0;
2383 uint16_t asession
= 0; // assigned session
2384 uint32_t amagic
= 0; // magic number
2385 uint8_t aflags
= 0; // flags from last LCF
2386 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2387 char called
[MAXTEL
] = ""; // called number
2388 char calling
[MAXTEL
] = ""; // calling number
2390 if (!config
->cluster_iam_master
)
2392 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2396 // control messages must have bits 0x80|0x40|0x08
2397 // (type, length and sequence) set, and bits 0x02|0x01
2398 // (offset and priority) clear
2399 if ((*buf
& 0xCB) != 0xC8)
2401 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2402 STAT(tunnel_rx_errors
);
2406 // check for duplicate tunnel open message
2412 // Is this a duplicate of the first packet? (SCCRQ)
2414 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2416 if (tunnel
[i
].state
!= TUNNELOPENING
||
2417 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2418 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2421 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2426 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2427 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2429 // if no tunnel specified, assign one
2432 if (!(t
= new_tunnel()))
2434 LOG(1, 0, 0, "No more tunnels\n");
2435 STAT(tunnel_overflow
);
2439 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2440 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2441 tunnel
[t
].window
= 4; // default window
2442 STAT(tunnel_created
);
2443 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2444 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2447 // If the 'ns' just received is not the 'nr' we're
2448 // expecting, just send an ack and drop it.
2450 // if 'ns' is less, then we got a retransmitted packet.
2451 // if 'ns' is greater than missed a packet. Either way
2452 // we should ignore it.
2453 if (ns
!= tunnel
[t
].nr
)
2455 // is this the sequence we were expecting?
2456 STAT(tunnel_rx_errors
);
2457 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2458 t
, ns
, tunnel
[t
].nr
);
2460 if (l
) // Is this not a ZLB?
2465 // check sequence of this message
2467 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2468 // some to clear maybe?
2469 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2471 controlt
*c
= tunnel
[t
].controls
;
2472 tunnel
[t
].controls
= c
->next
;
2473 tunnel
[t
].controlc
--;
2474 c
->next
= controlfree
;
2477 tunnel
[t
].try = 0; // we have progress
2480 // receiver advance (do here so quoted correctly in any sends below)
2481 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2482 if (skip
< 0) skip
= 0;
2483 if (skip
< tunnel
[t
].controlc
)
2485 // some control packets can now be sent that were previous stuck out of window
2486 int tosend
= tunnel
[t
].window
- skip
;
2487 controlt
*c
= tunnel
[t
].controls
;
2495 tunnel
[t
].try = 0; // first send
2496 tunnelsend(c
->buf
, c
->length
, t
);
2501 if (!tunnel
[t
].controlc
)
2502 tunnel
[t
].retry
= 0; // caught up
2505 { // if not a null message
2510 // Default disconnect cause/message on receipt of CDN. Set to
2511 // more specific value from attribute 1 (result code) or 46
2512 // (disconnect cause) if present below.
2513 int disc_cause_set
= 0;
2514 int disc_cause
= TERM_NAS_REQUEST
;
2515 char const *disc_reason
= "Closed (Received CDN).";
2518 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2520 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2527 LOG(1, s
, t
, "Invalid length in AVP\n");
2528 STAT(tunnel_rx_errors
);
2533 if (flags
& 0x3C) // reserved bits, should be clear
2535 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2537 result
= 2; // general error
2538 error
= 3; // reserved field non-zero
2543 if (*(uint16_t *) (b
))
2545 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2547 result
= 2; // general error
2548 error
= 6; // generic vendor-specific error
2549 msg
= "unsupported vendor-specific";
2553 mtype
= ntohs(*(uint16_t *) (b
));
2561 // handle hidden AVPs
2562 if (!*config
->l2tp_secret
)
2564 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2566 result
= 2; // general error
2567 error
= 6; // generic vendor-specific error
2568 msg
= "secret not specified";
2571 if (!session
[s
].random_vector_length
)
2573 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2575 result
= 2; // general error
2576 error
= 6; // generic
2577 msg
= "no random vector";
2582 LOG(2, s
, t
, "Short hidden AVP.\n");
2584 result
= 2; // general error
2585 error
= 2; // length is wrong
2591 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2593 orig_len
= ntohs(*(uint16_t *) b
);
2594 if (orig_len
> n
+ 2)
2596 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2600 result
= 2; // general error
2601 error
= 2; // length is wrong
2610 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2611 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2615 case 0: // message type
2616 message
= ntohs(*(uint16_t *) b
);
2617 mandatory
= flags
& 0x80;
2618 LOG(4, s
, t
, " Message type = %u (%s)\n", *b
, l2tp_code(message
));
2620 case 1: // result code
2622 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2623 char const *resdesc
= "(unknown)";
2624 char const *errdesc
= NULL
;
2629 resdesc
= l2tp_stopccn_result_code(rescode
);
2630 cause
= TERM_LOST_SERVICE
;
2632 else if (message
== 14)
2634 resdesc
= l2tp_cdn_result_code(rescode
);
2636 cause
= TERM_LOST_CARRIER
;
2638 cause
= TERM_ADMIN_RESET
;
2641 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2644 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2645 errdesc
= l2tp_error_code(errcode
);
2646 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2649 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2651 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2653 disc_cause_set
= mtype
;
2654 disc_reason
= errdesc
? errdesc
: resdesc
;
2661 case 2: // protocol version
2663 version
= ntohs(*(uint16_t *) (b
));
2664 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2665 if (version
&& version
!= 0x0100)
2666 { // allow 0.0 and 1.0
2667 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2669 result
= 5; // unspported protocol version
2670 error
= 0x0100; // supported version
2676 case 3: // framing capabilities
2678 case 4: // bearer capabilities
2680 case 5: // tie breaker
2681 // We never open tunnels, so we don't care about tie breakers
2683 case 6: // firmware revision
2685 case 7: // host name
2686 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2687 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2688 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2689 // TBA - to send to RADIUS
2691 case 8: // vendor name
2692 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2693 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2694 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2696 case 9: // assigned tunnel
2697 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2698 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2700 case 10: // rx window
2701 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2702 if (!tunnel
[t
].window
)
2703 tunnel
[t
].window
= 1; // window of 0 is silly
2704 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2706 case 11: // Challenge
2708 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2709 build_chap_response(b
, 2, n
, &chapresponse
);
2712 case 13: // Response
2713 // Why did they send a response? We never challenge.
2714 LOG(2, s
, t
, " received unexpected challenge response\n");
2717 case 14: // assigned session
2718 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2719 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2721 case 15: // call serial number
2722 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2724 case 18: // bearer type
2725 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2728 case 19: // framing type
2729 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2732 case 21: // called number
2733 memset(called
, 0, sizeof(called
));
2734 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2735 LOG(4, s
, t
, " Called <%s>\n", called
);
2737 case 22: // calling number
2738 memset(calling
, 0, sizeof(calling
));
2739 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2740 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2744 case 24: // tx connect speed
2747 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2751 // AS5300s send connect speed as a string
2753 memset(tmp
, 0, sizeof(tmp
));
2754 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2755 session
[s
].tx_connect_speed
= atol(tmp
);
2757 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2759 case 38: // rx connect speed
2762 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2766 // AS5300s send connect speed as a string
2768 memset(tmp
, 0, sizeof(tmp
));
2769 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2770 session
[s
].rx_connect_speed
= atol(tmp
);
2772 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2774 case 25: // Physical Channel ID
2776 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2777 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2780 case 29: // Proxy Authentication Type
2782 uint16_t atype
= ntohs(*(uint16_t *)b
);
2783 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2786 case 30: // Proxy Authentication Name
2789 memset(authname
, 0, sizeof(authname
));
2790 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2791 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2795 case 31: // Proxy Authentication Challenge
2797 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2800 case 32: // Proxy Authentication ID
2802 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2803 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2806 case 33: // Proxy Authentication Response
2807 LOG(4, s
, t
, " Proxy Auth Response\n");
2809 case 27: // last sent lcp
2810 { // find magic number
2811 uint8_t *p
= b
, *e
= p
+ n
;
2812 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2814 if (*p
== 5 && p
[1] == 6) // Magic-Number
2815 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2816 else if (*p
== 7) // Protocol-Field-Compression
2817 aflags
|= SESSION_PFC
;
2818 else if (*p
== 8) // Address-and-Control-Field-Compression
2819 aflags
|= SESSION_ACFC
;
2824 case 28: // last recv lcp confreq
2826 case 26: // Initial Received LCP CONFREQ
2828 case 39: // seq required - we control it as an LNS anyway...
2830 case 36: // Random Vector
2831 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2832 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2833 if (n
> sizeof(session
[s
].random_vector
))
2834 n
= sizeof(session
[s
].random_vector
);
2835 memcpy(session
[s
].random_vector
, b
, n
);
2836 session
[s
].random_vector_length
= n
;
2838 case 46: // ppp disconnect cause
2841 uint16_t code
= ntohs(*(uint16_t *) b
);
2842 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2843 uint8_t dir
= *(b
+ 4);
2845 LOG(4, s
, t
, " PPP disconnect cause "
2846 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2847 code
, proto
, dir
, n
- 5, b
+ 5);
2849 disc_cause_set
= mtype
;
2853 case 1: // admin disconnect
2854 disc_cause
= TERM_ADMIN_RESET
;
2855 disc_reason
= "Administrative disconnect";
2857 case 3: // lcp terminate
2858 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2859 disc_cause
= TERM_USER_REQUEST
;
2860 disc_reason
= "Normal disconnection";
2862 case 4: // compulsory encryption unavailable
2863 if (dir
!= 1) break; // 1=refused by peer, 2=local
2864 disc_cause
= TERM_USER_ERROR
;
2865 disc_reason
= "Compulsory encryption refused";
2867 case 5: // lcp: fsm timeout
2868 disc_cause
= TERM_PORT_ERROR
;
2869 disc_reason
= "LCP: FSM timeout";
2871 case 6: // lcp: no recognisable lcp packets received
2872 disc_cause
= TERM_PORT_ERROR
;
2873 disc_reason
= "LCP: no recognisable LCP packets";
2875 case 7: // lcp: magic-no error (possibly looped back)
2876 disc_cause
= TERM_PORT_ERROR
;
2877 disc_reason
= "LCP: magic-no error (possible loop)";
2879 case 8: // lcp: echo request timeout
2880 disc_cause
= TERM_PORT_ERROR
;
2881 disc_reason
= "LCP: echo request timeout";
2883 case 13: // auth: fsm timeout
2884 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2885 disc_reason
= "Authentication: FSM timeout";
2887 case 15: // auth: unacceptable auth protocol
2888 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2889 disc_reason
= "Unacceptable authentication protocol";
2891 case 16: // auth: authentication failed
2892 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2893 disc_reason
= "Authentication failed";
2895 case 17: // ncp: fsm timeout
2896 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2897 disc_reason
= "NCP: FSM timeout";
2899 case 18: // ncp: no ncps available
2900 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2901 disc_reason
= "NCP: no NCPs available";
2903 case 19: // ncp: failure to converge on acceptable address
2904 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2905 disc_reason
= (dir
== 1)
2906 ? "NCP: too many Configure-Naks received from peer"
2907 : "NCP: too many Configure-Naks sent to peer";
2909 case 20: // ncp: user not permitted to use any address
2910 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2911 disc_reason
= (dir
== 1)
2912 ? "NCP: local link address not acceptable to peer"
2913 : "NCP: remote link address not acceptable";
2920 static char e
[] = "unknown AVP 0xXXXX";
2921 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
2923 result
= 2; // general error
2924 error
= 8; // unknown mandatory AVP
2925 sprintf((msg
= e
) + 14, "%04x", mtype
);
2932 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
2936 case 1: // SCCRQ - Start Control Connection Request
2937 tunnel
[t
].state
= TUNNELOPENING
;
2938 if (main_quit
!= QUIT_SHUTDOWN
)
2940 controlt
*c
= controlnew(2); // sending SCCRP
2941 control16(c
, 2, version
, 1); // protocol version
2942 control32(c
, 3, 3, 1); // framing
2943 controls(c
, 7, hostname
, 1); // host name
2944 if (chapresponse
) controlb(c
, 13, chapresponse
, 16, 1); // Challenge response
2945 control16(c
, 9, t
, 1); // assigned tunnel
2946 controladd(c
, 0, t
); // send the resply
2950 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
2954 tunnel
[t
].state
= TUNNELOPEN
;
2955 tunnel
[t
].lastrec
= time_now
;
2958 tunnel
[t
].state
= TUNNELOPEN
;
2959 tunnel
[t
].lastrec
= time_now
;
2960 controlnull(t
); // ack
2963 controlnull(t
); // ack
2964 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
2967 controlnull(t
); // simply ACK
2979 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
2981 controlt
*c
= controlnew(11); // ICRP
2984 sessionfree
= session
[s
].next
;
2985 memset(&session
[s
], 0, sizeof(session
[s
]));
2987 if (s
> config
->cluster_highest_sessionid
)
2988 config
->cluster_highest_sessionid
= s
;
2990 session
[s
].opened
= time_now
;
2991 session
[s
].tunnel
= t
;
2992 session
[s
].far
= asession
;
2993 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2994 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
2995 control16(c
, 14, s
, 1); // assigned session
2996 controladd(c
, asession
, t
); // send the reply
2998 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
2999 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3001 session
[s
].ppp
.phase
= Establish
;
3002 session
[s
].ppp
.lcp
= Starting
;
3004 STAT(session_created
);
3009 controlt
*c
= controlnew(14); // CDN
3012 STAT(session_overflow
);
3013 LOG(1, 0, t
, "No free sessions\n");
3014 control16(c
, 1, 4, 0); // temporary lack of resources
3017 control16(c
, 1, 2, 7); // shutting down, try another
3019 controladd(c
, asession
, t
); // send the message
3026 if (amagic
== 0) amagic
= time_now
;
3027 session
[s
].magic
= amagic
; // set magic number
3028 session
[s
].flags
= aflags
; // set flags received
3029 session
[s
].mru
= PPPoE_MRU
; // default
3030 controlnull(t
); // ack
3033 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3034 sess_local
[s
].ppp_mru
= MRU
;
3036 // Set multilink options before sending initial LCP packet
3037 sess_local
[s
].mp_mrru
= 1614;
3038 sess_local
[s
].mp_epdis
= ntohl(config
->bind_address
? config
->bind_address
: my_address
);
3041 change_state(s
, lcp
, RequestSent
);
3045 controlnull(t
); // ack
3046 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3049 LOG(1, s
, t
, "Missing message type\n");
3052 STAT(tunnel_rx_errors
);
3054 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3056 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3059 if (chapresponse
) free(chapresponse
);
3060 cluster_send_tunnel(t
);
3064 LOG(4, s
, t
, " Got a ZLB ack\n");
3071 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3072 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3073 { // HDLC address header, discard
3079 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3080 STAT(tunnel_rx_errors
);
3090 proto
= ntohs(*(uint16_t *) p
);
3095 if (s
&& !session
[s
].opened
) // Is something wrong??
3097 if (!config
->cluster_iam_master
)
3099 // Pass it off to the master to deal with..
3100 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3105 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3106 STAT(tunnel_rx_errors
);
3110 if (proto
== PPPPAP
)
3112 session
[s
].last_packet
= time_now
;
3113 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3114 processpap(s
, t
, p
, l
);
3116 else if (proto
== PPPCHAP
)
3118 session
[s
].last_packet
= time_now
;
3119 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3120 processchap(s
, t
, p
, l
);
3122 else if (proto
== PPPLCP
)
3124 session
[s
].last_packet
= time_now
;
3125 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3126 processlcp(s
, t
, p
, l
);
3128 else if (proto
== PPPIPCP
)
3130 session
[s
].last_packet
= time_now
;
3131 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3132 processipcp(s
, t
, p
, l
);
3134 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3136 session
[s
].last_packet
= time_now
;
3137 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3138 processipv6cp(s
, t
, p
, l
);
3140 else if (proto
== PPPCCP
)
3142 session
[s
].last_packet
= time_now
;
3143 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3144 processccp(s
, t
, p
, l
);
3146 else if (proto
== PPPIP
)
3150 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3151 return; // closing session, PPP not processed
3154 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3155 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3157 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3161 processipin(s
, t
, p
, l
);
3163 else if (proto
== PPPMP
)
3167 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3168 return; // closing session, PPP not processed
3171 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3172 if (!config
->cluster_iam_master
)
3174 // The fragments reconstruction is managed by the Master.
3175 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3179 processmpin(s
, t
, p
, l
);
3181 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3185 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3186 return; // closing session, PPP not processed
3189 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3190 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3192 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3196 processipv6in(s
, t
, p
, l
);
3198 else if (session
[s
].ppp
.lcp
== Opened
)
3200 session
[s
].last_packet
= time_now
;
3201 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3202 protoreject(s
, t
, p
, l
, proto
);
3206 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3207 proto
, ppp_state(session
[s
].ppp
.lcp
));
3212 // read and process packet on tun
3213 static void processtun(uint8_t * buf
, int len
)
3215 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3216 STAT(tun_rx_packets
);
3217 INC_STAT(tun_rx_bytes
, len
);
3225 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3226 STAT(tun_rx_errors
);
3230 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3231 processipout(buf
, len
);
3232 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3233 && config
->ipv6_prefix
.s6_addr
[0])
3234 processipv6out(buf
, len
);
3239 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3240 // that we look at the whole of the tunnel, radius and session tables
3242 static void regular_cleanups(double period
)
3244 // Next tunnel, radius and session to check for actions on.
3245 static tunnelidt t
= 0;
3247 static sessionidt s
= 0;
3260 // divide up tables into slices based on the last run
3261 t_slice
= config
->cluster_highest_tunnelid
* period
;
3262 r_slice
= (MAXRADIUS
- 1) * period
;
3263 s_slice
= config
->cluster_highest_sessionid
* period
;
3267 else if (t_slice
> config
->cluster_highest_tunnelid
)
3268 t_slice
= config
->cluster_highest_tunnelid
;
3272 else if (r_slice
> (MAXRADIUS
- 1))
3273 r_slice
= MAXRADIUS
- 1;
3277 else if (s_slice
> config
->cluster_highest_sessionid
)
3278 s_slice
= config
->cluster_highest_sessionid
;
3280 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3282 for (i
= 0; i
< t_slice
; i
++)
3285 if (t
> config
->cluster_highest_tunnelid
)
3288 // check for expired tunnels
3289 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3291 STAT(tunnel_timeout
);
3292 tunnelkill(t
, "Expired");
3296 // check for message resend
3297 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3299 // resend pending messages as timeout on reply
3300 if (tunnel
[t
].retry
<= TIME
)
3302 controlt
*c
= tunnel
[t
].controls
;
3303 uint16_t w
= tunnel
[t
].window
;
3304 tunnel
[t
].try++; // another try
3305 if (tunnel
[t
].try > 5)
3306 tunnelkill(t
, "Timeout on control message"); // game over
3310 tunnelsend(c
->buf
, c
->length
, t
);
3318 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3320 controlt
*c
= controlnew(6); // sending HELLO
3321 controladd(c
, 0, t
); // send the message
3322 LOG(3, 0, t
, "Sending HELLO message\n");
3326 // Check for tunnel changes requested from the CLI
3327 if ((a
= cli_tunnel_actions
[t
].action
))
3329 cli_tunnel_actions
[t
].action
= 0;
3330 if (a
& CLI_TUN_KILL
)
3332 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3333 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3339 for (i
= 0; i
< r_slice
; i
++)
3345 if (!radius
[r
].state
)
3348 if (radius
[r
].retry
<= TIME
)
3355 for (i
= 0; i
< s_slice
; i
++)
3358 if (s
> config
->cluster_highest_sessionid
)
3361 if (!session
[s
].opened
) // Session isn't in use
3364 // check for expired sessions
3367 if (session
[s
].die
<= TIME
)
3369 sessionkill(s
, "Expired");
3376 if (sess_local
[s
].lcp
.restart
<= time_now
)
3378 int next_state
= session
[s
].ppp
.lcp
;
3379 switch (session
[s
].ppp
.lcp
)
3383 next_state
= RequestSent
;
3386 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3388 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3389 sendlcp(s
, session
[s
].tunnel
);
3390 change_state(s
, lcp
, next_state
);
3394 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3395 STAT(session_timeout
);
3405 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3407 int next_state
= session
[s
].ppp
.ipcp
;
3408 switch (session
[s
].ppp
.ipcp
)
3412 next_state
= RequestSent
;
3415 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3417 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3418 sendipcp(s
, session
[s
].tunnel
);
3419 change_state(s
, ipcp
, next_state
);
3423 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3424 STAT(session_timeout
);
3434 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3436 int next_state
= session
[s
].ppp
.ipv6cp
;
3437 switch (session
[s
].ppp
.ipv6cp
)
3441 next_state
= RequestSent
;
3444 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3446 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3447 sendipv6cp(s
, session
[s
].tunnel
);
3448 change_state(s
, ipv6cp
, next_state
);
3452 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3453 change_state(s
, ipv6cp
, Stopped
);
3460 if (sess_local
[s
].ccp
.restart
<= time_now
)
3462 int next_state
= session
[s
].ppp
.ccp
;
3463 switch (session
[s
].ppp
.ccp
)
3467 next_state
= RequestSent
;
3470 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3472 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3473 sendccp(s
, session
[s
].tunnel
);
3474 change_state(s
, ccp
, next_state
);
3478 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3479 change_state(s
, ccp
, Stopped
);
3486 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3487 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3489 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3490 STAT(session_timeout
);
3495 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3496 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= config
->echo_timeout
) &&
3497 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3499 uint8_t b
[MAXETHER
];
3501 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3505 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3506 *(uint16_t *)(q
+ 2) = htons(8); // Length
3507 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3509 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3510 (int)(time_now
- session
[s
].last_packet
));
3511 tunnelsend(b
, 24, session
[s
].tunnel
); // send it
3512 sess_local
[s
].last_echo
= time_now
;
3516 // Drop sessions who have reached session_timeout seconds
3517 if (session
[s
].session_timeout
)
3519 bundleidt bid
= session
[s
].bundle
;
3522 if (time_now
- bundle
[bid
].last_check
>= 1)
3524 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3525 bundle
[bid
].last_check
= time_now
;
3526 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3529 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3531 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3538 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3540 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3546 // Drop sessions who have reached idle_timeout seconds
3547 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3549 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3550 STAT(session_timeout
);
3555 // Check for actions requested from the CLI
3556 if ((a
= cli_session_actions
[s
].action
))
3560 cli_session_actions
[s
].action
= 0;
3561 if (a
& CLI_SESS_KILL
)
3563 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3564 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3565 a
= 0; // dead, no need to check for other actions
3569 if (a
& CLI_SESS_NOSNOOP
)
3571 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3572 session
[s
].snoop_ip
= 0;
3573 session
[s
].snoop_port
= 0;
3577 else if (a
& CLI_SESS_SNOOP
)
3579 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3580 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3581 cli_session_actions
[s
].snoop_port
);
3583 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3584 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3589 if (a
& CLI_SESS_NOTHROTTLE
)
3591 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3592 throttle_session(s
, 0, 0);
3596 else if (a
& CLI_SESS_THROTTLE
)
3598 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3599 cli_session_actions
[s
].throttle_in
,
3600 cli_session_actions
[s
].throttle_out
);
3602 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3607 if (a
& CLI_SESS_NOFILTER
)
3609 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3610 filter_session(s
, 0, 0);
3614 else if (a
& CLI_SESS_FILTER
)
3616 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3617 cli_session_actions
[s
].filter_in
,
3618 cli_session_actions
[s
].filter_out
);
3620 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3626 cluster_send_session(s
);
3629 // RADIUS interim accounting
3630 if (config
->radius_accounting
&& config
->radius_interim
> 0
3631 && session
[s
].ip
&& !session
[s
].walled_garden
3632 && !sess_local
[s
].radius
// RADIUS already in progress
3633 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3634 && session
[s
].flags
& SESSION_STARTED
)
3636 int rad
= radiusnew(s
);
3639 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3640 STAT(radius_overflow
);
3644 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3645 session
[s
].user
, session
[s
].unique_id
);
3647 radiussend(rad
, RADIUSINTERIM
);
3648 sess_local
[s
].last_interim
= time_now
;
3653 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3654 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3658 // Are we in the middle of a tunnel update, or radius
3661 static int still_busy(void)
3664 static clockt last_talked
= 0;
3665 static clockt start_busy_wait
= 0;
3668 static time_t stopped_bgp
= 0;
3673 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3675 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3676 if (bgp_peers
[i
].state
== Established
)
3677 bgp_stop(&bgp_peers
[i
]);
3679 stopped_bgp
= time_now
;
3681 if (!config
->cluster_iam_master
)
3683 // we don't want to become master
3684 cluster_send_ping(0);
3690 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3695 if (!config
->cluster_iam_master
)
3698 if (main_quit
== QUIT_SHUTDOWN
)
3700 static int dropped
= 0;
3705 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3706 for (i
= 1; i
< MAXTUNNEL
; i
++)
3707 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3708 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3714 if (start_busy_wait
== 0)
3715 start_busy_wait
= TIME
;
3717 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3719 if (!tunnel
[i
].controlc
)
3722 if (last_talked
!= TIME
)
3724 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3730 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3731 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3733 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3737 for (i
= 1; i
< MAXRADIUS
; i
++)
3739 if (radius
[i
].state
== RADIUSNULL
)
3741 if (radius
[i
].state
== RADIUSWAIT
)
3744 if (last_talked
!= TIME
)
3746 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3756 # include <sys/epoll.h>
3758 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3759 # include "fake_epoll.h"
3762 // the base set of fds polled: cli, cluster, tun, udp, control, dae, netlink
3765 // additional polled fds
3767 # define EXTRA_FDS BGP_NUM_PEERS
3769 # define EXTRA_FDS 0
3772 // main loop - gets packets on tun or udp and processes them
3773 static void mainloop(void)
3777 clockt next_cluster_ping
= 0; // send initial ping immediately
3778 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3779 int maxevent
= sizeof(events
)/sizeof(*events
);
3781 if ((epollfd
= epoll_create(maxevent
)) < 0)
3783 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
3787 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d, nlfd=%d\n",
3788 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
, nlfd
);
3790 /* setup our fds to poll for input */
3792 static struct event_data d
[BASE_FDS
];
3793 struct epoll_event e
;
3800 d
[i
].type
= FD_TYPE_CLI
;
3801 e
.data
.ptr
= &d
[i
++];
3802 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
3805 d
[i
].type
= FD_TYPE_CLUSTER
;
3806 e
.data
.ptr
= &d
[i
++];
3807 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
3809 d
[i
].type
= FD_TYPE_TUN
;
3810 e
.data
.ptr
= &d
[i
++];
3811 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
3813 d
[i
].type
= FD_TYPE_UDP
;
3814 e
.data
.ptr
= &d
[i
++];
3815 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
, &e
);
3817 d
[i
].type
= FD_TYPE_CONTROL
;
3818 e
.data
.ptr
= &d
[i
++];
3819 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
3821 d
[i
].type
= FD_TYPE_DAE
;
3822 e
.data
.ptr
= &d
[i
++];
3823 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
3825 d
[i
].type
= FD_TYPE_NETLINK
;
3826 e
.data
.ptr
= &d
[i
++];
3827 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
3831 signal(SIGPIPE
, SIG_IGN
);
3832 bgp_setup(config
->as_number
);
3833 if (config
->bind_address
)
3834 bgp_add_route(config
->bind_address
, 0xffffffff);
3836 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3838 if (config
->neighbour
[i
].name
[0])
3839 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
3840 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
3841 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
3842 0); /* 0 = routing disabled */
3846 while (!main_quit
|| still_busy())
3856 config
->reload_config
++;
3859 if (config
->reload_config
)
3861 config
->reload_config
= 0;
3869 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
3870 STAT(select_called
);
3875 if (errno
== EINTR
||
3876 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
3879 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
3885 struct sockaddr_in addr
;
3886 struct in_addr local
;
3891 int cluster_ready
= 0;
3894 int cluster_pkts
= 0;
3896 uint32_t bgp_events
[BGP_NUM_PEERS
];
3897 memset(bgp_events
, 0, sizeof(bgp_events
));
3900 for (c
= n
, i
= 0; i
< c
; i
++)
3902 struct event_data
*d
= events
[i
].data
.ptr
;
3906 case FD_TYPE_CLI
: // CLI connections
3910 alen
= sizeof(addr
);
3911 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
3917 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
3923 // these are handled below, with multiple interleaved reads
3924 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
3925 case FD_TYPE_TUN
: tun_ready
++; break;
3926 case FD_TYPE_UDP
: udp_ready
++; break;
3928 case FD_TYPE_CONTROL
: // nsctl commands
3929 alen
= sizeof(addr
);
3930 s
= recvfromto(controlfd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3931 if (s
> 0) processcontrol(buf
, s
, &addr
, alen
, &local
);
3935 case FD_TYPE_DAE
: // DAE requests
3936 alen
= sizeof(addr
);
3937 s
= recvfromto(daefd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3938 if (s
> 0) processdae(buf
, s
, &addr
, alen
, &local
);
3942 case FD_TYPE_RADIUS
: // RADIUS response
3943 alen
= sizeof(addr
);
3944 s
= recvfrom(radfds
[d
->index
], buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
3945 if (s
>= 0 && config
->cluster_iam_master
)
3947 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
3948 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
3949 processrad(buf
, s
, d
->index
);
3951 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
3952 fmtaddr(addr
.sin_addr
.s_addr
, 0));
3960 bgp_events
[d
->index
] = events
[i
].events
;
3965 case FD_TYPE_NETLINK
:
3967 struct nlmsghdr
*nh
= (struct nlmsghdr
*)buf
;
3968 s
= netlink_recv(buf
, sizeof(buf
));
3969 if (nh
->nlmsg_type
== NLMSG_ERROR
)
3971 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
3974 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
3976 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
3981 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
3986 LOG(1, 0, 0, "Got a unknown netlink message: type %d seq %d flags %d\n", nh
->nlmsg_type
, nh
->nlmsg_seq
, nh
->nlmsg_flags
);
3992 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
3997 bgp_process(bgp_events
);
4000 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4005 alen
= sizeof(addr
);
4006 if ((s
= recvfrom(udpfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
4008 processudp(buf
, s
, &addr
);
4021 if ((s
= read(tunfd
, buf
, sizeof(buf
))) > 0)
4036 alen
= sizeof(addr
);
4037 if ((s
= recvfrom(cluster_sockfd
, buf
, sizeof(buf
), MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4039 processcluster(buf
, s
, addr
.sin_addr
.s_addr
);
4050 if (udp_pkts
> 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4051 STAT(multi_read_used
);
4053 if (c
>= config
->multi_read_count
)
4055 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
4056 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
);
4058 STAT(multi_read_exceeded
);
4064 /* no event received, but timers could still have expired */
4065 bgp_process_peers_timers();
4070 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4072 // Log current traffic stats
4073 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4074 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4075 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4076 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4077 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4079 udp_tx
= udp_rx
= 0;
4080 udp_rx_pkt
= eth_rx_pkt
= 0;
4081 eth_tx
= eth_rx
= 0;
4084 if (config
->dump_speed
)
4085 printf("%s\n", config
->bandwidth
);
4087 // Update the internal time counter
4088 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4092 struct param_timer p
= { time_now
};
4093 run_plugins(PLUGIN_TIMER
, &p
);
4097 // Runs on every machine (master and slaves).
4098 if (next_cluster_ping
<= TIME
)
4100 // Check to see which of the cluster is still alive..
4102 cluster_send_ping(basetime
); // Only does anything if we're a slave
4103 cluster_check_master(); // ditto.
4105 cluster_heartbeat(); // Only does anything if we're a master.
4106 cluster_check_slaves(); // ditto.
4108 master_update_counts(); // If we're a slave, send our byte counters to our master.
4110 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4111 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4113 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4116 if (!config
->cluster_iam_master
)
4119 // Run token bucket filtering queue..
4120 // Only run it every 1/10th of a second.
4122 static clockt last_run
= 0;
4123 if (last_run
!= TIME
)
4130 // Handle timeouts, retries etc.
4132 static double last_clean
= 0;
4136 TIME
= now(&this_clean
);
4137 diff
= this_clean
- last_clean
;
4139 // Run during idle time (after we've handled
4140 // all incoming packets) or every 1/10th sec
4141 if (!more
|| diff
> 0.1)
4143 regular_cleanups(diff
);
4144 last_clean
= this_clean
;
4148 if (*config
->accounting_dir
)
4150 static clockt next_acct
= 0;
4151 static clockt next_shut_acct
= 0;
4153 if (next_acct
<= TIME
)
4155 // Dump accounting data
4156 next_acct
= TIME
+ ACCT_TIME
;
4157 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4160 else if (next_shut_acct
<= TIME
)
4162 // Dump accounting data for shutdown sessions
4163 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4170 // Are we the master and shutting down??
4171 if (config
->cluster_iam_master
)
4172 cluster_heartbeat(); // Flush any queued changes..
4174 // Ok. Notify everyone we're shutting down. If we're
4175 // the master, this will force an election.
4176 cluster_send_ping(0);
4179 // Important!!! We MUST not process any packets past this point!
4180 LOG(1, 0, 0, "Shutdown complete\n");
4183 static void stripdomain(char *host
)
4187 if ((p
= strchr(host
, '.')))
4193 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4199 while (fgets(buf
, sizeof(buf
), resolv
))
4201 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4204 if (!isspace(buf
[6]))
4208 while (isspace(*b
)) b
++;
4213 while (*b
&& !isspace(*b
)) b
++;
4215 if (buf
[0] == 'd') // domain is canonical
4221 // first search line
4224 // hold, may be subsequent domain line
4225 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4236 int hl
= strlen(host
);
4237 int dl
= strlen(domain
);
4238 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4239 host
[hl
-dl
- 1] = 0;
4243 *p
= 0; // everything after first dot
4248 // Init data structures
4249 static void initdata(int optdebug
, char *optconfig
)
4253 if (!(config
= shared_malloc(sizeof(configt
))))
4255 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4259 memset(config
, 0, sizeof(configt
));
4260 time(&config
->start_time
);
4261 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4262 config
->debug
= optdebug
;
4263 config
->num_tbfs
= MAXTBFS
;
4264 config
->rl_rate
= 28; // 28kbps
4265 config
->cluster_mcast_ttl
= 1;
4266 config
->cluster_master_min_adv
= 1;
4267 config
->ppp_restart_time
= 3;
4268 config
->ppp_max_configure
= 10;
4269 config
->ppp_max_failure
= 5;
4270 config
->kill_timedout_sessions
= 1;
4271 strcpy(config
->random_device
, RANDOMDEVICE
);
4272 // Set default value echo_timeout and idle_echo_timeout
4273 config
->echo_timeout
= ECHO_TIMEOUT
;
4274 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4276 log_stream
= stderr
;
4279 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4281 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4284 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4287 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4289 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4292 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4294 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4297 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4299 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4302 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4304 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4307 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4309 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4313 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4315 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4319 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4321 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4325 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4327 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4331 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4333 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4336 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4338 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4340 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4343 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4345 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4347 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4350 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4352 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4353 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4354 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4355 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4356 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4358 // Put all the sessions on the free list marked as undefined.
4359 for (i
= 1; i
< MAXSESSION
; i
++)
4361 session
[i
].next
= i
+ 1;
4362 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4364 session
[MAXSESSION
- 1].next
= 0;
4367 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4368 for (i
= 1; i
< MAXTUNNEL
; i
++)
4369 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4371 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4372 bundle
[i
].state
= BUNDLEUNDEF
;
4377 // Grab my hostname unless it's been specified
4378 gethostname(hostname
, sizeof(hostname
));
4379 stripdomain(hostname
);
4382 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4385 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4387 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4393 static int assign_ip_address(sessionidt s
)
4397 time_t best_time
= time_now
;
4398 char *u
= session
[s
].user
;
4402 CSTAT(assign_ip_address
);
4404 for (i
= 1; i
< ip_pool_size
; i
++)
4406 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4409 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4416 if (ip_address_pool
[i
].last
< best_time
)
4419 if (!(best_time
= ip_address_pool
[i
].last
))
4420 break; // never used, grab this one
4426 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4430 session
[s
].ip
= ip_address_pool
[best
].address
;
4431 session
[s
].ip_pool_index
= best
;
4432 ip_address_pool
[best
].assigned
= 1;
4433 ip_address_pool
[best
].last
= time_now
;
4434 ip_address_pool
[best
].session
= s
;
4435 if (session
[s
].walled_garden
)
4436 /* Don't track addresses of users in walled garden (note: this
4437 means that their address isn't "sticky" even if they get
4439 ip_address_pool
[best
].user
[0] = 0;
4441 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4444 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4445 reuse
? "Reusing" : "Allocating", best
);
4450 static void free_ip_address(sessionidt s
)
4452 int i
= session
[s
].ip_pool_index
;
4455 CSTAT(free_ip_address
);
4458 return; // what the?
4460 if (i
< 0) // Is this actually part of the ip pool?
4464 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4466 ip_address_pool
[i
].assigned
= 0;
4467 ip_address_pool
[i
].session
= 0;
4468 ip_address_pool
[i
].last
= time_now
;
4472 // Fsck the address pool against the session table.
4473 // Normally only called when we become a master.
4475 // This isn't perfect: We aren't keep tracking of which
4476 // users used to have an IP address.
4478 void rebuild_address_pool(void)
4483 // Zero the IP pool allocation, and build
4484 // a map from IP address to pool index.
4485 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4487 ip_address_pool
[i
].assigned
= 0;
4488 ip_address_pool
[i
].session
= 0;
4489 if (!ip_address_pool
[i
].address
)
4492 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4495 for (i
= 0; i
< MAXSESSION
; ++i
)
4498 if (!(session
[i
].opened
&& session
[i
].ip
))
4501 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4503 if (session
[i
].ip_pool_index
< 0)
4505 // Not allocated out of the pool.
4506 if (ipid
< 1) // Not found in the pool either? good.
4509 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4510 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4512 // Fall through and process it as part of the pool.
4516 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4518 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4520 session
[i
].ip_pool_index
= ipid
;
4524 ip_address_pool
[ipid
].assigned
= 1;
4525 ip_address_pool
[ipid
].session
= i
;
4526 ip_address_pool
[ipid
].last
= time_now
;
4527 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4528 session
[i
].ip_pool_index
= ipid
;
4529 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4534 // Fix the address pool to match a changed session.
4535 // (usually when the master sends us an update).
4536 static void fix_address_pool(int sid
)
4540 ipid
= session
[sid
].ip_pool_index
;
4542 if (ipid
> ip_pool_size
)
4543 return; // Ignore it. rebuild_address_pool will fix it up.
4545 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4546 return; // Just ignore it. rebuild_address_pool will take care of it.
4548 ip_address_pool
[ipid
].assigned
= 1;
4549 ip_address_pool
[ipid
].session
= sid
;
4550 ip_address_pool
[ipid
].last
= time_now
;
4551 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4555 // Add a block of addresses to the IP pool to hand out.
4557 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4561 prefixlen
= 32; // Host route only.
4563 addr
&= 0xffffffff << (32 - prefixlen
);
4565 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4568 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4570 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4571 continue; // Skip 0 and broadcast addresses.
4573 ip_address_pool
[ip_pool_size
].address
= i
;
4574 ip_address_pool
[ip_pool_size
].assigned
= 0;
4576 if (ip_pool_size
>= MAXIPPOOL
)
4578 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4584 // Initialize the IP address pool
4585 static void initippool()
4590 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4592 if (!(f
= fopen(IPPOOLFILE
, "r")))
4594 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4598 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4601 buf
[4095] = 0; // Force it to be zero terminated/
4603 if (*buf
== '#' || *buf
== '\n')
4604 continue; // Skip comments / blank lines
4605 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4606 if ((p
= (char *)strchr(buf
, ':')))
4610 src
= inet_addr(buf
);
4611 if (src
== INADDR_NONE
)
4613 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4616 // This entry is for a specific IP only
4617 if (src
!= config
->bind_address
)
4622 if ((p
= (char *)strchr(pool
, '/')))
4626 in_addr_t start
= 0;
4628 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4630 if (!*p
|| !(numbits
= atoi(p
)))
4632 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4635 start
= ntohl(inet_addr(pool
));
4637 // Add a static route for this pool
4638 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4639 fmtaddr(htonl(start
), 0), numbits
);
4641 routeset(0, start
, numbits
, 0, 1);
4643 add_to_ip_pool(start
, numbits
);
4647 // It's a single ip address
4648 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4652 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4655 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4657 struct sockaddr_in snoop_addr
= {0};
4658 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4661 snoop_addr
.sin_family
= AF_INET
;
4662 snoop_addr
.sin_addr
.s_addr
= destination
;
4663 snoop_addr
.sin_port
= ntohs(port
);
4665 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4666 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4667 htons(snoop_addr
.sin_port
));
4669 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4670 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4672 STAT(packets_snooped
);
4675 static int dump_session(FILE **f
, sessiont
*s
)
4677 if (!s
->opened
|| !s
->ip
|| !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4682 char filename
[1024];
4684 time_t now
= time(NULL
);
4686 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4687 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4689 if (!(*f
= fopen(filename
, "w")))
4691 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4695 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4696 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4701 "# format: username ip qos uptxoctets downrxoctets\n",
4703 fmtaddr(config
->bind_address
? config
->bind_address
: my_address
, 0),
4708 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4709 fprintf(*f
, "%s %s %d %u %u\n",
4710 s
->user
, // username
4711 fmtaddr(htonl(s
->ip
), 0), // ip
4712 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4713 (uint32_t) s
->cin_delta
, // uptxoctets
4714 (uint32_t) s
->cout_delta
); // downrxoctets
4716 s
->cin_delta
= s
->cout_delta
= 0;
4721 static void dump_acct_info(int all
)
4727 CSTAT(dump_acct_info
);
4731 for (i
= 0; i
< shut_acct_n
; i
++)
4732 dump_session(&f
, &shut_acct
[i
]);
4738 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4739 dump_session(&f
, &session
[i
]);
4746 int main(int argc
, char *argv
[])
4750 char *optconfig
= CONFIGFILE
;
4752 time(&basetime
); // start clock
4755 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
4760 if (fork()) exit(0);
4762 freopen("/dev/null", "r", stdin
);
4763 freopen("/dev/null", "w", stdout
);
4764 freopen("/dev/null", "w", stderr
);
4773 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
4776 printf("Args are:\n"
4777 "\t-d\t\tDetach from terminal\n"
4778 "\t-c <file>\tConfig file\n"
4779 "\t-h <hostname>\tForce hostname\n"
4787 // Start the timer routine off
4789 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4792 initdata(optdebug
, optconfig
);
4796 /* set hostname /after/ having read the config file */
4797 if (*config
->hostname
)
4798 strcpy(hostname
, config
->hostname
);
4799 cli_init_complete(hostname
);
4801 init_tbf(config
->num_tbfs
);
4803 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
4804 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
4805 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4808 rlim
.rlim_cur
= RLIM_INFINITY
;
4809 rlim
.rlim_max
= RLIM_INFINITY
;
4810 // Remove the maximum core size
4811 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
4812 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
4814 // Make core dumps go to /tmp
4818 if (config
->scheduler_fifo
)
4821 struct sched_param params
= {0};
4822 params
.sched_priority
= 1;
4824 if (get_nprocs() < 2)
4826 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
4827 config
->scheduler_fifo
= 0;
4831 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
4833 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
4837 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
4838 config
->scheduler_fifo
= 0;
4845 /* Set up the cluster communications port. */
4846 if (cluster_init() < 0)
4850 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevice
);
4858 unsigned seed
= time_now
^ getpid();
4859 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
4863 signal(SIGHUP
, sighup_handler
);
4864 signal(SIGCHLD
, sigchild_handler
);
4865 signal(SIGTERM
, shutdown_handler
);
4866 signal(SIGINT
, shutdown_handler
);
4867 signal(SIGQUIT
, shutdown_handler
);
4869 // Prevent us from getting paged out
4870 if (config
->lock_pages
)
4872 if (!mlockall(MCL_CURRENT
))
4873 LOG(1, 0, 0, "Locking pages into memory\n");
4875 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
4880 /* remove plugins (so cleanup code gets run) */
4883 // Remove the PID file if we wrote it
4884 if (config
->wrote_pid
&& *config
->pid_file
== '/')
4885 unlink(config
->pid_file
);
4887 /* kill CLI children */
4888 signal(SIGTERM
, SIG_IGN
);
4893 static void sighup_handler(int sig
)
4898 static void shutdown_handler(int sig
)
4900 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
4903 static void sigchild_handler(int sig
)
4905 while (waitpid(-1, NULL
, WNOHANG
) > 0)
4909 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
4912 *challenge_response
= NULL
;
4914 if (!*config
->l2tp_secret
)
4916 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
4920 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
4922 *challenge_response
= calloc(17, 1);
4925 MD5_Update(&ctx
, &id
, 1);
4926 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
4927 MD5_Update(&ctx
, challenge
, challenge_length
);
4928 MD5_Final(*challenge_response
, &ctx
);
4933 static int facility_value(char *name
)
4936 for (i
= 0; facilitynames
[i
].c_name
; i
++)
4938 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
4939 return facilitynames
[i
].c_val
;
4944 static void update_config()
4948 static int timeout
= 0;
4949 static int interval
= 0;
4956 if (log_stream
!= stderr
)
4962 if (*config
->log_filename
)
4964 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
4966 char *p
= config
->log_filename
+ 7;
4969 openlog("l2tpns", LOG_PID
, facility_value(p
));
4973 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
4975 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
4977 fseek(log_stream
, 0, SEEK_END
);
4978 setbuf(log_stream
, NULL
);
4982 log_stream
= stderr
;
4983 setbuf(log_stream
, NULL
);
4989 log_stream
= stderr
;
4990 setbuf(log_stream
, NULL
);
4993 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
4994 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
4996 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
4997 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
4998 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5000 // reset MRU/MSS globals
5001 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5002 if (MRU
> PPPoE_MRU
)
5005 MSS
= MRU
- TCP_HDRS
;
5008 config
->numradiusservers
= 0;
5009 for (i
= 0; i
< MAXRADSERVER
; i
++)
5010 if (config
->radiusserver
[i
])
5012 config
->numradiusservers
++;
5013 // Set radius port: if not set, take the port from the
5014 // first radius server. For the first radius server,
5015 // take the #defined default value from l2tpns.h
5017 // test twice, In case someone works with
5018 // a secondary radius server without defining
5019 // a primary one, this will work even then.
5020 if (i
> 0 && !config
->radiusport
[i
])
5021 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5022 if (!config
->radiusport
[i
])
5023 config
->radiusport
[i
] = RADPORT
;
5026 if (!config
->numradiusservers
)
5027 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5029 // parse radius_authtypes_s
5030 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5031 p
= config
->radius_authtypes_s
;
5034 char *s
= strpbrk(p
, " \t,");
5040 while (*s
== ' ' || *s
== '\t')
5047 if (!strncasecmp("chap", p
, strlen(p
)))
5049 else if (!strncasecmp("pap", p
, strlen(p
)))
5052 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5054 config
->radius_authtypes
|= type
;
5055 if (!config
->radius_authprefer
)
5056 config
->radius_authprefer
= type
;
5061 if (!config
->radius_authtypes
)
5063 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5064 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5067 // normalise radius_authtypes_s
5068 if (config
->radius_authprefer
== AUTHPAP
)
5070 strcpy(config
->radius_authtypes_s
, "pap");
5071 if (config
->radius_authtypes
& AUTHCHAP
)
5072 strcat(config
->radius_authtypes_s
, ", chap");
5076 strcpy(config
->radius_authtypes_s
, "chap");
5077 if (config
->radius_authtypes
& AUTHPAP
)
5078 strcat(config
->radius_authtypes_s
, ", pap");
5081 if (!config
->radius_dae_port
)
5082 config
->radius_dae_port
= DAEPORT
;
5084 // re-initialise the random number source
5085 initrandom(config
->random_device
);
5088 for (i
= 0; i
< MAXPLUGINS
; i
++)
5090 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5093 if (*config
->plugins
[i
])
5096 add_plugin(config
->plugins
[i
]);
5098 else if (*config
->old_plugins
[i
])
5101 remove_plugin(config
->old_plugins
[i
]);
5106 guest_accounts_num
= 0;
5107 char *p2
= config
->guest_user
;
5110 char *s
= strpbrk(p2
, " \t,");
5114 while (*s
== ' ' || *s
== '\t')
5121 strcpy(guest_users
[guest_accounts_num
], p2
);
5122 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5123 guest_accounts_num
++;
5126 // Rebuild the guest_user array
5127 strcpy(config
->guest_user
, "");
5129 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5131 strcat(config
->guest_user
, guest_users
[ui
]);
5132 if (ui
<guest_accounts_num
-1)
5134 strcat(config
->guest_user
, ",");
5139 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5140 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5141 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5142 if (!*config
->cluster_interface
)
5143 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5145 if (!config
->cluster_hb_interval
)
5146 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5148 if (!config
->cluster_hb_timeout
)
5149 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5151 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5153 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5154 // late, ensure we're sufficiently larger than that
5155 int t
= 4 * config
->cluster_hb_interval
+ 11;
5157 if (config
->cluster_hb_timeout
< t
)
5159 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5160 config
->cluster_hb_timeout
= t
;
5163 // Push timing changes to the slaves immediately if we're the master
5164 if (config
->cluster_iam_master
)
5165 cluster_heartbeat();
5167 interval
= config
->cluster_hb_interval
;
5168 timeout
= config
->cluster_hb_timeout
;
5172 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5175 if ((f
= fopen(config
->pid_file
, "w")))
5177 fprintf(f
, "%d\n", getpid());
5179 config
->wrote_pid
= 1;
5183 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5188 static void read_config_file()
5192 if (!config
->config_file
) return;
5193 if (!(f
= fopen(config
->config_file
, "r")))
5195 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5199 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5201 LOG(3, 0, 0, "Done reading config file\n");
5205 int sessionsetup(sessionidt s
, tunnelidt t
)
5207 // A session now exists, set it up
5213 CSTAT(sessionsetup
);
5215 LOG(3, s
, t
, "Doing session setup for session\n");
5217 // Join a bundle if the MRRU option is accepted
5218 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5220 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5221 if (join_bundle(s
) > 0)
5222 cluster_send_bundle(session
[s
].bundle
);
5225 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5226 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5233 assign_ip_address(s
);
5236 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5237 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5240 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5241 fmtaddr(htonl(session
[s
].ip
), 0));
5245 // Make sure this is right
5246 session
[s
].tunnel
= t
;
5248 // zap old sessions with same IP and/or username
5249 // Don't kill gardened sessions - doing so leads to a DoS
5250 // from someone who doesn't need to know the password
5253 user
= session
[s
].user
;
5254 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5256 if (i
== s
) continue;
5257 if (!session
[s
].opened
) continue;
5258 // Allow duplicate sessions for multilink ones of the same bundle.
5259 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
)
5261 if (ip
== session
[i
].ip
)
5263 sessionkill(i
, "Duplicate IP address");
5267 if (config
->allow_duplicate_users
) continue;
5268 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5272 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5274 if (!strcasecmp(user
, guest_users
[gu
]))
5280 if (found
) continue;
5282 // Drop the new session in case of duplicate sessionss, not the old one.
5283 if (!strcasecmp(user
, session
[i
].user
))
5284 sessionkill(i
, "Duplicate session for users");
5288 // no need to set a route for the same IP address of the bundle
5289 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5293 // Add the route for this session.
5294 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5296 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5297 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5300 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5303 // Static IPs need to be routed if not already
5304 // convered by a Framed-Route. Anything else is part
5305 // of the IP address pool and is already routed, it
5306 // just needs to be added to the IP cache.
5307 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5308 if (session
[s
].ip_pool_index
== -1) // static ip
5310 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5313 cache_ipmap(session
[s
].ip
, s
);
5316 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5317 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5319 // Run the plugin's against this new session.
5321 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5322 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5325 // Allocate TBFs if throttled
5326 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5327 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5329 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5331 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5332 fmtaddr(htonl(session
[s
].ip
), 0),
5333 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5335 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5337 return 1; // RADIUS OK and IP allocated, done...
5341 // This session just got dropped on us by the master or something.
5342 // Make sure our tables up up to date...
5344 int load_session(sessionidt s
, sessiont
*new)
5350 if (new->ip_pool_index
>= MAXIPPOOL
||
5351 new->tunnel
>= MAXTUNNEL
)
5353 LOG(0, s
, 0, "Strange session update received!\n");
5354 // FIXME! What to do here?
5359 // Ok. All sanity checks passed. Now we're committed to
5360 // loading the new session.
5363 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5365 // See if routes/ip cache need updating
5366 if (new->ip
!= session
[s
].ip
)
5369 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5370 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5371 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5379 // remove old routes...
5380 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5382 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5383 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5386 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5392 if (session
[s
].ip_pool_index
== -1) // static IP
5394 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5396 else // It's part of the IP pool, remove it manually.
5397 uncache_ipmap(session
[s
].ip
);
5402 // add new routes...
5403 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5405 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5406 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5409 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5415 // If there's a new one, add it.
5416 if (new->ip_pool_index
== -1)
5418 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5421 cache_ipmap(new->ip
, s
);
5426 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5427 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5430 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5432 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5436 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5438 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5439 new->filter_out
= 0;
5442 if (new->filter_in
!= session
[s
].filter_in
)
5444 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5445 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5448 if (new->filter_out
!= session
[s
].filter_out
)
5450 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5451 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5454 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5455 // for walking the sessions to forward byte counts to the master.
5456 config
->cluster_highest_sessionid
= s
;
5458 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5460 // Do fixups into address pool.
5461 if (new->ip_pool_index
!= -1)
5462 fix_address_pool(s
);
5467 static void initplugins()
5471 loaded_plugins
= ll_init();
5472 // Initialize the plugins to nothing
5473 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5474 plugins
[i
] = ll_init();
5477 static void *open_plugin(char *plugin_name
, int load
)
5479 char path
[256] = "";
5481 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5482 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5483 return dlopen(path
, RTLD_NOW
);
5486 // plugin callback to get a config value
5487 static void *getconfig(char *key
, enum config_typet type
)
5491 for (i
= 0; config_values
[i
].key
; i
++)
5493 if (!strcmp(config_values
[i
].key
, key
))
5495 if (config_values
[i
].type
== type
)
5496 return ((void *) config
) + config_values
[i
].offset
;
5498 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5499 key
, type
, config_values
[i
].type
);
5505 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5509 static int add_plugin(char *plugin_name
)
5511 static struct pluginfuncs funcs
= {
5516 sessiontbysessionidt
,
5517 sessionidtbysessiont
,
5524 cluster_send_session
,
5527 void *p
= open_plugin(plugin_name
, 1);
5528 int (*initfunc
)(struct pluginfuncs
*);
5533 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5537 if (ll_contains(loaded_plugins
, p
))
5540 return 0; // already loaded
5544 int *v
= dlsym(p
, "plugin_api_version");
5545 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5547 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5553 if ((initfunc
= dlsym(p
, "plugin_init")))
5555 if (!initfunc(&funcs
))
5557 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5563 ll_push(loaded_plugins
, p
);
5565 for (i
= 0; i
< max_plugin_functions
; i
++)
5568 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5570 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5571 ll_push(plugins
[i
], x
);
5575 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5579 static void run_plugin_done(void *plugin
)
5581 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5587 static int remove_plugin(char *plugin_name
)
5589 void *p
= open_plugin(plugin_name
, 0);
5595 if (ll_contains(loaded_plugins
, p
))
5598 for (i
= 0; i
< max_plugin_functions
; i
++)
5601 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5602 ll_delete(plugins
[i
], x
);
5605 ll_delete(loaded_plugins
, p
);
5611 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5615 int run_plugins(int plugin_type
, void *data
)
5617 int (*func
)(void *data
);
5619 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5620 return PLUGIN_RET_ERROR
;
5622 ll_reset(plugins
[plugin_type
]);
5623 while ((func
= ll_next(plugins
[plugin_type
])))
5627 if (r
!= PLUGIN_RET_OK
)
5628 return r
; // stop here
5631 return PLUGIN_RET_OK
;
5634 static void plugins_done()
5638 ll_reset(loaded_plugins
);
5639 while ((p
= ll_next(loaded_plugins
)))
5643 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
5645 struct nsctl request
;
5646 struct nsctl response
;
5647 int type
= unpack_control(&request
, buf
, len
);
5651 if (log_stream
&& config
->debug
>= 4)
5655 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
5656 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
5660 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5661 dump_control(&request
, log_stream
);
5667 case NSCTL_REQ_LOAD
:
5668 if (request
.argc
!= 1)
5670 response
.type
= NSCTL_RES_ERR
;
5672 response
.argv
[0] = "name of plugin required";
5674 else if ((r
= add_plugin(request
.argv
[0])) < 1)
5676 response
.type
= NSCTL_RES_ERR
;
5678 response
.argv
[0] = !r
5679 ? "plugin already loaded"
5680 : "error loading plugin";
5684 response
.type
= NSCTL_RES_OK
;
5690 case NSCTL_REQ_UNLOAD
:
5691 if (request
.argc
!= 1)
5693 response
.type
= NSCTL_RES_ERR
;
5695 response
.argv
[0] = "name of plugin required";
5697 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
5699 response
.type
= NSCTL_RES_ERR
;
5701 response
.argv
[0] = !r
5702 ? "plugin not loaded"
5703 : "plugin not found";
5707 response
.type
= NSCTL_RES_OK
;
5713 case NSCTL_REQ_HELP
:
5714 response
.type
= NSCTL_RES_OK
;
5717 ll_reset(loaded_plugins
);
5718 while ((p
= ll_next(loaded_plugins
)))
5720 char **help
= dlsym(p
, "plugin_control_help");
5721 while (response
.argc
< 0xff && help
&& *help
)
5722 response
.argv
[response
.argc
++] = *help
++;
5727 case NSCTL_REQ_CONTROL
:
5729 struct param_control param
= {
5730 config
->cluster_iam_master
,
5737 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
5739 if (r
== PLUGIN_RET_ERROR
)
5741 response
.type
= NSCTL_RES_ERR
;
5743 response
.argv
[0] = param
.additional
5745 : "error returned by plugin";
5747 else if (r
== PLUGIN_RET_NOTMASTER
)
5749 static char msg
[] = "must be run on master: 000.000.000.000";
5751 response
.type
= NSCTL_RES_ERR
;
5753 if (config
->cluster_master_address
)
5755 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
5756 response
.argv
[0] = msg
;
5760 response
.argv
[0] = "must be run on master: none elected";
5763 else if (!(param
.response
& NSCTL_RESPONSE
))
5765 response
.type
= NSCTL_RES_ERR
;
5767 response
.argv
[0] = param
.response
5768 ? "unrecognised response value from plugin"
5769 : "unhandled action";
5773 response
.type
= param
.response
;
5775 if (param
.additional
)
5778 response
.argv
[0] = param
.additional
;
5786 response
.type
= NSCTL_RES_ERR
;
5788 response
.argv
[0] = "error unpacking control packet";
5791 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
5794 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5798 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
5801 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
5802 if (log_stream
&& config
->debug
>= 4)
5804 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5805 dump_control(&response
, log_stream
);
5809 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
5810 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
5815 static tunnelidt
new_tunnel()
5818 for (i
= 1; i
< MAXTUNNEL
; i
++)
5820 if (tunnel
[i
].state
== TUNNELFREE
)
5822 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
5823 if (i
> config
->cluster_highest_tunnelid
)
5824 config
->cluster_highest_tunnelid
= i
;
5828 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
5833 // We're becoming the master. Do any required setup..
5835 // This is principally telling all the plugins that we're
5836 // now a master, and telling them about all the sessions
5837 // that are active too..
5839 void become_master(void)
5842 static struct event_data d
[RADIUS_FDS
];
5843 struct epoll_event e
;
5845 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
5847 // running a bunch of iptables commands is slow and can cause
5848 // the master to drop tunnels on takeover--kludge around the
5849 // problem by forking for the moment (note: race)
5850 if (!fork_and_close())
5852 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5854 if (!session
[s
].opened
) // Not an in-use session.
5857 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
5864 for (i
= 0; i
< RADIUS_FDS
; i
++)
5866 d
[i
].type
= FD_TYPE_RADIUS
;
5870 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
5874 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5880 if (CLI_HELP_REQUESTED
)
5881 return CLI_HELP_NO_ARGS
;
5884 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5886 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5889 if (!session
[s
].opened
)
5892 idle
= time_now
- session
[s
].last_data
;
5893 idle
/= 5 ; // In multiples of 5 seconds.
5903 for (i
= 0; i
< 63; ++i
)
5905 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5907 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
5908 cli_print(cli
, "%d total sessions open.", count
);
5912 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5918 if (CLI_HELP_REQUESTED
)
5919 return CLI_HELP_NO_ARGS
;
5922 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5924 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5927 if (!session
[s
].opened
)
5930 d
= time_now
- session
[s
].opened
;
5933 while (d
> 1 && open
< 32)
5943 for (i
= 0; i
< 30; ++i
)
5945 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5948 cli_print(cli
, "%d total sessions open.", count
);
5954 * This unencodes the AVP using the L2TP secret and the previously
5955 * stored random vector. It overwrites the hidden data with the
5956 * unhidden AVP subformat.
5958 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
5964 uint16_t m
= htons(type
);
5966 // Compute initial pad
5968 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
5969 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5970 MD5_Update(&ctx
, vector
, vec_len
);
5971 MD5_Final(digest
, &ctx
);
5973 // pointer to last decoded 16 octets
5978 // calculate a new pad based on the last decoded block
5979 if (d
>= sizeof(digest
))
5982 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5983 MD5_Update(&ctx
, last
, sizeof(digest
));
5984 MD5_Final(digest
, &ctx
);
5990 *value
++ ^= digest
[d
++];
5995 int find_filter(char const *name
, size_t len
)
6000 for (i
= 0; i
< MAXFILTER
; i
++)
6002 if (!*ip_filters
[i
].name
)
6010 if (strlen(ip_filters
[i
].name
) != len
)
6013 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6020 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6024 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6025 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6026 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6027 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6028 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6034 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6038 case FILTER_FLAG_OP_ANY
:
6039 return (flags
& sflags
) || (~flags
& cflags
);
6041 case FILTER_FLAG_OP_ALL
:
6042 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6044 case FILTER_FLAG_OP_EST
:
6045 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6051 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6053 uint16_t frag_offset
;
6057 uint16_t src_port
= 0;
6058 uint16_t dst_port
= 0;
6060 ip_filter_rulet
*rule
;
6062 if (len
< 20) // up to end of destination address
6065 if ((*buf
>> 4) != 4) // IPv4
6068 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6070 src_ip
= *(in_addr_t
*) (buf
+ 12);
6071 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6073 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6075 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6076 if (len
< l
+ 4) // ports
6079 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6080 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6081 if (proto
== IPPROTO_TCP
)
6083 if (len
< l
+ 14) // flags
6086 flags
= buf
[l
+ 13] & 0x3f;
6090 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6092 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6095 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6096 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6099 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6100 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6105 // layer 4 deny rules are skipped
6106 if (rule
->action
== FILTER_ACTION_DENY
&&
6107 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6115 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6117 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6120 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6123 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6124 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6131 return rule
->action
== FILTER_ACTION_PERMIT
;