3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
15 #include <net/route.h>
18 #include <netinet/in.h>
19 #include <netinet/ip6.h>
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
29 #include <sys/resource.h>
37 #include <sys/sysinfo.h>
39 #include <linux/netlink.h>
40 #include <linux/rtnetlink.h>
47 #include "constants.h"
59 char * Vendor_name
= "Linux L2TPNS";
60 uint32_t call_serial_number
= 0;
63 configt
*config
= NULL
; // all configuration
64 int nlfd
= -1; // netlink socket
65 int tunfd
= -1; // tun interface file handle. (network device)
66 int udpfd
[MAX_UDPFD
+ 1] = INIT_TABUDPFD
; // array UDP file handle + 1 for lac udp
67 int udplacfd
= -1; // UDP LAC file handle
68 int controlfd
= -1; // Control signal handle
69 int clifd
= -1; // Socket listening for CLI connections.
70 int daefd
= -1; // Socket listening for DAE connections.
71 int snoopfd
= -1; // UDP file handle for sending out intercept data
72 int *radfds
= NULL
; // RADIUS requests file handles
73 int rand_fd
= -1; // Random data source
74 int cluster_sockfd
= -1; // Intra-cluster communications socket.
75 int epollfd
= -1; // event polling
76 time_t basetime
= 0; // base clock
77 char hostname
[MAXHOSTNAME
] = ""; // us.
78 static int tunidx
; // ifr_ifindex of tun device
79 int nlseqnum
= 0; // netlink sequence number
80 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
81 static int syslog_log
= 0; // are we logging to syslog
82 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
83 uint32_t last_id
= 0; // Unique ID for radius accounting
85 char guest_users
[10][32]; // Array of guest users
86 int guest_accounts_num
= 0; // Number of guest users
88 // calculated from config->l2tp_mtu
89 uint16_t MRU
= 0; // PPP MRU
90 uint16_t MSS
= 0; // TCP MSS
92 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
93 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
98 } ip_hash
[256]; // Mapping from IP address to session structures.
102 struct ipv6radix
*branch
;
103 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
106 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
107 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
110 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
111 time_t time_now
= 0; // Current time in seconds since epoch.
112 uint64_t time_now_ms
= 0; // Current time in milliseconds since epoch.
113 static char time_now_string
[64] = {0}; // Current time as a string.
114 static int time_changed
= 0; // time_now changed
115 char main_quit
= 0; // True if we're in the process of exiting.
116 static char main_reload
= 0; // Re-load pending
117 linked_list
*loaded_plugins
;
118 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
120 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
121 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
123 config_descriptt config_values
[] = {
124 CONFIG("debug", debug
, INT
),
125 CONFIG("log_file", log_filename
, STRING
),
126 CONFIG("pid_file", pid_file
, STRING
),
127 CONFIG("random_device", random_device
, STRING
),
128 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
129 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
130 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
131 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
132 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
133 CONFIG("primary_dns", default_dns1
, IPv4
),
134 CONFIG("secondary_dns", default_dns2
, IPv4
),
135 CONFIG("primary_radius", radiusserver
[0], IPv4
),
136 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
137 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
138 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
139 CONFIG("radius_accounting", radius_accounting
, BOOL
),
140 CONFIG("radius_interim", radius_interim
, INT
),
141 CONFIG("radius_secret", radiussecret
, STRING
),
142 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
143 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
144 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
145 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
146 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
147 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
148 CONFIG("guest_account", guest_user
, STRING
),
149 CONFIG("bind_address", bind_address
, IPv4
),
150 CONFIG("peer_address", peer_address
, IPv4
),
151 CONFIG("send_garp", send_garp
, BOOL
),
152 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
153 CONFIG("throttle_buckets", num_tbfs
, INT
),
154 CONFIG("accounting_dir", accounting_dir
, STRING
),
155 CONFIG("account_all_origin", account_all_origin
, BOOL
),
156 CONFIG("dump_speed", dump_speed
, BOOL
),
157 CONFIG("multi_read_count", multi_read_count
, INT
),
158 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
159 CONFIG("lock_pages", lock_pages
, BOOL
),
160 CONFIG("icmp_rate", icmp_rate
, INT
),
161 CONFIG("packet_limit", max_packets
, INT
),
162 CONFIG("cluster_address", cluster_address
, IPv4
),
163 CONFIG("cluster_interface", cluster_interface
, STRING
),
164 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
165 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
166 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
167 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
168 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
169 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
170 CONFIG("hostname", hostname
, STRING
),
172 CONFIG("nexthop_address", nexthop_address
, IPv4
),
173 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
175 CONFIG("echo_timeout", echo_timeout
, INT
),
176 CONFIG("idle_echo_timeout", idle_echo_timeout
, INT
),
177 CONFIG("iftun_address", iftun_address
, IPv4
),
178 CONFIG("tundevicename", tundevicename
, STRING
),
179 CONFIG("disable_lac_func", disable_lac_func
, BOOL
),
180 CONFIG("auth_tunnel_change_addr_src", auth_tunnel_change_addr_src
, BOOL
),
181 CONFIG("bind_address_remotelns", bind_address_remotelns
, IPv4
),
182 CONFIG("bind_portremotelns", bind_portremotelns
, SHORT
),
183 CONFIG("pppoe_if_to_bind", pppoe_if_to_bind
, STRING
),
184 CONFIG("pppoe_service_name", pppoe_service_name
, STRING
),
185 CONFIG("pppoe_ac_name", pppoe_ac_name
, STRING
),
186 CONFIG("disable_sending_hello", disable_sending_hello
, BOOL
),
187 CONFIG("disable_no_spoof", disable_no_spoof
, BOOL
),
188 CONFIG("bind_multi_address", bind_multi_address
, STRING
),
189 CONFIG("pppoe_only_equal_svc_name", pppoe_only_equal_svc_name
, BOOL
),
193 static char *plugin_functions
[] = {
198 "plugin_new_session",
199 "plugin_kill_session",
201 "plugin_radius_response",
202 "plugin_radius_reset",
203 "plugin_radius_account",
204 "plugin_become_master",
205 "plugin_new_session_master",
208 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
210 // Counters for shutdown sessions
211 static sessiont shut_acct
[8192];
212 static sessionidt shut_acct_n
= 0;
214 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
215 bundlet
*bundle
= NULL
; // Array of bundle structures.
216 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
217 sessiont
*session
= NULL
; // Array of session structures.
218 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
219 radiust
*radius
= NULL
; // Array of radius structures.
220 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
221 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
222 static controlt
*controlfree
= 0;
223 struct Tstats
*_statistics
= NULL
;
225 struct Tringbuffer
*ringbuffer
= NULL
;
228 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
229 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
230 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
231 static void uncache_ipmap(in_addr_t ip
);
232 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
233 static void free_ip_address(sessionidt s
);
234 static void dump_acct_info(int all
);
235 static void sighup_handler(int sig
);
236 static void shutdown_handler(int sig
);
237 static void sigchild_handler(int sig
);
238 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
239 static void update_config(void);
240 static void read_config_file(void);
241 static void initplugins(void);
242 static int add_plugin(char *plugin_name
);
243 static int remove_plugin(char *plugin_name
);
244 static void plugins_done(void);
245 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
246 static tunnelidt
new_tunnel(void);
247 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
248 static void bundleclear(bundleidt b
);
250 // return internal time (10ths since process startup), set f if given
251 // as a side-effect sets time_now, and time_changed
252 static clockt
now(double *f
)
256 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
257 if (t
.tv_sec
!= time_now
)
263 // Time in milliseconds
264 // TODO FOR MLPPP DEV
265 //time_now_ms = (t.tv_sec * 1000) + (t.tv_usec/1000);
267 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
270 // work out a retry time based on try number
271 // This is a straight bounded exponential backoff.
272 // Maximum re-try time is 32 seconds. (2^5).
273 clockt
backoff(uint8_t try)
275 if (try > 5) try = 5; // max backoff
276 return now(NULL
) + 10 * (1 << try);
281 // Log a debug message. Typically called via the LOG macro
283 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
285 static char message
[65536] = {0};
291 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
292 ringbuffer
->tail
= 0;
293 if (ringbuffer
->tail
== ringbuffer
->head
)
294 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
295 ringbuffer
->head
= 0;
297 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
298 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
299 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
300 va_start(ap
, format
);
301 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, MAX_LOG_LENGTH
, format
, ap
);
306 if (config
->debug
< level
) return;
308 va_start(ap
, format
);
309 vsnprintf(message
, sizeof(message
), format
, ap
);
312 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
314 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
319 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
322 const uint8_t *d
= data
;
324 if (config
->debug
< level
) return;
326 // No support for _log_hex to syslog
329 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
330 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
332 for (i
= 0; i
< maxsize
; )
334 fprintf(log_stream
, "%4X: ", i
);
335 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
337 fprintf(log_stream
, "%02X ", d
[j
]);
339 fputs(": ", log_stream
);
342 for (; j
< i
+ 16; j
++)
344 fputs(" ", log_stream
);
346 fputs(": ", log_stream
);
349 fputs(" ", log_stream
);
350 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
352 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
353 fputc(d
[j
], log_stream
);
355 fputc('.', log_stream
);
358 fputs(" ", log_stream
);
362 fputs("\n", log_stream
);
366 setbuf(log_stream
, NULL
);
370 // update a counter, accumulating 2^32 wraps
371 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
373 uint32_t new = *counter
+ delta
;
380 // initialise the random generator
381 static void initrandom(char *source
)
383 static char path
[sizeof(config
->random_device
)] = "*undefined*";
385 // reinitialise only if we are forced to do so or if the config has changed
386 if (source
&& !strncmp(path
, source
, sizeof(path
)))
389 // close previous source, if any
398 snprintf(path
, sizeof(path
), "%s", source
);
402 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
404 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
405 path
, strerror(errno
));
410 // fill buffer with random data
411 void random_data(uint8_t *buf
, int len
)
418 n
= read(rand_fd
, buf
, len
);
419 if (n
>= len
) return;
424 LOG(0, 0, 0, "Error reading from random source: %s\n",
427 // fall back to rand()
435 // append missing data
437 // not using the low order bits from the prng stream
438 buf
[n
++] = (rand() >> 4) & 0xff;
443 // This adds it to the routing table, advertises it
444 // via BGP if enabled, and stuffs it into the
445 // 'sessionbyip' cache.
447 // 'ip' must be in _host_ order.
449 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
459 if (!prefixlen
) prefixlen
= 32;
461 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
463 memset(&req
, 0, sizeof(req
));
467 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
468 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
472 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
473 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
476 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
478 req
.rt
.rtm_family
= AF_INET
;
479 req
.rt
.rtm_dst_len
= prefixlen
;
480 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
481 req
.rt
.rtm_protocol
= 42;
482 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
483 req
.rt
.rtm_type
= RTN_UNICAST
;
485 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
487 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
491 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
494 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
495 fmtaddr(htonl(ip
), 0), prefixlen
,
496 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
498 if (netlink_send(&req
.nh
) < 0)
499 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
503 bgp_add_route(htonl(ip
), prefixlen
);
505 bgp_del_route(htonl(ip
), prefixlen
);
508 // Add/Remove the IPs to the 'sessionbyip' cache.
509 // Note that we add the zero address in the case of
510 // a network route. Roll on CIDR.
512 // Note that 's == 0' implies this is the address pool.
513 // We still cache it here, because it will pre-fill
514 // the malloc'ed tree.
518 if (!add
) // Are we deleting a route?
519 s
= 0; // Caching the session as '0' is the same as uncaching.
521 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
526 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
534 char ipv6addr
[INET6_ADDRSTRLEN
];
536 if (!config
->ipv6_prefix
.s6_addr
[0])
538 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
542 memset(&req
, 0, sizeof(req
));
546 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
547 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
551 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
552 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
555 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
557 req
.rt
.rtm_family
= AF_INET6
;
558 req
.rt
.rtm_dst_len
= prefixlen
;
559 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
560 req
.rt
.rtm_protocol
= 42;
561 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
562 req
.rt
.rtm_type
= RTN_UNICAST
;
564 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
565 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
567 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
569 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
571 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
574 if (netlink_send(&req
.nh
) < 0)
575 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
579 bgp_add_route6(ip
, prefixlen
);
581 bgp_del_route6(ip
, prefixlen
);
586 if (!add
) // Are we deleting a route?
587 s
= 0; // Caching the session as '0' is the same as uncaching.
589 cache_ipv6map(ip
, prefixlen
, s
);
596 // Set up netlink socket
597 static void initnetlink(void)
599 struct sockaddr_nl nladdr
;
601 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
604 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
608 memset(&nladdr
, 0, sizeof(nladdr
));
609 nladdr
.nl_family
= AF_NETLINK
;
610 nladdr
.nl_pid
= getpid();
612 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
614 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
619 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
621 struct sockaddr_nl nladdr
;
625 nh
->nlmsg_pid
= getpid();
626 nh
->nlmsg_seq
= ++nlseqnum
;
628 // set kernel address
629 memset(&nladdr
, 0, sizeof(nladdr
));
630 nladdr
.nl_family
= AF_NETLINK
;
632 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
633 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
635 return sendmsg(nlfd
, &msg
, 0);
638 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
640 struct sockaddr_nl nladdr
;
644 // set kernel address
645 memset(&nladdr
, 0, sizeof(nladdr
));
646 nladdr
.nl_family
= AF_NETLINK
;
648 iov
= (struct iovec
){ buf
, len
};
649 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
651 return recvmsg(nlfd
, &msg
, 0);
654 /* adapted from iproute2 */
655 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
657 int len
= RTA_LENGTH(alen
);
660 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
661 rta
->rta_type
= type
;
663 memcpy(RTA_DATA(rta
), data
, alen
);
664 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
667 // messages corresponding to different phases seq number
668 static char *tun_nl_phase_msg
[] = {
670 "getting tun interface index",
671 "setting tun interface parameters",
672 "setting tun IPv4 address",
673 "setting tun LL IPv6 address",
674 "setting tun global IPv6 address",
678 // Set up TUN interface
679 static void inittun(void)
683 memset(&ifr
, 0, sizeof(ifr
));
684 ifr
.ifr_flags
= IFF_TUN
;
686 tunfd
= open(TUNDEVICE
, O_RDWR
);
689 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
693 int flags
= fcntl(tunfd
, F_GETFL
, 0);
694 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
697 if (*config
->tundevicename
)
698 strncpy(ifr
.ifr_name
, config
->tundevicename
, IFNAMSIZ
);
700 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
702 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
705 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevicename
) - 1);
706 strncpy(config
->tundevicename
, ifr
.ifr_name
, sizeof(config
->tundevicename
));
708 tunidx
= if_nametoindex(config
->tundevicename
);
711 LOG(0, 0, 0, "Can't get tun interface index\n");
720 struct ifinfomsg ifinfo
;
721 struct ifaddrmsg ifaddr
;
723 char rtdata
[32]; // 32 should be enough
725 uint32_t txqlen
, mtu
;
728 memset(&req
, 0, sizeof(req
));
730 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
731 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
732 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
734 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
735 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
736 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
737 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
739 /* Bump up the qlen to deal with bursts from the network */
741 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
742 /* set MTU to modem MRU */
744 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
746 if (netlink_send(&req
.nh
) < 0)
749 memset(&req
, 0, sizeof(req
));
751 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
752 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
753 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
755 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
756 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
757 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
758 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
760 if (config
->nbmultiaddress
> 1)
763 for (i
= 0; i
< config
->nbmultiaddress
; i
++)
765 ip
= config
->iftun_n_address
[i
];
766 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
767 if (netlink_send(&req
.nh
) < 0)
773 if (config
->iftun_address
)
774 ip
= config
->iftun_address
;
776 ip
= 0x01010101; // 1.1.1.1
777 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
779 if (netlink_send(&req
.nh
) < 0)
785 // Only setup IPv6 on the tun device if we have a configured prefix
786 if (config
->ipv6_prefix
.s6_addr
[0]) {
789 memset(&req
, 0, sizeof(req
));
791 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
792 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
793 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
795 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
796 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
797 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
798 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
800 // Link local address is FE80::1
801 memset(&ip6
, 0, sizeof(ip6
));
802 ip6
.s6_addr
[0] = 0xFE;
803 ip6
.s6_addr
[1] = 0x80;
805 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
807 if (netlink_send(&req
.nh
) < 0)
810 memset(&req
, 0, sizeof(req
));
812 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
813 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
814 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
816 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
817 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
818 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
819 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
821 // Global address is prefix::1
822 ip6
= config
->ipv6_prefix
;
824 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
826 if (netlink_send(&req
.nh
) < 0)
830 memset(&req
, 0, sizeof(req
));
832 req
.nh
.nlmsg_type
= NLMSG_DONE
;
833 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
835 if (netlink_send(&req
.nh
) < 0)
838 // if we get an error for seqnum < min_initok_nlseqnum,
839 // we must exit as initialization went wrong
840 if (config
->ipv6_prefix
.s6_addr
[0])
841 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
843 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
849 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
853 // set up LAC UDP ports
854 static void initlacudp(void)
857 struct sockaddr_in addr
;
859 // Tunnel to Remote LNS
860 memset(&addr
, 0, sizeof(addr
));
861 addr
.sin_family
= AF_INET
;
862 addr
.sin_port
= htons(config
->bind_portremotelns
);
863 addr
.sin_addr
.s_addr
= config
->bind_address_remotelns
;
864 udplacfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
865 setsockopt(udplacfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
867 int flags
= fcntl(udplacfd
, F_GETFL
, 0);
868 fcntl(udplacfd
, F_SETFL
, flags
| O_NONBLOCK
);
870 if (bind(udplacfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
872 LOG(0, 0, 0, "Error in UDP REMOTE LNS bind: %s\n", strerror(errno
));
877 // set up control ports
878 static void initcontrol(void)
881 struct sockaddr_in addr
;
884 memset(&addr
, 0, sizeof(addr
));
885 addr
.sin_family
= AF_INET
;
886 addr
.sin_port
= htons(NSCTL_PORT
);
887 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
888 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
889 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
890 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
892 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
897 // set up Dynamic Authorization Extensions to RADIUS port
898 static void initdae(void)
901 struct sockaddr_in addr
;
903 // Dynamic Authorization Extensions to RADIUS
904 memset(&addr
, 0, sizeof(addr
));
905 addr
.sin_family
= AF_INET
;
906 addr
.sin_port
= htons(config
->radius_dae_port
);
907 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
908 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
909 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
910 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
912 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
918 static void initudp(int * pudpfd
, in_addr_t ip_bind
)
921 struct sockaddr_in addr
;
924 memset(&addr
, 0, sizeof(addr
));
925 addr
.sin_family
= AF_INET
;
926 addr
.sin_port
= htons(L2TPPORT
);
927 addr
.sin_addr
.s_addr
= ip_bind
;
928 (*pudpfd
) = socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
929 setsockopt((*pudpfd
), SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
931 int flags
= fcntl((*pudpfd
), F_GETFL
, 0);
932 fcntl((*pudpfd
), F_SETFL
, flags
| O_NONBLOCK
);
934 if (bind((*pudpfd
), (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
936 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
942 // Find session by IP, < 1 for not found
944 // Confusingly enough, this 'ip' must be
945 // in _network_ order. This being the common
946 // case when looking it up from IP packet headers.
948 // We actually use this cache for two things.
949 // #1. For used IP addresses, this maps to the
950 // session ID that it's used by.
951 // #2. For un-used IP addresses, this maps to the
952 // index into the pool table that contains that
956 static sessionidt
lookup_ipmap(in_addr_t ip
)
958 uint8_t *a
= (uint8_t *) &ip
;
959 union iphash
*h
= ip_hash
;
961 if (!(h
= h
[*a
++].idx
)) return 0;
962 if (!(h
= h
[*a
++].idx
)) return 0;
963 if (!(h
= h
[*a
++].idx
)) return 0;
968 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
970 struct ipv6radix
*curnode
;
973 char ipv6addr
[INET6_ADDRSTRLEN
];
975 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
979 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
981 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
986 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
987 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
994 sessionidt
sessionbyip(in_addr_t ip
)
996 sessionidt s
= lookup_ipmap(ip
);
999 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1005 sessionidt
sessionbyipv6(struct in6_addr ip
)
1008 CSTAT(sessionbyipv6
);
1010 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
1011 (ip
.s6_addr
[0] == 0xFE &&
1012 ip
.s6_addr
[1] == 0x80 &&
1013 ip
.s6_addr16
[1] == 0 &&
1014 ip
.s6_addr16
[2] == 0 &&
1015 ip
.s6_addr16
[3] == 0)) {
1016 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
1018 s
= lookup_ipv6map(ip
);
1021 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1028 // Take an IP address in HOST byte order and
1029 // add it to the sessionid by IP cache.
1031 // (It's actually cached in network order)
1033 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
1035 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
1036 uint8_t *a
= (uint8_t *) &nip
;
1037 union iphash
*h
= ip_hash
;
1040 for (i
= 0; i
< 3; i
++)
1042 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
1051 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
1054 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
1055 // else a map to an ip pool index.
1058 static void uncache_ipmap(in_addr_t ip
)
1060 cache_ipmap(ip
, 0); // Assign it to the NULL session.
1063 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
1067 struct ipv6radix
*curnode
;
1068 char ipv6addr
[INET6_ADDRSTRLEN
];
1070 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
1072 bytes
= prefixlen
>> 3;
1075 if (curnode
->branch
== NULL
)
1077 if (!(curnode
->branch
= calloc(256,
1078 sizeof (struct ipv6radix
))))
1081 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1088 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1089 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1093 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1094 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1100 // CLI list to dump current ipcache.
1102 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1104 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1108 if (CLI_HELP_REQUESTED
)
1109 return CLI_HELP_NO_ARGS
;
1111 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1113 for (i
= 0; i
< 256; ++i
)
1119 for (j
= 0; j
< 256; ++j
)
1125 for (k
= 0; k
< 256; ++k
)
1131 for (l
= 0; l
< 256; ++l
)
1136 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1142 cli_print(cli
, "%d entries in cache", count
);
1147 // Find session by username, 0 for not found
1148 // walled garden users aren't authenticated, so the username is
1149 // reasonably useless. Ignore them to avoid incorrect actions
1151 // This is VERY inefficent. Don't call it often. :)
1153 sessionidt
sessionbyuser(char *username
)
1156 CSTAT(sessionbyuser
);
1158 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1160 if (!session
[s
].opened
)
1163 if (session
[s
].walled_garden
)
1164 continue; // Skip walled garden users.
1166 if (!strncmp(session
[s
].user
, username
, 128))
1170 return 0; // Not found.
1173 void send_garp(in_addr_t ip
)
1179 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1182 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1185 memset(&ifr
, 0, sizeof(ifr
));
1186 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1187 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1189 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1193 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1194 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1196 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1201 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1204 static sessiont
*sessiontbysessionidt(sessionidt s
)
1206 if (!s
|| s
>= MAXSESSION
) return NULL
;
1210 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1212 sessionidt val
= s
-session
;
1213 if (s
< session
|| val
>= MAXSESSION
) return 0;
1217 // actually send a control message for a specific tunnel
1218 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1220 struct sockaddr_in addr
;
1226 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1227 STAT(tunnel_tx_errors
);
1231 if (t
== TUNNEL_ID_PPPOE
)
1233 pppoe_sess_send(buf
, l
, t
);
1239 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1240 STAT(tunnel_tx_errors
);
1244 memset(&addr
, 0, sizeof(addr
));
1245 addr
.sin_family
= AF_INET
;
1246 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1247 addr
.sin_port
= htons(tunnel
[t
].port
);
1249 // sequence expected, if sequence in message
1250 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1252 // If this is a control message, deal with retries
1255 tunnel
[t
].last
= time_now
; // control message sent
1256 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1259 STAT(tunnel_retries
);
1260 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1264 if (sendto(udpfd
[tunnel
[t
].indexudp
], buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1266 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1267 strerror(errno
), udpfd
[tunnel
[t
].indexudp
], buf
, l
, inet_ntoa(addr
.sin_addr
));
1268 STAT(tunnel_tx_errors
);
1272 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1273 STAT(tunnel_tx_packets
);
1274 INC_STAT(tunnel_tx_bytes
, l
);
1278 // Tiny helper function to write data to
1279 // the 'tun' device.
1281 int tun_write(uint8_t * data
, int size
)
1283 return write(tunfd
, data
, size
);
1286 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1287 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1289 int d
= (tcp
[12] >> 4) * 4;
1296 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1299 if (tcp
+ d
> buf
+ len
) // short?
1307 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1310 if (mss
+ 2 > data
) return; // short?
1314 if (*opts
== 0) return; // end of options
1315 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1318 opts
+= opts
[1]; // skip over option
1321 if (!mss
) return; // not found
1322 orig
= ntohs(*(uint16_t *) mss
);
1324 if (orig
<= MSS
) return; // mss OK
1326 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1327 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1328 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1329 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1332 *(int16_t *) mss
= htons(MSS
);
1334 // adjust checksum (see rfc1141)
1335 sum
= orig
+ (~MSS
& 0xffff);
1336 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1337 sum
= (sum
& 0xffff) + (sum
>> 16);
1338 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1341 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1345 // Skip the four extra bytes
1357 proto
= ntohs(*(uint16_t *) p
);
1365 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1366 return; // closing session, PPP not processed
1368 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1369 processipin(s
, t
, p
, l
);
1371 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1375 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1376 return; // closing session, PPP not processed
1379 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1380 processipv6in(s
, t
, p
, l
);
1382 else if (proto
== PPPIPCP
)
1384 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1385 processipcp(s
, t
, p
, l
);
1387 else if (proto
== PPPCCP
)
1389 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1390 processccp(s
, t
, p
, l
);
1394 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1398 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1400 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1401 sp
->cout_delta
+= len
;
1403 sp
->last_data
= time_now
;
1405 sess_local
[s
].cout
+= len
; // To send to master..
1406 sess_local
[s
].pout
++;
1409 // process outgoing (to tunnel) IP
1411 // (i.e. this routine writes to data[-8]).
1412 void processipout(uint8_t *buf
, int len
)
1419 uint8_t *data
= buf
; // Keep a copy of the originals.
1422 uint8_t fragbuf
[MAXETHER
+ 20];
1424 CSTAT(processipout
);
1426 if (len
< MIN_IP_SIZE
)
1428 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1429 STAT(tun_rx_errors
);
1432 if (len
>= MAXETHER
)
1434 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1435 STAT(tun_rx_errors
);
1439 // Skip the tun header
1443 // Got an IP header now
1444 if (*(uint8_t *)(buf
) >> 4 != 4)
1446 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1450 ip
= *(uint32_t *)(buf
+ 16);
1451 if (!(s
= sessionbyip(ip
)))
1453 // Is this a packet for a session that doesn't exist?
1454 static int rate
= 0; // Number of ICMP packets we've sent this second.
1455 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1457 if (last
!= time_now
)
1463 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1465 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1466 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1467 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1472 t
= session
[s
].tunnel
;
1473 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1475 LOG(3, s
, t
, "Packet size more than session MRU\n");
1481 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1482 if (config
->max_packets
> 0)
1484 if (sess_local
[s
].last_packet_out
== TIME
)
1486 int max
= config
->max_packets
;
1488 // All packets for throttled sessions are handled by the
1489 // master, so further limit by using the throttle rate.
1490 // A bit of a kludge, since throttle rate is in kbps,
1491 // but should still be generous given our average DSL
1492 // packet size is 200 bytes: a limit of 28kbps equates
1493 // to around 180 packets per second.
1494 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1495 max
= sp
->throttle_out
;
1497 if (++sess_local
[s
].packets_out
> max
)
1499 sess_local
[s
].packets_dropped
++;
1505 if (sess_local
[s
].packets_dropped
)
1507 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1508 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1509 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1510 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1514 sess_local
[s
].last_packet_out
= TIME
;
1515 sess_local
[s
].packets_out
= 1;
1516 sess_local
[s
].packets_dropped
= 0;
1520 // run access-list if any
1521 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1524 // adjust MSS on SYN and SYN,ACK packets with options
1525 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1527 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1528 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1529 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1534 // Are we throttling this session?
1535 if (config
->cluster_iam_master
)
1536 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1538 master_throttle_packet(sp
->tbf_out
, data
, size
);
1542 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1544 // We are walled-gardening this
1545 master_garden_packet(s
, data
, size
);
1549 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1552 if (!config
->cluster_iam_master
)
1554 // The MPPP packets must be managed by the Master.
1555 master_forward_mppp_packet(s
, data
, size
);
1559 // Add on L2TP header
1560 sessionidt members
[MAXBUNDLESES
];
1561 bundleidt bid
= session
[s
].bundle
;
1562 bundlet
*b
= &bundle
[bid
];
1563 uint32_t num_of_links
, nb_opened
;
1566 num_of_links
= b
->num_of_links
;
1568 for (i
= 0;i
< num_of_links
;i
++)
1571 if (session
[s
].ppp
.lcp
== Opened
)
1573 members
[nb_opened
] = s
;
1580 LOG(3, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1584 num_of_links
= nb_opened
;
1585 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1586 s
= members
[b
->current_ses
];
1587 t
= session
[s
].tunnel
;
1589 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1591 if (num_of_links
> 1)
1593 if(len
> MINFRAGLEN
)
1595 //for rotate traffic among the member links
1596 uint32_t divisor
= num_of_links
;
1598 divisor
= divisor
/2 + (divisor
& 1);
1600 // Partition the packet to "num_of_links" fragments
1601 uint32_t fraglen
= len
/ divisor
;
1602 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1603 uint32_t remain
= len
;
1605 // send the first packet
1606 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1608 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1611 update_session_out_stat(s
, sp
, fraglen
);
1614 while (remain
> last_fraglen
)
1616 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1617 s
= members
[b
->current_ses
];
1618 t
= session
[s
].tunnel
;
1620 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1621 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1623 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1624 update_session_out_stat(s
, sp
, fraglen
);
1627 // send the last fragment
1628 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1629 s
= members
[b
->current_ses
];
1630 t
= session
[s
].tunnel
;
1632 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1633 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1635 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1636 update_session_out_stat(s
, sp
, remain
);
1637 if (remain
!= last_fraglen
)
1638 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1642 // Send it as one frame
1643 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1645 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1646 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1647 update_session_out_stat(s
, sp
, len
);
1652 // Send it as one frame (NO MPPP Frame)
1653 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1654 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1655 update_session_out_stat(s
, sp
, len
);
1660 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1661 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1662 update_session_out_stat(s
, sp
, len
);
1665 // Snooping this session, send it to intercept box
1666 if (sp
->snoop_ip
&& sp
->snoop_port
)
1667 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1672 // process outgoing (to tunnel) IPv6
1674 static void processipv6out(uint8_t * buf
, int len
)
1680 struct in6_addr ip6
;
1682 uint8_t *data
= buf
; // Keep a copy of the originals.
1685 uint8_t b
[MAXETHER
+ 20];
1687 CSTAT(processipv6out
);
1689 if (len
< MIN_IP_SIZE
)
1691 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1692 STAT(tunnel_tx_errors
);
1695 if (len
>= MAXETHER
)
1697 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1698 STAT(tunnel_tx_errors
);
1702 // Skip the tun header
1706 // Got an IP header now
1707 if (*(uint8_t *)(buf
) >> 4 != 6)
1709 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1713 ip6
= *(struct in6_addr
*)(buf
+24);
1714 s
= sessionbyipv6(ip6
);
1718 ip
= *(uint32_t *)(buf
+ 32);
1719 s
= sessionbyip(ip
);
1724 // Is this a packet for a session that doesn't exist?
1725 static int rate
= 0; // Number of ICMP packets we've sent this second.
1726 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1728 if (last
!= time_now
)
1734 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1736 // FIXME: Should send icmp6 host unreachable
1740 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1742 bundleidt bid
= session
[s
].bundle
;
1743 bundlet
*b
= &bundle
[bid
];
1745 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1746 s
= b
->members
[b
->current_ses
];
1747 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1749 t
= session
[s
].tunnel
;
1751 sp
->last_data
= time_now
;
1753 // FIXME: add DoS prevention/filters?
1757 // Are we throttling this session?
1758 if (config
->cluster_iam_master
)
1759 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1761 master_throttle_packet(sp
->tbf_out
, data
, size
);
1764 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1766 // We are walled-gardening this
1767 master_garden_packet(s
, data
, size
);
1771 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1773 // Add on L2TP header
1775 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1777 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1780 // Snooping this session, send it to intercept box
1781 if (sp
->snoop_ip
&& sp
->snoop_port
)
1782 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1784 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1785 sp
->cout_delta
+= len
;
1789 sess_local
[s
].cout
+= len
; // To send to master..
1790 sess_local
[s
].pout
++;
1794 // Helper routine for the TBF filters.
1795 // Used to send queued data in to the user!
1797 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1802 uint8_t b
[MAXETHER
+ 20];
1804 if (len
< 0 || len
> MAXETHER
)
1806 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1810 // Skip the tun header
1817 t
= session
[s
].tunnel
;
1820 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1822 // Add on L2TP header
1824 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1826 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1829 // Snooping this session.
1830 if (sp
->snoop_ip
&& sp
->snoop_port
)
1831 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1833 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1834 sp
->cout_delta
+= len
;
1838 sess_local
[s
].cout
+= len
; // To send to master..
1839 sess_local
[s
].pout
++;
1842 // add an AVP (16 bit)
1843 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1845 uint16_t l
= (m
? 0x8008 : 0x0008);
1846 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1847 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1848 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1849 *(uint16_t *) (c
->buf
+ c
->length
+ 6) = htons(val
);
1853 // add an AVP (32 bit)
1854 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1856 uint16_t l
= (m
? 0x800A : 0x000A);
1857 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1858 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1859 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1860 *(uint32_t *) (c
->buf
+ c
->length
+ 6) = htonl(val
);
1864 // add an AVP (string)
1865 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1867 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1868 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1869 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1870 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1871 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1872 c
->length
+= 6 + strlen(val
);
1876 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1878 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1879 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1880 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1881 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1882 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1883 c
->length
+= 6 + len
;
1886 // new control connection
1887 static controlt
*controlnew(uint16_t mtype
)
1891 c
= malloc(sizeof(controlt
));
1895 controlfree
= c
->next
;
1899 c
->buf
[0] = 0xC8; // flags
1900 c
->buf
[1] = 0x02; // ver
1902 control16(c
, 0, mtype
, 1);
1906 // send zero block if nothing is waiting
1908 static void controlnull(tunnelidt t
)
1911 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1914 buf
[0] = htons(0xC802); // flags/ver
1915 buf
[1] = htons(12); // length
1916 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1917 buf
[3] = htons(0); // session
1918 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1919 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1920 tunnelsend((uint8_t *)buf
, 12, t
);
1923 // add a control message to a tunnel, and send if within window
1924 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1926 *(uint16_t *) (c
->buf
+ 2) = htons(c
->length
); // length
1927 *(uint16_t *) (c
->buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1928 *(uint16_t *) (c
->buf
+ 6) = htons(far
); // session
1929 *(uint16_t *) (c
->buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1930 tunnel
[t
].ns
++; // advance sequence
1931 // link in message in to queue
1932 if (tunnel
[t
].controlc
)
1933 tunnel
[t
].controle
->next
= c
;
1935 tunnel
[t
].controls
= c
;
1937 tunnel
[t
].controle
= c
;
1938 tunnel
[t
].controlc
++;
1940 // send now if space in window
1941 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1943 tunnel
[t
].try = 0; // first send
1944 tunnelsend(c
->buf
, c
->length
, t
);
1949 // Throttle or Unthrottle a session
1951 // Throttle the data from/to through a session to no more than
1952 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1955 // If either value is -1, the current value is retained for that
1958 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1960 if (!session
[s
].opened
)
1961 return; // No-one home.
1963 if (!*session
[s
].user
)
1964 return; // User not logged in
1968 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1969 if (session
[s
].tbf_in
)
1970 free_tbf(session
[s
].tbf_in
);
1973 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1975 session
[s
].tbf_in
= 0;
1977 session
[s
].throttle_in
= rate_in
;
1982 int bytes
= rate_out
* 1024 / 8;
1983 if (session
[s
].tbf_out
)
1984 free_tbf(session
[s
].tbf_out
);
1987 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1989 session
[s
].tbf_out
= 0;
1991 session
[s
].throttle_out
= rate_out
;
1995 // add/remove filters from session (-1 = no change)
1996 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1998 if (!session
[s
].opened
)
1999 return; // No-one home.
2001 if (!*session
[s
].user
)
2002 return; // User not logged in
2005 if (filter_in
> MAXFILTER
) filter_in
= -1;
2006 if (filter_out
> MAXFILTER
) filter_out
= -1;
2007 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
2008 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
2012 if (session
[s
].filter_in
)
2013 ip_filters
[session
[s
].filter_in
- 1].used
--;
2016 ip_filters
[filter_in
- 1].used
++;
2018 session
[s
].filter_in
= filter_in
;
2021 if (filter_out
>= 0)
2023 if (session
[s
].filter_out
)
2024 ip_filters
[session
[s
].filter_out
- 1].used
--;
2027 ip_filters
[filter_out
- 1].used
++;
2029 session
[s
].filter_out
= filter_out
;
2033 // start tidy shutdown of session
2034 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
2036 int walled_garden
= session
[s
].walled_garden
;
2037 bundleidt b
= session
[s
].bundle
;
2038 //delete routes only for last session in bundle (in case of MPPP)
2039 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
2041 CSTAT(sessionshutdown
);
2043 if (!session
[s
].opened
)
2045 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
2046 return; // not a live session
2049 if (!session
[s
].die
)
2051 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
2052 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
2053 run_plugins(PLUGIN_KILL_SESSION
, &data
);
2056 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
2058 // RADIUS Stop message
2059 uint16_t r
= radiusnew(s
);
2062 // stop, if not already trying
2063 if (radius
[r
].state
!= RADIUSSTOP
)
2065 radius
[r
].term_cause
= term_cause
;
2066 radius
[r
].term_msg
= reason
;
2067 radiussend(r
, RADIUSSTOP
);
2071 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
2073 // Save counters to dump to accounting file
2074 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
2075 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
2078 if (!session
[s
].die
)
2079 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
2082 { // IP allocated, clear and unroute
2085 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
2087 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2088 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2091 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2092 session
[s
].route
[r
].ip
= 0;
2095 if (session
[s
].ip_pool_index
== -1) // static ip
2097 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2103 // unroute IPv6, if setup
2104 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
2105 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
2109 // This session was part of a bundle
2110 bundle
[b
].num_of_links
--;
2111 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2112 if(bundle
[b
].num_of_links
== 0)
2115 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2119 // Adjust the members array to accomodate the new change
2120 uint8_t mem_num
= 0;
2121 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2122 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2125 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2126 if(bundle
[b
].members
[ml
] == s
)
2131 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2132 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2134 // If the killed session is the first of the bundle,
2135 // the new first session must be stored in the cache_ipmap
2136 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2139 sessionidt new_s
= bundle
[b
].members
[0];
2142 // Add the route for this session.
2143 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2148 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2149 ip
= session
[new_s
].route
[r
].ip
;
2151 if (!prefixlen
) prefixlen
= 32;
2152 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2154 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2155 cache_ipmap(i
, new_s
);
2157 cache_ipmap(session
[new_s
].ip
, new_s
);
2160 if (session
[new_s
].ipv6prefixlen
)
2161 cache_ipv6map(session
[new_s
].ipv6route
, session
[new_s
].ipv6prefixlen
, new_s
);
2166 cluster_send_bundle(b
);
2170 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2171 throttle_session(s
, 0, 0);
2175 if (session
[s
].tunnel
== TUNNEL_ID_PPPOE
)
2177 pppoe_shutdown_session(s
);
2182 controlt
*c
= controlnew(14); // sending CDN
2186 buf
[0] = htons(cdn_result
);
2187 buf
[1] = htons(cdn_error
);
2188 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2191 control16(c
, 1, cdn_result
, 1);
2193 control16(c
, 14, s
, 1); // assigned session (our end)
2194 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2198 // update filter refcounts
2199 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2200 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2203 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2204 sess_local
[s
].lcp
.restart
= 0;
2205 sess_local
[s
].ipcp
.restart
= 0;
2206 sess_local
[s
].ipv6cp
.restart
= 0;
2207 sess_local
[s
].ccp
.restart
= 0;
2209 cluster_send_session(s
);
2212 void sendipcp(sessionidt s
, tunnelidt t
)
2214 uint8_t buf
[MAXETHER
];
2218 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2220 if (!session
[s
].unique_id
)
2222 if (!++last_id
) ++last_id
; // skip zero
2223 session
[s
].unique_id
= last_id
;
2226 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2230 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2231 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2232 q
[4] = 3; // ip address option
2233 q
[5] = 6; // option length
2234 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2235 config
->iftun_n_address
[tunnel
[t
].indexudp
] ? config
->iftun_n_address
[tunnel
[t
].indexudp
] :
2236 my_address
; // send my IP
2238 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2239 restart_timer(s
, ipcp
);
2242 void sendipv6cp(sessionidt s
, tunnelidt t
)
2244 uint8_t buf
[MAXETHER
];
2248 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2250 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2254 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2255 // only send one type
2257 *(uint16_t *) (q
+ 2) = htons(14);
2258 q
[4] = 1; // interface identifier option
2259 q
[5] = 10; // option length
2260 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2261 *(uint32_t *) (q
+ 10) = 0;
2264 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2265 restart_timer(s
, ipv6cp
);
2268 static void sessionclear(sessionidt s
)
2270 memset(&session
[s
], 0, sizeof(session
[s
]));
2271 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2272 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2274 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2275 session
[s
].next
= sessionfree
;
2279 // kill a session now
2280 void sessionkill(sessionidt s
, char *reason
)
2284 if (!session
[s
].opened
) // not alive
2287 if (session
[s
].next
)
2289 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2293 if (!session
[s
].die
)
2294 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2296 if (sess_local
[s
].radius
)
2297 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2299 if (session
[s
].forwardtosession
)
2301 sessionidt sess
= session
[s
].forwardtosession
;
2302 if (session
[sess
].forwardtosession
== s
)
2304 // Shutdown the linked session also.
2305 sessionshutdown(sess
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
2309 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2311 cluster_send_session(s
);
2314 static void tunnelclear(tunnelidt t
)
2317 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2318 tunnel
[t
].state
= TUNNELFREE
;
2321 static void bundleclear(bundleidt b
)
2324 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2325 bundle
[b
].state
= BUNDLEFREE
;
2328 // kill a tunnel now
2329 static void tunnelkill(tunnelidt t
, char *reason
)
2336 tunnel
[t
].state
= TUNNELDIE
;
2338 // free control messages
2339 while ((c
= tunnel
[t
].controls
))
2341 controlt
* n
= c
->next
;
2342 tunnel
[t
].controls
= n
;
2343 tunnel
[t
].controlc
--;
2344 c
->next
= controlfree
;
2348 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2349 if (session
[s
].tunnel
== t
)
2350 sessionkill(s
, reason
);
2354 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2355 cli_tunnel_actions
[t
].action
= 0;
2356 cluster_send_tunnel(t
);
2359 // shut down a tunnel cleanly
2360 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2364 CSTAT(tunnelshutdown
);
2366 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2368 // never set up, can immediately kill
2369 tunnelkill(t
, reason
);
2372 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2375 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2376 if (session
[s
].tunnel
== t
)
2377 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2379 tunnel
[t
].state
= TUNNELDIE
;
2380 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2381 cluster_send_tunnel(t
);
2382 // TBA - should we wait for sessions to stop?
2385 controlt
*c
= controlnew(4); // sending StopCCN
2390 buf
[0] = htons(result
);
2391 buf
[1] = htons(error
);
2394 int m
= strlen(msg
);
2395 if (m
+ 4 > sizeof(buf
))
2396 m
= sizeof(buf
) - 4;
2398 memcpy(buf
+2, msg
, m
);
2402 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2405 control16(c
, 1, result
, 1);
2407 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2408 controladd(c
, 0, t
); // send the message
2412 // read and process packet on tunnel (UDP)
2413 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, uint16_t indexudpfd
)
2415 uint8_t *sendchalresponse
= NULL
;
2416 uint8_t *recvchalresponse
= NULL
;
2417 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2418 uint8_t *p
= buf
+ 2;
2425 LOG_HEX(5, "UDP Data", buf
, len
);
2426 STAT(tunnel_rx_packets
);
2427 INC_STAT(tunnel_rx_bytes
, len
);
2430 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2431 STAT(tunnel_rx_errors
);
2434 if ((buf
[1] & 0x0F) != 2)
2436 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2437 STAT(tunnel_rx_errors
);
2442 l
= ntohs(*(uint16_t *) p
);
2445 t
= ntohs(*(uint16_t *) p
);
2447 s
= ntohs(*(uint16_t *) p
);
2449 if (s
>= MAXSESSION
)
2451 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2452 STAT(tunnel_rx_errors
);
2457 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2458 STAT(tunnel_rx_errors
);
2461 if (t
== TUNNEL_ID_PPPOE
)
2463 LOG(1, s
, t
, "Received UDP packet with tunnel ID reserved for pppoe\n");
2464 STAT(tunnel_rx_errors
);
2469 ns
= ntohs(*(uint16_t *) p
);
2471 nr
= ntohs(*(uint16_t *) p
);
2476 uint16_t o
= ntohs(*(uint16_t *) p
);
2481 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2482 STAT(tunnel_rx_errors
);
2487 // used to time out old tunnels
2488 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2489 tunnel
[t
].lastrec
= time_now
;
2493 uint16_t message
= 0xFFFF; // message type
2495 uint8_t mandatory
= 0;
2496 uint16_t asession
= 0; // assigned session
2497 uint32_t amagic
= 0; // magic number
2498 uint8_t aflags
= 0; // flags from last LCF
2499 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2500 char called
[MAXTEL
] = ""; // called number
2501 char calling
[MAXTEL
] = ""; // calling number
2503 if (!config
->cluster_iam_master
)
2505 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
2509 // control messages must have bits 0x80|0x40|0x08
2510 // (type, length and sequence) set, and bits 0x02|0x01
2511 // (offset and priority) clear
2512 if ((*buf
& 0xCB) != 0xC8)
2514 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2515 STAT(tunnel_rx_errors
);
2519 // check for duplicate tunnel open message
2525 // Is this a duplicate of the first packet? (SCCRQ)
2527 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2529 if (tunnel
[i
].state
!= TUNNELOPENING
||
2530 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2531 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2534 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2539 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2540 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2542 // if no tunnel specified, assign one
2545 if (!(t
= new_tunnel()))
2547 LOG(1, 0, 0, "No more tunnels\n");
2548 STAT(tunnel_overflow
);
2552 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2553 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2554 tunnel
[t
].window
= 4; // default window
2555 tunnel
[t
].indexudp
= indexudpfd
;
2556 STAT(tunnel_created
);
2557 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2558 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2561 // If the 'ns' just received is not the 'nr' we're
2562 // expecting, just send an ack and drop it.
2564 // if 'ns' is less, then we got a retransmitted packet.
2565 // if 'ns' is greater than missed a packet. Either way
2566 // we should ignore it.
2567 if (ns
!= tunnel
[t
].nr
)
2569 // is this the sequence we were expecting?
2570 STAT(tunnel_rx_errors
);
2571 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2572 t
, ns
, tunnel
[t
].nr
);
2574 if (l
) // Is this not a ZLB?
2579 // check sequence of this message
2581 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2582 // some to clear maybe?
2583 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2585 controlt
*c
= tunnel
[t
].controls
;
2586 tunnel
[t
].controls
= c
->next
;
2587 tunnel
[t
].controlc
--;
2588 c
->next
= controlfree
;
2591 tunnel
[t
].try = 0; // we have progress
2594 // receiver advance (do here so quoted correctly in any sends below)
2595 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2596 if (skip
< 0) skip
= 0;
2597 if (skip
< tunnel
[t
].controlc
)
2599 // some control packets can now be sent that were previous stuck out of window
2600 int tosend
= tunnel
[t
].window
- skip
;
2601 controlt
*c
= tunnel
[t
].controls
;
2609 tunnel
[t
].try = 0; // first send
2610 tunnelsend(c
->buf
, c
->length
, t
);
2615 if (!tunnel
[t
].controlc
)
2616 tunnel
[t
].retry
= 0; // caught up
2619 { // if not a null message
2624 // Default disconnect cause/message on receipt of CDN. Set to
2625 // more specific value from attribute 1 (result code) or 46
2626 // (disconnect cause) if present below.
2627 int disc_cause_set
= 0;
2628 int disc_cause
= TERM_NAS_REQUEST
;
2629 char const *disc_reason
= "Closed (Received CDN).";
2632 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2634 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2641 LOG(1, s
, t
, "Invalid length in AVP\n");
2642 STAT(tunnel_rx_errors
);
2647 if (flags
& 0x3C) // reserved bits, should be clear
2649 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2651 result
= 2; // general error
2652 error
= 3; // reserved field non-zero
2657 if (*(uint16_t *) (b
))
2659 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2661 result
= 2; // general error
2662 error
= 6; // generic vendor-specific error
2663 msg
= "unsupported vendor-specific";
2667 mtype
= ntohs(*(uint16_t *) (b
));
2675 // handle hidden AVPs
2676 if (!*config
->l2tp_secret
)
2678 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2680 result
= 2; // general error
2681 error
= 6; // generic vendor-specific error
2682 msg
= "secret not specified";
2685 if (!session
[s
].random_vector_length
)
2687 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2689 result
= 2; // general error
2690 error
= 6; // generic
2691 msg
= "no random vector";
2696 LOG(2, s
, t
, "Short hidden AVP.\n");
2698 result
= 2; // general error
2699 error
= 2; // length is wrong
2705 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2707 orig_len
= ntohs(*(uint16_t *) b
);
2708 if (orig_len
> n
+ 2)
2710 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2714 result
= 2; // general error
2715 error
= 2; // length is wrong
2724 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2725 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2729 case 0: // message type
2730 message
= ntohs(*(uint16_t *) b
);
2731 mandatory
= flags
& 0x80;
2732 LOG(4, s
, t
, " Message type = %u (%s)\n", message
, l2tp_code(message
));
2734 case 1: // result code
2736 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2737 char const *resdesc
= "(unknown)";
2738 char const *errdesc
= NULL
;
2743 resdesc
= l2tp_stopccn_result_code(rescode
);
2744 cause
= TERM_LOST_SERVICE
;
2746 else if (message
== 14)
2748 resdesc
= l2tp_cdn_result_code(rescode
);
2750 cause
= TERM_LOST_CARRIER
;
2752 cause
= TERM_ADMIN_RESET
;
2755 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2758 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2759 errdesc
= l2tp_error_code(errcode
);
2760 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2763 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2765 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2767 disc_cause_set
= mtype
;
2768 disc_reason
= errdesc
? errdesc
: resdesc
;
2775 case 2: // protocol version
2777 version
= ntohs(*(uint16_t *) (b
));
2778 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2779 if (version
&& version
!= 0x0100)
2780 { // allow 0.0 and 1.0
2781 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2783 result
= 5; // unspported protocol version
2784 error
= 0x0100; // supported version
2790 case 3: // framing capabilities
2792 case 4: // bearer capabilities
2794 case 5: // tie breaker
2795 // We never open tunnels, so we don't care about tie breakers
2797 case 6: // firmware revision
2799 case 7: // host name
2800 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2801 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2802 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2803 // TBA - to send to RADIUS
2805 case 8: // vendor name
2806 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2807 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2808 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2810 case 9: // assigned tunnel
2811 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2812 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2814 case 10: // rx window
2815 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2816 if (!tunnel
[t
].window
)
2817 tunnel
[t
].window
= 1; // window of 0 is silly
2818 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2820 case 11: // Request Challenge
2822 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2824 build_chap_response(b
, 2, n
, &sendchalresponse
);
2825 else if (message
== 2)
2826 build_chap_response(b
, 3, n
, &sendchalresponse
);
2829 case 13: // receive challenge Response
2830 if (tunnel
[t
].isremotelns
)
2832 recvchalresponse
= calloc(17, 1);
2833 memcpy(recvchalresponse
, b
, (n
< 17) ? n
: 16);
2834 LOG(3, s
, t
, "received challenge response from REMOTE LNS\n");
2837 // Why did they send a response? We never challenge.
2838 LOG(2, s
, t
, " received unexpected challenge response\n");
2841 case 14: // assigned session
2842 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2843 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2845 case 15: // call serial number
2846 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2848 case 18: // bearer type
2849 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2852 case 19: // framing type
2853 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2856 case 21: // called number
2857 memset(called
, 0, sizeof(called
));
2858 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2859 LOG(4, s
, t
, " Called <%s>\n", called
);
2861 case 22: // calling number
2862 memset(calling
, 0, sizeof(calling
));
2863 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2864 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2868 case 24: // tx connect speed
2871 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2875 // AS5300s send connect speed as a string
2877 memset(tmp
, 0, sizeof(tmp
));
2878 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2879 session
[s
].tx_connect_speed
= atol(tmp
);
2881 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2883 case 38: // rx connect speed
2886 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2890 // AS5300s send connect speed as a string
2892 memset(tmp
, 0, sizeof(tmp
));
2893 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2894 session
[s
].rx_connect_speed
= atol(tmp
);
2896 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2898 case 25: // Physical Channel ID
2900 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2901 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2904 case 29: // Proxy Authentication Type
2906 uint16_t atype
= ntohs(*(uint16_t *)b
);
2907 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2910 case 30: // Proxy Authentication Name
2913 memset(authname
, 0, sizeof(authname
));
2914 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2915 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2919 case 31: // Proxy Authentication Challenge
2921 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2924 case 32: // Proxy Authentication ID
2926 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2927 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2930 case 33: // Proxy Authentication Response
2931 LOG(4, s
, t
, " Proxy Auth Response\n");
2933 case 27: // last sent lcp
2934 { // find magic number
2935 uint8_t *p
= b
, *e
= p
+ n
;
2936 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2938 if (*p
== 5 && p
[1] == 6) // Magic-Number
2939 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2940 else if (*p
== 7) // Protocol-Field-Compression
2941 aflags
|= SESSION_PFC
;
2942 else if (*p
== 8) // Address-and-Control-Field-Compression
2943 aflags
|= SESSION_ACFC
;
2948 case 28: // last recv lcp confreq
2950 case 26: // Initial Received LCP CONFREQ
2952 case 39: // seq required - we control it as an LNS anyway...
2954 case 36: // Random Vector
2955 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2956 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2957 if (n
> sizeof(session
[s
].random_vector
))
2958 n
= sizeof(session
[s
].random_vector
);
2959 memcpy(session
[s
].random_vector
, b
, n
);
2960 session
[s
].random_vector_length
= n
;
2962 case 46: // ppp disconnect cause
2965 uint16_t code
= ntohs(*(uint16_t *) b
);
2966 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2967 uint8_t dir
= *(b
+ 4);
2969 LOG(4, s
, t
, " PPP disconnect cause "
2970 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2971 code
, proto
, dir
, n
- 5, b
+ 5);
2973 disc_cause_set
= mtype
;
2977 case 1: // admin disconnect
2978 disc_cause
= TERM_ADMIN_RESET
;
2979 disc_reason
= "Administrative disconnect";
2981 case 3: // lcp terminate
2982 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2983 disc_cause
= TERM_USER_REQUEST
;
2984 disc_reason
= "Normal disconnection";
2986 case 4: // compulsory encryption unavailable
2987 if (dir
!= 1) break; // 1=refused by peer, 2=local
2988 disc_cause
= TERM_USER_ERROR
;
2989 disc_reason
= "Compulsory encryption refused";
2991 case 5: // lcp: fsm timeout
2992 disc_cause
= TERM_PORT_ERROR
;
2993 disc_reason
= "LCP: FSM timeout";
2995 case 6: // lcp: no recognisable lcp packets received
2996 disc_cause
= TERM_PORT_ERROR
;
2997 disc_reason
= "LCP: no recognisable LCP packets";
2999 case 7: // lcp: magic-no error (possibly looped back)
3000 disc_cause
= TERM_PORT_ERROR
;
3001 disc_reason
= "LCP: magic-no error (possible loop)";
3003 case 8: // lcp: echo request timeout
3004 disc_cause
= TERM_PORT_ERROR
;
3005 disc_reason
= "LCP: echo request timeout";
3007 case 13: // auth: fsm timeout
3008 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3009 disc_reason
= "Authentication: FSM timeout";
3011 case 15: // auth: unacceptable auth protocol
3012 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3013 disc_reason
= "Unacceptable authentication protocol";
3015 case 16: // auth: authentication failed
3016 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3017 disc_reason
= "Authentication failed";
3019 case 17: // ncp: fsm timeout
3020 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3021 disc_reason
= "NCP: FSM timeout";
3023 case 18: // ncp: no ncps available
3024 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3025 disc_reason
= "NCP: no NCPs available";
3027 case 19: // ncp: failure to converge on acceptable address
3028 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3029 disc_reason
= (dir
== 1)
3030 ? "NCP: too many Configure-Naks received from peer"
3031 : "NCP: too many Configure-Naks sent to peer";
3033 case 20: // ncp: user not permitted to use any address
3034 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3035 disc_reason
= (dir
== 1)
3036 ? "NCP: local link address not acceptable to peer"
3037 : "NCP: remote link address not acceptable";
3044 static char e
[] = "unknown AVP 0xXXXX";
3045 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
3047 result
= 2; // general error
3048 error
= 8; // unknown mandatory AVP
3049 sprintf((msg
= e
) + 14, "%04x", mtype
);
3056 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
3060 case 1: // SCCRQ - Start Control Connection Request
3061 tunnel
[t
].state
= TUNNELOPENING
;
3062 LOG(3, s
, t
, "Received SCCRQ\n");
3063 if (main_quit
!= QUIT_SHUTDOWN
)
3065 LOG(3, s
, t
, "sending SCCRP\n");
3066 controlt
*c
= controlnew(2); // sending SCCRP
3067 control16(c
, 2, version
, 1); // protocol version
3068 control32(c
, 3, 3, 1); // framing
3069 controls(c
, 7, hostname
, 1); // host name
3070 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Send Challenge response
3071 control16(c
, 9, t
, 1); // assigned tunnel
3072 controladd(c
, 0, t
); // send the resply
3076 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3080 tunnel
[t
].state
= TUNNELOPEN
;
3081 tunnel
[t
].lastrec
= time_now
;
3082 LOG(3, s
, t
, "Received SCCRP\n");
3083 if (main_quit
!= QUIT_SHUTDOWN
)
3085 if (tunnel
[t
].isremotelns
&& recvchalresponse
)
3089 lac_calc_rlns_auth(t
, 2, hash
); // id = 2 (SCCRP)
3090 // check authenticator
3091 if (memcmp(hash
, recvchalresponse
, 16) == 0)
3093 LOG(3, s
, t
, "sending SCCCN to REMOTE LNS\n");
3094 controlt
*c
= controlnew(3); // sending SCCCN
3095 controls(c
, 7, hostname
, 1); // host name
3096 controls(c
, 8, Vendor_name
, 1); // Vendor name
3097 control16(c
, 2, version
, 1); // protocol version
3098 control32(c
, 3, 3, 1); // framing Capabilities
3099 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Challenge response
3100 control16(c
, 9, t
, 1); // assigned tunnel
3101 controladd(c
, 0, t
); // send
3105 tunnelshutdown(t
, "Bad chap response from REMOTE LNS", 4, 0, 0);
3111 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3115 LOG(3, s
, t
, "Received SCCN\n");
3116 tunnel
[t
].state
= TUNNELOPEN
;
3117 tunnel
[t
].lastrec
= time_now
;
3118 controlnull(t
); // ack
3121 LOG(3, s
, t
, "Received StopCCN\n");
3122 controlnull(t
); // ack
3123 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
3126 LOG(3, s
, t
, "Received HELLO\n");
3127 controlnull(t
); // simply ACK
3131 LOG(3, s
, t
, "Received OCRQ\n");
3135 LOG(3, s
, t
, "Received OCRO\n");
3139 LOG(3, s
, t
, "Received OCCN\n");
3142 LOG(3, s
, t
, "Received ICRQ\n");
3143 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
3145 controlt
*c
= controlnew(11); // ICRP
3147 LOG(3, s
, t
, "Sending ICRP\n");
3150 sessionfree
= session
[s
].next
;
3151 memset(&session
[s
], 0, sizeof(session
[s
]));
3153 if (s
> config
->cluster_highest_sessionid
)
3154 config
->cluster_highest_sessionid
= s
;
3156 session
[s
].opened
= time_now
;
3157 session
[s
].tunnel
= t
;
3158 session
[s
].far
= asession
;
3159 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3160 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
3161 control16(c
, 14, s
, 1); // assigned session
3162 controladd(c
, asession
, t
); // send the reply
3164 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
3165 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3167 session
[s
].ppp
.phase
= Establish
;
3168 session
[s
].ppp
.lcp
= Starting
;
3170 STAT(session_created
);
3175 controlt
*c
= controlnew(14); // CDN
3176 LOG(3, s
, t
, "Sending CDN\n");
3179 STAT(session_overflow
);
3180 LOG(1, 0, t
, "No free sessions\n");
3181 control16(c
, 1, 4, 0); // temporary lack of resources
3184 control16(c
, 1, 2, 7); // shutting down, try another
3186 controladd(c
, asession
, t
); // send the message
3190 LOG(3, s
, t
, "Received ICRP\n");
3191 if (session
[s
].forwardtosession
)
3193 controlt
*c
= controlnew(12); // ICCN
3195 session
[s
].opened
= time_now
;
3196 session
[s
].tunnel
= t
;
3197 session
[s
].far
= asession
;
3198 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3200 control32(c
, 19, 1, 1); // Framing Type
3201 control32(c
, 24, 10000000, 1); // Tx Connect Speed
3202 controladd(c
, asession
, t
); // send the message
3203 LOG(3, s
, t
, "Sending ICCN\n");
3207 LOG(3, s
, t
, "Received ICCN\n");
3208 if (amagic
== 0) amagic
= time_now
;
3209 session
[s
].magic
= amagic
; // set magic number
3210 session
[s
].flags
= aflags
; // set flags received
3211 session
[s
].mru
= PPPoE_MRU
; // default
3212 controlnull(t
); // ack
3215 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3216 sess_local
[s
].ppp_mru
= MRU
;
3218 // Set multilink options before sending initial LCP packet
3219 sess_local
[s
].mp_mrru
= 1614;
3220 sess_local
[s
].mp_epdis
= ntohl(config
->iftun_n_address
[tunnel
[t
].indexudp
] ? config
->iftun_n_address
[tunnel
[t
].indexudp
] : my_address
);
3223 change_state(s
, lcp
, RequestSent
);
3227 LOG(3, s
, t
, "Received CDN\n");
3228 controlnull(t
); // ack
3229 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3232 LOG(1, s
, t
, "Missing message type\n");
3235 STAT(tunnel_rx_errors
);
3237 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3239 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3242 if (sendchalresponse
) free(sendchalresponse
);
3243 if (recvchalresponse
) free(recvchalresponse
);
3244 cluster_send_tunnel(t
);
3248 LOG(4, s
, t
, " Got a ZLB ack\n");
3255 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3256 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3257 { // HDLC address header, discard
3263 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3264 STAT(tunnel_rx_errors
);
3274 proto
= ntohs(*(uint16_t *) p
);
3279 if (session
[s
].forwardtosession
)
3281 LOG(5, s
, t
, "Forwarding data session to session %u\n", session
[s
].forwardtosession
);
3282 // Forward to LAC/BAS or Remote LNS session
3283 lac_session_forward(buf
, len
, s
, proto
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3286 else if (config
->auth_tunnel_change_addr_src
)
3288 if (tunnel
[t
].ip
!= ntohl(addr
->sin_addr
.s_addr
) &&
3289 tunnel
[t
].port
== ntohs(addr
->sin_port
))
3291 // The remotes BAS are a clustered l2tpns server and the source IP has changed
3292 LOG(5, s
, t
, "The tunnel IP source (%s) has changed by new IP (%s)\n",
3293 fmtaddr(htonl(tunnel
[t
].ip
), 0), fmtaddr(addr
->sin_addr
.s_addr
, 0));
3295 tunnel
[t
].ip
= ntohl(addr
->sin_addr
.s_addr
);
3299 if (s
&& !session
[s
].opened
) // Is something wrong??
3301 if (!config
->cluster_iam_master
)
3303 // Pass it off to the master to deal with..
3304 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3308 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3309 STAT(tunnel_rx_errors
);
3313 if (proto
== PPPPAP
)
3315 session
[s
].last_packet
= time_now
;
3316 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3317 processpap(s
, t
, p
, l
);
3319 else if (proto
== PPPCHAP
)
3321 session
[s
].last_packet
= time_now
;
3322 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3323 processchap(s
, t
, p
, l
);
3325 else if (proto
== PPPLCP
)
3327 session
[s
].last_packet
= time_now
;
3328 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3329 processlcp(s
, t
, p
, l
);
3331 else if (proto
== PPPIPCP
)
3333 session
[s
].last_packet
= time_now
;
3334 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3335 processipcp(s
, t
, p
, l
);
3337 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3339 session
[s
].last_packet
= time_now
;
3340 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3341 processipv6cp(s
, t
, p
, l
);
3343 else if (proto
== PPPCCP
)
3345 session
[s
].last_packet
= time_now
;
3346 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3347 processccp(s
, t
, p
, l
);
3349 else if (proto
== PPPIP
)
3353 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3354 return; // closing session, PPP not processed
3357 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3358 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3360 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3364 processipin(s
, t
, p
, l
);
3366 else if (proto
== PPPMP
)
3370 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3371 return; // closing session, PPP not processed
3374 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3375 if (!config
->cluster_iam_master
)
3377 // The fragments reconstruction is managed by the Master.
3378 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3382 processmpin(s
, t
, p
, l
);
3384 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3388 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3389 return; // closing session, PPP not processed
3392 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3393 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3395 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3399 processipv6in(s
, t
, p
, l
);
3401 else if (session
[s
].ppp
.lcp
== Opened
)
3403 session
[s
].last_packet
= time_now
;
3404 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3405 protoreject(s
, t
, p
, l
, proto
);
3409 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3410 proto
, ppp_state(session
[s
].ppp
.lcp
));
3415 // read and process packet on tun
3416 // (i.e. this routine writes to buf[-8]).
3417 static void processtun(uint8_t * buf
, int len
)
3419 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3420 STAT(tun_rx_packets
);
3421 INC_STAT(tun_rx_bytes
, len
);
3429 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3430 STAT(tun_rx_errors
);
3434 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3435 processipout(buf
, len
);
3436 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3437 && config
->ipv6_prefix
.s6_addr
[0])
3438 processipv6out(buf
, len
);
3443 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3444 // that we look at the whole of the tunnel, radius and session tables
3446 static void regular_cleanups(double period
)
3448 // Next tunnel, radius and session to check for actions on.
3449 static tunnelidt t
= 0;
3451 static sessionidt s
= 0;
3464 // divide up tables into slices based on the last run
3465 t_slice
= config
->cluster_highest_tunnelid
* period
;
3466 r_slice
= (MAXRADIUS
- 1) * period
;
3467 s_slice
= config
->cluster_highest_sessionid
* period
;
3471 else if (t_slice
> config
->cluster_highest_tunnelid
)
3472 t_slice
= config
->cluster_highest_tunnelid
;
3476 else if (r_slice
> (MAXRADIUS
- 1))
3477 r_slice
= MAXRADIUS
- 1;
3481 else if (s_slice
> config
->cluster_highest_sessionid
)
3482 s_slice
= config
->cluster_highest_sessionid
;
3484 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3486 for (i
= 0; i
< t_slice
; i
++)
3489 if (t
> config
->cluster_highest_tunnelid
)
3492 if (t
== TUNNEL_ID_PPPOE
)
3495 // check for expired tunnels
3496 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3498 STAT(tunnel_timeout
);
3499 tunnelkill(t
, "Expired");
3503 // check for message resend
3504 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3506 // resend pending messages as timeout on reply
3507 if (tunnel
[t
].retry
<= TIME
)
3509 controlt
*c
= tunnel
[t
].controls
;
3510 uint16_t w
= tunnel
[t
].window
;
3511 tunnel
[t
].try++; // another try
3512 if (tunnel
[t
].try > 5)
3513 tunnelkill(t
, "Timeout on control message"); // game over
3517 tunnelsend(c
->buf
, c
->length
, t
);
3525 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3527 if (!config
->disable_sending_hello
)
3529 controlt
*c
= controlnew(6); // sending HELLO
3530 controladd(c
, 0, t
); // send the message
3531 LOG(3, 0, t
, "Sending HELLO message\n");
3536 // Check for tunnel changes requested from the CLI
3537 if ((a
= cli_tunnel_actions
[t
].action
))
3539 cli_tunnel_actions
[t
].action
= 0;
3540 if (a
& CLI_TUN_KILL
)
3542 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3543 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3549 for (i
= 0; i
< r_slice
; i
++)
3555 if (!radius
[r
].state
)
3558 if (radius
[r
].retry
<= TIME
)
3565 for (i
= 0; i
< s_slice
; i
++)
3568 if (s
> config
->cluster_highest_sessionid
)
3571 if (!session
[s
].opened
) // Session isn't in use
3574 // check for expired sessions
3577 if (session
[s
].die
<= TIME
)
3579 sessionkill(s
, "Expired");
3586 if (sess_local
[s
].lcp
.restart
<= time_now
)
3588 int next_state
= session
[s
].ppp
.lcp
;
3589 switch (session
[s
].ppp
.lcp
)
3593 next_state
= RequestSent
;
3596 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3598 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3599 sendlcp(s
, session
[s
].tunnel
);
3600 change_state(s
, lcp
, next_state
);
3604 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3605 STAT(session_timeout
);
3615 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3617 int next_state
= session
[s
].ppp
.ipcp
;
3618 switch (session
[s
].ppp
.ipcp
)
3622 next_state
= RequestSent
;
3625 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3627 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3628 sendipcp(s
, session
[s
].tunnel
);
3629 change_state(s
, ipcp
, next_state
);
3633 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3634 STAT(session_timeout
);
3644 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3646 int next_state
= session
[s
].ppp
.ipv6cp
;
3647 switch (session
[s
].ppp
.ipv6cp
)
3651 next_state
= RequestSent
;
3654 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3656 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3657 sendipv6cp(s
, session
[s
].tunnel
);
3658 change_state(s
, ipv6cp
, next_state
);
3662 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3663 change_state(s
, ipv6cp
, Stopped
);
3670 if (sess_local
[s
].ccp
.restart
<= time_now
)
3672 int next_state
= session
[s
].ppp
.ccp
;
3673 switch (session
[s
].ppp
.ccp
)
3677 next_state
= RequestSent
;
3680 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3682 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3683 sendccp(s
, session
[s
].tunnel
);
3684 change_state(s
, ccp
, next_state
);
3688 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3689 change_state(s
, ccp
, Stopped
);
3696 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3697 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3699 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3700 STAT(session_timeout
);
3705 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3706 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= config
->echo_timeout
) &&
3707 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3709 uint8_t b
[MAXETHER
];
3711 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3715 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3716 *(uint16_t *)(q
+ 2) = htons(8); // Length
3717 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3719 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3720 (int)(time_now
- session
[s
].last_packet
));
3722 tunnelsend(b
, (q
- b
) + 8, session
[s
].tunnel
); // send it
3723 sess_local
[s
].last_echo
= time_now
;
3727 // Drop sessions who have reached session_timeout seconds
3728 if (session
[s
].session_timeout
)
3730 bundleidt bid
= session
[s
].bundle
;
3733 if (time_now
- bundle
[bid
].last_check
>= 1)
3735 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3736 bundle
[bid
].last_check
= time_now
;
3737 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3740 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3742 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3749 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3751 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3757 // Drop sessions who have reached idle_timeout seconds
3758 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3760 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3761 STAT(session_timeout
);
3766 // Check for actions requested from the CLI
3767 if ((a
= cli_session_actions
[s
].action
))
3771 cli_session_actions
[s
].action
= 0;
3772 if (a
& CLI_SESS_KILL
)
3774 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3775 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3776 a
= 0; // dead, no need to check for other actions
3780 if (a
& CLI_SESS_NOSNOOP
)
3782 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3783 session
[s
].snoop_ip
= 0;
3784 session
[s
].snoop_port
= 0;
3788 else if (a
& CLI_SESS_SNOOP
)
3790 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3791 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3792 cli_session_actions
[s
].snoop_port
);
3794 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3795 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3800 if (a
& CLI_SESS_NOTHROTTLE
)
3802 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3803 throttle_session(s
, 0, 0);
3807 else if (a
& CLI_SESS_THROTTLE
)
3809 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3810 cli_session_actions
[s
].throttle_in
,
3811 cli_session_actions
[s
].throttle_out
);
3813 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3818 if (a
& CLI_SESS_NOFILTER
)
3820 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3821 filter_session(s
, 0, 0);
3825 else if (a
& CLI_SESS_FILTER
)
3827 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3828 cli_session_actions
[s
].filter_in
,
3829 cli_session_actions
[s
].filter_out
);
3831 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3837 cluster_send_session(s
);
3840 // RADIUS interim accounting
3841 if (config
->radius_accounting
&& config
->radius_interim
> 0
3842 && session
[s
].ip
&& !session
[s
].walled_garden
3843 && !sess_local
[s
].radius
// RADIUS already in progress
3844 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3845 && session
[s
].flags
& SESSION_STARTED
)
3847 int rad
= radiusnew(s
);
3850 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3851 STAT(radius_overflow
);
3855 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3856 session
[s
].user
, session
[s
].unique_id
);
3858 radiussend(rad
, RADIUSINTERIM
);
3859 sess_local
[s
].last_interim
= time_now
;
3864 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3865 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3869 // Are we in the middle of a tunnel update, or radius
3872 static int still_busy(void)
3875 static clockt last_talked
= 0;
3876 static clockt start_busy_wait
= 0;
3879 static time_t stopped_bgp
= 0;
3884 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3886 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3887 if (bgp_peers
[i
].state
== Established
)
3888 bgp_stop(&bgp_peers
[i
]);
3890 stopped_bgp
= time_now
;
3892 if (!config
->cluster_iam_master
)
3894 // we don't want to become master
3895 cluster_send_ping(0);
3901 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3906 if (!config
->cluster_iam_master
)
3909 if (main_quit
== QUIT_SHUTDOWN
)
3911 static int dropped
= 0;
3916 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3917 for (i
= 1; i
< MAXTUNNEL
; i
++)
3918 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3919 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3925 if (start_busy_wait
== 0)
3926 start_busy_wait
= TIME
;
3928 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3930 if (!tunnel
[i
].controlc
)
3933 if (last_talked
!= TIME
)
3935 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3941 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3942 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3944 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3948 for (i
= 1; i
< MAXRADIUS
; i
++)
3950 if (radius
[i
].state
== RADIUSNULL
)
3952 if (radius
[i
].state
== RADIUSWAIT
)
3955 if (last_talked
!= TIME
)
3957 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3967 # include <sys/epoll.h>
3969 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3970 # include "fake_epoll.h"
3973 // the base set of fds polled: cli, cluster, tun, udp (MAX_UDPFD), control, dae, netlink, udplac, pppoedisc, pppoesess
3974 #define BASE_FDS (9 + MAX_UDPFD)
3976 // additional polled fds
3978 # define EXTRA_FDS BGP_NUM_PEERS
3980 # define EXTRA_FDS 0
3983 // main loop - gets packets on tun or udp and processes them
3984 static void mainloop(void)
3988 uint8_t *p
= buf
+ 32; // for the hearder of the forwarded MPPP packet (see C_MPPP_FORWARD)
3989 // and the forwarded pppoe session
3990 int size_bufp
= sizeof(buf
) - 32;
3991 clockt next_cluster_ping
= 0; // send initial ping immediately
3992 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3993 int maxevent
= sizeof(events
)/sizeof(*events
);
3995 if ((epollfd
= epoll_create(maxevent
)) < 0)
3997 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
4001 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",
4002 clifd
, cluster_sockfd
, tunfd
, udpfd
[0], controlfd
, daefd
, nlfd
, udplacfd
, pppoediscfd
, pppoesessfd
);
4004 /* setup our fds to poll for input */
4006 static struct event_data d
[BASE_FDS
];
4007 struct epoll_event e
;
4014 d
[i
].type
= FD_TYPE_CLI
;
4015 e
.data
.ptr
= &d
[i
++];
4016 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
4019 d
[i
].type
= FD_TYPE_CLUSTER
;
4020 e
.data
.ptr
= &d
[i
++];
4021 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
4023 d
[i
].type
= FD_TYPE_TUN
;
4024 e
.data
.ptr
= &d
[i
++];
4025 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
4027 d
[i
].type
= FD_TYPE_CONTROL
;
4028 e
.data
.ptr
= &d
[i
++];
4029 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
4031 d
[i
].type
= FD_TYPE_DAE
;
4032 e
.data
.ptr
= &d
[i
++];
4033 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
4035 d
[i
].type
= FD_TYPE_NETLINK
;
4036 e
.data
.ptr
= &d
[i
++];
4037 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
4039 d
[i
].type
= FD_TYPE_PPPOEDISC
;
4040 e
.data
.ptr
= &d
[i
++];
4041 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoediscfd
, &e
);
4043 d
[i
].type
= FD_TYPE_PPPOESESS
;
4044 e
.data
.ptr
= &d
[i
++];
4045 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoesessfd
, &e
);
4047 for (j
= 0; j
< config
->nbudpfd
; j
++)
4049 d
[i
].type
= FD_TYPE_UDP
;
4051 e
.data
.ptr
= &d
[i
++];
4052 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
[j
], &e
);
4057 signal(SIGPIPE
, SIG_IGN
);
4058 bgp_setup(config
->as_number
);
4059 if (config
->bind_address
)
4060 bgp_add_route(config
->bind_address
, 0xffffffff);
4062 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
4064 if (config
->neighbour
[i
].name
[0])
4065 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
4066 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
4067 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
4068 0); /* 0 = routing disabled */
4072 while (!main_quit
|| still_busy())
4082 config
->reload_config
++;
4085 if (config
->reload_config
)
4087 config
->reload_config
= 0;
4095 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
4096 STAT(select_called
);
4101 if (errno
== EINTR
||
4102 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
4105 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
4111 struct sockaddr_in addr
;
4112 struct in_addr local
;
4115 int udp_ready
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4116 int pppoesess_ready
= 0;
4117 int pppoesess_pkts
= 0;
4119 int cluster_ready
= 0;
4120 int udp_pkts
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4122 int cluster_pkts
= 0;
4124 uint32_t bgp_events
[BGP_NUM_PEERS
];
4125 memset(bgp_events
, 0, sizeof(bgp_events
));
4128 for (c
= n
, i
= 0; i
< c
; i
++)
4130 struct event_data
*d
= events
[i
].data
.ptr
;
4134 case FD_TYPE_CLI
: // CLI connections
4138 alen
= sizeof(addr
);
4139 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
4145 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
4151 // these are handled below, with multiple interleaved reads
4152 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
4153 case FD_TYPE_TUN
: tun_ready
++; break;
4154 case FD_TYPE_UDP
: udp_ready
[d
->index
]++; break;
4155 case FD_TYPE_PPPOESESS
: pppoesess_ready
++; break;
4157 case FD_TYPE_PPPOEDISC
: // pppoe discovery
4158 s
= read(pppoediscfd
, p
, size_bufp
);
4159 if (s
> 0) process_pppoe_disc(p
, s
);
4163 case FD_TYPE_CONTROL
: // nsctl commands
4164 alen
= sizeof(addr
);
4165 s
= recvfromto(controlfd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4166 if (s
> 0) processcontrol(p
, s
, &addr
, alen
, &local
);
4170 case FD_TYPE_DAE
: // DAE requests
4171 alen
= sizeof(addr
);
4172 s
= recvfromto(daefd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4173 if (s
> 0) processdae(p
, s
, &addr
, alen
, &local
);
4177 case FD_TYPE_RADIUS
: // RADIUS response
4178 alen
= sizeof(addr
);
4179 s
= recvfrom(radfds
[d
->index
], p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
4180 if (s
>= 0 && config
->cluster_iam_master
)
4182 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
4183 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
4184 processrad(p
, s
, d
->index
);
4186 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
4187 fmtaddr(addr
.sin_addr
.s_addr
, 0));
4195 bgp_events
[d
->index
] = events
[i
].events
;
4200 case FD_TYPE_NETLINK
:
4202 struct nlmsghdr
*nh
= (struct nlmsghdr
*)p
;
4203 s
= netlink_recv(p
, size_bufp
);
4204 if (nh
->nlmsg_type
== NLMSG_ERROR
)
4206 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
4209 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
4211 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
4215 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
4220 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
);
4226 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
4231 bgp_process(bgp_events
);
4234 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4236 for (j
= 0; j
< config
->nbudpfd
; j
++)
4238 // L2TP and L2TP REMOTE LNS
4241 alen
= sizeof(addr
);
4242 if ((s
= recvfrom(udpfd
[j
], p
, size_bufp
, 0, (void *) &addr
, &alen
)) > 0)
4244 processudp(p
, s
, &addr
, j
);
4258 if ((s
= read(tunfd
, p
, size_bufp
)) > 0)
4271 if (pppoesess_ready
)
4273 if ((s
= read(pppoesessfd
, p
, size_bufp
)) > 0)
4275 process_pppoe_sess(p
, s
);
4280 pppoesess_ready
= 0;
4288 alen
= sizeof(addr
);
4289 if ((s
= recvfrom(cluster_sockfd
, p
, size_bufp
, MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4291 processcluster(p
, s
, addr
.sin_addr
.s_addr
);
4302 if (udp_pkts
[0] > 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4303 STAT(multi_read_used
);
4305 if (c
>= config
->multi_read_count
)
4307 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun %d cluster and %d pppoe packets\n",
4308 config
->multi_read_count
, udp_pkts
[0], tun_pkts
, cluster_pkts
, pppoesess_pkts
);
4309 STAT(multi_read_exceeded
);
4315 /* no event received, but timers could still have expired */
4316 bgp_process_peers_timers();
4321 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4323 // Log current traffic stats
4324 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4325 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4326 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4327 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4328 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4330 udp_tx
= udp_rx
= 0;
4331 udp_rx_pkt
= eth_rx_pkt
= 0;
4332 eth_tx
= eth_rx
= 0;
4335 if (config
->dump_speed
)
4336 printf("%s\n", config
->bandwidth
);
4338 // Update the internal time counter
4339 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4343 struct param_timer p
= { time_now
};
4344 run_plugins(PLUGIN_TIMER
, &p
);
4348 // Runs on every machine (master and slaves).
4349 if (next_cluster_ping
<= TIME
)
4351 // Check to see which of the cluster is still alive..
4353 cluster_send_ping(basetime
); // Only does anything if we're a slave
4354 cluster_check_master(); // ditto.
4356 cluster_heartbeat(); // Only does anything if we're a master.
4357 cluster_check_slaves(); // ditto.
4359 master_update_counts(); // If we're a slave, send our byte counters to our master.
4361 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4362 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4364 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4367 if (!config
->cluster_iam_master
)
4370 // Run token bucket filtering queue..
4371 // Only run it every 1/10th of a second.
4373 static clockt last_run
= 0;
4374 if (last_run
!= TIME
)
4381 // Handle timeouts, retries etc.
4383 static double last_clean
= 0;
4387 TIME
= now(&this_clean
);
4388 diff
= this_clean
- last_clean
;
4390 // Run during idle time (after we've handled
4391 // all incoming packets) or every 1/10th sec
4392 if (!more
|| diff
> 0.1)
4394 regular_cleanups(diff
);
4395 last_clean
= this_clean
;
4399 if (*config
->accounting_dir
)
4401 static clockt next_acct
= 0;
4402 static clockt next_shut_acct
= 0;
4404 if (next_acct
<= TIME
)
4406 // Dump accounting data
4407 next_acct
= TIME
+ ACCT_TIME
;
4408 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4411 else if (next_shut_acct
<= TIME
)
4413 // Dump accounting data for shutdown sessions
4414 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4421 // Are we the master and shutting down??
4422 if (config
->cluster_iam_master
)
4423 cluster_heartbeat(); // Flush any queued changes..
4425 // Ok. Notify everyone we're shutting down. If we're
4426 // the master, this will force an election.
4427 cluster_send_ping(0);
4430 // Important!!! We MUST not process any packets past this point!
4431 LOG(1, 0, 0, "Shutdown complete\n");
4434 static void stripdomain(char *host
)
4438 if ((p
= strchr(host
, '.')))
4444 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4450 while (fgets(buf
, sizeof(buf
), resolv
))
4452 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4455 if (!isspace(buf
[6]))
4459 while (isspace(*b
)) b
++;
4464 while (*b
&& !isspace(*b
)) b
++;
4466 if (buf
[0] == 'd') // domain is canonical
4472 // first search line
4475 // hold, may be subsequent domain line
4476 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4487 int hl
= strlen(host
);
4488 int dl
= strlen(domain
);
4489 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4490 host
[hl
-dl
- 1] = 0;
4494 *p
= 0; // everything after first dot
4499 // Init data structures
4500 static void initdata(int optdebug
, char *optconfig
)
4504 if (!(config
= shared_malloc(sizeof(configt
))))
4506 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4510 memset(config
, 0, sizeof(configt
));
4511 time(&config
->start_time
);
4512 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4513 config
->debug
= optdebug
;
4514 config
->num_tbfs
= MAXTBFS
;
4515 config
->rl_rate
= 28; // 28kbps
4516 config
->cluster_mcast_ttl
= 1;
4517 config
->cluster_master_min_adv
= 1;
4518 config
->ppp_restart_time
= 3;
4519 config
->ppp_max_configure
= 10;
4520 config
->ppp_max_failure
= 5;
4521 config
->kill_timedout_sessions
= 1;
4522 strcpy(config
->random_device
, RANDOMDEVICE
);
4523 // Set default value echo_timeout and idle_echo_timeout
4524 config
->echo_timeout
= ECHO_TIMEOUT
;
4525 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4527 log_stream
= stderr
;
4530 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4532 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4535 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4538 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4540 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4543 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4545 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4548 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4550 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4553 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4555 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4558 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4560 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4564 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4566 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4570 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4572 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4576 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4578 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4582 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4584 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4587 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4589 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4591 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4594 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4596 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4598 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4601 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4603 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4604 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4605 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4606 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4607 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4609 // Put all the sessions on the free list marked as undefined.
4610 for (i
= 1; i
< MAXSESSION
; i
++)
4612 session
[i
].next
= i
+ 1;
4613 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4615 session
[MAXSESSION
- 1].next
= 0;
4618 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4619 for (i
= 1; i
< MAXTUNNEL
; i
++)
4620 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4622 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4623 bundle
[i
].state
= BUNDLEUNDEF
;
4628 // Grab my hostname unless it's been specified
4629 gethostname(hostname
, sizeof(hostname
));
4630 stripdomain(hostname
);
4633 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4636 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4638 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4643 lac_initremotelnsdata();
4646 static int assign_ip_address(sessionidt s
)
4650 time_t best_time
= time_now
;
4651 char *u
= session
[s
].user
;
4655 CSTAT(assign_ip_address
);
4657 for (i
= 1; i
< ip_pool_size
; i
++)
4659 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4662 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4669 if (ip_address_pool
[i
].last
< best_time
)
4672 if (!(best_time
= ip_address_pool
[i
].last
))
4673 break; // never used, grab this one
4679 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4683 session
[s
].ip
= ip_address_pool
[best
].address
;
4684 session
[s
].ip_pool_index
= best
;
4685 ip_address_pool
[best
].assigned
= 1;
4686 ip_address_pool
[best
].last
= time_now
;
4687 ip_address_pool
[best
].session
= s
;
4688 if (session
[s
].walled_garden
)
4689 /* Don't track addresses of users in walled garden (note: this
4690 means that their address isn't "sticky" even if they get
4692 ip_address_pool
[best
].user
[0] = 0;
4694 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4697 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4698 reuse
? "Reusing" : "Allocating", best
);
4703 static void free_ip_address(sessionidt s
)
4705 int i
= session
[s
].ip_pool_index
;
4708 CSTAT(free_ip_address
);
4711 return; // what the?
4713 if (i
< 0) // Is this actually part of the ip pool?
4717 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4719 ip_address_pool
[i
].assigned
= 0;
4720 ip_address_pool
[i
].session
= 0;
4721 ip_address_pool
[i
].last
= time_now
;
4725 // Fsck the address pool against the session table.
4726 // Normally only called when we become a master.
4728 // This isn't perfect: We aren't keep tracking of which
4729 // users used to have an IP address.
4731 void rebuild_address_pool(void)
4736 // Zero the IP pool allocation, and build
4737 // a map from IP address to pool index.
4738 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4740 ip_address_pool
[i
].assigned
= 0;
4741 ip_address_pool
[i
].session
= 0;
4742 if (!ip_address_pool
[i
].address
)
4745 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4748 for (i
= 0; i
< MAXSESSION
; ++i
)
4751 if (!(session
[i
].opened
&& session
[i
].ip
))
4754 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4756 if (session
[i
].ip_pool_index
< 0)
4758 // Not allocated out of the pool.
4759 if (ipid
< 1) // Not found in the pool either? good.
4762 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4763 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4765 // Fall through and process it as part of the pool.
4769 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4771 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4773 session
[i
].ip_pool_index
= ipid
;
4777 ip_address_pool
[ipid
].assigned
= 1;
4778 ip_address_pool
[ipid
].session
= i
;
4779 ip_address_pool
[ipid
].last
= time_now
;
4780 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4781 session
[i
].ip_pool_index
= ipid
;
4782 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4787 // Fix the address pool to match a changed session.
4788 // (usually when the master sends us an update).
4789 static void fix_address_pool(int sid
)
4793 ipid
= session
[sid
].ip_pool_index
;
4795 if (ipid
> ip_pool_size
)
4796 return; // Ignore it. rebuild_address_pool will fix it up.
4798 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4799 return; // Just ignore it. rebuild_address_pool will take care of it.
4801 ip_address_pool
[ipid
].assigned
= 1;
4802 ip_address_pool
[ipid
].session
= sid
;
4803 ip_address_pool
[ipid
].last
= time_now
;
4804 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4808 // Add a block of addresses to the IP pool to hand out.
4810 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4814 prefixlen
= 32; // Host route only.
4816 addr
&= 0xffffffff << (32 - prefixlen
);
4818 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4821 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4823 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4824 continue; // Skip 0 and broadcast addresses.
4826 ip_address_pool
[ip_pool_size
].address
= i
;
4827 ip_address_pool
[ip_pool_size
].assigned
= 0;
4829 if (ip_pool_size
>= MAXIPPOOL
)
4831 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4837 // Initialize the IP address pool
4838 static void initippool()
4843 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4845 if (!(f
= fopen(IPPOOLFILE
, "r")))
4847 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4851 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4854 buf
[4095] = 0; // Force it to be zero terminated/
4856 if (*buf
== '#' || *buf
== '\n')
4857 continue; // Skip comments / blank lines
4858 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4859 if ((p
= (char *)strchr(buf
, ':')))
4863 src
= inet_addr(buf
);
4864 if (src
== INADDR_NONE
)
4866 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4869 // This entry is for a specific IP only
4870 if (src
!= config
->bind_address
)
4875 if ((p
= (char *)strchr(pool
, '/')))
4879 in_addr_t start
= 0;
4881 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4883 if (!*p
|| !(numbits
= atoi(p
)))
4885 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4888 start
= ntohl(inet_addr(pool
));
4890 // Add a static route for this pool
4891 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4892 fmtaddr(htonl(start
), 0), numbits
);
4894 routeset(0, start
, numbits
, 0, 1);
4896 add_to_ip_pool(start
, numbits
);
4900 // It's a single ip address
4901 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4905 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4908 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4910 struct sockaddr_in snoop_addr
= {0};
4911 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4914 snoop_addr
.sin_family
= AF_INET
;
4915 snoop_addr
.sin_addr
.s_addr
= destination
;
4916 snoop_addr
.sin_port
= ntohs(port
);
4918 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4919 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4920 htons(snoop_addr
.sin_port
));
4922 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4923 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4925 STAT(packets_snooped
);
4928 static int dump_session(FILE **f
, sessiont
*s
)
4930 if (!s
->opened
|| (!s
->ip
&& !s
->forwardtosession
) || !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4935 char filename
[1024];
4937 time_t now
= time(NULL
);
4939 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4940 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4942 if (!(*f
= fopen(filename
, "w")))
4944 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4948 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4949 if(config
->account_all_origin
)
4951 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4956 "# format: username ip qos uptxoctets downrxoctets origin(L=LAC, R=Remote LNS, P=PPPOE)\n",
4958 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
4964 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4969 "# format: username ip qos uptxoctets downrxoctets\n",
4971 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
4977 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4978 if(config
->account_all_origin
)
4980 fprintf(*f
, "%s %s %d %u %u %s\n",
4981 s
->user
, // username
4982 fmtaddr(htonl(s
->ip
), 0), // ip
4983 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4984 (uint32_t) s
->cin_delta
, // uptxoctets
4985 (uint32_t) s
->cout_delta
, // downrxoctets
4986 (s
->tunnel
== TUNNEL_ID_PPPOE
)?"P":(tunnel
[s
->tunnel
].isremotelns
?"R":"L")); // Origin
4988 else if (!tunnel
[s
->tunnel
].isremotelns
&& (s
->tunnel
!= TUNNEL_ID_PPPOE
))
4990 fprintf(*f
, "%s %s %d %u %u\n",
4991 s
->user
, // username
4992 fmtaddr(htonl(s
->ip
), 0), // ip
4993 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4994 (uint32_t) s
->cin_delta
, // uptxoctets
4995 (uint32_t) s
->cout_delta
); // downrxoctets
4998 s
->cin_delta
= s
->cout_delta
= 0;
5003 static void dump_acct_info(int all
)
5009 CSTAT(dump_acct_info
);
5013 for (i
= 0; i
< shut_acct_n
; i
++)
5014 dump_session(&f
, &shut_acct
[i
]);
5020 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5021 dump_session(&f
, &session
[i
]);
5028 int main(int argc
, char *argv
[])
5032 char *optconfig
= CONFIGFILE
;
5034 time(&basetime
); // start clock
5037 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
5042 if (fork()) exit(0);
5044 freopen("/dev/null", "r", stdin
);
5045 freopen("/dev/null", "w", stdout
);
5046 freopen("/dev/null", "w", stderr
);
5055 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
5058 printf("Args are:\n"
5059 "\t-d\t\tDetach from terminal\n"
5060 "\t-c <file>\tConfig file\n"
5061 "\t-h <hostname>\tForce hostname\n"
5069 // Start the timer routine off
5071 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
5074 initdata(optdebug
, optconfig
);
5078 /* set hostname /after/ having read the config file */
5079 if (*config
->hostname
)
5080 strcpy(hostname
, config
->hostname
);
5081 cli_init_complete(hostname
);
5083 init_tbf(config
->num_tbfs
);
5085 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
5086 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
5087 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
5090 rlim
.rlim_cur
= RLIM_INFINITY
;
5091 rlim
.rlim_max
= RLIM_INFINITY
;
5092 // Remove the maximum core size
5093 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
5094 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
5096 // Make core dumps go to /tmp
5100 if (config
->scheduler_fifo
)
5103 struct sched_param params
= {0};
5104 params
.sched_priority
= 1;
5106 if (get_nprocs() < 2)
5108 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
5109 config
->scheduler_fifo
= 0;
5113 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
5115 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
5119 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
5120 config
->scheduler_fifo
= 0;
5127 /* Set up the cluster communications port. */
5128 if (cluster_init() < 0)
5132 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevicename
);
5134 if (*config
->pppoe_if_to_bind
)
5137 LOG(1, 0, 0, "Set up on pppoe interface %s\n", config
->pppoe_if_to_bind
);
5140 if (!config
->nbmultiaddress
)
5142 config
->bind_n_address
[0] = config
->bind_address
;
5143 config
->nbmultiaddress
++;
5145 config
->nbudpfd
= config
->nbmultiaddress
;
5146 for (i
= 0; i
< config
->nbudpfd
; i
++)
5147 initudp(&udpfd
[i
], config
->bind_n_address
[i
]);
5149 config
->indexlacudpfd
= config
->nbudpfd
;
5150 udpfd
[config
->indexlacudpfd
] = udplacfd
;
5157 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
5164 unsigned seed
= time_now
^ getpid();
5165 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
5169 signal(SIGHUP
, sighup_handler
);
5170 signal(SIGCHLD
, sigchild_handler
);
5171 signal(SIGTERM
, shutdown_handler
);
5172 signal(SIGINT
, shutdown_handler
);
5173 signal(SIGQUIT
, shutdown_handler
);
5175 // Prevent us from getting paged out
5176 if (config
->lock_pages
)
5178 if (!mlockall(MCL_CURRENT
))
5179 LOG(1, 0, 0, "Locking pages into memory\n");
5181 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
5186 /* remove plugins (so cleanup code gets run) */
5189 // Remove the PID file if we wrote it
5190 if (config
->wrote_pid
&& *config
->pid_file
== '/')
5191 unlink(config
->pid_file
);
5193 /* kill CLI children */
5194 signal(SIGTERM
, SIG_IGN
);
5199 static void sighup_handler(int sig
)
5204 static void shutdown_handler(int sig
)
5206 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
5209 static void sigchild_handler(int sig
)
5211 while (waitpid(-1, NULL
, WNOHANG
) > 0)
5215 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
5218 *challenge_response
= NULL
;
5220 if (!*config
->l2tp_secret
)
5222 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
5226 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
5228 *challenge_response
= calloc(17, 1);
5231 MD5_Update(&ctx
, &id
, 1);
5232 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5233 MD5_Update(&ctx
, challenge
, challenge_length
);
5234 MD5_Final(*challenge_response
, &ctx
);
5239 static int facility_value(char *name
)
5242 for (i
= 0; facilitynames
[i
].c_name
; i
++)
5244 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
5245 return facilitynames
[i
].c_val
;
5250 static void update_config()
5254 static int timeout
= 0;
5255 static int interval
= 0;
5262 if (log_stream
!= stderr
)
5268 if (*config
->log_filename
)
5270 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
5272 char *p
= config
->log_filename
+ 7;
5275 openlog("l2tpns", LOG_PID
, facility_value(p
));
5279 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
5281 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
5283 fseek(log_stream
, 0, SEEK_END
);
5284 setbuf(log_stream
, NULL
);
5288 log_stream
= stderr
;
5289 setbuf(log_stream
, NULL
);
5295 log_stream
= stderr
;
5296 setbuf(log_stream
, NULL
);
5299 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
5300 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
5302 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
5303 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
5304 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5306 // reset MRU/MSS globals
5307 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5308 if (MRU
> PPPoE_MRU
)
5311 MSS
= MRU
- TCP_HDRS
;
5314 config
->numradiusservers
= 0;
5315 for (i
= 0; i
< MAXRADSERVER
; i
++)
5316 if (config
->radiusserver
[i
])
5318 config
->numradiusservers
++;
5319 // Set radius port: if not set, take the port from the
5320 // first radius server. For the first radius server,
5321 // take the #defined default value from l2tpns.h
5323 // test twice, In case someone works with
5324 // a secondary radius server without defining
5325 // a primary one, this will work even then.
5326 if (i
> 0 && !config
->radiusport
[i
])
5327 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5328 if (!config
->radiusport
[i
])
5329 config
->radiusport
[i
] = RADPORT
;
5332 if (!config
->numradiusservers
)
5333 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5335 // parse radius_authtypes_s
5336 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5337 p
= config
->radius_authtypes_s
;
5340 char *s
= strpbrk(p
, " \t,");
5346 while (*s
== ' ' || *s
== '\t')
5353 if (!strncasecmp("chap", p
, strlen(p
)))
5355 else if (!strncasecmp("pap", p
, strlen(p
)))
5358 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5360 config
->radius_authtypes
|= type
;
5361 if (!config
->radius_authprefer
)
5362 config
->radius_authprefer
= type
;
5367 if (!config
->radius_authtypes
)
5369 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5370 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5373 // normalise radius_authtypes_s
5374 if (config
->radius_authprefer
== AUTHPAP
)
5376 strcpy(config
->radius_authtypes_s
, "pap");
5377 if (config
->radius_authtypes
& AUTHCHAP
)
5378 strcat(config
->radius_authtypes_s
, ", chap");
5382 strcpy(config
->radius_authtypes_s
, "chap");
5383 if (config
->radius_authtypes
& AUTHPAP
)
5384 strcat(config
->radius_authtypes_s
, ", pap");
5387 if (!config
->radius_dae_port
)
5388 config
->radius_dae_port
= DAEPORT
;
5390 if(!config
->bind_portremotelns
)
5391 config
->bind_portremotelns
= L2TPLACPORT
;
5392 if(!config
->bind_address_remotelns
)
5393 config
->bind_address_remotelns
= INADDR_ANY
;
5395 if (*config
->bind_multi_address
)
5397 char *sip
= config
->bind_multi_address
;
5399 char *e
= config
->bind_multi_address
+ strlen(config
->bind_multi_address
);
5400 config
->nbmultiaddress
= 0;
5402 while (*sip
&& (sip
< e
))
5407 while (n
< e
&& (*n
== ',' || *n
== ' ')) n
++;
5409 while (n
< e
&& (isdigit(*n
) || *n
== '.'))
5417 u
= u
* 10 + *n
- '0';
5425 config
->bind_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5426 config
->iftun_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5427 config
->nbmultiaddress
++;
5428 LOG(1, 0, 0, "Bind address %s\n", fmtaddr(htonl(ip
), 0));
5434 if (config
->nbmultiaddress
>= 1)
5436 config
->bind_address
= config
->bind_n_address
[0];
5437 config
->iftun_address
= config
->bind_address
;
5441 if(!config
->iftun_address
)
5443 config
->iftun_address
= config
->bind_address
;
5444 config
->iftun_n_address
[0] = config
->iftun_address
;
5447 if (!*config
->pppoe_ac_name
)
5448 strncpy(config
->pppoe_ac_name
, DEFAULT_PPPOE_AC_NAME
, sizeof(config
->pppoe_ac_name
) - 1);
5450 // re-initialise the random number source
5451 initrandom(config
->random_device
);
5454 for (i
= 0; i
< MAXPLUGINS
; i
++)
5456 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5459 if (*config
->plugins
[i
])
5462 add_plugin(config
->plugins
[i
]);
5464 else if (*config
->old_plugins
[i
])
5467 remove_plugin(config
->old_plugins
[i
]);
5472 guest_accounts_num
= 0;
5473 char *p2
= config
->guest_user
;
5476 char *s
= strpbrk(p2
, " \t,");
5480 while (*s
== ' ' || *s
== '\t')
5487 strcpy(guest_users
[guest_accounts_num
], p2
);
5488 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5489 guest_accounts_num
++;
5492 // Rebuild the guest_user array
5493 strcpy(config
->guest_user
, "");
5495 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5497 strcat(config
->guest_user
, guest_users
[ui
]);
5498 if (ui
<guest_accounts_num
-1)
5500 strcat(config
->guest_user
, ",");
5505 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5506 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5507 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5508 if (!*config
->cluster_interface
)
5509 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5511 if (!config
->cluster_hb_interval
)
5512 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5514 if (!config
->cluster_hb_timeout
)
5515 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5517 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5519 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5520 // late, ensure we're sufficiently larger than that
5521 int t
= 4 * config
->cluster_hb_interval
+ 11;
5523 if (config
->cluster_hb_timeout
< t
)
5525 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5526 config
->cluster_hb_timeout
= t
;
5529 // Push timing changes to the slaves immediately if we're the master
5530 if (config
->cluster_iam_master
)
5531 cluster_heartbeat();
5533 interval
= config
->cluster_hb_interval
;
5534 timeout
= config
->cluster_hb_timeout
;
5538 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5541 if ((f
= fopen(config
->pid_file
, "w")))
5543 fprintf(f
, "%d\n", getpid());
5545 config
->wrote_pid
= 1;
5549 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5554 static void read_config_file()
5558 if (!config
->config_file
) return;
5559 if (!(f
= fopen(config
->config_file
, "r")))
5561 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5565 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5567 LOG(3, 0, 0, "Done reading config file\n");
5571 int sessionsetup(sessionidt s
, tunnelidt t
)
5573 // A session now exists, set it up
5579 CSTAT(sessionsetup
);
5581 LOG(3, s
, t
, "Doing session setup for session\n");
5583 // Join a bundle if the MRRU option is accepted
5584 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5586 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5587 if (join_bundle(s
) > 0)
5588 cluster_send_bundle(session
[s
].bundle
);
5591 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5592 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5599 assign_ip_address(s
);
5602 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5603 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5606 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5607 fmtaddr(htonl(session
[s
].ip
), 0));
5610 // Make sure this is right
5611 session
[s
].tunnel
= t
;
5613 // zap old sessions with same IP and/or username
5614 // Don't kill gardened sessions - doing so leads to a DoS
5615 // from someone who doesn't need to know the password
5618 user
= session
[s
].user
;
5619 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5621 if (i
== s
) continue;
5622 if (!session
[s
].opened
) break;
5623 // Allow duplicate sessions for multilink ones of the same bundle.
5624 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
) continue;
5626 if (ip
== session
[i
].ip
)
5628 sessionshutdown(i
, "Duplicate IP address", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5632 if (config
->allow_duplicate_users
) continue;
5633 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5637 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5639 if (!strcasecmp(user
, guest_users
[gu
]))
5645 if (found
) continue;
5647 // Drop the new session in case of duplicate sessionss, not the old one.
5648 if (!strcasecmp(user
, session
[i
].user
))
5649 sessionshutdown(i
, "Duplicate session for users", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5653 // no need to set a route for the same IP address of the bundle
5654 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5658 // Add the route for this session.
5659 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5661 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5662 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5665 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5668 // Static IPs need to be routed if not already
5669 // convered by a Framed-Route. Anything else is part
5670 // of the IP address pool and is already routed, it
5671 // just needs to be added to the IP cache.
5672 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5673 if (session
[s
].ip_pool_index
== -1) // static ip
5675 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5678 cache_ipmap(session
[s
].ip
, s
);
5681 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5682 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5684 // Run the plugin's against this new session.
5686 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5687 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5690 // Allocate TBFs if throttled
5691 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5692 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5694 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5696 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5697 fmtaddr(htonl(session
[s
].ip
), 0),
5698 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5700 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5702 return 1; // RADIUS OK and IP allocated, done...
5706 // This session just got dropped on us by the master or something.
5707 // Make sure our tables up up to date...
5709 int load_session(sessionidt s
, sessiont
*new)
5715 if (new->ip_pool_index
>= MAXIPPOOL
||
5716 new->tunnel
>= MAXTUNNEL
)
5718 LOG(0, s
, 0, "Strange session update received!\n");
5719 // FIXME! What to do here?
5724 // Ok. All sanity checks passed. Now we're committed to
5725 // loading the new session.
5728 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5730 // See if routes/ip cache need updating
5731 if (new->ip
!= session
[s
].ip
)
5734 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5735 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5736 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5744 // remove old routes...
5745 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5747 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5748 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5751 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5757 if (session
[s
].ip_pool_index
== -1) // static IP
5759 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5761 else // It's part of the IP pool, remove it manually.
5762 uncache_ipmap(session
[s
].ip
);
5767 // add new routes...
5768 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5770 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5771 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5774 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5780 // If there's a new one, add it.
5781 if (new->ip_pool_index
== -1)
5783 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5786 cache_ipmap(new->ip
, s
);
5791 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5792 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5795 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5797 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5801 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5803 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5804 new->filter_out
= 0;
5807 if (new->filter_in
!= session
[s
].filter_in
)
5809 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5810 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5813 if (new->filter_out
!= session
[s
].filter_out
)
5815 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5816 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5819 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5820 // for walking the sessions to forward byte counts to the master.
5821 config
->cluster_highest_sessionid
= s
;
5823 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5825 // Do fixups into address pool.
5826 if (new->ip_pool_index
!= -1)
5827 fix_address_pool(s
);
5832 static void initplugins()
5836 loaded_plugins
= ll_init();
5837 // Initialize the plugins to nothing
5838 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5839 plugins
[i
] = ll_init();
5842 static void *open_plugin(char *plugin_name
, int load
)
5844 char path
[256] = "";
5846 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5847 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5848 return dlopen(path
, RTLD_NOW
);
5851 // plugin callback to get a config value
5852 static void *getconfig(char *key
, enum config_typet type
)
5856 for (i
= 0; config_values
[i
].key
; i
++)
5858 if (!strcmp(config_values
[i
].key
, key
))
5860 if (config_values
[i
].type
== type
)
5861 return ((void *) config
) + config_values
[i
].offset
;
5863 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5864 key
, type
, config_values
[i
].type
);
5870 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5874 static int add_plugin(char *plugin_name
)
5876 static struct pluginfuncs funcs
= {
5881 sessiontbysessionidt
,
5882 sessionidtbysessiont
,
5889 cluster_send_session
,
5892 void *p
= open_plugin(plugin_name
, 1);
5893 int (*initfunc
)(struct pluginfuncs
*);
5898 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5902 if (ll_contains(loaded_plugins
, p
))
5905 return 0; // already loaded
5909 int *v
= dlsym(p
, "plugin_api_version");
5910 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5912 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5918 if ((initfunc
= dlsym(p
, "plugin_init")))
5920 if (!initfunc(&funcs
))
5922 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5928 ll_push(loaded_plugins
, p
);
5930 for (i
= 0; i
< max_plugin_functions
; i
++)
5933 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5935 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5936 ll_push(plugins
[i
], x
);
5940 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5944 static void run_plugin_done(void *plugin
)
5946 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5952 static int remove_plugin(char *plugin_name
)
5954 void *p
= open_plugin(plugin_name
, 0);
5960 if (ll_contains(loaded_plugins
, p
))
5963 for (i
= 0; i
< max_plugin_functions
; i
++)
5966 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5967 ll_delete(plugins
[i
], x
);
5970 ll_delete(loaded_plugins
, p
);
5976 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5980 int run_plugins(int plugin_type
, void *data
)
5982 int (*func
)(void *data
);
5984 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5985 return PLUGIN_RET_ERROR
;
5987 ll_reset(plugins
[plugin_type
]);
5988 while ((func
= ll_next(plugins
[plugin_type
])))
5992 if (r
!= PLUGIN_RET_OK
)
5993 return r
; // stop here
5996 return PLUGIN_RET_OK
;
5999 static void plugins_done()
6003 ll_reset(loaded_plugins
);
6004 while ((p
= ll_next(loaded_plugins
)))
6008 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
6010 struct nsctl request
;
6011 struct nsctl response
;
6012 int type
= unpack_control(&request
, buf
, len
);
6016 if (log_stream
&& config
->debug
>= 4)
6020 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
6021 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
6025 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6026 dump_control(&request
, log_stream
);
6032 case NSCTL_REQ_LOAD
:
6033 if (request
.argc
!= 1)
6035 response
.type
= NSCTL_RES_ERR
;
6037 response
.argv
[0] = "name of plugin required";
6039 else if ((r
= add_plugin(request
.argv
[0])) < 1)
6041 response
.type
= NSCTL_RES_ERR
;
6043 response
.argv
[0] = !r
6044 ? "plugin already loaded"
6045 : "error loading plugin";
6049 response
.type
= NSCTL_RES_OK
;
6055 case NSCTL_REQ_UNLOAD
:
6056 if (request
.argc
!= 1)
6058 response
.type
= NSCTL_RES_ERR
;
6060 response
.argv
[0] = "name of plugin required";
6062 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
6064 response
.type
= NSCTL_RES_ERR
;
6066 response
.argv
[0] = !r
6067 ? "plugin not loaded"
6068 : "plugin not found";
6072 response
.type
= NSCTL_RES_OK
;
6078 case NSCTL_REQ_HELP
:
6079 response
.type
= NSCTL_RES_OK
;
6082 ll_reset(loaded_plugins
);
6083 while ((p
= ll_next(loaded_plugins
)))
6085 char **help
= dlsym(p
, "plugin_control_help");
6086 while (response
.argc
< 0xff && help
&& *help
)
6087 response
.argv
[response
.argc
++] = *help
++;
6092 case NSCTL_REQ_CONTROL
:
6094 struct param_control param
= {
6095 config
->cluster_iam_master
,
6102 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
6104 if (r
== PLUGIN_RET_ERROR
)
6106 response
.type
= NSCTL_RES_ERR
;
6108 response
.argv
[0] = param
.additional
6110 : "error returned by plugin";
6112 else if (r
== PLUGIN_RET_NOTMASTER
)
6114 static char msg
[] = "must be run on master: 000.000.000.000";
6116 response
.type
= NSCTL_RES_ERR
;
6118 if (config
->cluster_master_address
)
6120 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
6121 response
.argv
[0] = msg
;
6125 response
.argv
[0] = "must be run on master: none elected";
6128 else if (!(param
.response
& NSCTL_RESPONSE
))
6130 response
.type
= NSCTL_RES_ERR
;
6132 response
.argv
[0] = param
.response
6133 ? "unrecognised response value from plugin"
6134 : "unhandled action";
6138 response
.type
= param
.response
;
6140 if (param
.additional
)
6143 response
.argv
[0] = param
.additional
;
6151 response
.type
= NSCTL_RES_ERR
;
6153 response
.argv
[0] = "error unpacking control packet";
6156 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
6159 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
6163 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
6166 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
6167 if (log_stream
&& config
->debug
>= 4)
6169 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6170 dump_control(&response
, log_stream
);
6174 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
6175 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
6180 static tunnelidt
new_tunnel()
6183 for (i
= 1; i
< MAXTUNNEL
; i
++)
6185 if ((tunnel
[i
].state
== TUNNELFREE
) && (i
!= TUNNEL_ID_PPPOE
))
6187 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
6188 if (i
> config
->cluster_highest_tunnelid
)
6189 config
->cluster_highest_tunnelid
= i
;
6193 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
6198 // We're becoming the master. Do any required setup..
6200 // This is principally telling all the plugins that we're
6201 // now a master, and telling them about all the sessions
6202 // that are active too..
6204 void become_master(void)
6207 static struct event_data d
[RADIUS_FDS
];
6208 struct epoll_event e
;
6210 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
6212 // running a bunch of iptables commands is slow and can cause
6213 // the master to drop tunnels on takeover--kludge around the
6214 // problem by forking for the moment (note: race)
6215 if (!fork_and_close())
6217 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6219 if (!session
[s
].opened
) // Not an in-use session.
6222 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
6229 for (i
= 0; i
< RADIUS_FDS
; i
++)
6231 d
[i
].type
= FD_TYPE_RADIUS
;
6235 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
6239 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
6245 if (CLI_HELP_REQUESTED
)
6246 return CLI_HELP_NO_ARGS
;
6249 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6251 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6254 if (!session
[s
].opened
)
6257 idle
= time_now
- session
[s
].last_data
;
6258 idle
/= 5 ; // In multiples of 5 seconds.
6268 for (i
= 0; i
< 63; ++i
)
6270 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6272 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
6273 cli_print(cli
, "%d total sessions open.", count
);
6277 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
6283 if (CLI_HELP_REQUESTED
)
6284 return CLI_HELP_NO_ARGS
;
6287 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6289 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6292 if (!session
[s
].opened
)
6295 d
= time_now
- session
[s
].opened
;
6298 while (d
> 1 && open
< 32)
6308 for (i
= 0; i
< 30; ++i
)
6310 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6313 cli_print(cli
, "%d total sessions open.", count
);
6319 * This unencodes the AVP using the L2TP secret and the previously
6320 * stored random vector. It overwrites the hidden data with the
6321 * unhidden AVP subformat.
6323 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
6329 uint16_t m
= htons(type
);
6331 // Compute initial pad
6333 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
6334 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6335 MD5_Update(&ctx
, vector
, vec_len
);
6336 MD5_Final(digest
, &ctx
);
6338 // pointer to last decoded 16 octets
6343 // calculate a new pad based on the last decoded block
6344 if (d
>= sizeof(digest
))
6347 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6348 MD5_Update(&ctx
, last
, sizeof(digest
));
6349 MD5_Final(digest
, &ctx
);
6355 *value
++ ^= digest
[d
++];
6360 int find_filter(char const *name
, size_t len
)
6365 for (i
= 0; i
< MAXFILTER
; i
++)
6367 if (!*ip_filters
[i
].name
)
6375 if (strlen(ip_filters
[i
].name
) != len
)
6378 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6385 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6389 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6390 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6391 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6392 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6393 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6399 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6403 case FILTER_FLAG_OP_ANY
:
6404 return (flags
& sflags
) || (~flags
& cflags
);
6406 case FILTER_FLAG_OP_ALL
:
6407 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6409 case FILTER_FLAG_OP_EST
:
6410 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6416 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6418 uint16_t frag_offset
;
6422 uint16_t src_port
= 0;
6423 uint16_t dst_port
= 0;
6425 ip_filter_rulet
*rule
;
6427 if (len
< 20) // up to end of destination address
6430 if ((*buf
>> 4) != 4) // IPv4
6433 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6435 src_ip
= *(in_addr_t
*) (buf
+ 12);
6436 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6438 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6440 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6441 if (len
< l
+ 4) // ports
6444 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6445 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6446 if (proto
== IPPROTO_TCP
)
6448 if (len
< l
+ 14) // flags
6451 flags
= buf
[l
+ 13] & 0x3f;
6455 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6457 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6460 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6461 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6464 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6465 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6470 // layer 4 deny rules are skipped
6471 if (rule
->action
== FILTER_ACTION_DENY
&&
6472 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6480 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6482 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6485 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6488 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6489 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6496 return rule
->action
== FILTER_ACTION_PERMIT
;
6503 tunnelidt
lac_new_tunnel()
6505 return new_tunnel();
6508 void lac_tunnelclear(tunnelidt t
)
6513 void lac_send_SCCRQ(tunnelidt t
, uint8_t * auth
, unsigned int auth_len
)
6515 uint16_t version
= 0x0100; // protocol version
6517 tunnel
[t
].state
= TUNNELOPENING
;
6519 // Sent SCCRQ - Start Control Connection Request
6520 controlt
*c
= controlnew(1); // sending SCCRQ
6521 controls(c
, 7, hostname
, 1); // host name
6522 controls(c
, 8, Vendor_name
, 1); // Vendor name
6523 control16(c
, 2, version
, 1); // protocol version
6524 control32(c
, 3, 3, 1); // framing Capabilities
6525 control16(c
, 9, t
, 1); // assigned tunnel
6526 controlb(c
, 11, (uint8_t *) auth
, auth_len
, 1); // CHAP Challenge
6527 LOG(3, 0, t
, "Sent SCCRQ to REMOTE LNS\n");
6528 controladd(c
, 0, t
); // send
6531 void lac_send_ICRQ(tunnelidt t
, sessionidt s
)
6533 // Sent ICRQ Incoming-call-request
6534 controlt
*c
= controlnew(10); // ICRQ
6536 control16(c
, 14, s
, 1); // assigned sesion
6537 call_serial_number
++;
6538 control32(c
, 15, call_serial_number
, 1); // call serial number
6539 LOG(3, s
, t
, "Sent ICRQ to REMOTE LNS (far ID %u)\n", tunnel
[t
].far
);
6540 controladd(c
, 0, t
); // send
6543 void lac_tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
6545 tunnelshutdown(t
, reason
, result
, error
, msg
);