3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
16 #include <net/route.h>
19 #include <netinet/in.h>
20 #include <netinet/ip6.h>
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>
48 #include "constants.h"
61 char * Vendor_name
= "Linux L2TPNS";
62 uint32_t call_serial_number
= 0;
65 configt
*config
= NULL
; // all configuration
66 int nlfd
= -1; // netlink socket
67 int tunfd
= -1; // tun interface file handle. (network device)
68 int udpfd
[MAX_UDPFD
+ 1] = INIT_TABUDPFD
; // array UDP file handle + 1 for lac udp
69 int udplacfd
= -1; // UDP LAC file handle
70 int controlfd
= -1; // Control signal handle
71 int clifd
= -1; // Socket listening for CLI connections.
72 int daefd
= -1; // Socket listening for DAE connections.
73 int snoopfd
= -1; // UDP file handle for sending out intercept data
74 int *radfds
= NULL
; // RADIUS requests file handles
75 int rand_fd
= -1; // Random data source
76 int cluster_sockfd
= -1; // Intra-cluster communications socket.
77 int epollfd
= -1; // event polling
78 time_t basetime
= 0; // base clock
79 char hostname
[MAXHOSTNAME
] = ""; // us.
80 static int tunidx
; // ifr_ifindex of tun device
81 int nlseqnum
= 0; // netlink sequence number
82 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
83 static int syslog_log
= 0; // are we logging to syslog
84 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
85 uint32_t last_id
= 0; // Unique ID for radius accounting
87 char guest_users
[10][32]; // Array of guest users
88 int guest_accounts_num
= 0; // Number of guest users
90 // calculated from config->l2tp_mtu
91 uint16_t MRU
= 0; // PPP MRU
92 uint16_t MSS
= 0; // TCP MSS
94 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
95 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
100 } ip_hash
[256]; // Mapping from IP address to session structures.
104 struct ipv6radix
*branch
;
105 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
108 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
109 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
112 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
113 time_t time_now
= 0; // Current time in seconds since epoch.
114 uint64_t time_now_ms
= 0; // Current time in milliseconds since epoch.
115 static char time_now_string
[64] = {0}; // Current time as a string.
116 static int time_changed
= 0; // time_now changed
117 char main_quit
= 0; // True if we're in the process of exiting.
118 static char main_reload
= 0; // Re-load pending
119 linked_list
*loaded_plugins
;
120 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
122 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
123 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
125 config_descriptt config_values
[] = {
126 CONFIG("debug", debug
, INT
),
127 CONFIG("log_file", log_filename
, STRING
),
128 CONFIG("pid_file", pid_file
, STRING
),
129 CONFIG("random_device", random_device
, STRING
),
130 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
131 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
132 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
133 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
134 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
135 CONFIG("primary_dns", default_dns1
, IPv4
),
136 CONFIG("secondary_dns", default_dns2
, IPv4
),
137 CONFIG("primary_radius", radiusserver
[0], IPv4
),
138 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
139 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
140 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
141 CONFIG("radius_accounting", radius_accounting
, BOOL
),
142 CONFIG("radius_interim", radius_interim
, INT
),
143 CONFIG("radius_secret", radiussecret
, STRING
),
144 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
145 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
146 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
147 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
148 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
149 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
150 CONFIG("guest_account", guest_user
, STRING
),
151 CONFIG("bind_address", bind_address
, IPv4
),
152 CONFIG("peer_address", peer_address
, IPv4
),
153 CONFIG("send_garp", send_garp
, BOOL
),
154 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
155 CONFIG("throttle_buckets", num_tbfs
, INT
),
156 CONFIG("accounting_dir", accounting_dir
, STRING
),
157 CONFIG("account_all_origin", account_all_origin
, BOOL
),
158 CONFIG("dump_speed", dump_speed
, BOOL
),
159 CONFIG("multi_read_count", multi_read_count
, INT
),
160 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
161 CONFIG("lock_pages", lock_pages
, BOOL
),
162 CONFIG("icmp_rate", icmp_rate
, INT
),
163 CONFIG("packet_limit", max_packets
, INT
),
164 CONFIG("cluster_address", cluster_address
, IPv4
),
165 CONFIG("cluster_interface", cluster_interface
, STRING
),
166 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
167 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
168 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
169 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
170 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
171 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
172 CONFIG("hostname", hostname
, STRING
),
174 CONFIG("nexthop_address", nexthop_address
, IPv4
),
175 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
177 CONFIG("echo_timeout", echo_timeout
, INT
),
178 CONFIG("idle_echo_timeout", idle_echo_timeout
, INT
),
179 CONFIG("iftun_address", iftun_address
, IPv4
),
180 CONFIG("tundevicename", tundevicename
, STRING
),
181 CONFIG("disable_lac_func", disable_lac_func
, BOOL
),
182 CONFIG("auth_tunnel_change_addr_src", auth_tunnel_change_addr_src
, BOOL
),
183 CONFIG("bind_address_remotelns", bind_address_remotelns
, IPv4
),
184 CONFIG("bind_portremotelns", bind_portremotelns
, SHORT
),
185 CONFIG("pppoe_if_to_bind", pppoe_if_to_bind
, STRING
),
186 CONFIG("pppoe_service_name", pppoe_service_name
, STRING
),
187 CONFIG("pppoe_ac_name", pppoe_ac_name
, STRING
),
188 CONFIG("disable_sending_hello", disable_sending_hello
, BOOL
),
189 CONFIG("disable_no_spoof", disable_no_spoof
, BOOL
),
190 CONFIG("bind_multi_address", bind_multi_address
, STRING
),
191 CONFIG("pppoe_only_equal_svc_name", pppoe_only_equal_svc_name
, BOOL
),
192 CONFIG("multi_hostname", multi_hostname
, STRING
),
193 CONFIG("no_throttle_local_IP", no_throttle_local_IP
, BOOL
),
194 CONFIG("dhcp6_preferred_lifetime", dhcp6_preferred_lifetime
, INT
),
195 CONFIG("dhcp6_valid_lifetime", dhcp6_valid_lifetime
, INT
),
196 CONFIG("dhcp6_server_duid", dhcp6_server_duid
, INT
),
197 CONFIG("primary_ipv6_dns", default_ipv6_dns1
, IPv6
),
198 CONFIG("secondary_ipv6_dns", default_ipv6_dns2
, IPv6
),
199 CONFIG("default_ipv6_domain_list", default_ipv6_domain_list
, STRING
),
203 static char *plugin_functions
[] = {
208 "plugin_new_session",
209 "plugin_kill_session",
211 "plugin_radius_response",
212 "plugin_radius_reset",
213 "plugin_radius_account",
214 "plugin_become_master",
215 "plugin_new_session_master",
218 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
220 // Counters for shutdown sessions
221 static sessiont shut_acct
[8192];
222 static sessionidt shut_acct_n
= 0;
224 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
225 bundlet
*bundle
= NULL
; // Array of bundle structures.
226 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
227 sessiont
*session
= NULL
; // Array of session structures.
228 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
229 radiust
*radius
= NULL
; // Array of radius structures.
230 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
231 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
232 static controlt
*controlfree
= 0;
233 struct Tstats
*_statistics
= NULL
;
235 struct Tringbuffer
*ringbuffer
= NULL
;
238 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
239 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
240 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
241 static void uncache_ipmap(in_addr_t ip
);
242 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
243 static void free_ip_address(sessionidt s
);
244 static void dump_acct_info(int all
);
245 static void sighup_handler(int sig
);
246 static void shutdown_handler(int sig
);
247 static void sigchild_handler(int sig
);
248 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
249 static void update_config(void);
250 static void read_config_file(void);
251 static void initplugins(void);
252 static int add_plugin(char *plugin_name
);
253 static int remove_plugin(char *plugin_name
);
254 static void plugins_done(void);
255 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
256 static tunnelidt
new_tunnel(void);
257 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
258 static void bundleclear(bundleidt b
);
260 // return internal time (10ths since process startup), set f if given
261 // as a side-effect sets time_now, and time_changed
262 static clockt
now(double *f
)
266 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
267 if (t
.tv_sec
!= time_now
)
273 // Time in milliseconds
274 // TODO FOR MLPPP DEV
275 //time_now_ms = (t.tv_sec * 1000) + (t.tv_usec/1000);
277 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
280 // work out a retry time based on try number
281 // This is a straight bounded exponential backoff.
282 // Maximum re-try time is 32 seconds. (2^5).
283 clockt
backoff(uint8_t try)
285 if (try > 5) try = 5; // max backoff
286 return now(NULL
) + 10 * (1 << try);
291 // Log a debug message. Typically called via the LOG macro
293 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
295 static char message
[65536] = {0};
301 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
302 ringbuffer
->tail
= 0;
303 if (ringbuffer
->tail
== ringbuffer
->head
)
304 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
305 ringbuffer
->head
= 0;
307 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
308 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
309 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
310 va_start(ap
, format
);
311 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, MAX_LOG_LENGTH
, format
, ap
);
316 if (config
->debug
< level
) return;
318 va_start(ap
, format
);
319 vsnprintf(message
, sizeof(message
), format
, ap
);
322 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
324 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
329 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
332 const uint8_t *d
= data
;
334 if (config
->debug
< level
) return;
336 // No support for _log_hex to syslog
339 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
340 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
342 for (i
= 0; i
< maxsize
; )
344 fprintf(log_stream
, "%4X: ", i
);
345 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
347 fprintf(log_stream
, "%02X ", d
[j
]);
349 fputs(": ", log_stream
);
352 for (; j
< i
+ 16; j
++)
354 fputs(" ", log_stream
);
356 fputs(": ", log_stream
);
359 fputs(" ", log_stream
);
360 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
362 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
363 fputc(d
[j
], log_stream
);
365 fputc('.', log_stream
);
368 fputs(" ", log_stream
);
372 fputs("\n", log_stream
);
376 setbuf(log_stream
, NULL
);
380 // update a counter, accumulating 2^32 wraps
381 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
383 uint32_t new = *counter
+ delta
;
390 // initialise the random generator
391 static void initrandom(char *source
)
393 static char path
[sizeof(config
->random_device
)] = "*undefined*";
395 // reinitialise only if we are forced to do so or if the config has changed
396 if (source
&& !strncmp(path
, source
, sizeof(path
)))
399 // close previous source, if any
408 snprintf(path
, sizeof(path
), "%s", source
);
412 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
414 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
415 path
, strerror(errno
));
420 // fill buffer with random data
421 void random_data(uint8_t *buf
, int len
)
428 n
= read(rand_fd
, buf
, len
);
429 if (n
>= len
) return;
434 LOG(0, 0, 0, "Error reading from random source: %s\n",
437 // fall back to rand()
445 // append missing data
447 // not using the low order bits from the prng stream
448 buf
[n
++] = (rand() >> 4) & 0xff;
453 // This adds it to the routing table, advertises it
454 // via BGP if enabled, and stuffs it into the
455 // 'sessionbyip' cache.
457 // 'ip' must be in _host_ order.
459 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
469 if (!prefixlen
) prefixlen
= 32;
471 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
473 memset(&req
, 0, sizeof(req
));
477 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
478 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
482 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
483 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
486 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
488 req
.rt
.rtm_family
= AF_INET
;
489 req
.rt
.rtm_dst_len
= prefixlen
;
490 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
491 req
.rt
.rtm_protocol
= 42;
492 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
493 req
.rt
.rtm_type
= RTN_UNICAST
;
495 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
497 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
501 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
504 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
505 fmtaddr(htonl(ip
), 0), prefixlen
,
506 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
508 if (netlink_send(&req
.nh
) < 0)
509 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
513 bgp_add_route(htonl(ip
), prefixlen
);
515 bgp_del_route(htonl(ip
), prefixlen
);
518 // Add/Remove the IPs to the 'sessionbyip' cache.
519 // Note that we add the zero address in the case of
520 // a network route. Roll on CIDR.
522 // Note that 's == 0' implies this is the address pool.
523 // We still cache it here, because it will pre-fill
524 // the malloc'ed tree.
528 if (!add
) // Are we deleting a route?
529 s
= 0; // Caching the session as '0' is the same as uncaching.
531 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
536 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
544 char ipv6addr
[INET6_ADDRSTRLEN
];
546 if (!config
->ipv6_prefix
.s6_addr
[0])
548 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
552 memset(&req
, 0, sizeof(req
));
556 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
557 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
561 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
562 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
565 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
567 req
.rt
.rtm_family
= AF_INET6
;
568 req
.rt
.rtm_dst_len
= prefixlen
;
569 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
570 req
.rt
.rtm_protocol
= 42;
571 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
572 req
.rt
.rtm_type
= RTN_UNICAST
;
574 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
575 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
577 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
579 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
581 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
584 if (netlink_send(&req
.nh
) < 0)
585 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
589 bgp_add_route6(ip
, prefixlen
);
591 bgp_del_route6(ip
, prefixlen
);
596 if (!add
) // Are we deleting a route?
597 s
= 0; // Caching the session as '0' is the same as uncaching.
599 cache_ipv6map(ip
, prefixlen
, s
);
606 // Set up netlink socket
607 static void initnetlink(void)
609 struct sockaddr_nl nladdr
;
611 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
614 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
618 memset(&nladdr
, 0, sizeof(nladdr
));
619 nladdr
.nl_family
= AF_NETLINK
;
620 nladdr
.nl_pid
= getpid();
622 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
624 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
629 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
631 struct sockaddr_nl nladdr
;
635 nh
->nlmsg_pid
= getpid();
636 nh
->nlmsg_seq
= ++nlseqnum
;
638 // set kernel address
639 memset(&nladdr
, 0, sizeof(nladdr
));
640 nladdr
.nl_family
= AF_NETLINK
;
642 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
643 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
645 return sendmsg(nlfd
, &msg
, 0);
648 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
650 struct sockaddr_nl nladdr
;
654 // set kernel address
655 memset(&nladdr
, 0, sizeof(nladdr
));
656 nladdr
.nl_family
= AF_NETLINK
;
658 iov
= (struct iovec
){ buf
, len
};
659 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
661 return recvmsg(nlfd
, &msg
, 0);
664 /* adapted from iproute2 */
665 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
667 int len
= RTA_LENGTH(alen
);
670 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
671 rta
->rta_type
= type
;
673 memcpy(RTA_DATA(rta
), data
, alen
);
674 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
677 // messages corresponding to different phases seq number
678 static char *tun_nl_phase_msg
[] = {
680 "getting tun interface index",
681 "setting tun interface parameters",
682 "setting tun IPv4 address",
683 "setting tun LL IPv6 address",
684 "setting tun global IPv6 address",
688 // Set up TUN interface
689 static void inittun(void)
693 memset(&ifr
, 0, sizeof(ifr
));
694 ifr
.ifr_flags
= IFF_TUN
;
696 tunfd
= open(TUNDEVICE
, O_RDWR
);
699 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
703 int flags
= fcntl(tunfd
, F_GETFL
, 0);
704 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
707 if (*config
->tundevicename
)
708 strncpy(ifr
.ifr_name
, config
->tundevicename
, IFNAMSIZ
);
710 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
712 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
715 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevicename
) - 1);
716 strncpy(config
->tundevicename
, ifr
.ifr_name
, sizeof(config
->tundevicename
));
718 tunidx
= if_nametoindex(config
->tundevicename
);
721 LOG(0, 0, 0, "Can't get tun interface index\n");
730 struct ifinfomsg ifinfo
;
731 struct ifaddrmsg ifaddr
;
733 char rtdata
[32]; // 32 should be enough
735 uint32_t txqlen
, mtu
;
738 memset(&req
, 0, sizeof(req
));
740 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
741 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
742 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
744 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
745 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
746 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
747 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
749 /* Bump up the qlen to deal with bursts from the network */
751 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
752 /* set MTU to modem MRU */
754 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
756 if (netlink_send(&req
.nh
) < 0)
759 memset(&req
, 0, sizeof(req
));
761 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
762 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
763 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
765 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
766 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
767 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
768 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
770 if (config
->nbmultiaddress
> 1)
773 for (i
= 0; i
< config
->nbmultiaddress
; i
++)
775 ip
= config
->iftun_n_address
[i
];
776 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
777 if (netlink_send(&req
.nh
) < 0)
783 if (config
->iftun_address
)
784 ip
= config
->iftun_address
;
786 ip
= 0x01010101; // 1.1.1.1
787 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
789 if (netlink_send(&req
.nh
) < 0)
795 // Only setup IPv6 on the tun device if we have a configured prefix
796 if (config
->ipv6_prefix
.s6_addr
[0]) {
799 memset(&req
, 0, sizeof(req
));
801 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
802 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
803 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
805 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
806 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
807 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
808 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
810 // Link local address is FE80::1
811 memset(&ip6
, 0, sizeof(ip6
));
812 ip6
.s6_addr
[0] = 0xFE;
813 ip6
.s6_addr
[1] = 0x80;
815 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
817 if (netlink_send(&req
.nh
) < 0)
820 memset(&req
, 0, sizeof(req
));
822 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
823 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
824 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
826 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
827 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
828 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
829 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
831 // Global address is prefix::1
832 ip6
= config
->ipv6_prefix
;
834 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
836 if (netlink_send(&req
.nh
) < 0)
840 memset(&req
, 0, sizeof(req
));
842 req
.nh
.nlmsg_type
= NLMSG_DONE
;
843 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
845 if (netlink_send(&req
.nh
) < 0)
848 // if we get an error for seqnum < min_initok_nlseqnum,
849 // we must exit as initialization went wrong
850 if (config
->ipv6_prefix
.s6_addr
[0])
851 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
853 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
859 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
863 // set up LAC UDP ports
864 static void initlacudp(void)
867 struct sockaddr_in addr
;
869 // Tunnel to Remote LNS
870 memset(&addr
, 0, sizeof(addr
));
871 addr
.sin_family
= AF_INET
;
872 addr
.sin_port
= htons(config
->bind_portremotelns
);
873 addr
.sin_addr
.s_addr
= config
->bind_address_remotelns
;
874 udplacfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
875 setsockopt(udplacfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
877 int flags
= fcntl(udplacfd
, F_GETFL
, 0);
878 fcntl(udplacfd
, F_SETFL
, flags
| O_NONBLOCK
);
880 if (bind(udplacfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
882 LOG(0, 0, 0, "Error in UDP REMOTE LNS bind: %s\n", strerror(errno
));
887 // set up control ports
888 static void initcontrol(void)
891 struct sockaddr_in addr
;
894 memset(&addr
, 0, sizeof(addr
));
895 addr
.sin_family
= AF_INET
;
896 addr
.sin_port
= htons(NSCTL_PORT
);
897 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
898 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
899 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
900 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
902 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
907 // set up Dynamic Authorization Extensions to RADIUS port
908 static void initdae(void)
911 struct sockaddr_in addr
;
913 // Dynamic Authorization Extensions to RADIUS
914 memset(&addr
, 0, sizeof(addr
));
915 addr
.sin_family
= AF_INET
;
916 addr
.sin_port
= htons(config
->radius_dae_port
);
917 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
918 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
919 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
920 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
922 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
928 static void initudp(int * pudpfd
, in_addr_t ip_bind
)
931 struct sockaddr_in addr
;
934 memset(&addr
, 0, sizeof(addr
));
935 addr
.sin_family
= AF_INET
;
936 addr
.sin_port
= htons(L2TPPORT
);
937 addr
.sin_addr
.s_addr
= ip_bind
;
938 (*pudpfd
) = socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
939 setsockopt((*pudpfd
), SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
941 int flags
= fcntl((*pudpfd
), F_GETFL
, 0);
942 fcntl((*pudpfd
), F_SETFL
, flags
| O_NONBLOCK
);
944 if (bind((*pudpfd
), (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
946 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
952 // Find session by IP, < 1 for not found
954 // Confusingly enough, this 'ip' must be
955 // in _network_ order. This being the common
956 // case when looking it up from IP packet headers.
958 // We actually use this cache for two things.
959 // #1. For used IP addresses, this maps to the
960 // session ID that it's used by.
961 // #2. For un-used IP addresses, this maps to the
962 // index into the pool table that contains that
966 static sessionidt
lookup_ipmap(in_addr_t ip
)
968 uint8_t *a
= (uint8_t *) &ip
;
969 union iphash
*h
= ip_hash
;
971 if (!(h
= h
[*a
++].idx
)) return 0;
972 if (!(h
= h
[*a
++].idx
)) return 0;
973 if (!(h
= h
[*a
++].idx
)) return 0;
978 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
980 struct ipv6radix
*curnode
;
983 char ipv6addr
[INET6_ADDRSTRLEN
];
985 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
989 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
991 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
996 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
997 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1004 sessionidt
sessionbyip(in_addr_t ip
)
1006 sessionidt s
= lookup_ipmap(ip
);
1009 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1015 sessionidt
sessionbyipv6(struct in6_addr ip
)
1018 CSTAT(sessionbyipv6
);
1020 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
1021 (ip
.s6_addr
[0] == 0xFE &&
1022 ip
.s6_addr
[1] == 0x80 &&
1023 ip
.s6_addr16
[1] == 0 &&
1024 ip
.s6_addr16
[2] == 0 &&
1025 ip
.s6_addr16
[3] == 0))
1027 in_addr_t
*pipv4
= (in_addr_t
*) &ip
.s6_addr
[8];
1028 s
= lookup_ipmap(*pipv4
);
1030 s
= lookup_ipv6map(ip
);
1033 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1040 // Take an IP address in HOST byte order and
1041 // add it to the sessionid by IP cache.
1043 // (It's actually cached in network order)
1045 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
1047 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
1048 uint8_t *a
= (uint8_t *) &nip
;
1049 union iphash
*h
= ip_hash
;
1052 for (i
= 0; i
< 3; i
++)
1054 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
1063 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
1066 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
1067 // else a map to an ip pool index.
1070 static void uncache_ipmap(in_addr_t ip
)
1072 cache_ipmap(ip
, 0); // Assign it to the NULL session.
1075 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
1079 struct ipv6radix
*curnode
;
1080 char ipv6addr
[INET6_ADDRSTRLEN
];
1082 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
1084 bytes
= prefixlen
>> 3;
1087 if (curnode
->branch
== NULL
)
1089 if (!(curnode
->branch
= calloc(256,
1090 sizeof (struct ipv6radix
))))
1093 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1100 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1101 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1105 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1106 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1112 // CLI list to dump current ipcache.
1114 int cmd_show_ipcache(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
1116 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1120 if (CLI_HELP_REQUESTED
)
1121 return CLI_HELP_NO_ARGS
;
1123 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1125 for (i
= 0; i
< 256; ++i
)
1131 for (j
= 0; j
< 256; ++j
)
1137 for (k
= 0; k
< 256; ++k
)
1143 for (l
= 0; l
< 256; ++l
)
1148 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1154 cli_print(cli
, "%d entries in cache", count
);
1159 // Find session by username, 0 for not found
1160 // walled garden users aren't authenticated, so the username is
1161 // reasonably useless. Ignore them to avoid incorrect actions
1163 // This is VERY inefficent. Don't call it often. :)
1165 sessionidt
sessionbyuser(char *username
)
1168 CSTAT(sessionbyuser
);
1170 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1172 if (!session
[s
].opened
)
1175 if (session
[s
].walled_garden
)
1176 continue; // Skip walled garden users.
1178 if (!strncmp(session
[s
].user
, username
, 128))
1182 return 0; // Not found.
1185 void send_garp(in_addr_t ip
)
1191 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1194 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1197 memset(&ifr
, 0, sizeof(ifr
));
1198 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1199 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1201 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1205 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1206 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1208 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1213 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1216 static sessiont
*sessiontbysessionidt(sessionidt s
)
1218 if (!s
|| s
>= MAXSESSION
) return NULL
;
1222 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1224 sessionidt val
= s
-session
;
1225 if (s
< session
|| val
>= MAXSESSION
) return 0;
1229 // actually send a control message for a specific tunnel
1230 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1232 struct sockaddr_in addr
;
1238 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1239 STAT(tunnel_tx_errors
);
1243 if (t
== TUNNEL_ID_PPPOE
)
1245 pppoe_sess_send(buf
, l
, t
);
1251 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1252 STAT(tunnel_tx_errors
);
1256 memset(&addr
, 0, sizeof(addr
));
1257 addr
.sin_family
= AF_INET
;
1258 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1259 addr
.sin_port
= htons(tunnel
[t
].port
);
1261 // sequence expected, if sequence in message
1262 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1264 // If this is a control message, deal with retries
1267 tunnel
[t
].last
= time_now
; // control message sent
1268 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1271 STAT(tunnel_retries
);
1272 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1276 if (sendto(udpfd
[tunnel
[t
].indexudp
], buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1278 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1279 strerror(errno
), udpfd
[tunnel
[t
].indexudp
], buf
, l
, inet_ntoa(addr
.sin_addr
));
1280 STAT(tunnel_tx_errors
);
1284 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1285 STAT(tunnel_tx_packets
);
1286 INC_STAT(tunnel_tx_bytes
, l
);
1290 // Tiny helper function to write data to
1291 // the 'tun' device.
1293 int tun_write(uint8_t * data
, int size
)
1295 return write(tunfd
, data
, size
);
1298 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1299 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1301 int d
= (tcp
[12] >> 4) * 4;
1308 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1311 if (tcp
+ d
> buf
+ len
) // short?
1319 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1322 if (mss
+ 2 > data
) return; // short?
1326 if (*opts
== 0) return; // end of options
1327 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1330 opts
+= opts
[1]; // skip over option
1333 if (!mss
) return; // not found
1334 orig
= ntohs(*(uint16_t *) mss
);
1336 if (orig
<= MSS
) return; // mss OK
1338 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1339 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1340 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1341 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1344 *(int16_t *) mss
= htons(MSS
);
1346 // adjust checksum (see rfc1141)
1347 sum
= orig
+ (~MSS
& 0xffff);
1348 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1349 sum
= (sum
& 0xffff) + (sum
>> 16);
1350 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1353 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1357 // Skip the four extra bytes
1369 proto
= ntohs(*(uint16_t *) p
);
1377 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1378 return; // closing session, PPP not processed
1380 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1381 processipin(s
, t
, p
, l
);
1383 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1387 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1388 return; // closing session, PPP not processed
1391 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1392 processipv6in(s
, t
, p
, l
);
1394 else if (proto
== PPPIPCP
)
1396 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1397 processipcp(s
, t
, p
, l
);
1399 else if (proto
== PPPCCP
)
1401 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1402 processccp(s
, t
, p
, l
);
1406 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1410 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1412 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1413 sp
->cout_delta
+= len
;
1415 sp
->last_data
= time_now
;
1417 sess_local
[s
].cout
+= len
; // To send to master..
1418 sess_local
[s
].pout
++;
1421 // process outgoing (to tunnel) IP
1423 // (i.e. this routine writes to data[-8]).
1424 void processipout(uint8_t *buf
, int len
)
1429 in_addr_t ip
, ip_src
;
1431 uint8_t *data
= buf
; // Keep a copy of the originals.
1434 uint8_t fragbuf
[MAXETHER
+ 20];
1436 CSTAT(processipout
);
1438 if (len
< MIN_IP_SIZE
)
1440 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1441 STAT(tun_rx_errors
);
1444 if (len
>= MAXETHER
)
1446 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1447 STAT(tun_rx_errors
);
1451 // Skip the tun header
1455 // Got an IP header now
1456 if (*(uint8_t *)(buf
) >> 4 != 4)
1458 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1462 ip_src
= *(uint32_t *)(buf
+ 12);
1463 ip
= *(uint32_t *)(buf
+ 16);
1464 if (!(s
= sessionbyip(ip
)))
1466 // Is this a packet for a session that doesn't exist?
1467 static int rate
= 0; // Number of ICMP packets we've sent this second.
1468 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1470 if (last
!= time_now
)
1476 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1478 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1479 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1480 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1485 t
= session
[s
].tunnel
;
1486 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1488 LOG(3, s
, t
, "Packet size more than session MRU\n");
1494 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1495 if (config
->max_packets
> 0)
1497 if (sess_local
[s
].last_packet_out
== TIME
)
1499 int max
= config
->max_packets
;
1501 // All packets for throttled sessions are handled by the
1502 // master, so further limit by using the throttle rate.
1503 // A bit of a kludge, since throttle rate is in kbps,
1504 // but should still be generous given our average DSL
1505 // packet size is 200 bytes: a limit of 28kbps equates
1506 // to around 180 packets per second.
1507 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1508 max
= sp
->throttle_out
;
1510 if (++sess_local
[s
].packets_out
> max
)
1512 sess_local
[s
].packets_dropped
++;
1518 if (sess_local
[s
].packets_dropped
)
1520 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1521 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1522 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1523 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1527 sess_local
[s
].last_packet_out
= TIME
;
1528 sess_local
[s
].packets_out
= 1;
1529 sess_local
[s
].packets_dropped
= 0;
1533 // run access-list if any
1534 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1537 // adjust MSS on SYN and SYN,ACK packets with options
1538 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1540 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1541 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1542 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1547 if (!config
->no_throttle_local_IP
|| !sessionbyip(ip_src
))
1549 // Are we throttling this session?
1550 if (config
->cluster_iam_master
)
1551 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1553 master_throttle_packet(sp
->tbf_out
, data
, size
);
1558 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1560 // We are walled-gardening this
1561 master_garden_packet(s
, data
, size
);
1565 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1568 if (!config
->cluster_iam_master
)
1570 // The MPPP packets must be managed by the Master.
1571 master_forward_mppp_packet(s
, data
, size
);
1575 // Add on L2TP header
1576 sessionidt members
[MAXBUNDLESES
];
1577 bundleidt bid
= session
[s
].bundle
;
1578 bundlet
*b
= &bundle
[bid
];
1579 uint32_t num_of_links
, nb_opened
;
1582 num_of_links
= b
->num_of_links
;
1584 for (i
= 0;i
< num_of_links
;i
++)
1587 if (session
[s
].ppp
.lcp
== Opened
)
1589 members
[nb_opened
] = s
;
1596 LOG(3, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1600 num_of_links
= nb_opened
;
1601 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1602 s
= members
[b
->current_ses
];
1603 t
= session
[s
].tunnel
;
1605 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1607 if (num_of_links
> 1)
1609 if(len
> MINFRAGLEN
)
1611 //for rotate traffic among the member links
1612 uint32_t divisor
= num_of_links
;
1614 divisor
= divisor
/2 + (divisor
& 1);
1616 // Partition the packet to "num_of_links" fragments
1617 uint32_t fraglen
= len
/ divisor
;
1618 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1619 uint32_t remain
= len
;
1621 // send the first packet
1622 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1624 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1627 update_session_out_stat(s
, sp
, fraglen
);
1630 while (remain
> last_fraglen
)
1632 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1633 s
= members
[b
->current_ses
];
1634 t
= session
[s
].tunnel
;
1636 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1637 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1639 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1640 update_session_out_stat(s
, sp
, fraglen
);
1643 // send the last fragment
1644 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1645 s
= members
[b
->current_ses
];
1646 t
= session
[s
].tunnel
;
1648 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1649 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1651 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1652 update_session_out_stat(s
, sp
, remain
);
1653 if (remain
!= last_fraglen
)
1654 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1658 // Send it as one frame
1659 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1661 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1662 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1663 update_session_out_stat(s
, sp
, len
);
1668 // Send it as one frame (NO MPPP Frame)
1669 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1670 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1671 update_session_out_stat(s
, sp
, len
);
1676 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1677 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1678 update_session_out_stat(s
, sp
, len
);
1681 // Snooping this session, send it to intercept box
1682 if (sp
->snoop_ip
&& sp
->snoop_port
)
1683 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1688 // process outgoing (to tunnel) IPv6
1690 static void processipv6out(uint8_t * buf
, int len
)
1696 struct in6_addr ip6
;
1698 uint8_t *data
= buf
; // Keep a copy of the originals.
1701 uint8_t b
[MAXETHER
+ 20];
1703 CSTAT(processipv6out
);
1705 if (len
< MIN_IP_SIZE
)
1707 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1708 STAT(tunnel_tx_errors
);
1711 if (len
>= MAXETHER
)
1713 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1714 STAT(tunnel_tx_errors
);
1718 // Skip the tun header
1722 // Got an IP header now
1723 if (*(uint8_t *)(buf
) >> 4 != 6)
1725 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1729 ip6
= *(struct in6_addr
*)(buf
+24);
1730 s
= sessionbyipv6(ip6
);
1734 ip
= *(uint32_t *)(buf
+ 32);
1735 s
= sessionbyip(ip
);
1740 // Is this a packet for a session that doesn't exist?
1741 static int rate
= 0; // Number of ICMP packets we've sent this second.
1742 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1744 if (last
!= time_now
)
1750 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1752 // FIXME: Should send icmp6 host unreachable
1756 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1758 bundleidt bid
= session
[s
].bundle
;
1759 bundlet
*b
= &bundle
[bid
];
1761 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1762 s
= b
->members
[b
->current_ses
];
1763 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1765 t
= session
[s
].tunnel
;
1767 sp
->last_data
= time_now
;
1769 // FIXME: add DoS prevention/filters?
1773 // Are we throttling this session?
1774 if (config
->cluster_iam_master
)
1775 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1777 master_throttle_packet(sp
->tbf_out
, data
, size
);
1780 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1782 // We are walled-gardening this
1783 master_garden_packet(s
, data
, size
);
1787 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1789 // Add on L2TP header
1791 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1793 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1796 // Snooping this session, send it to intercept box
1797 if (sp
->snoop_ip
&& sp
->snoop_port
)
1798 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1800 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1801 sp
->cout_delta
+= len
;
1805 sess_local
[s
].cout
+= len
; // To send to master..
1806 sess_local
[s
].pout
++;
1810 // Helper routine for the TBF filters.
1811 // Used to send queued data in to the user!
1813 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1818 uint8_t *data
= buf
; // Keep a copy of the originals.
1820 uint8_t b
[MAXETHER
+ 20];
1822 if (len
< 0 || len
> MAXETHER
)
1824 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1828 // Skip the tun header
1835 t
= session
[s
].tunnel
;
1838 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1840 // Add on L2TP header
1841 if (*(uint16_t *) (data
+ 2) == htons(PKTIPV6
))
1842 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0); // IPV6
1844 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0); // IPV4
1848 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1850 // Snooping this session.
1851 if (sp
->snoop_ip
&& sp
->snoop_port
)
1852 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1854 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1855 sp
->cout_delta
+= len
;
1859 sess_local
[s
].cout
+= len
; // To send to master..
1860 sess_local
[s
].pout
++;
1863 // add an AVP (16 bit)
1864 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1866 uint16_t l
= (m
? 0x8008 : 0x0008);
1867 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1868 pint16
[0] = htons(l
);
1869 pint16
[1] = htons(0);
1870 pint16
[2] = htons(avp
);
1871 pint16
[3] = htons(val
);
1875 // add an AVP (32 bit)
1876 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1878 uint16_t l
= (m
? 0x800A : 0x000A);
1879 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1880 uint32_t *pint32
= (uint32_t *) (c
->buf
+ c
->length
+ 6);
1881 pint16
[0] = htons(l
);
1882 pint16
[1] = htons(0);
1883 pint16
[2] = htons(avp
);
1884 pint32
[0] = htonl(val
);
1888 // add an AVP (string)
1889 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1891 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1892 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1893 pint16
[0] = htons(l
);
1894 pint16
[1] = htons(0);
1895 pint16
[2] = htons(avp
);
1896 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1897 c
->length
+= 6 + strlen(val
);
1901 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1903 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1904 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1905 pint16
[0] = htons(l
);
1906 pint16
[1] = htons(0);
1907 pint16
[2] = htons(avp
);
1908 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1909 c
->length
+= 6 + len
;
1912 // new control connection
1913 static controlt
*controlnew(uint16_t mtype
)
1917 c
= malloc(sizeof(controlt
));
1921 controlfree
= c
->next
;
1925 c
->buf
[0] = 0xC8; // flags
1926 c
->buf
[1] = 0x02; // ver
1928 control16(c
, 0, mtype
, 1);
1932 // send zero block if nothing is waiting
1934 static void controlnull(tunnelidt t
)
1937 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1940 buf
[0] = htons(0xC802); // flags/ver
1941 buf
[1] = htons(12); // length
1942 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1943 buf
[3] = htons(0); // session
1944 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1945 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1946 tunnelsend((uint8_t *)buf
, 12, t
);
1949 // add a control message to a tunnel, and send if within window
1950 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1952 uint16_t *pint16
= (uint16_t *) (c
->buf
+ 2);
1953 pint16
[0] = htons(c
->length
); // length
1954 pint16
[1] = htons(tunnel
[t
].far
); // tunnel
1955 pint16
[2] = htons(far
); // session
1956 pint16
[3] = htons(tunnel
[t
].ns
); // sequence
1957 tunnel
[t
].ns
++; // advance sequence
1958 // link in message in to queue
1959 if (tunnel
[t
].controlc
)
1960 tunnel
[t
].controle
->next
= c
;
1962 tunnel
[t
].controls
= c
;
1964 tunnel
[t
].controle
= c
;
1965 tunnel
[t
].controlc
++;
1967 // send now if space in window
1968 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1970 tunnel
[t
].try = 0; // first send
1971 tunnelsend(c
->buf
, c
->length
, t
);
1976 // Throttle or Unthrottle a session
1978 // Throttle the data from/to through a session to no more than
1979 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1982 // If either value is -1, the current value is retained for that
1985 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1987 if (!session
[s
].opened
)
1988 return; // No-one home.
1990 if (!*session
[s
].user
)
1991 return; // User not logged in
1995 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1996 if (session
[s
].tbf_in
)
1997 free_tbf(session
[s
].tbf_in
);
2000 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
2002 session
[s
].tbf_in
= 0;
2004 session
[s
].throttle_in
= rate_in
;
2009 int bytes
= rate_out
* 1024 / 8;
2010 if (session
[s
].tbf_out
)
2011 free_tbf(session
[s
].tbf_out
);
2014 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
2016 session
[s
].tbf_out
= 0;
2018 session
[s
].throttle_out
= rate_out
;
2022 // add/remove filters from session (-1 = no change)
2023 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
2025 if (!session
[s
].opened
)
2026 return; // No-one home.
2028 if (!*session
[s
].user
)
2029 return; // User not logged in
2032 if (filter_in
> MAXFILTER
) filter_in
= -1;
2033 if (filter_out
> MAXFILTER
) filter_out
= -1;
2034 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
2035 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
2039 if (session
[s
].filter_in
)
2040 ip_filters
[session
[s
].filter_in
- 1].used
--;
2043 ip_filters
[filter_in
- 1].used
++;
2045 session
[s
].filter_in
= filter_in
;
2048 if (filter_out
>= 0)
2050 if (session
[s
].filter_out
)
2051 ip_filters
[session
[s
].filter_out
- 1].used
--;
2054 ip_filters
[filter_out
- 1].used
++;
2056 session
[s
].filter_out
= filter_out
;
2060 // start tidy shutdown of session
2061 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
2063 int walled_garden
= session
[s
].walled_garden
;
2064 bundleidt b
= session
[s
].bundle
;
2065 //delete routes only for last session in bundle (in case of MPPP)
2066 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
2068 CSTAT(sessionshutdown
);
2070 if (!session
[s
].opened
)
2072 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
2073 return; // not a live session
2076 if (!session
[s
].die
)
2078 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
2079 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
2080 run_plugins(PLUGIN_KILL_SESSION
, &data
);
2083 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
2085 // RADIUS Stop message
2086 uint16_t r
= radiusnew(s
);
2089 // stop, if not already trying
2090 if (radius
[r
].state
!= RADIUSSTOP
)
2092 radius
[r
].term_cause
= term_cause
;
2093 radius
[r
].term_msg
= reason
;
2094 radiussend(r
, RADIUSSTOP
);
2098 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
2100 // Save counters to dump to accounting file
2101 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
2102 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
2105 if (!session
[s
].die
)
2106 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
2109 { // IP allocated, clear and unroute
2112 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
2114 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2115 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2118 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2119 session
[s
].route
[r
].ip
= 0;
2122 if (session
[s
].ip_pool_index
== -1) // static ip
2124 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2130 // unroute IPv6, if setup
2131 if (session
[s
].ipv6route
.s6_addr
[0] && session
[s
].ipv6prefixlen
&& del_routes
)
2132 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
2134 if (session
[s
].ipv6address
.s6_addr
[0] && del_routes
)
2136 route6set(s
, session
[s
].ipv6address
, 128, 0);
2141 // This session was part of a bundle
2142 bundle
[b
].num_of_links
--;
2143 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2144 if(bundle
[b
].num_of_links
== 0)
2147 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2151 // Adjust the members array to accomodate the new change
2152 uint8_t mem_num
= 0;
2153 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2154 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2157 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2158 if(bundle
[b
].members
[ml
] == s
)
2163 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2164 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2166 // If the killed session is the first of the bundle,
2167 // the new first session must be stored in the cache_ipmap
2168 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2171 sessionidt new_s
= bundle
[b
].members
[0];
2174 // Add the route for this session.
2175 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2180 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2181 ip
= session
[new_s
].route
[r
].ip
;
2183 if (!prefixlen
) prefixlen
= 32;
2184 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2186 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2187 cache_ipmap(i
, new_s
);
2189 cache_ipmap(session
[new_s
].ip
, new_s
);
2192 if (session
[new_s
].ipv6prefixlen
)
2193 cache_ipv6map(session
[new_s
].ipv6route
, session
[new_s
].ipv6prefixlen
, new_s
);
2195 if (session
[new_s
].ipv6address
.s6_addr
[0])
2197 cache_ipv6map(session
[new_s
].ipv6address
, 128, new_s
);
2203 cluster_send_bundle(b
);
2207 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2208 throttle_session(s
, 0, 0);
2212 if (session
[s
].tunnel
== TUNNEL_ID_PPPOE
)
2214 pppoe_shutdown_session(s
);
2219 controlt
*c
= controlnew(14); // sending CDN
2223 buf
[0] = htons(cdn_result
);
2224 buf
[1] = htons(cdn_error
);
2225 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2228 control16(c
, 1, cdn_result
, 1);
2230 control16(c
, 14, s
, 1); // assigned session (our end)
2231 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2235 // update filter refcounts
2236 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2237 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2240 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2241 sess_local
[s
].lcp
.restart
= 0;
2242 sess_local
[s
].ipcp
.restart
= 0;
2243 sess_local
[s
].ipv6cp
.restart
= 0;
2244 sess_local
[s
].ccp
.restart
= 0;
2246 cluster_send_session(s
);
2249 void sendipcp(sessionidt s
, tunnelidt t
)
2251 uint8_t buf
[MAXETHER
];
2255 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2257 if (!session
[s
].unique_id
)
2259 if (!++last_id
) ++last_id
; // skip zero
2260 session
[s
].unique_id
= last_id
;
2263 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2267 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2268 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2269 q
[4] = 3; // ip address option
2270 q
[5] = 6; // option length
2271 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2272 config
->iftun_n_address
[tunnel
[t
].indexudp
] ? config
->iftun_n_address
[tunnel
[t
].indexudp
] :
2273 my_address
; // send my IP
2275 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2276 restart_timer(s
, ipcp
);
2279 void sendipv6cp(sessionidt s
, tunnelidt t
)
2281 uint8_t buf
[MAXETHER
];
2285 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2287 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2291 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2292 // only send one type
2294 *(uint16_t *) (q
+ 2) = htons(14);
2295 q
[4] = 1; // interface identifier option
2296 q
[5] = 10; // option length
2297 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2298 *(uint32_t *) (q
+ 10) = 0;
2301 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2302 restart_timer(s
, ipv6cp
);
2305 static void sessionclear(sessionidt s
)
2307 memset(&session
[s
], 0, sizeof(session
[s
]));
2308 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2309 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2311 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2312 session
[s
].next
= sessionfree
;
2316 // kill a session now
2317 void sessionkill(sessionidt s
, char *reason
)
2321 if (!session
[s
].opened
) // not alive
2324 if (session
[s
].next
)
2326 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2330 if (!session
[s
].die
)
2331 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2333 if (sess_local
[s
].radius
)
2334 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2336 if (session
[s
].forwardtosession
)
2338 sessionidt sess
= session
[s
].forwardtosession
;
2339 if (session
[sess
].forwardtosession
== s
)
2341 // Shutdown the linked session also.
2342 sessionshutdown(sess
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
2346 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2348 cluster_send_session(s
);
2351 static void tunnelclear(tunnelidt t
)
2354 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2355 tunnel
[t
].state
= TUNNELFREE
;
2358 static void bundleclear(bundleidt b
)
2361 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2362 bundle
[b
].state
= BUNDLEFREE
;
2365 // kill a tunnel now
2366 static void tunnelkill(tunnelidt t
, char *reason
)
2373 tunnel
[t
].state
= TUNNELDIE
;
2375 // free control messages
2376 while ((c
= tunnel
[t
].controls
))
2378 controlt
* n
= c
->next
;
2379 tunnel
[t
].controls
= n
;
2380 tunnel
[t
].controlc
--;
2381 c
->next
= controlfree
;
2385 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2386 if (session
[s
].tunnel
== t
)
2387 sessionkill(s
, reason
);
2391 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2392 cli_tunnel_actions
[t
].action
= 0;
2393 cluster_send_tunnel(t
);
2396 // shut down a tunnel cleanly
2397 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2401 CSTAT(tunnelshutdown
);
2403 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2405 // never set up, can immediately kill
2406 tunnelkill(t
, reason
);
2409 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2412 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2413 if (session
[s
].tunnel
== t
)
2414 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2416 tunnel
[t
].state
= TUNNELDIE
;
2417 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2418 cluster_send_tunnel(t
);
2419 // TBA - should we wait for sessions to stop?
2422 controlt
*c
= controlnew(4); // sending StopCCN
2427 buf
[0] = htons(result
);
2428 buf
[1] = htons(error
);
2431 int m
= strlen(msg
);
2432 if (m
+ 4 > sizeof(buf
))
2433 m
= sizeof(buf
) - 4;
2435 memcpy(buf
+2, msg
, m
);
2439 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2442 control16(c
, 1, result
, 1);
2444 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2445 controladd(c
, 0, t
); // send the message
2449 // read and process packet on tunnel (UDP)
2450 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, uint16_t indexudpfd
)
2452 uint8_t *sendchalresponse
= NULL
;
2453 uint8_t *recvchalresponse
= NULL
;
2454 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2455 uint8_t *p
= buf
+ 2;
2462 LOG_HEX(5, "UDP Data", buf
, len
);
2463 STAT(tunnel_rx_packets
);
2464 INC_STAT(tunnel_rx_bytes
, len
);
2467 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2468 STAT(tunnel_rx_errors
);
2471 if ((buf
[1] & 0x0F) != 2)
2473 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2474 STAT(tunnel_rx_errors
);
2479 l
= ntohs(*(uint16_t *) p
);
2482 t
= ntohs(*(uint16_t *) p
);
2484 s
= ntohs(*(uint16_t *) p
);
2486 if (s
>= MAXSESSION
)
2488 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2489 STAT(tunnel_rx_errors
);
2494 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2495 STAT(tunnel_rx_errors
);
2498 if (t
== TUNNEL_ID_PPPOE
)
2500 LOG(1, s
, t
, "Received UDP packet with tunnel ID reserved for pppoe\n");
2501 STAT(tunnel_rx_errors
);
2506 ns
= ntohs(*(uint16_t *) p
);
2508 nr
= ntohs(*(uint16_t *) p
);
2513 uint16_t o
= ntohs(*(uint16_t *) p
);
2518 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2519 STAT(tunnel_rx_errors
);
2524 // used to time out old tunnels
2525 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2526 tunnel
[t
].lastrec
= time_now
;
2530 uint16_t message
= 0xFFFF; // message type
2532 uint8_t mandatory
= 0;
2533 uint16_t asession
= 0; // assigned session
2534 uint32_t amagic
= 0; // magic number
2535 uint8_t aflags
= 0; // flags from last LCF
2536 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2537 char called
[MAXTEL
] = ""; // called number
2538 char calling
[MAXTEL
] = ""; // calling number
2540 if (!config
->cluster_iam_master
)
2542 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
2546 // control messages must have bits 0x80|0x40|0x08
2547 // (type, length and sequence) set, and bits 0x02|0x01
2548 // (offset and priority) clear
2549 if ((*buf
& 0xCB) != 0xC8)
2551 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2552 STAT(tunnel_rx_errors
);
2556 // check for duplicate tunnel open message
2562 // Is this a duplicate of the first packet? (SCCRQ)
2564 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2566 if (tunnel
[i
].state
!= TUNNELOPENING
||
2567 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2568 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2571 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2576 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2577 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2579 // if no tunnel specified, assign one
2582 if (!(t
= new_tunnel()))
2584 LOG(1, 0, 0, "No more tunnels\n");
2585 STAT(tunnel_overflow
);
2589 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2590 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2591 tunnel
[t
].window
= 4; // default window
2592 tunnel
[t
].indexudp
= indexudpfd
;
2593 STAT(tunnel_created
);
2594 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2595 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2598 // If the 'ns' just received is not the 'nr' we're
2599 // expecting, just send an ack and drop it.
2601 // if 'ns' is less, then we got a retransmitted packet.
2602 // if 'ns' is greater than missed a packet. Either way
2603 // we should ignore it.
2604 if (ns
!= tunnel
[t
].nr
)
2606 // is this the sequence we were expecting?
2607 STAT(tunnel_rx_errors
);
2608 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2609 t
, ns
, tunnel
[t
].nr
);
2611 if (l
) // Is this not a ZLB?
2616 // check sequence of this message
2618 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2619 // some to clear maybe?
2620 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2622 controlt
*c
= tunnel
[t
].controls
;
2623 tunnel
[t
].controls
= c
->next
;
2624 tunnel
[t
].controlc
--;
2625 c
->next
= controlfree
;
2628 tunnel
[t
].try = 0; // we have progress
2631 // receiver advance (do here so quoted correctly in any sends below)
2632 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2633 if (skip
< 0) skip
= 0;
2634 if (skip
< tunnel
[t
].controlc
)
2636 // some control packets can now be sent that were previous stuck out of window
2637 int tosend
= tunnel
[t
].window
- skip
;
2638 controlt
*c
= tunnel
[t
].controls
;
2646 tunnel
[t
].try = 0; // first send
2647 tunnelsend(c
->buf
, c
->length
, t
);
2652 if (!tunnel
[t
].controlc
)
2653 tunnel
[t
].retry
= 0; // caught up
2656 { // if not a null message
2661 // Default disconnect cause/message on receipt of CDN. Set to
2662 // more specific value from attribute 1 (result code) or 46
2663 // (disconnect cause) if present below.
2664 int disc_cause_set
= 0;
2665 int disc_cause
= TERM_NAS_REQUEST
;
2666 char const *disc_reason
= "Closed (Received CDN).";
2669 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2671 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2678 LOG(1, s
, t
, "Invalid length in AVP\n");
2679 STAT(tunnel_rx_errors
);
2684 if (flags
& 0x3C) // reserved bits, should be clear
2686 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2688 result
= 2; // general error
2689 error
= 3; // reserved field non-zero
2694 if (*(uint16_t *) (b
))
2696 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2698 result
= 2; // general error
2699 error
= 6; // generic vendor-specific error
2700 msg
= "unsupported vendor-specific";
2704 mtype
= ntohs(*(uint16_t *) (b
));
2712 // handle hidden AVPs
2713 if (!*config
->l2tp_secret
)
2715 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2717 result
= 2; // general error
2718 error
= 6; // generic vendor-specific error
2719 msg
= "secret not specified";
2722 if (!session
[s
].random_vector_length
)
2724 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2726 result
= 2; // general error
2727 error
= 6; // generic
2728 msg
= "no random vector";
2733 LOG(2, s
, t
, "Short hidden AVP.\n");
2735 result
= 2; // general error
2736 error
= 2; // length is wrong
2742 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2744 orig_len
= ntohs(*(uint16_t *) b
);
2745 if (orig_len
> n
+ 2)
2747 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2751 result
= 2; // general error
2752 error
= 2; // length is wrong
2761 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2762 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2766 case 0: // message type
2767 message
= ntohs(*(uint16_t *) b
);
2768 mandatory
= flags
& 0x80;
2769 LOG(4, s
, t
, " Message type = %u (%s)\n", message
, l2tp_code(message
));
2771 case 1: // result code
2773 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2774 char const *resdesc
= "(unknown)";
2775 char const *errdesc
= NULL
;
2780 resdesc
= l2tp_stopccn_result_code(rescode
);
2781 cause
= TERM_LOST_SERVICE
;
2783 else if (message
== 14)
2785 resdesc
= l2tp_cdn_result_code(rescode
);
2787 cause
= TERM_LOST_CARRIER
;
2789 cause
= TERM_ADMIN_RESET
;
2792 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2795 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2796 errdesc
= l2tp_error_code(errcode
);
2797 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2800 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2802 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2804 disc_cause_set
= mtype
;
2805 disc_reason
= errdesc
? errdesc
: resdesc
;
2812 case 2: // protocol version
2814 version
= ntohs(*(uint16_t *) (b
));
2815 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2816 if (version
&& version
!= 0x0100)
2817 { // allow 0.0 and 1.0
2818 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2820 result
= 5; // unspported protocol version
2821 error
= 0x0100; // supported version
2827 case 3: // framing capabilities
2829 case 4: // bearer capabilities
2831 case 5: // tie breaker
2832 // We never open tunnels, so we don't care about tie breakers
2834 case 6: // firmware revision
2836 case 7: // host name
2837 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2838 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2839 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2840 // TBA - to send to RADIUS
2842 case 8: // vendor name
2843 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2844 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2845 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2847 case 9: // assigned tunnel
2848 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2849 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2851 case 10: // rx window
2852 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2853 if (!tunnel
[t
].window
)
2854 tunnel
[t
].window
= 1; // window of 0 is silly
2855 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2857 case 11: // Request Challenge
2859 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2861 build_chap_response(b
, 2, n
, &sendchalresponse
);
2862 else if (message
== 2)
2863 build_chap_response(b
, 3, n
, &sendchalresponse
);
2866 case 13: // receive challenge Response
2867 if (tunnel
[t
].isremotelns
)
2869 recvchalresponse
= calloc(17, 1);
2870 memcpy(recvchalresponse
, b
, (n
< 17) ? n
: 16);
2871 LOG(3, s
, t
, "received challenge response from REMOTE LNS\n");
2874 // Why did they send a response? We never challenge.
2875 LOG(2, s
, t
, " received unexpected challenge response\n");
2878 case 14: // assigned session
2879 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2880 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2882 case 15: // call serial number
2883 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2885 case 18: // bearer type
2886 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2889 case 19: // framing type
2890 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2893 case 21: // called number
2894 memset(called
, 0, sizeof(called
));
2895 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2896 LOG(4, s
, t
, " Called <%s>\n", called
);
2898 case 22: // calling number
2899 memset(calling
, 0, sizeof(calling
));
2900 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2901 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2905 case 24: // tx connect speed
2908 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2912 // AS5300s send connect speed as a string
2914 memset(tmp
, 0, sizeof(tmp
));
2915 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2916 session
[s
].tx_connect_speed
= atol(tmp
);
2918 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2920 case 38: // rx connect speed
2923 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2927 // AS5300s send connect speed as a string
2929 memset(tmp
, 0, sizeof(tmp
));
2930 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2931 session
[s
].rx_connect_speed
= atol(tmp
);
2933 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2935 case 25: // Physical Channel ID
2937 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2938 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2941 case 29: // Proxy Authentication Type
2943 uint16_t atype
= ntohs(*(uint16_t *)b
);
2944 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2947 case 30: // Proxy Authentication Name
2950 memset(authname
, 0, sizeof(authname
));
2951 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2952 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2956 case 31: // Proxy Authentication Challenge
2958 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2961 case 32: // Proxy Authentication ID
2963 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2964 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2967 case 33: // Proxy Authentication Response
2968 LOG(4, s
, t
, " Proxy Auth Response\n");
2970 case 27: // last sent lcp
2971 { // find magic number
2972 uint8_t *p
= b
, *e
= p
+ n
;
2973 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2975 if (*p
== 5 && p
[1] == 6) // Magic-Number
2976 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2977 else if (*p
== 7) // Protocol-Field-Compression
2978 aflags
|= SESSION_PFC
;
2979 else if (*p
== 8) // Address-and-Control-Field-Compression
2980 aflags
|= SESSION_ACFC
;
2985 case 28: // last recv lcp confreq
2987 case 26: // Initial Received LCP CONFREQ
2989 case 39: // seq required - we control it as an LNS anyway...
2991 case 36: // Random Vector
2992 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2993 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2994 if (n
> sizeof(session
[s
].random_vector
))
2995 n
= sizeof(session
[s
].random_vector
);
2996 memcpy(session
[s
].random_vector
, b
, n
);
2997 session
[s
].random_vector_length
= n
;
2999 case 46: // ppp disconnect cause
3002 uint16_t code
= ntohs(*(uint16_t *) b
);
3003 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
3004 uint8_t dir
= *(b
+ 4);
3006 LOG(4, s
, t
, " PPP disconnect cause "
3007 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
3008 code
, proto
, dir
, n
- 5, b
+ 5);
3010 disc_cause_set
= mtype
;
3014 case 1: // admin disconnect
3015 disc_cause
= TERM_ADMIN_RESET
;
3016 disc_reason
= "Administrative disconnect";
3018 case 3: // lcp terminate
3019 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
3020 disc_cause
= TERM_USER_REQUEST
;
3021 disc_reason
= "Normal disconnection";
3023 case 4: // compulsory encryption unavailable
3024 if (dir
!= 1) break; // 1=refused by peer, 2=local
3025 disc_cause
= TERM_USER_ERROR
;
3026 disc_reason
= "Compulsory encryption refused";
3028 case 5: // lcp: fsm timeout
3029 disc_cause
= TERM_PORT_ERROR
;
3030 disc_reason
= "LCP: FSM timeout";
3032 case 6: // lcp: no recognisable lcp packets received
3033 disc_cause
= TERM_PORT_ERROR
;
3034 disc_reason
= "LCP: no recognisable LCP packets";
3036 case 7: // lcp: magic-no error (possibly looped back)
3037 disc_cause
= TERM_PORT_ERROR
;
3038 disc_reason
= "LCP: magic-no error (possible loop)";
3040 case 8: // lcp: echo request timeout
3041 disc_cause
= TERM_PORT_ERROR
;
3042 disc_reason
= "LCP: echo request timeout";
3044 case 13: // auth: fsm timeout
3045 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3046 disc_reason
= "Authentication: FSM timeout";
3048 case 15: // auth: unacceptable auth protocol
3049 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3050 disc_reason
= "Unacceptable authentication protocol";
3052 case 16: // auth: authentication failed
3053 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3054 disc_reason
= "Authentication failed";
3056 case 17: // ncp: fsm timeout
3057 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3058 disc_reason
= "NCP: FSM timeout";
3060 case 18: // ncp: no ncps available
3061 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3062 disc_reason
= "NCP: no NCPs available";
3064 case 19: // ncp: failure to converge on acceptable address
3065 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3066 disc_reason
= (dir
== 1)
3067 ? "NCP: too many Configure-Naks received from peer"
3068 : "NCP: too many Configure-Naks sent to peer";
3070 case 20: // ncp: user not permitted to use any address
3071 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3072 disc_reason
= (dir
== 1)
3073 ? "NCP: local link address not acceptable to peer"
3074 : "NCP: remote link address not acceptable";
3081 static char e
[] = "unknown AVP 0xXXXX";
3082 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
3084 result
= 2; // general error
3085 error
= 8; // unknown mandatory AVP
3086 sprintf((msg
= e
) + 14, "%04x", mtype
);
3093 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
3097 case 1: // SCCRQ - Start Control Connection Request
3098 tunnel
[t
].state
= TUNNELOPENING
;
3099 LOG(3, s
, t
, "Received SCCRQ\n");
3100 if (main_quit
!= QUIT_SHUTDOWN
)
3102 LOG(3, s
, t
, "sending SCCRP\n");
3103 controlt
*c
= controlnew(2); // sending SCCRP
3104 control16(c
, 2, version
, 1); // protocol version
3105 control32(c
, 3, 3, 1); // framing
3106 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3107 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Send Challenge response
3108 control16(c
, 9, t
, 1); // assigned tunnel
3109 controladd(c
, 0, t
); // send the resply
3113 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3117 tunnel
[t
].state
= TUNNELOPEN
;
3118 tunnel
[t
].lastrec
= time_now
;
3119 LOG(3, s
, t
, "Received SCCRP\n");
3120 if (main_quit
!= QUIT_SHUTDOWN
)
3122 if (tunnel
[t
].isremotelns
&& recvchalresponse
)
3126 lac_calc_rlns_auth(t
, 2, hash
); // id = 2 (SCCRP)
3127 // check authenticator
3128 if (memcmp(hash
, recvchalresponse
, 16) == 0)
3130 LOG(3, s
, t
, "sending SCCCN to REMOTE LNS\n");
3131 controlt
*c
= controlnew(3); // sending SCCCN
3132 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3133 controls(c
, 8, Vendor_name
, 1); // Vendor name
3134 control16(c
, 2, version
, 1); // protocol version
3135 control32(c
, 3, 3, 1); // framing Capabilities
3136 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Challenge response
3137 control16(c
, 9, t
, 1); // assigned tunnel
3138 controladd(c
, 0, t
); // send
3142 tunnelshutdown(t
, "Bad chap response from REMOTE LNS", 4, 0, 0);
3148 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3152 LOG(3, s
, t
, "Received SCCN\n");
3153 tunnel
[t
].state
= TUNNELOPEN
;
3154 tunnel
[t
].lastrec
= time_now
;
3155 controlnull(t
); // ack
3158 LOG(3, s
, t
, "Received StopCCN\n");
3159 controlnull(t
); // ack
3160 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
3163 LOG(3, s
, t
, "Received HELLO\n");
3164 controlnull(t
); // simply ACK
3168 LOG(3, s
, t
, "Received OCRQ\n");
3172 LOG(3, s
, t
, "Received OCRO\n");
3176 LOG(3, s
, t
, "Received OCCN\n");
3179 LOG(3, s
, t
, "Received ICRQ\n");
3180 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
3182 controlt
*c
= controlnew(11); // ICRP
3184 LOG(3, s
, t
, "Sending ICRP\n");
3187 sessionfree
= session
[s
].next
;
3188 memset(&session
[s
], 0, sizeof(session
[s
]));
3190 if (s
> config
->cluster_highest_sessionid
)
3191 config
->cluster_highest_sessionid
= s
;
3193 session
[s
].opened
= time_now
;
3194 session
[s
].tunnel
= t
;
3195 session
[s
].far
= asession
;
3196 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3197 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
3198 control16(c
, 14, s
, 1); // assigned session
3199 controladd(c
, asession
, t
); // send the reply
3201 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
3202 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3204 session
[s
].ppp
.phase
= Establish
;
3205 session
[s
].ppp
.lcp
= Starting
;
3207 STAT(session_created
);
3212 controlt
*c
= controlnew(14); // CDN
3213 LOG(3, s
, t
, "Sending CDN\n");
3216 STAT(session_overflow
);
3217 LOG(1, 0, t
, "No free sessions\n");
3218 control16(c
, 1, 4, 0); // temporary lack of resources
3221 control16(c
, 1, 2, 7); // shutting down, try another
3223 controladd(c
, asession
, t
); // send the message
3227 LOG(3, s
, t
, "Received ICRP\n");
3228 if (session
[s
].forwardtosession
)
3230 controlt
*c
= controlnew(12); // ICCN
3232 session
[s
].opened
= time_now
;
3233 session
[s
].tunnel
= t
;
3234 session
[s
].far
= asession
;
3235 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3237 control32(c
, 19, 1, 1); // Framing Type
3238 control32(c
, 24, 10000000, 1); // Tx Connect Speed
3239 controladd(c
, asession
, t
); // send the message
3240 LOG(3, s
, t
, "Sending ICCN\n");
3244 LOG(3, s
, t
, "Received ICCN\n");
3245 if (amagic
== 0) amagic
= time_now
;
3246 session
[s
].magic
= amagic
; // set magic number
3247 session
[s
].flags
= aflags
; // set flags received
3248 session
[s
].mru
= PPPoE_MRU
; // default
3249 controlnull(t
); // ack
3252 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3253 sess_local
[s
].ppp_mru
= MRU
;
3255 // Set multilink options before sending initial LCP packet
3256 sess_local
[s
].mp_mrru
= 1614;
3257 sess_local
[s
].mp_epdis
= ntohl(config
->iftun_address
? config
->iftun_address
: my_address
);
3260 change_state(s
, lcp
, RequestSent
);
3264 LOG(3, s
, t
, "Received CDN\n");
3265 controlnull(t
); // ack
3266 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3269 LOG(1, s
, t
, "Missing message type\n");
3272 STAT(tunnel_rx_errors
);
3274 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3276 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3279 if (sendchalresponse
) free(sendchalresponse
);
3280 if (recvchalresponse
) free(recvchalresponse
);
3281 cluster_send_tunnel(t
);
3285 LOG(4, s
, t
, " Got a ZLB ack\n");
3292 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3293 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3294 { // HDLC address header, discard
3300 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3301 STAT(tunnel_rx_errors
);
3311 proto
= ntohs(*(uint16_t *) p
);
3316 if (session
[s
].forwardtosession
)
3318 LOG(5, s
, t
, "Forwarding data session to session %u\n", session
[s
].forwardtosession
);
3319 // Forward to LAC/BAS or Remote LNS session
3320 lac_session_forward(buf
, len
, s
, proto
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3323 else if (config
->auth_tunnel_change_addr_src
)
3325 if (tunnel
[t
].ip
!= ntohl(addr
->sin_addr
.s_addr
) &&
3326 tunnel
[t
].port
== ntohs(addr
->sin_port
))
3328 // The remotes BAS are a clustered l2tpns server and the source IP has changed
3329 LOG(5, s
, t
, "The tunnel IP source (%s) has changed by new IP (%s)\n",
3330 fmtaddr(htonl(tunnel
[t
].ip
), 0), fmtaddr(addr
->sin_addr
.s_addr
, 0));
3332 tunnel
[t
].ip
= ntohl(addr
->sin_addr
.s_addr
);
3336 if (s
&& !session
[s
].opened
) // Is something wrong??
3338 if (!config
->cluster_iam_master
)
3340 // Pass it off to the master to deal with..
3341 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3345 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3346 STAT(tunnel_rx_errors
);
3350 if (proto
== PPPPAP
)
3352 session
[s
].last_packet
= time_now
;
3353 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3354 processpap(s
, t
, p
, l
);
3356 else if (proto
== PPPCHAP
)
3358 session
[s
].last_packet
= time_now
;
3359 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3360 processchap(s
, t
, p
, l
);
3362 else if (proto
== PPPLCP
)
3364 session
[s
].last_packet
= time_now
;
3365 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3366 processlcp(s
, t
, p
, l
);
3368 else if (proto
== PPPIPCP
)
3370 session
[s
].last_packet
= time_now
;
3371 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3372 processipcp(s
, t
, p
, l
);
3374 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3376 session
[s
].last_packet
= time_now
;
3377 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3378 processipv6cp(s
, t
, p
, l
);
3380 else if (proto
== PPPCCP
)
3382 session
[s
].last_packet
= time_now
;
3383 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3384 processccp(s
, t
, p
, l
);
3386 else if (proto
== PPPIP
)
3390 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3391 return; // closing session, PPP not processed
3394 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3395 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3397 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3401 processipin(s
, t
, p
, l
);
3403 else if (proto
== PPPMP
)
3407 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3408 return; // closing session, PPP not processed
3411 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3412 if (!config
->cluster_iam_master
)
3414 // The fragments reconstruction is managed by the Master.
3415 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3419 processmpin(s
, t
, p
, l
);
3421 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3425 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3426 return; // closing session, PPP not processed
3429 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3430 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3432 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3436 if (!config
->cluster_iam_master
)
3438 // Check if DhcpV6, IP dst: FF02::1:2, Src Port 0x0222 (546), Dst Port 0x0223 (547)
3439 if (*(p
+ 6) == 17 && *(p
+ 24) == 0xFF && *(p
+ 25) == 2 &&
3440 *(uint32_t *)(p
+ 26) == 0 && *(uint32_t *)(p
+ 30) == 0 &&
3441 *(uint16_t *)(p
+ 34) == 0 && *(p
+ 36) == 0 && *(p
+ 37) == 1 && *(p
+ 38) == 0 && *(p
+ 39) == 2 &&
3442 *(p
+ 40) == 2 && *(p
+ 41) == 0x22 && *(p
+ 42) == 2 && *(p
+ 43) == 0x23)
3444 // DHCPV6 must be managed by the Master.
3445 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3450 processipv6in(s
, t
, p
, l
);
3452 else if (session
[s
].ppp
.lcp
== Opened
)
3454 session
[s
].last_packet
= time_now
;
3455 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3456 protoreject(s
, t
, p
, l
, proto
);
3460 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3461 proto
, ppp_state(session
[s
].ppp
.lcp
));
3466 // read and process packet on tun
3467 // (i.e. this routine writes to buf[-8]).
3468 static void processtun(uint8_t * buf
, int len
)
3470 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3471 STAT(tun_rx_packets
);
3472 INC_STAT(tun_rx_bytes
, len
);
3480 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3481 STAT(tun_rx_errors
);
3485 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3486 processipout(buf
, len
);
3487 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3488 && config
->ipv6_prefix
.s6_addr
[0])
3489 processipv6out(buf
, len
);
3494 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3495 // that we look at the whole of the tunnel, radius and session tables
3497 static void regular_cleanups(double period
)
3499 // Next tunnel, radius and session to check for actions on.
3500 static tunnelidt t
= 0;
3502 static sessionidt s
= 0;
3515 // divide up tables into slices based on the last run
3516 t_slice
= config
->cluster_highest_tunnelid
* period
;
3517 r_slice
= (MAXRADIUS
- 1) * period
;
3518 s_slice
= config
->cluster_highest_sessionid
* period
;
3522 else if (t_slice
> config
->cluster_highest_tunnelid
)
3523 t_slice
= config
->cluster_highest_tunnelid
;
3527 else if (r_slice
> (MAXRADIUS
- 1))
3528 r_slice
= MAXRADIUS
- 1;
3532 else if (s_slice
> config
->cluster_highest_sessionid
)
3533 s_slice
= config
->cluster_highest_sessionid
;
3535 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3537 for (i
= 0; i
< t_slice
; i
++)
3540 if (t
> config
->cluster_highest_tunnelid
)
3543 if (t
== TUNNEL_ID_PPPOE
)
3546 // check for expired tunnels
3547 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3549 STAT(tunnel_timeout
);
3550 tunnelkill(t
, "Expired");
3554 // check for message resend
3555 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3557 // resend pending messages as timeout on reply
3558 if (tunnel
[t
].retry
<= TIME
)
3560 controlt
*c
= tunnel
[t
].controls
;
3561 uint16_t w
= tunnel
[t
].window
;
3562 tunnel
[t
].try++; // another try
3563 if (tunnel
[t
].try > 5)
3564 tunnelkill(t
, "Timeout on control message"); // game over
3568 tunnelsend(c
->buf
, c
->length
, t
);
3576 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3578 if (!config
->disable_sending_hello
)
3580 controlt
*c
= controlnew(6); // sending HELLO
3581 controladd(c
, 0, t
); // send the message
3582 LOG(3, 0, t
, "Sending HELLO message\n");
3587 // Check for tunnel changes requested from the CLI
3588 if ((a
= cli_tunnel_actions
[t
].action
))
3590 cli_tunnel_actions
[t
].action
= 0;
3591 if (a
& CLI_TUN_KILL
)
3593 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3594 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3600 for (i
= 0; i
< r_slice
; i
++)
3606 if (!radius
[r
].state
)
3609 if (radius
[r
].retry
<= TIME
)
3616 for (i
= 0; i
< s_slice
; i
++)
3619 if (s
> config
->cluster_highest_sessionid
)
3622 if (!session
[s
].opened
) // Session isn't in use
3625 // check for expired sessions
3628 if (session
[s
].die
<= TIME
)
3630 sessionkill(s
, "Expired");
3637 if (sess_local
[s
].lcp
.restart
<= time_now
)
3639 int next_state
= session
[s
].ppp
.lcp
;
3640 switch (session
[s
].ppp
.lcp
)
3644 next_state
= RequestSent
;
3647 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3649 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3650 sendlcp(s
, session
[s
].tunnel
);
3651 change_state(s
, lcp
, next_state
);
3655 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3656 STAT(session_timeout
);
3666 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3668 int next_state
= session
[s
].ppp
.ipcp
;
3669 switch (session
[s
].ppp
.ipcp
)
3673 next_state
= RequestSent
;
3676 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3678 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3679 sendipcp(s
, session
[s
].tunnel
);
3680 change_state(s
, ipcp
, next_state
);
3684 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3685 STAT(session_timeout
);
3695 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3697 int next_state
= session
[s
].ppp
.ipv6cp
;
3698 switch (session
[s
].ppp
.ipv6cp
)
3702 next_state
= RequestSent
;
3705 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3707 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3708 sendipv6cp(s
, session
[s
].tunnel
);
3709 change_state(s
, ipv6cp
, next_state
);
3713 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3714 change_state(s
, ipv6cp
, Stopped
);
3721 if (sess_local
[s
].ccp
.restart
<= time_now
)
3723 int next_state
= session
[s
].ppp
.ccp
;
3724 switch (session
[s
].ppp
.ccp
)
3728 next_state
= RequestSent
;
3731 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3733 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3734 sendccp(s
, session
[s
].tunnel
);
3735 change_state(s
, ccp
, next_state
);
3739 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3740 change_state(s
, ccp
, Stopped
);
3747 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3748 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3750 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3751 STAT(session_timeout
);
3756 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3757 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= config
->echo_timeout
) &&
3758 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3760 uint8_t b
[MAXETHER
];
3762 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3766 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3767 *(uint16_t *)(q
+ 2) = htons(8); // Length
3768 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3770 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3771 (int)(time_now
- session
[s
].last_packet
));
3773 tunnelsend(b
, (q
- b
) + 8, session
[s
].tunnel
); // send it
3774 sess_local
[s
].last_echo
= time_now
;
3778 // Drop sessions who have reached session_timeout seconds
3779 if (session
[s
].session_timeout
)
3781 bundleidt bid
= session
[s
].bundle
;
3784 if (time_now
- bundle
[bid
].last_check
>= 1)
3786 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3787 bundle
[bid
].last_check
= time_now
;
3788 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3791 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3793 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3800 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3802 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3808 // Drop sessions who have reached idle_timeout seconds
3809 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3811 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3812 STAT(session_timeout
);
3817 // Check for actions requested from the CLI
3818 if ((a
= cli_session_actions
[s
].action
))
3822 cli_session_actions
[s
].action
= 0;
3823 if (a
& CLI_SESS_KILL
)
3825 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3826 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3827 a
= 0; // dead, no need to check for other actions
3831 if (a
& CLI_SESS_NOSNOOP
)
3833 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3834 session
[s
].snoop_ip
= 0;
3835 session
[s
].snoop_port
= 0;
3839 else if (a
& CLI_SESS_SNOOP
)
3841 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3842 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3843 cli_session_actions
[s
].snoop_port
);
3845 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3846 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3851 if (a
& CLI_SESS_NOTHROTTLE
)
3853 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3854 throttle_session(s
, 0, 0);
3858 else if (a
& CLI_SESS_THROTTLE
)
3860 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3861 cli_session_actions
[s
].throttle_in
,
3862 cli_session_actions
[s
].throttle_out
);
3864 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3869 if (a
& CLI_SESS_NOFILTER
)
3871 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3872 filter_session(s
, 0, 0);
3876 else if (a
& CLI_SESS_FILTER
)
3878 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3879 cli_session_actions
[s
].filter_in
,
3880 cli_session_actions
[s
].filter_out
);
3882 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3888 cluster_send_session(s
);
3891 // RADIUS interim accounting
3892 if (config
->radius_accounting
&& config
->radius_interim
> 0
3893 && session
[s
].ip
&& !session
[s
].walled_garden
3894 && !sess_local
[s
].radius
// RADIUS already in progress
3895 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3896 && session
[s
].flags
& SESSION_STARTED
)
3898 int rad
= radiusnew(s
);
3901 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3902 STAT(radius_overflow
);
3906 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3907 session
[s
].user
, session
[s
].unique_id
);
3909 radiussend(rad
, RADIUSINTERIM
);
3910 sess_local
[s
].last_interim
= time_now
;
3915 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3916 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3920 // Are we in the middle of a tunnel update, or radius
3923 static int still_busy(void)
3926 static clockt last_talked
= 0;
3927 static clockt start_busy_wait
= 0;
3930 static time_t stopped_bgp
= 0;
3935 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3937 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3938 if (bgp_peers
[i
].state
== Established
)
3939 bgp_stop(&bgp_peers
[i
]);
3941 stopped_bgp
= time_now
;
3943 if (!config
->cluster_iam_master
)
3945 // we don't want to become master
3946 cluster_send_ping(0);
3952 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3957 if (!config
->cluster_iam_master
)
3960 if (main_quit
== QUIT_SHUTDOWN
)
3962 static int dropped
= 0;
3967 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3968 for (i
= 1; i
< MAXTUNNEL
; i
++)
3969 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3970 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3976 if (start_busy_wait
== 0)
3977 start_busy_wait
= TIME
;
3979 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3981 if (!tunnel
[i
].controlc
)
3984 if (last_talked
!= TIME
)
3986 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3992 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3993 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3995 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3999 for (i
= 1; i
< MAXRADIUS
; i
++)
4001 if (radius
[i
].state
== RADIUSNULL
)
4003 if (radius
[i
].state
== RADIUSWAIT
)
4006 if (last_talked
!= TIME
)
4008 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
4018 # include <sys/epoll.h>
4020 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
4021 # include "fake_epoll.h"
4024 // the base set of fds polled: cli, cluster, tun, udp (MAX_UDPFD), control, dae, netlink, udplac, pppoedisc, pppoesess
4025 #define BASE_FDS (9 + MAX_UDPFD)
4027 // additional polled fds
4029 # define EXTRA_FDS BGP_NUM_PEERS
4031 # define EXTRA_FDS 0
4034 // main loop - gets packets on tun or udp and processes them
4035 static void mainloop(void)
4039 uint8_t *p
= buf
+ 32; // for the hearder of the forwarded MPPP packet (see C_MPPP_FORWARD)
4040 // and the forwarded pppoe session
4041 int size_bufp
= sizeof(buf
) - 32;
4042 clockt next_cluster_ping
= 0; // send initial ping immediately
4043 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
4044 int maxevent
= sizeof(events
)/sizeof(*events
);
4046 if ((epollfd
= epoll_create(maxevent
)) < 0)
4048 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
4052 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d, nlfd=%d , udplacfd=%d, pppoefd=%d, pppoesessfd=%d\n",
4053 clifd
, cluster_sockfd
, tunfd
, udpfd
[0], controlfd
, daefd
, nlfd
, udplacfd
, pppoediscfd
, pppoesessfd
);
4055 /* setup our fds to poll for input */
4057 static struct event_data d
[BASE_FDS
];
4058 struct epoll_event e
;
4065 d
[i
].type
= FD_TYPE_CLI
;
4066 e
.data
.ptr
= &d
[i
++];
4067 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
4070 d
[i
].type
= FD_TYPE_CLUSTER
;
4071 e
.data
.ptr
= &d
[i
++];
4072 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
4074 d
[i
].type
= FD_TYPE_TUN
;
4075 e
.data
.ptr
= &d
[i
++];
4076 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
4078 d
[i
].type
= FD_TYPE_CONTROL
;
4079 e
.data
.ptr
= &d
[i
++];
4080 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
4082 d
[i
].type
= FD_TYPE_DAE
;
4083 e
.data
.ptr
= &d
[i
++];
4084 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
4086 d
[i
].type
= FD_TYPE_NETLINK
;
4087 e
.data
.ptr
= &d
[i
++];
4088 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
4090 d
[i
].type
= FD_TYPE_PPPOEDISC
;
4091 e
.data
.ptr
= &d
[i
++];
4092 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoediscfd
, &e
);
4094 d
[i
].type
= FD_TYPE_PPPOESESS
;
4095 e
.data
.ptr
= &d
[i
++];
4096 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoesessfd
, &e
);
4098 for (j
= 0; j
< config
->nbudpfd
; j
++)
4100 d
[i
].type
= FD_TYPE_UDP
;
4102 e
.data
.ptr
= &d
[i
++];
4103 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
[j
], &e
);
4108 signal(SIGPIPE
, SIG_IGN
);
4109 bgp_setup(config
->as_number
);
4110 if (config
->bind_address
)
4111 bgp_add_route(config
->bind_address
, 0xffffffff);
4113 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
4115 if (config
->neighbour
[i
].name
[0])
4116 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
4117 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
4118 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
4119 0); /* 0 = routing disabled */
4123 while (!main_quit
|| still_busy())
4133 config
->reload_config
++;
4136 if (config
->reload_config
)
4138 config
->reload_config
= 0;
4146 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
4147 STAT(select_called
);
4152 if (errno
== EINTR
||
4153 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
4156 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
4162 struct sockaddr_in addr
;
4163 struct in_addr local
;
4166 int udp_ready
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4167 int pppoesess_ready
= 0;
4168 int pppoesess_pkts
= 0;
4170 int cluster_ready
= 0;
4171 int udp_pkts
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4173 int cluster_pkts
= 0;
4175 uint32_t bgp_events
[BGP_NUM_PEERS
];
4176 memset(bgp_events
, 0, sizeof(bgp_events
));
4179 for (c
= n
, i
= 0; i
< c
; i
++)
4181 struct event_data
*d
= events
[i
].data
.ptr
;
4185 case FD_TYPE_CLI
: // CLI connections
4189 alen
= sizeof(addr
);
4190 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
4196 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
4202 // these are handled below, with multiple interleaved reads
4203 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
4204 case FD_TYPE_TUN
: tun_ready
++; break;
4205 case FD_TYPE_UDP
: udp_ready
[d
->index
]++; break;
4206 case FD_TYPE_PPPOESESS
: pppoesess_ready
++; break;
4208 case FD_TYPE_PPPOEDISC
: // pppoe discovery
4209 s
= read(pppoediscfd
, p
, size_bufp
);
4210 if (s
> 0) process_pppoe_disc(p
, s
);
4214 case FD_TYPE_CONTROL
: // nsctl commands
4215 alen
= sizeof(addr
);
4216 s
= recvfromto(controlfd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4217 if (s
> 0) processcontrol(p
, s
, &addr
, alen
, &local
);
4221 case FD_TYPE_DAE
: // DAE requests
4222 alen
= sizeof(addr
);
4223 s
= recvfromto(daefd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4224 if (s
> 0) processdae(p
, s
, &addr
, alen
, &local
);
4228 case FD_TYPE_RADIUS
: // RADIUS response
4229 alen
= sizeof(addr
);
4230 s
= recvfrom(radfds
[d
->index
], p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
4231 if (s
>= 0 && config
->cluster_iam_master
)
4233 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
4234 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
4235 processrad(p
, s
, d
->index
);
4237 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
4238 fmtaddr(addr
.sin_addr
.s_addr
, 0));
4246 bgp_events
[d
->index
] = events
[i
].events
;
4251 case FD_TYPE_NETLINK
:
4253 struct nlmsghdr
*nh
= (struct nlmsghdr
*)p
;
4254 s
= netlink_recv(p
, size_bufp
);
4255 if (nh
->nlmsg_type
== NLMSG_ERROR
)
4257 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
4260 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
4262 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
4266 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
4271 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
);
4277 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
4282 bgp_process(bgp_events
);
4285 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4287 for (j
= 0; j
< config
->nbudpfd
; j
++)
4289 // L2TP and L2TP REMOTE LNS
4292 alen
= sizeof(addr
);
4293 if ((s
= recvfrom(udpfd
[j
], p
, size_bufp
, 0, (void *) &addr
, &alen
)) > 0)
4295 processudp(p
, s
, &addr
, j
);
4309 if ((s
= read(tunfd
, p
, size_bufp
)) > 0)
4322 if (pppoesess_ready
)
4324 if ((s
= read(pppoesessfd
, p
, size_bufp
)) > 0)
4326 process_pppoe_sess(p
, s
);
4331 pppoesess_ready
= 0;
4339 alen
= sizeof(addr
);
4340 if ((s
= recvfrom(cluster_sockfd
, p
, size_bufp
, MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4342 processcluster(p
, s
, addr
.sin_addr
.s_addr
);
4353 if (udp_pkts
[0] > 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4354 STAT(multi_read_used
);
4356 if (c
>= config
->multi_read_count
)
4358 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun %d cluster and %d pppoe packets\n",
4359 config
->multi_read_count
, udp_pkts
[0], tun_pkts
, cluster_pkts
, pppoesess_pkts
);
4360 STAT(multi_read_exceeded
);
4366 /* no event received, but timers could still have expired */
4367 bgp_process_peers_timers();
4372 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4374 // Log current traffic stats
4375 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4376 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4377 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4378 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4379 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4381 udp_tx
= udp_rx
= 0;
4382 udp_rx_pkt
= eth_rx_pkt
= 0;
4383 eth_tx
= eth_rx
= 0;
4386 if (config
->dump_speed
)
4387 printf("%s\n", config
->bandwidth
);
4389 // Update the internal time counter
4390 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4394 struct param_timer p
= { time_now
};
4395 run_plugins(PLUGIN_TIMER
, &p
);
4399 // Runs on every machine (master and slaves).
4400 if (next_cluster_ping
<= TIME
)
4402 // Check to see which of the cluster is still alive..
4404 cluster_send_ping(basetime
); // Only does anything if we're a slave
4405 cluster_check_master(); // ditto.
4407 cluster_heartbeat(); // Only does anything if we're a master.
4408 cluster_check_slaves(); // ditto.
4410 master_update_counts(); // If we're a slave, send our byte counters to our master.
4412 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4413 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4415 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4418 if (!config
->cluster_iam_master
)
4421 // Run token bucket filtering queue..
4422 // Only run it every 1/10th of a second.
4424 static clockt last_run
= 0;
4425 if (last_run
!= TIME
)
4432 // Handle timeouts, retries etc.
4434 static double last_clean
= 0;
4438 TIME
= now(&this_clean
);
4439 diff
= this_clean
- last_clean
;
4441 // Run during idle time (after we've handled
4442 // all incoming packets) or every 1/10th sec
4443 if (!more
|| diff
> 0.1)
4445 regular_cleanups(diff
);
4446 last_clean
= this_clean
;
4450 if (*config
->accounting_dir
)
4452 static clockt next_acct
= 0;
4453 static clockt next_shut_acct
= 0;
4455 if (next_acct
<= TIME
)
4457 // Dump accounting data
4458 next_acct
= TIME
+ ACCT_TIME
;
4459 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4462 else if (next_shut_acct
<= TIME
)
4464 // Dump accounting data for shutdown sessions
4465 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4472 // Are we the master and shutting down??
4473 if (config
->cluster_iam_master
)
4474 cluster_heartbeat(); // Flush any queued changes..
4476 // Ok. Notify everyone we're shutting down. If we're
4477 // the master, this will force an election.
4478 cluster_send_ping(0);
4481 // Important!!! We MUST not process any packets past this point!
4482 LOG(1, 0, 0, "Shutdown complete\n");
4485 static void stripdomain(char *host
)
4489 if ((p
= strchr(host
, '.')))
4495 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4501 while (fgets(buf
, sizeof(buf
), resolv
))
4503 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4506 if (!isspace(buf
[6]))
4510 while (isspace(*b
)) b
++;
4515 while (*b
&& !isspace(*b
)) b
++;
4517 if (buf
[0] == 'd') // domain is canonical
4523 // first search line
4526 // hold, may be subsequent domain line
4527 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4538 int hl
= strlen(host
);
4539 int dl
= strlen(domain
);
4540 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4541 host
[hl
-dl
- 1] = 0;
4545 *p
= 0; // everything after first dot
4550 // Init data structures
4551 static void initdata(int optdebug
, char *optconfig
)
4555 if (!(config
= shared_malloc(sizeof(configt
))))
4557 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4561 memset(config
, 0, sizeof(configt
));
4562 time(&config
->start_time
);
4563 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4564 config
->debug
= optdebug
;
4565 config
->num_tbfs
= MAXTBFS
;
4566 config
->rl_rate
= 28; // 28kbps
4567 config
->cluster_mcast_ttl
= 1;
4568 config
->cluster_master_min_adv
= 1;
4569 config
->ppp_restart_time
= 3;
4570 config
->ppp_max_configure
= 10;
4571 config
->ppp_max_failure
= 5;
4572 config
->kill_timedout_sessions
= 1;
4573 strcpy(config
->random_device
, RANDOMDEVICE
);
4574 // Set default value echo_timeout and idle_echo_timeout
4575 config
->echo_timeout
= ECHO_TIMEOUT
;
4576 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4578 log_stream
= stderr
;
4581 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4583 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4586 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4589 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4591 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4594 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4596 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4599 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4601 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4604 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4606 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4609 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4611 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4615 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4617 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4621 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4623 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4627 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4629 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4633 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4635 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4638 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4640 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4642 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4645 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4647 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4649 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4652 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4654 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4655 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4656 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4657 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4658 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4660 // Put all the sessions on the free list marked as undefined.
4661 for (i
= 1; i
< MAXSESSION
; i
++)
4663 session
[i
].next
= i
+ 1;
4664 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4666 session
[MAXSESSION
- 1].next
= 0;
4669 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4670 for (i
= 1; i
< MAXTUNNEL
; i
++)
4671 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4673 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4674 bundle
[i
].state
= BUNDLEUNDEF
;
4679 // Grab my hostname unless it's been specified
4680 gethostname(hostname
, sizeof(hostname
));
4681 stripdomain(hostname
);
4684 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4687 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4689 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4694 lac_initremotelnsdata();
4697 static int assign_ip_address(sessionidt s
)
4701 time_t best_time
= time_now
;
4702 char *u
= session
[s
].user
;
4706 CSTAT(assign_ip_address
);
4708 for (i
= 1; i
< ip_pool_size
; i
++)
4710 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4713 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4720 if (ip_address_pool
[i
].last
< best_time
)
4723 if (!(best_time
= ip_address_pool
[i
].last
))
4724 break; // never used, grab this one
4730 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4734 session
[s
].ip
= ip_address_pool
[best
].address
;
4735 session
[s
].ip_pool_index
= best
;
4736 ip_address_pool
[best
].assigned
= 1;
4737 ip_address_pool
[best
].last
= time_now
;
4738 ip_address_pool
[best
].session
= s
;
4739 if (session
[s
].walled_garden
)
4740 /* Don't track addresses of users in walled garden (note: this
4741 means that their address isn't "sticky" even if they get
4743 ip_address_pool
[best
].user
[0] = 0;
4745 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4748 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4749 reuse
? "Reusing" : "Allocating", best
);
4754 static void free_ip_address(sessionidt s
)
4756 int i
= session
[s
].ip_pool_index
;
4759 CSTAT(free_ip_address
);
4762 return; // what the?
4764 if (i
< 0) // Is this actually part of the ip pool?
4768 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4770 ip_address_pool
[i
].assigned
= 0;
4771 ip_address_pool
[i
].session
= 0;
4772 ip_address_pool
[i
].last
= time_now
;
4776 // Fsck the address pool against the session table.
4777 // Normally only called when we become a master.
4779 // This isn't perfect: We aren't keep tracking of which
4780 // users used to have an IP address.
4782 void rebuild_address_pool(void)
4787 // Zero the IP pool allocation, and build
4788 // a map from IP address to pool index.
4789 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4791 ip_address_pool
[i
].assigned
= 0;
4792 ip_address_pool
[i
].session
= 0;
4793 if (!ip_address_pool
[i
].address
)
4796 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4799 for (i
= 0; i
< MAXSESSION
; ++i
)
4802 if (!(session
[i
].opened
&& session
[i
].ip
))
4805 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4807 if (session
[i
].ip_pool_index
< 0)
4809 // Not allocated out of the pool.
4810 if (ipid
< 1) // Not found in the pool either? good.
4813 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4814 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4816 // Fall through and process it as part of the pool.
4820 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4822 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4824 session
[i
].ip_pool_index
= ipid
;
4828 ip_address_pool
[ipid
].assigned
= 1;
4829 ip_address_pool
[ipid
].session
= i
;
4830 ip_address_pool
[ipid
].last
= time_now
;
4831 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4832 session
[i
].ip_pool_index
= ipid
;
4833 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4838 // Fix the address pool to match a changed session.
4839 // (usually when the master sends us an update).
4840 static void fix_address_pool(int sid
)
4844 ipid
= session
[sid
].ip_pool_index
;
4846 if (ipid
> ip_pool_size
)
4847 return; // Ignore it. rebuild_address_pool will fix it up.
4849 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4850 return; // Just ignore it. rebuild_address_pool will take care of it.
4852 ip_address_pool
[ipid
].assigned
= 1;
4853 ip_address_pool
[ipid
].session
= sid
;
4854 ip_address_pool
[ipid
].last
= time_now
;
4855 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4859 // Add a block of addresses to the IP pool to hand out.
4861 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4865 prefixlen
= 32; // Host route only.
4867 addr
&= 0xffffffff << (32 - prefixlen
);
4869 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4872 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4874 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4875 continue; // Skip 0 and broadcast addresses.
4877 ip_address_pool
[ip_pool_size
].address
= i
;
4878 ip_address_pool
[ip_pool_size
].assigned
= 0;
4880 if (ip_pool_size
>= MAXIPPOOL
)
4882 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4888 // Initialize the IP address pool
4889 static void initippool()
4894 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4896 if (!(f
= fopen(IPPOOLFILE
, "r")))
4898 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4902 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4905 buf
[4095] = 0; // Force it to be zero terminated/
4907 if (*buf
== '#' || *buf
== '\n')
4908 continue; // Skip comments / blank lines
4909 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4910 if ((p
= (char *)strchr(buf
, ':')))
4914 src
= inet_addr(buf
);
4915 if (src
== INADDR_NONE
)
4917 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4920 // This entry is for a specific IP only
4921 if (src
!= config
->bind_address
)
4926 if ((p
= (char *)strchr(pool
, '/')))
4930 in_addr_t start
= 0;
4932 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4934 if (!*p
|| !(numbits
= atoi(p
)))
4936 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4939 start
= ntohl(inet_addr(pool
));
4941 // Add a static route for this pool
4942 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4943 fmtaddr(htonl(start
), 0), numbits
);
4945 routeset(0, start
, numbits
, 0, 1);
4947 add_to_ip_pool(start
, numbits
);
4951 // It's a single ip address
4952 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4956 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4959 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4961 struct sockaddr_in snoop_addr
= {0};
4962 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4965 snoop_addr
.sin_family
= AF_INET
;
4966 snoop_addr
.sin_addr
.s_addr
= destination
;
4967 snoop_addr
.sin_port
= ntohs(port
);
4969 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4970 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4971 htons(snoop_addr
.sin_port
));
4973 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4974 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4976 STAT(packets_snooped
);
4979 static int dump_session(FILE **f
, sessiont
*s
)
4981 if (!s
->opened
|| (!s
->ip
&& !s
->forwardtosession
) || !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4986 char filename
[1024];
4988 time_t now
= time(NULL
);
4990 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4991 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4993 if (!(*f
= fopen(filename
, "w")))
4995 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4999 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
5000 if(config
->account_all_origin
)
5002 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
5007 "# format: username ip qos uptxoctets downrxoctets origin(L=LAC, R=Remote LNS, P=PPPOE)\n",
5009 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
5015 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
5020 "# format: username ip qos uptxoctets downrxoctets\n",
5022 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
5028 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
5029 if(config
->account_all_origin
)
5031 fprintf(*f
, "%s %s %d %u %u %s\n",
5032 s
->user
, // username
5033 fmtaddr(htonl(s
->ip
), 0), // ip
5034 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5035 (uint32_t) s
->cin_delta
, // uptxoctets
5036 (uint32_t) s
->cout_delta
, // downrxoctets
5037 (s
->tunnel
== TUNNEL_ID_PPPOE
)?"P":(tunnel
[s
->tunnel
].isremotelns
?"R":"L")); // Origin
5039 else if (!tunnel
[s
->tunnel
].isremotelns
&& (s
->tunnel
!= TUNNEL_ID_PPPOE
))
5041 fprintf(*f
, "%s %s %d %u %u\n",
5042 s
->user
, // username
5043 fmtaddr(htonl(s
->ip
), 0), // ip
5044 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5045 (uint32_t) s
->cin_delta
, // uptxoctets
5046 (uint32_t) s
->cout_delta
); // downrxoctets
5049 s
->cin_delta
= s
->cout_delta
= 0;
5054 static void dump_acct_info(int all
)
5060 CSTAT(dump_acct_info
);
5064 for (i
= 0; i
< shut_acct_n
; i
++)
5065 dump_session(&f
, &shut_acct
[i
]);
5071 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5072 dump_session(&f
, &session
[i
]);
5079 int main(int argc
, char *argv
[])
5083 char *optconfig
= CONFIGFILE
;
5085 time(&basetime
); // start clock
5088 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
5093 if (fork()) exit(0);
5095 if(!freopen("/dev/null", "r", stdin
)) LOG(0, 0, 0, "Error freopen stdin: %s\n", strerror(errno
));
5096 if(!freopen("/dev/null", "w", stdout
)) LOG(0, 0, 0, "Error freopen stdout: %s\n", strerror(errno
));
5097 if(!freopen("/dev/null", "w", stderr
)) LOG(0, 0, 0, "Error freopen stderr: %s\n", strerror(errno
));
5106 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
5109 printf("Args are:\n"
5110 "\t-d\t\tDetach from terminal\n"
5111 "\t-c <file>\tConfig file\n"
5112 "\t-h <hostname>\tForce hostname\n"
5120 // Start the timer routine off
5122 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
5125 initdata(optdebug
, optconfig
);
5129 /* set hostname /after/ having read the config file */
5130 if (*config
->hostname
)
5131 strcpy(hostname
, config
->hostname
);
5132 cli_init_complete(hostname
);
5134 init_tbf(config
->num_tbfs
);
5136 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
5137 LOG(0, 0, 0, "Copyright (c) 2012, 2013, 2014 ISP FDN & SAMESWIRELESS\n");
5138 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
5139 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
5142 rlim
.rlim_cur
= RLIM_INFINITY
;
5143 rlim
.rlim_max
= RLIM_INFINITY
;
5144 // Remove the maximum core size
5145 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
5146 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
5148 // Make core dumps go to /tmp
5149 if(chdir("/tmp")) LOG(0, 0, 0, "Error chdir /tmp: %s\n", strerror(errno
));
5152 if (config
->scheduler_fifo
)
5155 struct sched_param params
= {0};
5156 params
.sched_priority
= 1;
5158 if (get_nprocs() < 2)
5160 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
5161 config
->scheduler_fifo
= 0;
5165 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
5167 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
5171 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
5172 config
->scheduler_fifo
= 0;
5179 /* Set up the cluster communications port. */
5180 if (cluster_init() < 0)
5184 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevicename
);
5186 if (*config
->pppoe_if_to_bind
)
5189 LOG(1, 0, 0, "Set up on pppoe interface %s\n", config
->pppoe_if_to_bind
);
5192 if (!config
->nbmultiaddress
)
5194 config
->bind_n_address
[0] = config
->bind_address
;
5195 config
->nbmultiaddress
++;
5197 config
->nbudpfd
= config
->nbmultiaddress
;
5198 for (i
= 0; i
< config
->nbudpfd
; i
++)
5199 initudp(&udpfd
[i
], config
->bind_n_address
[i
]);
5201 config
->indexlacudpfd
= config
->nbudpfd
;
5202 udpfd
[config
->indexlacudpfd
] = udplacfd
;
5209 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
5217 unsigned seed
= time_now
^ getpid();
5218 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
5222 signal(SIGHUP
, sighup_handler
);
5223 signal(SIGCHLD
, sigchild_handler
);
5224 signal(SIGTERM
, shutdown_handler
);
5225 signal(SIGINT
, shutdown_handler
);
5226 signal(SIGQUIT
, shutdown_handler
);
5228 // Prevent us from getting paged out
5229 if (config
->lock_pages
)
5231 if (!mlockall(MCL_CURRENT
))
5232 LOG(1, 0, 0, "Locking pages into memory\n");
5234 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
5239 /* remove plugins (so cleanup code gets run) */
5242 // Remove the PID file if we wrote it
5243 if (config
->wrote_pid
&& *config
->pid_file
== '/')
5244 unlink(config
->pid_file
);
5246 /* kill CLI children */
5247 signal(SIGTERM
, SIG_IGN
);
5252 static void sighup_handler(int sig
)
5257 static void shutdown_handler(int sig
)
5259 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
5262 static void sigchild_handler(int sig
)
5264 while (waitpid(-1, NULL
, WNOHANG
) > 0)
5268 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
5271 *challenge_response
= NULL
;
5273 if (!*config
->l2tp_secret
)
5275 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
5279 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
5281 *challenge_response
= calloc(17, 1);
5284 MD5_Update(&ctx
, &id
, 1);
5285 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5286 MD5_Update(&ctx
, challenge
, challenge_length
);
5287 MD5_Final(*challenge_response
, &ctx
);
5292 static int facility_value(char *name
)
5295 for (i
= 0; facilitynames
[i
].c_name
; i
++)
5297 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
5298 return facilitynames
[i
].c_val
;
5303 static void update_config()
5307 static int timeout
= 0;
5308 static int interval
= 0;
5315 if (log_stream
!= stderr
)
5321 if (*config
->log_filename
)
5323 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
5325 char *p
= config
->log_filename
+ 7;
5328 openlog("l2tpns", LOG_PID
, facility_value(p
));
5332 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
5334 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
5336 fseek(log_stream
, 0, SEEK_END
);
5337 setbuf(log_stream
, NULL
);
5341 log_stream
= stderr
;
5342 setbuf(log_stream
, NULL
);
5348 log_stream
= stderr
;
5349 setbuf(log_stream
, NULL
);
5352 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
5353 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
5355 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
5356 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
5357 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5359 // reset MRU/MSS globals
5360 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5361 if (MRU
> PPPoE_MRU
)
5364 MSS
= MRU
- TCP_HDRS
;
5367 config
->numradiusservers
= 0;
5368 for (i
= 0; i
< MAXRADSERVER
; i
++)
5369 if (config
->radiusserver
[i
])
5371 config
->numradiusservers
++;
5372 // Set radius port: if not set, take the port from the
5373 // first radius server. For the first radius server,
5374 // take the #defined default value from l2tpns.h
5376 // test twice, In case someone works with
5377 // a secondary radius server without defining
5378 // a primary one, this will work even then.
5379 if (i
> 0 && !config
->radiusport
[i
])
5380 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5381 if (!config
->radiusport
[i
])
5382 config
->radiusport
[i
] = RADPORT
;
5385 if (!config
->numradiusservers
)
5386 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5388 // parse radius_authtypes_s
5389 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5390 p
= config
->radius_authtypes_s
;
5393 char *s
= strpbrk(p
, " \t,");
5399 while (*s
== ' ' || *s
== '\t')
5406 if (!strncasecmp("chap", p
, strlen(p
)))
5408 else if (!strncasecmp("pap", p
, strlen(p
)))
5411 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5413 config
->radius_authtypes
|= type
;
5414 if (!config
->radius_authprefer
)
5415 config
->radius_authprefer
= type
;
5420 if (!config
->radius_authtypes
)
5422 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5423 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5426 // normalise radius_authtypes_s
5427 if (config
->radius_authprefer
== AUTHPAP
)
5429 strcpy(config
->radius_authtypes_s
, "pap");
5430 if (config
->radius_authtypes
& AUTHCHAP
)
5431 strcat(config
->radius_authtypes_s
, ", chap");
5435 strcpy(config
->radius_authtypes_s
, "chap");
5436 if (config
->radius_authtypes
& AUTHPAP
)
5437 strcat(config
->radius_authtypes_s
, ", pap");
5440 if (!config
->radius_dae_port
)
5441 config
->radius_dae_port
= DAEPORT
;
5443 if(!config
->bind_portremotelns
)
5444 config
->bind_portremotelns
= L2TPLACPORT
;
5445 if(!config
->bind_address_remotelns
)
5446 config
->bind_address_remotelns
= INADDR_ANY
;
5448 if (*config
->bind_multi_address
)
5450 char *sip
= config
->bind_multi_address
;
5452 char *e
= config
->bind_multi_address
+ strlen(config
->bind_multi_address
);
5453 config
->nbmultiaddress
= 0;
5455 while (*sip
&& (sip
< e
))
5460 while (n
< e
&& (*n
== ',' || *n
== ' ')) n
++;
5462 while (n
< e
&& (isdigit(*n
) || *n
== '.'))
5470 u
= u
* 10 + *n
- '0';
5478 config
->bind_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5479 config
->iftun_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5480 config
->nbmultiaddress
++;
5481 LOG(1, 0, 0, "Bind address %s\n", fmtaddr(htonl(ip
), 0));
5483 if (config
->nbmultiaddress
>= MAX_BINDADDR
) break;
5489 if (config
->nbmultiaddress
>= 1)
5491 config
->bind_address
= config
->bind_n_address
[0];
5492 config
->iftun_address
= config
->bind_address
;
5496 if(!config
->iftun_address
)
5498 config
->iftun_address
= config
->bind_address
;
5499 config
->iftun_n_address
[0] = config
->iftun_address
;
5502 if (*config
->multi_hostname
)
5504 char *shost
= config
->multi_hostname
;
5506 char *e
= config
->multi_hostname
+ strlen(config
->multi_hostname
);
5507 config
->nbmultihostname
= 0;
5509 while (*shost
&& (shost
< e
))
5511 while ((n
< e
) && (*n
== ' ' || *n
== ',' || *n
== '\t')) n
++;
5514 while (n
< e
&& (*n
!= ',') && (*n
!= '\t'))
5516 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = *n
;
5522 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = 0;
5523 LOG(1, 0, 0, "Bind Hostname %s\n", config
->multi_n_hostname
[config
->nbmultihostname
]);
5524 config
->nbmultihostname
++;
5525 if (config
->nbmultihostname
>= MAX_NBHOSTNAME
) break;
5531 if (config
->nbmultihostname
>= 1)
5533 strcpy(hostname
, config
->multi_n_hostname
[0]);
5534 strcpy(config
->hostname
, hostname
);
5538 if (!*config
->pppoe_ac_name
)
5539 strncpy(config
->pppoe_ac_name
, DEFAULT_PPPOE_AC_NAME
, sizeof(config
->pppoe_ac_name
) - 1);
5541 // re-initialise the random number source
5542 initrandom(config
->random_device
);
5545 for (i
= 0; i
< MAXPLUGINS
; i
++)
5547 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5550 if (*config
->plugins
[i
])
5553 add_plugin(config
->plugins
[i
]);
5555 else if (*config
->old_plugins
[i
])
5558 remove_plugin(config
->old_plugins
[i
]);
5563 guest_accounts_num
= 0;
5564 char *p2
= config
->guest_user
;
5567 char *s
= strpbrk(p2
, " \t,");
5571 while (*s
== ' ' || *s
== '\t')
5578 strcpy(guest_users
[guest_accounts_num
], p2
);
5579 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5580 guest_accounts_num
++;
5583 // Rebuild the guest_user array
5584 strcpy(config
->guest_user
, "");
5586 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5588 strcat(config
->guest_user
, guest_users
[ui
]);
5589 if (ui
<guest_accounts_num
-1)
5591 strcat(config
->guest_user
, ",");
5596 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5597 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5598 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5599 if (!*config
->cluster_interface
)
5600 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5602 if (!config
->cluster_hb_interval
)
5603 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5605 if (!config
->cluster_hb_timeout
)
5606 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5608 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5610 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5611 // late, ensure we're sufficiently larger than that
5612 int t
= 4 * config
->cluster_hb_interval
+ 11;
5614 if (config
->cluster_hb_timeout
< t
)
5616 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5617 config
->cluster_hb_timeout
= t
;
5620 // Push timing changes to the slaves immediately if we're the master
5621 if (config
->cluster_iam_master
)
5622 cluster_heartbeat();
5624 interval
= config
->cluster_hb_interval
;
5625 timeout
= config
->cluster_hb_timeout
;
5629 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5632 if ((f
= fopen(config
->pid_file
, "w")))
5634 fprintf(f
, "%d\n", getpid());
5636 config
->wrote_pid
= 1;
5640 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5645 static void read_config_file()
5649 if (!config
->config_file
) return;
5650 if (!(f
= fopen(config
->config_file
, "r")))
5652 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5656 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5658 LOG(3, 0, 0, "Done reading config file\n");
5662 int sessionsetup(sessionidt s
, tunnelidt t
)
5664 // A session now exists, set it up
5670 CSTAT(sessionsetup
);
5672 LOG(3, s
, t
, "Doing session setup for session\n");
5674 // Join a bundle if the MRRU option is accepted
5675 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5677 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5678 if (join_bundle(s
) > 0)
5679 cluster_send_bundle(session
[s
].bundle
);
5682 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5683 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5690 assign_ip_address(s
);
5693 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5694 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5697 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5698 fmtaddr(htonl(session
[s
].ip
), 0));
5701 // Make sure this is right
5702 session
[s
].tunnel
= t
;
5704 // zap old sessions with same IP and/or username
5705 // Don't kill gardened sessions - doing so leads to a DoS
5706 // from someone who doesn't need to know the password
5709 user
= session
[s
].user
;
5710 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5712 if (i
== s
) continue;
5713 if (!session
[s
].opened
) break;
5714 // Allow duplicate sessions for multilink ones of the same bundle.
5715 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
) continue;
5717 if (ip
== session
[i
].ip
)
5719 sessionshutdown(i
, "Duplicate IP address", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5723 if (config
->allow_duplicate_users
) continue;
5724 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5728 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5730 if (!strcasecmp(user
, guest_users
[gu
]))
5736 if (found
) continue;
5738 // Drop the new session in case of duplicate sessionss, not the old one.
5739 if (!strcasecmp(user
, session
[i
].user
))
5740 sessionshutdown(i
, "Duplicate session for users", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5744 // no need to set a route for the same IP address of the bundle
5745 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5749 // Add the route for this session.
5750 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5752 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5753 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5756 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5759 // Static IPs need to be routed if not already
5760 // convered by a Framed-Route. Anything else is part
5761 // of the IP address pool and is already routed, it
5762 // just needs to be added to the IP cache.
5763 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5764 if (session
[s
].ip_pool_index
== -1) // static ip
5766 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5769 cache_ipmap(session
[s
].ip
, s
);
5772 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5773 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5775 // Run the plugin's against this new session.
5777 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5778 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5781 // Allocate TBFs if throttled
5782 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5783 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5785 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5787 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5788 fmtaddr(htonl(session
[s
].ip
), 0),
5789 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5791 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5793 return 1; // RADIUS OK and IP allocated, done...
5797 // This session just got dropped on us by the master or something.
5798 // Make sure our tables up up to date...
5800 int load_session(sessionidt s
, sessiont
*new)
5806 if (new->ip_pool_index
>= MAXIPPOOL
||
5807 new->tunnel
>= MAXTUNNEL
)
5809 LOG(0, s
, 0, "Strange session update received!\n");
5810 // FIXME! What to do here?
5815 // Ok. All sanity checks passed. Now we're committed to
5816 // loading the new session.
5819 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5821 // See if routes/ip cache need updating
5822 if (new->ip
!= session
[s
].ip
)
5825 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5826 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5827 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5835 // remove old routes...
5836 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5838 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5839 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5842 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5848 if (session
[s
].ip_pool_index
== -1) // static IP
5850 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5852 else // It's part of the IP pool, remove it manually.
5853 uncache_ipmap(session
[s
].ip
);
5856 // remove old IPV6 routes...
5857 if (session
[s
].ipv6route
.s6_addr
[0] && session
[s
].ipv6prefixlen
)
5858 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
5860 if (session
[s
].ipv6address
.s6_addr
[0])
5862 route6set(s
, session
[s
].ipv6address
, 128, 0);
5867 // add new routes...
5868 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5870 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5871 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5874 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5880 // If there's a new one, add it.
5881 if (new->ip_pool_index
== -1)
5883 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5886 cache_ipmap(new->ip
, s
);
5891 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5892 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5894 if (new->ipv6address
.s6_addr
[0] && new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5896 // Check if included in prefix
5897 if (sessionbyipv6(new->ipv6address
) != s
)
5898 route6set(s
, new->ipv6address
, 128, 1);
5902 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5904 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5908 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5910 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5911 new->filter_out
= 0;
5914 if (new->filter_in
!= session
[s
].filter_in
)
5916 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5917 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5920 if (new->filter_out
!= session
[s
].filter_out
)
5922 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5923 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5926 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5927 // for walking the sessions to forward byte counts to the master.
5928 config
->cluster_highest_sessionid
= s
;
5930 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5932 // Do fixups into address pool.
5933 if (new->ip_pool_index
!= -1)
5934 fix_address_pool(s
);
5939 static void initplugins()
5943 loaded_plugins
= ll_init();
5944 // Initialize the plugins to nothing
5945 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5946 plugins
[i
] = ll_init();
5949 static void *open_plugin(char *plugin_name
, int load
)
5951 char path
[256] = "";
5953 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5954 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5955 return dlopen(path
, RTLD_NOW
);
5958 // plugin callback to get a config value
5959 static void *getconfig(char *key
, enum config_typet type
)
5963 for (i
= 0; config_values
[i
].key
; i
++)
5965 if (!strcmp(config_values
[i
].key
, key
))
5967 if (config_values
[i
].type
== type
)
5968 return ((void *) config
) + config_values
[i
].offset
;
5970 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5971 key
, type
, config_values
[i
].type
);
5977 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5981 static int add_plugin(char *plugin_name
)
5983 static struct pluginfuncs funcs
= {
5988 sessiontbysessionidt
,
5989 sessionidtbysessiont
,
5996 cluster_send_session
,
5999 void *p
= open_plugin(plugin_name
, 1);
6000 int (*initfunc
)(struct pluginfuncs
*);
6005 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
6009 if (ll_contains(loaded_plugins
, p
))
6012 return 0; // already loaded
6016 int *v
= dlsym(p
, "plugin_api_version");
6017 if (!v
|| *v
!= PLUGIN_API_VERSION
)
6019 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
6025 if ((initfunc
= dlsym(p
, "plugin_init")))
6027 if (!initfunc(&funcs
))
6029 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
6035 ll_push(loaded_plugins
, p
);
6037 for (i
= 0; i
< max_plugin_functions
; i
++)
6040 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
6042 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
6043 ll_push(plugins
[i
], x
);
6047 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
6051 static void run_plugin_done(void *plugin
)
6053 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
6059 static int remove_plugin(char *plugin_name
)
6061 void *p
= open_plugin(plugin_name
, 0);
6067 if (ll_contains(loaded_plugins
, p
))
6070 for (i
= 0; i
< max_plugin_functions
; i
++)
6073 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
6074 ll_delete(plugins
[i
], x
);
6077 ll_delete(loaded_plugins
, p
);
6083 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
6087 int run_plugins(int plugin_type
, void *data
)
6089 int (*func
)(void *data
);
6091 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
6092 return PLUGIN_RET_ERROR
;
6094 ll_reset(plugins
[plugin_type
]);
6095 while ((func
= ll_next(plugins
[plugin_type
])))
6099 if (r
!= PLUGIN_RET_OK
)
6100 return r
; // stop here
6103 return PLUGIN_RET_OK
;
6106 static void plugins_done()
6110 ll_reset(loaded_plugins
);
6111 while ((p
= ll_next(loaded_plugins
)))
6115 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
6117 struct nsctl request
;
6118 struct nsctl response
;
6119 int type
= unpack_control(&request
, buf
, len
);
6123 if (log_stream
&& config
->debug
>= 4)
6127 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
6128 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
6132 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6133 dump_control(&request
, log_stream
);
6139 case NSCTL_REQ_LOAD
:
6140 if (request
.argc
!= 1)
6142 response
.type
= NSCTL_RES_ERR
;
6144 response
.argv
[0] = "name of plugin required";
6146 else if ((r
= add_plugin(request
.argv
[0])) < 1)
6148 response
.type
= NSCTL_RES_ERR
;
6150 response
.argv
[0] = !r
6151 ? "plugin already loaded"
6152 : "error loading plugin";
6156 response
.type
= NSCTL_RES_OK
;
6162 case NSCTL_REQ_UNLOAD
:
6163 if (request
.argc
!= 1)
6165 response
.type
= NSCTL_RES_ERR
;
6167 response
.argv
[0] = "name of plugin required";
6169 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
6171 response
.type
= NSCTL_RES_ERR
;
6173 response
.argv
[0] = !r
6174 ? "plugin not loaded"
6175 : "plugin not found";
6179 response
.type
= NSCTL_RES_OK
;
6185 case NSCTL_REQ_HELP
:
6186 response
.type
= NSCTL_RES_OK
;
6189 ll_reset(loaded_plugins
);
6190 while ((p
= ll_next(loaded_plugins
)))
6192 char **help
= dlsym(p
, "plugin_control_help");
6193 while (response
.argc
< 0xff && help
&& *help
)
6194 response
.argv
[response
.argc
++] = *help
++;
6199 case NSCTL_REQ_CONTROL
:
6201 struct param_control param
= {
6202 config
->cluster_iam_master
,
6209 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
6211 if (r
== PLUGIN_RET_ERROR
)
6213 response
.type
= NSCTL_RES_ERR
;
6215 response
.argv
[0] = param
.additional
6217 : "error returned by plugin";
6219 else if (r
== PLUGIN_RET_NOTMASTER
)
6221 static char msg
[] = "must be run on master: 000.000.000.000";
6223 response
.type
= NSCTL_RES_ERR
;
6225 if (config
->cluster_master_address
)
6227 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
6228 response
.argv
[0] = msg
;
6232 response
.argv
[0] = "must be run on master: none elected";
6235 else if (!(param
.response
& NSCTL_RESPONSE
))
6237 response
.type
= NSCTL_RES_ERR
;
6239 response
.argv
[0] = param
.response
6240 ? "unrecognised response value from plugin"
6241 : "unhandled action";
6245 response
.type
= param
.response
;
6247 if (param
.additional
)
6250 response
.argv
[0] = param
.additional
;
6258 response
.type
= NSCTL_RES_ERR
;
6260 response
.argv
[0] = "error unpacking control packet";
6263 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
6266 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
6270 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
6273 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
6274 if (log_stream
&& config
->debug
>= 4)
6276 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6277 dump_control(&response
, log_stream
);
6281 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
6282 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
6287 static tunnelidt
new_tunnel()
6290 for (i
= 1; i
< MAXTUNNEL
; i
++)
6292 if ((tunnel
[i
].state
== TUNNELFREE
) && (i
!= TUNNEL_ID_PPPOE
))
6294 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
6295 if (i
> config
->cluster_highest_tunnelid
)
6296 config
->cluster_highest_tunnelid
= i
;
6300 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
6305 // We're becoming the master. Do any required setup..
6307 // This is principally telling all the plugins that we're
6308 // now a master, and telling them about all the sessions
6309 // that are active too..
6311 void become_master(void)
6314 static struct event_data d
[RADIUS_FDS
];
6315 struct epoll_event e
;
6317 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
6319 // running a bunch of iptables commands is slow and can cause
6320 // the master to drop tunnels on takeover--kludge around the
6321 // problem by forking for the moment (note: race)
6322 if (!fork_and_close())
6324 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6326 if (!session
[s
].opened
) // Not an in-use session.
6329 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
6336 for (i
= 0; i
< RADIUS_FDS
; i
++)
6338 d
[i
].type
= FD_TYPE_RADIUS
;
6342 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
6346 int cmd_show_hist_idle(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6352 if (CLI_HELP_REQUESTED
)
6353 return CLI_HELP_NO_ARGS
;
6356 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6358 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6361 if (!session
[s
].opened
)
6364 idle
= time_now
- session
[s
].last_data
;
6365 idle
/= 5 ; // In multiples of 5 seconds.
6375 for (i
= 0; i
< 63; ++i
)
6377 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6379 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
6380 cli_print(cli
, "%d total sessions open.", count
);
6384 int cmd_show_hist_open(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6390 if (CLI_HELP_REQUESTED
)
6391 return CLI_HELP_NO_ARGS
;
6394 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6396 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6399 if (!session
[s
].opened
)
6402 d
= time_now
- session
[s
].opened
;
6405 while (d
> 1 && open
< 32)
6415 for (i
= 0; i
< 30; ++i
)
6417 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6420 cli_print(cli
, "%d total sessions open.", count
);
6426 * This unencodes the AVP using the L2TP secret and the previously
6427 * stored random vector. It overwrites the hidden data with the
6428 * unhidden AVP subformat.
6430 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
6436 uint16_t m
= htons(type
);
6438 // Compute initial pad
6440 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
6441 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6442 MD5_Update(&ctx
, vector
, vec_len
);
6443 MD5_Final(digest
, &ctx
);
6445 // pointer to last decoded 16 octets
6450 // calculate a new pad based on the last decoded block
6451 if (d
>= sizeof(digest
))
6454 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6455 MD5_Update(&ctx
, last
, sizeof(digest
));
6456 MD5_Final(digest
, &ctx
);
6462 *value
++ ^= digest
[d
++];
6467 int find_filter(char const *name
, size_t len
)
6472 for (i
= 0; i
< MAXFILTER
; i
++)
6474 if (!*ip_filters
[i
].name
)
6482 if (strlen(ip_filters
[i
].name
) != len
)
6485 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6492 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6496 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6497 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6498 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6499 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6500 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6506 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6510 case FILTER_FLAG_OP_ANY
:
6511 return (flags
& sflags
) || (~flags
& cflags
);
6513 case FILTER_FLAG_OP_ALL
:
6514 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6516 case FILTER_FLAG_OP_EST
:
6517 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6523 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6525 uint16_t frag_offset
;
6529 uint16_t src_port
= 0;
6530 uint16_t dst_port
= 0;
6532 ip_filter_rulet
*rule
;
6534 if (len
< 20) // up to end of destination address
6537 if ((*buf
>> 4) != 4) // IPv4
6540 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6542 src_ip
= *(in_addr_t
*) (buf
+ 12);
6543 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6545 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6547 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6548 if (len
< l
+ 4) // ports
6551 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6552 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6553 if (proto
== IPPROTO_TCP
)
6555 if (len
< l
+ 14) // flags
6558 flags
= buf
[l
+ 13] & 0x3f;
6562 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6564 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6567 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6568 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6571 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6572 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6577 // layer 4 deny rules are skipped
6578 if (rule
->action
== FILTER_ACTION_DENY
&&
6579 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6587 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6589 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6592 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6595 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6596 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6603 return rule
->action
== FILTER_ACTION_PERMIT
;
6610 tunnelidt
lac_new_tunnel()
6612 return new_tunnel();
6615 void lac_tunnelclear(tunnelidt t
)
6620 void lac_send_SCCRQ(tunnelidt t
, uint8_t * auth
, unsigned int auth_len
)
6622 uint16_t version
= 0x0100; // protocol version
6624 tunnel
[t
].state
= TUNNELOPENING
;
6626 // Sent SCCRQ - Start Control Connection Request
6627 controlt
*c
= controlnew(1); // sending SCCRQ
6628 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
6629 controls(c
, 8, Vendor_name
, 1); // Vendor name
6630 control16(c
, 2, version
, 1); // protocol version
6631 control32(c
, 3, 3, 1); // framing Capabilities
6632 control16(c
, 9, t
, 1); // assigned tunnel
6633 controlb(c
, 11, (uint8_t *) auth
, auth_len
, 1); // CHAP Challenge
6634 LOG(3, 0, t
, "Sent SCCRQ to REMOTE LNS\n");
6635 controladd(c
, 0, t
); // send
6638 void lac_send_ICRQ(tunnelidt t
, sessionidt s
)
6640 // Sent ICRQ Incoming-call-request
6641 controlt
*c
= controlnew(10); // ICRQ
6643 control16(c
, 14, s
, 1); // assigned sesion
6644 call_serial_number
++;
6645 control32(c
, 15, call_serial_number
, 1); // call serial number
6646 LOG(3, s
, t
, "Sent ICRQ to REMOTE LNS (far ID %u)\n", tunnel
[t
].far
);
6647 controladd(c
, 0, t
); // send
6650 void lac_tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
6652 tunnelshutdown(t
, reason
, result
, error
, msg
);