3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
16 #include <net/route.h>
19 #include <netinet/in.h>
20 #include <netinet/ip6.h>
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
29 #include <sys/resource.h>
37 #include <sys/sysinfo.h>
39 #include <linux/netlink.h>
40 #include <linux/rtnetlink.h>
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
),
190 CONFIG("multi_hostname", multi_hostname
, STRING
),
191 CONFIG("no_throttle_local_IP", no_throttle_local_IP
, BOOL
),
195 static char *plugin_functions
[] = {
200 "plugin_new_session",
201 "plugin_kill_session",
203 "plugin_radius_response",
204 "plugin_radius_reset",
205 "plugin_radius_account",
206 "plugin_become_master",
207 "plugin_new_session_master",
210 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
212 // Counters for shutdown sessions
213 static sessiont shut_acct
[8192];
214 static sessionidt shut_acct_n
= 0;
216 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
217 bundlet
*bundle
= NULL
; // Array of bundle structures.
218 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
219 sessiont
*session
= NULL
; // Array of session structures.
220 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
221 radiust
*radius
= NULL
; // Array of radius structures.
222 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
223 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
224 static controlt
*controlfree
= 0;
225 struct Tstats
*_statistics
= NULL
;
227 struct Tringbuffer
*ringbuffer
= NULL
;
230 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
231 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
232 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
233 static void uncache_ipmap(in_addr_t ip
);
234 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
235 static void free_ip_address(sessionidt s
);
236 static void dump_acct_info(int all
);
237 static void sighup_handler(int sig
);
238 static void shutdown_handler(int sig
);
239 static void sigchild_handler(int sig
);
240 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
241 static void update_config(void);
242 static void read_config_file(void);
243 static void initplugins(void);
244 static int add_plugin(char *plugin_name
);
245 static int remove_plugin(char *plugin_name
);
246 static void plugins_done(void);
247 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
248 static tunnelidt
new_tunnel(void);
249 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
250 static void bundleclear(bundleidt b
);
252 // return internal time (10ths since process startup), set f if given
253 // as a side-effect sets time_now, and time_changed
254 static clockt
now(double *f
)
258 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
259 if (t
.tv_sec
!= time_now
)
265 // Time in milliseconds
266 // TODO FOR MLPPP DEV
267 //time_now_ms = (t.tv_sec * 1000) + (t.tv_usec/1000);
269 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
272 // work out a retry time based on try number
273 // This is a straight bounded exponential backoff.
274 // Maximum re-try time is 32 seconds. (2^5).
275 clockt
backoff(uint8_t try)
277 if (try > 5) try = 5; // max backoff
278 return now(NULL
) + 10 * (1 << try);
283 // Log a debug message. Typically called via the LOG macro
285 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
287 static char message
[65536] = {0};
293 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
294 ringbuffer
->tail
= 0;
295 if (ringbuffer
->tail
== ringbuffer
->head
)
296 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
297 ringbuffer
->head
= 0;
299 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
300 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
301 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
302 va_start(ap
, format
);
303 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, MAX_LOG_LENGTH
, format
, ap
);
308 if (config
->debug
< level
) return;
310 va_start(ap
, format
);
311 vsnprintf(message
, sizeof(message
), format
, ap
);
314 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
316 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
321 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
324 const uint8_t *d
= data
;
326 if (config
->debug
< level
) return;
328 // No support for _log_hex to syslog
331 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
332 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
334 for (i
= 0; i
< maxsize
; )
336 fprintf(log_stream
, "%4X: ", i
);
337 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
339 fprintf(log_stream
, "%02X ", d
[j
]);
341 fputs(": ", log_stream
);
344 for (; j
< i
+ 16; j
++)
346 fputs(" ", log_stream
);
348 fputs(": ", log_stream
);
351 fputs(" ", log_stream
);
352 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
354 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
355 fputc(d
[j
], log_stream
);
357 fputc('.', log_stream
);
360 fputs(" ", log_stream
);
364 fputs("\n", log_stream
);
368 setbuf(log_stream
, NULL
);
372 // update a counter, accumulating 2^32 wraps
373 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
375 uint32_t new = *counter
+ delta
;
382 // initialise the random generator
383 static void initrandom(char *source
)
385 static char path
[sizeof(config
->random_device
)] = "*undefined*";
387 // reinitialise only if we are forced to do so or if the config has changed
388 if (source
&& !strncmp(path
, source
, sizeof(path
)))
391 // close previous source, if any
400 snprintf(path
, sizeof(path
), "%s", source
);
404 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
406 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
407 path
, strerror(errno
));
412 // fill buffer with random data
413 void random_data(uint8_t *buf
, int len
)
420 n
= read(rand_fd
, buf
, len
);
421 if (n
>= len
) return;
426 LOG(0, 0, 0, "Error reading from random source: %s\n",
429 // fall back to rand()
437 // append missing data
439 // not using the low order bits from the prng stream
440 buf
[n
++] = (rand() >> 4) & 0xff;
445 // This adds it to the routing table, advertises it
446 // via BGP if enabled, and stuffs it into the
447 // 'sessionbyip' cache.
449 // 'ip' must be in _host_ order.
451 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
461 if (!prefixlen
) prefixlen
= 32;
463 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
465 memset(&req
, 0, sizeof(req
));
469 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
470 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
474 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
475 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
478 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
480 req
.rt
.rtm_family
= AF_INET
;
481 req
.rt
.rtm_dst_len
= prefixlen
;
482 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
483 req
.rt
.rtm_protocol
= 42;
484 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
485 req
.rt
.rtm_type
= RTN_UNICAST
;
487 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
489 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
493 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
496 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
497 fmtaddr(htonl(ip
), 0), prefixlen
,
498 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
500 if (netlink_send(&req
.nh
) < 0)
501 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
505 bgp_add_route(htonl(ip
), prefixlen
);
507 bgp_del_route(htonl(ip
), prefixlen
);
510 // Add/Remove the IPs to the 'sessionbyip' cache.
511 // Note that we add the zero address in the case of
512 // a network route. Roll on CIDR.
514 // Note that 's == 0' implies this is the address pool.
515 // We still cache it here, because it will pre-fill
516 // the malloc'ed tree.
520 if (!add
) // Are we deleting a route?
521 s
= 0; // Caching the session as '0' is the same as uncaching.
523 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
528 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
536 char ipv6addr
[INET6_ADDRSTRLEN
];
538 if (!config
->ipv6_prefix
.s6_addr
[0])
540 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
544 memset(&req
, 0, sizeof(req
));
548 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
549 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
553 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
554 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
557 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
559 req
.rt
.rtm_family
= AF_INET6
;
560 req
.rt
.rtm_dst_len
= prefixlen
;
561 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
562 req
.rt
.rtm_protocol
= 42;
563 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
564 req
.rt
.rtm_type
= RTN_UNICAST
;
566 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
567 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
569 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
571 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
573 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
576 if (netlink_send(&req
.nh
) < 0)
577 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
581 bgp_add_route6(ip
, prefixlen
);
583 bgp_del_route6(ip
, prefixlen
);
588 if (!add
) // Are we deleting a route?
589 s
= 0; // Caching the session as '0' is the same as uncaching.
591 cache_ipv6map(ip
, prefixlen
, s
);
598 // Set up netlink socket
599 static void initnetlink(void)
601 struct sockaddr_nl nladdr
;
603 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
606 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
610 memset(&nladdr
, 0, sizeof(nladdr
));
611 nladdr
.nl_family
= AF_NETLINK
;
612 nladdr
.nl_pid
= getpid();
614 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
616 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
621 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
623 struct sockaddr_nl nladdr
;
627 nh
->nlmsg_pid
= getpid();
628 nh
->nlmsg_seq
= ++nlseqnum
;
630 // set kernel address
631 memset(&nladdr
, 0, sizeof(nladdr
));
632 nladdr
.nl_family
= AF_NETLINK
;
634 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
635 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
637 return sendmsg(nlfd
, &msg
, 0);
640 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
642 struct sockaddr_nl nladdr
;
646 // set kernel address
647 memset(&nladdr
, 0, sizeof(nladdr
));
648 nladdr
.nl_family
= AF_NETLINK
;
650 iov
= (struct iovec
){ buf
, len
};
651 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
653 return recvmsg(nlfd
, &msg
, 0);
656 /* adapted from iproute2 */
657 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
659 int len
= RTA_LENGTH(alen
);
662 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
663 rta
->rta_type
= type
;
665 memcpy(RTA_DATA(rta
), data
, alen
);
666 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
669 // messages corresponding to different phases seq number
670 static char *tun_nl_phase_msg
[] = {
672 "getting tun interface index",
673 "setting tun interface parameters",
674 "setting tun IPv4 address",
675 "setting tun LL IPv6 address",
676 "setting tun global IPv6 address",
680 // Set up TUN interface
681 static void inittun(void)
685 memset(&ifr
, 0, sizeof(ifr
));
686 ifr
.ifr_flags
= IFF_TUN
;
688 tunfd
= open(TUNDEVICE
, O_RDWR
);
691 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
695 int flags
= fcntl(tunfd
, F_GETFL
, 0);
696 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
699 if (*config
->tundevicename
)
700 strncpy(ifr
.ifr_name
, config
->tundevicename
, IFNAMSIZ
);
702 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
704 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
707 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevicename
) - 1);
708 strncpy(config
->tundevicename
, ifr
.ifr_name
, sizeof(config
->tundevicename
));
710 tunidx
= if_nametoindex(config
->tundevicename
);
713 LOG(0, 0, 0, "Can't get tun interface index\n");
722 struct ifinfomsg ifinfo
;
723 struct ifaddrmsg ifaddr
;
725 char rtdata
[32]; // 32 should be enough
727 uint32_t txqlen
, mtu
;
730 memset(&req
, 0, sizeof(req
));
732 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
733 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
734 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
736 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
737 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
738 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
739 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
741 /* Bump up the qlen to deal with bursts from the network */
743 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
744 /* set MTU to modem MRU */
746 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
748 if (netlink_send(&req
.nh
) < 0)
751 memset(&req
, 0, sizeof(req
));
753 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
754 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
755 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
757 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
758 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
759 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
760 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
762 if (config
->nbmultiaddress
> 1)
765 for (i
= 0; i
< config
->nbmultiaddress
; i
++)
767 ip
= config
->iftun_n_address
[i
];
768 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
769 if (netlink_send(&req
.nh
) < 0)
775 if (config
->iftun_address
)
776 ip
= config
->iftun_address
;
778 ip
= 0x01010101; // 1.1.1.1
779 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
781 if (netlink_send(&req
.nh
) < 0)
787 // Only setup IPv6 on the tun device if we have a configured prefix
788 if (config
->ipv6_prefix
.s6_addr
[0]) {
791 memset(&req
, 0, sizeof(req
));
793 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
794 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
795 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
797 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
798 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
799 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
800 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
802 // Link local address is FE80::1
803 memset(&ip6
, 0, sizeof(ip6
));
804 ip6
.s6_addr
[0] = 0xFE;
805 ip6
.s6_addr
[1] = 0x80;
807 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
809 if (netlink_send(&req
.nh
) < 0)
812 memset(&req
, 0, sizeof(req
));
814 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
815 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
816 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
818 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
819 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
820 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
821 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
823 // Global address is prefix::1
824 ip6
= config
->ipv6_prefix
;
826 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
828 if (netlink_send(&req
.nh
) < 0)
832 memset(&req
, 0, sizeof(req
));
834 req
.nh
.nlmsg_type
= NLMSG_DONE
;
835 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
837 if (netlink_send(&req
.nh
) < 0)
840 // if we get an error for seqnum < min_initok_nlseqnum,
841 // we must exit as initialization went wrong
842 if (config
->ipv6_prefix
.s6_addr
[0])
843 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
845 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
851 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
855 // set up LAC UDP ports
856 static void initlacudp(void)
859 struct sockaddr_in addr
;
861 // Tunnel to Remote LNS
862 memset(&addr
, 0, sizeof(addr
));
863 addr
.sin_family
= AF_INET
;
864 addr
.sin_port
= htons(config
->bind_portremotelns
);
865 addr
.sin_addr
.s_addr
= config
->bind_address_remotelns
;
866 udplacfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
867 setsockopt(udplacfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
869 int flags
= fcntl(udplacfd
, F_GETFL
, 0);
870 fcntl(udplacfd
, F_SETFL
, flags
| O_NONBLOCK
);
872 if (bind(udplacfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
874 LOG(0, 0, 0, "Error in UDP REMOTE LNS bind: %s\n", strerror(errno
));
879 // set up control ports
880 static void initcontrol(void)
883 struct sockaddr_in addr
;
886 memset(&addr
, 0, sizeof(addr
));
887 addr
.sin_family
= AF_INET
;
888 addr
.sin_port
= htons(NSCTL_PORT
);
889 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
890 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
891 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
892 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
894 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
899 // set up Dynamic Authorization Extensions to RADIUS port
900 static void initdae(void)
903 struct sockaddr_in addr
;
905 // Dynamic Authorization Extensions to RADIUS
906 memset(&addr
, 0, sizeof(addr
));
907 addr
.sin_family
= AF_INET
;
908 addr
.sin_port
= htons(config
->radius_dae_port
);
909 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
910 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
911 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
912 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
914 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
920 static void initudp(int * pudpfd
, in_addr_t ip_bind
)
923 struct sockaddr_in addr
;
926 memset(&addr
, 0, sizeof(addr
));
927 addr
.sin_family
= AF_INET
;
928 addr
.sin_port
= htons(L2TPPORT
);
929 addr
.sin_addr
.s_addr
= ip_bind
;
930 (*pudpfd
) = socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
931 setsockopt((*pudpfd
), SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
933 int flags
= fcntl((*pudpfd
), F_GETFL
, 0);
934 fcntl((*pudpfd
), F_SETFL
, flags
| O_NONBLOCK
);
936 if (bind((*pudpfd
), (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
938 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
944 // Find session by IP, < 1 for not found
946 // Confusingly enough, this 'ip' must be
947 // in _network_ order. This being the common
948 // case when looking it up from IP packet headers.
950 // We actually use this cache for two things.
951 // #1. For used IP addresses, this maps to the
952 // session ID that it's used by.
953 // #2. For un-used IP addresses, this maps to the
954 // index into the pool table that contains that
958 static sessionidt
lookup_ipmap(in_addr_t ip
)
960 uint8_t *a
= (uint8_t *) &ip
;
961 union iphash
*h
= ip_hash
;
963 if (!(h
= h
[*a
++].idx
)) return 0;
964 if (!(h
= h
[*a
++].idx
)) return 0;
965 if (!(h
= h
[*a
++].idx
)) return 0;
970 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
972 struct ipv6radix
*curnode
;
975 char ipv6addr
[INET6_ADDRSTRLEN
];
977 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
981 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
983 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
988 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
989 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
996 sessionidt
sessionbyip(in_addr_t ip
)
998 sessionidt s
= lookup_ipmap(ip
);
1001 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1007 sessionidt
sessionbyipv6(struct in6_addr ip
)
1010 CSTAT(sessionbyipv6
);
1012 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
1013 (ip
.s6_addr
[0] == 0xFE &&
1014 ip
.s6_addr
[1] == 0x80 &&
1015 ip
.s6_addr16
[1] == 0 &&
1016 ip
.s6_addr16
[2] == 0 &&
1017 ip
.s6_addr16
[3] == 0))
1019 in_addr_t
*pipv4
= (in_addr_t
*) &ip
.s6_addr
[8];
1020 s
= lookup_ipmap(*pipv4
);
1022 s
= lookup_ipv6map(ip
);
1025 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1032 // Take an IP address in HOST byte order and
1033 // add it to the sessionid by IP cache.
1035 // (It's actually cached in network order)
1037 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
1039 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
1040 uint8_t *a
= (uint8_t *) &nip
;
1041 union iphash
*h
= ip_hash
;
1044 for (i
= 0; i
< 3; i
++)
1046 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
1055 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
1058 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
1059 // else a map to an ip pool index.
1062 static void uncache_ipmap(in_addr_t ip
)
1064 cache_ipmap(ip
, 0); // Assign it to the NULL session.
1067 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
1071 struct ipv6radix
*curnode
;
1072 char ipv6addr
[INET6_ADDRSTRLEN
];
1074 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
1076 bytes
= prefixlen
>> 3;
1079 if (curnode
->branch
== NULL
)
1081 if (!(curnode
->branch
= calloc(256,
1082 sizeof (struct ipv6radix
))))
1085 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1092 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1093 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1097 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1098 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1104 // CLI list to dump current ipcache.
1106 int cmd_show_ipcache(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
1108 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1112 if (CLI_HELP_REQUESTED
)
1113 return CLI_HELP_NO_ARGS
;
1115 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1117 for (i
= 0; i
< 256; ++i
)
1123 for (j
= 0; j
< 256; ++j
)
1129 for (k
= 0; k
< 256; ++k
)
1135 for (l
= 0; l
< 256; ++l
)
1140 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1146 cli_print(cli
, "%d entries in cache", count
);
1151 // Find session by username, 0 for not found
1152 // walled garden users aren't authenticated, so the username is
1153 // reasonably useless. Ignore them to avoid incorrect actions
1155 // This is VERY inefficent. Don't call it often. :)
1157 sessionidt
sessionbyuser(char *username
)
1160 CSTAT(sessionbyuser
);
1162 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1164 if (!session
[s
].opened
)
1167 if (session
[s
].walled_garden
)
1168 continue; // Skip walled garden users.
1170 if (!strncmp(session
[s
].user
, username
, 128))
1174 return 0; // Not found.
1177 void send_garp(in_addr_t ip
)
1183 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1186 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1189 memset(&ifr
, 0, sizeof(ifr
));
1190 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1191 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1193 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1197 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1198 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1200 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1205 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1208 static sessiont
*sessiontbysessionidt(sessionidt s
)
1210 if (!s
|| s
>= MAXSESSION
) return NULL
;
1214 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1216 sessionidt val
= s
-session
;
1217 if (s
< session
|| val
>= MAXSESSION
) return 0;
1221 // actually send a control message for a specific tunnel
1222 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1224 struct sockaddr_in addr
;
1230 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1231 STAT(tunnel_tx_errors
);
1235 if (t
== TUNNEL_ID_PPPOE
)
1237 pppoe_sess_send(buf
, l
, t
);
1243 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1244 STAT(tunnel_tx_errors
);
1248 memset(&addr
, 0, sizeof(addr
));
1249 addr
.sin_family
= AF_INET
;
1250 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1251 addr
.sin_port
= htons(tunnel
[t
].port
);
1253 // sequence expected, if sequence in message
1254 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1256 // If this is a control message, deal with retries
1259 tunnel
[t
].last
= time_now
; // control message sent
1260 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1263 STAT(tunnel_retries
);
1264 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1268 if (sendto(udpfd
[tunnel
[t
].indexudp
], buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1270 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1271 strerror(errno
), udpfd
[tunnel
[t
].indexudp
], buf
, l
, inet_ntoa(addr
.sin_addr
));
1272 STAT(tunnel_tx_errors
);
1276 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1277 STAT(tunnel_tx_packets
);
1278 INC_STAT(tunnel_tx_bytes
, l
);
1282 // Tiny helper function to write data to
1283 // the 'tun' device.
1285 int tun_write(uint8_t * data
, int size
)
1287 return write(tunfd
, data
, size
);
1290 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1291 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1293 int d
= (tcp
[12] >> 4) * 4;
1300 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1303 if (tcp
+ d
> buf
+ len
) // short?
1311 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1314 if (mss
+ 2 > data
) return; // short?
1318 if (*opts
== 0) return; // end of options
1319 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1322 opts
+= opts
[1]; // skip over option
1325 if (!mss
) return; // not found
1326 orig
= ntohs(*(uint16_t *) mss
);
1328 if (orig
<= MSS
) return; // mss OK
1330 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1331 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1332 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1333 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1336 *(int16_t *) mss
= htons(MSS
);
1338 // adjust checksum (see rfc1141)
1339 sum
= orig
+ (~MSS
& 0xffff);
1340 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1341 sum
= (sum
& 0xffff) + (sum
>> 16);
1342 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1345 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1349 // Skip the four extra bytes
1361 proto
= ntohs(*(uint16_t *) p
);
1369 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1370 return; // closing session, PPP not processed
1372 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1373 processipin(s
, t
, p
, l
);
1375 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1379 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1380 return; // closing session, PPP not processed
1383 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1384 processipv6in(s
, t
, p
, l
);
1386 else if (proto
== PPPIPCP
)
1388 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1389 processipcp(s
, t
, p
, l
);
1391 else if (proto
== PPPCCP
)
1393 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1394 processccp(s
, t
, p
, l
);
1398 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1402 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1404 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1405 sp
->cout_delta
+= len
;
1407 sp
->last_data
= time_now
;
1409 sess_local
[s
].cout
+= len
; // To send to master..
1410 sess_local
[s
].pout
++;
1413 // process outgoing (to tunnel) IP
1415 // (i.e. this routine writes to data[-8]).
1416 void processipout(uint8_t *buf
, int len
)
1421 in_addr_t ip
, ip_src
;
1423 uint8_t *data
= buf
; // Keep a copy of the originals.
1426 uint8_t fragbuf
[MAXETHER
+ 20];
1428 CSTAT(processipout
);
1430 if (len
< MIN_IP_SIZE
)
1432 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1433 STAT(tun_rx_errors
);
1436 if (len
>= MAXETHER
)
1438 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1439 STAT(tun_rx_errors
);
1443 // Skip the tun header
1447 // Got an IP header now
1448 if (*(uint8_t *)(buf
) >> 4 != 4)
1450 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1454 ip_src
= *(uint32_t *)(buf
+ 12);
1455 ip
= *(uint32_t *)(buf
+ 16);
1456 if (!(s
= sessionbyip(ip
)))
1458 // Is this a packet for a session that doesn't exist?
1459 static int rate
= 0; // Number of ICMP packets we've sent this second.
1460 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1462 if (last
!= time_now
)
1468 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1470 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1471 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1472 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1477 t
= session
[s
].tunnel
;
1478 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1480 LOG(3, s
, t
, "Packet size more than session MRU\n");
1486 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1487 if (config
->max_packets
> 0)
1489 if (sess_local
[s
].last_packet_out
== TIME
)
1491 int max
= config
->max_packets
;
1493 // All packets for throttled sessions are handled by the
1494 // master, so further limit by using the throttle rate.
1495 // A bit of a kludge, since throttle rate is in kbps,
1496 // but should still be generous given our average DSL
1497 // packet size is 200 bytes: a limit of 28kbps equates
1498 // to around 180 packets per second.
1499 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1500 max
= sp
->throttle_out
;
1502 if (++sess_local
[s
].packets_out
> max
)
1504 sess_local
[s
].packets_dropped
++;
1510 if (sess_local
[s
].packets_dropped
)
1512 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1513 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1514 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1515 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1519 sess_local
[s
].last_packet_out
= TIME
;
1520 sess_local
[s
].packets_out
= 1;
1521 sess_local
[s
].packets_dropped
= 0;
1525 // run access-list if any
1526 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1529 // adjust MSS on SYN and SYN,ACK packets with options
1530 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1532 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1533 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1534 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1539 if (!config
->no_throttle_local_IP
|| !sessionbyip(ip_src
))
1541 // Are we throttling this session?
1542 if (config
->cluster_iam_master
)
1543 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1545 master_throttle_packet(sp
->tbf_out
, data
, size
);
1550 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1552 // We are walled-gardening this
1553 master_garden_packet(s
, data
, size
);
1557 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1560 if (!config
->cluster_iam_master
)
1562 // The MPPP packets must be managed by the Master.
1563 master_forward_mppp_packet(s
, data
, size
);
1567 // Add on L2TP header
1568 sessionidt members
[MAXBUNDLESES
];
1569 bundleidt bid
= session
[s
].bundle
;
1570 bundlet
*b
= &bundle
[bid
];
1571 uint32_t num_of_links
, nb_opened
;
1574 num_of_links
= b
->num_of_links
;
1576 for (i
= 0;i
< num_of_links
;i
++)
1579 if (session
[s
].ppp
.lcp
== Opened
)
1581 members
[nb_opened
] = s
;
1588 LOG(3, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1592 num_of_links
= nb_opened
;
1593 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1594 s
= members
[b
->current_ses
];
1595 t
= session
[s
].tunnel
;
1597 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1599 if (num_of_links
> 1)
1601 if(len
> MINFRAGLEN
)
1603 //for rotate traffic among the member links
1604 uint32_t divisor
= num_of_links
;
1606 divisor
= divisor
/2 + (divisor
& 1);
1608 // Partition the packet to "num_of_links" fragments
1609 uint32_t fraglen
= len
/ divisor
;
1610 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1611 uint32_t remain
= len
;
1613 // send the first packet
1614 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1616 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1619 update_session_out_stat(s
, sp
, fraglen
);
1622 while (remain
> last_fraglen
)
1624 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1625 s
= members
[b
->current_ses
];
1626 t
= session
[s
].tunnel
;
1628 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1629 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1631 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1632 update_session_out_stat(s
, sp
, fraglen
);
1635 // send the last fragment
1636 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1637 s
= members
[b
->current_ses
];
1638 t
= session
[s
].tunnel
;
1640 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1641 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1643 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1644 update_session_out_stat(s
, sp
, remain
);
1645 if (remain
!= last_fraglen
)
1646 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1650 // Send it as one frame
1651 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1653 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1654 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1655 update_session_out_stat(s
, sp
, len
);
1660 // Send it as one frame (NO MPPP Frame)
1661 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1662 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1663 update_session_out_stat(s
, sp
, len
);
1668 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1669 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1670 update_session_out_stat(s
, sp
, len
);
1673 // Snooping this session, send it to intercept box
1674 if (sp
->snoop_ip
&& sp
->snoop_port
)
1675 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1680 // process outgoing (to tunnel) IPv6
1682 static void processipv6out(uint8_t * buf
, int len
)
1688 struct in6_addr ip6
;
1690 uint8_t *data
= buf
; // Keep a copy of the originals.
1693 uint8_t b
[MAXETHER
+ 20];
1695 CSTAT(processipv6out
);
1697 if (len
< MIN_IP_SIZE
)
1699 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1700 STAT(tunnel_tx_errors
);
1703 if (len
>= MAXETHER
)
1705 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1706 STAT(tunnel_tx_errors
);
1710 // Skip the tun header
1714 // Got an IP header now
1715 if (*(uint8_t *)(buf
) >> 4 != 6)
1717 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1721 ip6
= *(struct in6_addr
*)(buf
+24);
1722 s
= sessionbyipv6(ip6
);
1726 ip
= *(uint32_t *)(buf
+ 32);
1727 s
= sessionbyip(ip
);
1732 // Is this a packet for a session that doesn't exist?
1733 static int rate
= 0; // Number of ICMP packets we've sent this second.
1734 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1736 if (last
!= time_now
)
1742 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1744 // FIXME: Should send icmp6 host unreachable
1748 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1750 bundleidt bid
= session
[s
].bundle
;
1751 bundlet
*b
= &bundle
[bid
];
1753 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1754 s
= b
->members
[b
->current_ses
];
1755 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1757 t
= session
[s
].tunnel
;
1759 sp
->last_data
= time_now
;
1761 // FIXME: add DoS prevention/filters?
1765 // Are we throttling this session?
1766 if (config
->cluster_iam_master
)
1767 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1769 master_throttle_packet(sp
->tbf_out
, data
, size
);
1772 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1774 // We are walled-gardening this
1775 master_garden_packet(s
, data
, size
);
1779 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1781 // Add on L2TP header
1783 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1785 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1788 // Snooping this session, send it to intercept box
1789 if (sp
->snoop_ip
&& sp
->snoop_port
)
1790 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1792 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1793 sp
->cout_delta
+= len
;
1797 sess_local
[s
].cout
+= len
; // To send to master..
1798 sess_local
[s
].pout
++;
1802 // Helper routine for the TBF filters.
1803 // Used to send queued data in to the user!
1805 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1810 uint8_t *data
= buf
; // Keep a copy of the originals.
1812 uint8_t b
[MAXETHER
+ 20];
1814 if (len
< 0 || len
> MAXETHER
)
1816 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1820 // Skip the tun header
1827 t
= session
[s
].tunnel
;
1830 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1832 // Add on L2TP header
1833 if (*(uint16_t *) (data
+ 2) == htons(PKTIPV6
))
1834 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0); // IPV6
1836 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0); // IPV4
1840 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1842 // Snooping this session.
1843 if (sp
->snoop_ip
&& sp
->snoop_port
)
1844 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1846 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1847 sp
->cout_delta
+= len
;
1851 sess_local
[s
].cout
+= len
; // To send to master..
1852 sess_local
[s
].pout
++;
1855 // add an AVP (16 bit)
1856 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1858 uint16_t l
= (m
? 0x8008 : 0x0008);
1859 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1860 pint16
[0] = htons(l
);
1861 pint16
[1] = htons(0);
1862 pint16
[2] = htons(avp
);
1863 pint16
[3] = htons(val
);
1867 // add an AVP (32 bit)
1868 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1870 uint16_t l
= (m
? 0x800A : 0x000A);
1871 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1872 uint32_t *pint32
= (uint32_t *) (c
->buf
+ c
->length
+ 6);
1873 pint16
[0] = htons(l
);
1874 pint16
[1] = htons(0);
1875 pint16
[2] = htons(avp
);
1876 pint32
[0] = htonl(val
);
1880 // add an AVP (string)
1881 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1883 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1884 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1885 pint16
[0] = htons(l
);
1886 pint16
[1] = htons(0);
1887 pint16
[2] = htons(avp
);
1888 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1889 c
->length
+= 6 + strlen(val
);
1893 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1895 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1896 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1897 pint16
[0] = htons(l
);
1898 pint16
[1] = htons(0);
1899 pint16
[2] = htons(avp
);
1900 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1901 c
->length
+= 6 + len
;
1904 // new control connection
1905 static controlt
*controlnew(uint16_t mtype
)
1909 c
= malloc(sizeof(controlt
));
1913 controlfree
= c
->next
;
1917 c
->buf
[0] = 0xC8; // flags
1918 c
->buf
[1] = 0x02; // ver
1920 control16(c
, 0, mtype
, 1);
1924 // send zero block if nothing is waiting
1926 static void controlnull(tunnelidt t
)
1929 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1932 buf
[0] = htons(0xC802); // flags/ver
1933 buf
[1] = htons(12); // length
1934 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1935 buf
[3] = htons(0); // session
1936 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1937 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1938 tunnelsend((uint8_t *)buf
, 12, t
);
1941 // add a control message to a tunnel, and send if within window
1942 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1944 uint16_t *pint16
= (uint16_t *) (c
->buf
+ 2);
1945 pint16
[0] = htons(c
->length
); // length
1946 pint16
[1] = htons(tunnel
[t
].far
); // tunnel
1947 pint16
[2] = htons(far
); // session
1948 pint16
[3] = htons(tunnel
[t
].ns
); // sequence
1949 tunnel
[t
].ns
++; // advance sequence
1950 // link in message in to queue
1951 if (tunnel
[t
].controlc
)
1952 tunnel
[t
].controle
->next
= c
;
1954 tunnel
[t
].controls
= c
;
1956 tunnel
[t
].controle
= c
;
1957 tunnel
[t
].controlc
++;
1959 // send now if space in window
1960 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1962 tunnel
[t
].try = 0; // first send
1963 tunnelsend(c
->buf
, c
->length
, t
);
1968 // Throttle or Unthrottle a session
1970 // Throttle the data from/to through a session to no more than
1971 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1974 // If either value is -1, the current value is retained for that
1977 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1979 if (!session
[s
].opened
)
1980 return; // No-one home.
1982 if (!*session
[s
].user
)
1983 return; // User not logged in
1987 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1988 if (session
[s
].tbf_in
)
1989 free_tbf(session
[s
].tbf_in
);
1992 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1994 session
[s
].tbf_in
= 0;
1996 session
[s
].throttle_in
= rate_in
;
2001 int bytes
= rate_out
* 1024 / 8;
2002 if (session
[s
].tbf_out
)
2003 free_tbf(session
[s
].tbf_out
);
2006 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
2008 session
[s
].tbf_out
= 0;
2010 session
[s
].throttle_out
= rate_out
;
2014 // add/remove filters from session (-1 = no change)
2015 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
2017 if (!session
[s
].opened
)
2018 return; // No-one home.
2020 if (!*session
[s
].user
)
2021 return; // User not logged in
2024 if (filter_in
> MAXFILTER
) filter_in
= -1;
2025 if (filter_out
> MAXFILTER
) filter_out
= -1;
2026 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
2027 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
2031 if (session
[s
].filter_in
)
2032 ip_filters
[session
[s
].filter_in
- 1].used
--;
2035 ip_filters
[filter_in
- 1].used
++;
2037 session
[s
].filter_in
= filter_in
;
2040 if (filter_out
>= 0)
2042 if (session
[s
].filter_out
)
2043 ip_filters
[session
[s
].filter_out
- 1].used
--;
2046 ip_filters
[filter_out
- 1].used
++;
2048 session
[s
].filter_out
= filter_out
;
2052 // start tidy shutdown of session
2053 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
2055 int walled_garden
= session
[s
].walled_garden
;
2056 bundleidt b
= session
[s
].bundle
;
2057 //delete routes only for last session in bundle (in case of MPPP)
2058 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
2060 CSTAT(sessionshutdown
);
2062 if (!session
[s
].opened
)
2064 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
2065 return; // not a live session
2068 if (!session
[s
].die
)
2070 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
2071 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
2072 run_plugins(PLUGIN_KILL_SESSION
, &data
);
2075 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
2077 // RADIUS Stop message
2078 uint16_t r
= radiusnew(s
);
2081 // stop, if not already trying
2082 if (radius
[r
].state
!= RADIUSSTOP
)
2084 radius
[r
].term_cause
= term_cause
;
2085 radius
[r
].term_msg
= reason
;
2086 radiussend(r
, RADIUSSTOP
);
2090 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
2092 // Save counters to dump to accounting file
2093 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
2094 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
2097 if (!session
[s
].die
)
2098 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
2101 { // IP allocated, clear and unroute
2104 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
2106 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2107 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2110 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2111 session
[s
].route
[r
].ip
= 0;
2114 if (session
[s
].ip_pool_index
== -1) // static ip
2116 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2122 // unroute IPv6, if setup
2123 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
2124 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
2128 // This session was part of a bundle
2129 bundle
[b
].num_of_links
--;
2130 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2131 if(bundle
[b
].num_of_links
== 0)
2134 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2138 // Adjust the members array to accomodate the new change
2139 uint8_t mem_num
= 0;
2140 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2141 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2144 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2145 if(bundle
[b
].members
[ml
] == s
)
2150 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2151 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2153 // If the killed session is the first of the bundle,
2154 // the new first session must be stored in the cache_ipmap
2155 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2158 sessionidt new_s
= bundle
[b
].members
[0];
2161 // Add the route for this session.
2162 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2167 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2168 ip
= session
[new_s
].route
[r
].ip
;
2170 if (!prefixlen
) prefixlen
= 32;
2171 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2173 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2174 cache_ipmap(i
, new_s
);
2176 cache_ipmap(session
[new_s
].ip
, new_s
);
2179 if (session
[new_s
].ipv6prefixlen
)
2180 cache_ipv6map(session
[new_s
].ipv6route
, session
[new_s
].ipv6prefixlen
, new_s
);
2185 cluster_send_bundle(b
);
2189 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2190 throttle_session(s
, 0, 0);
2194 if (session
[s
].tunnel
== TUNNEL_ID_PPPOE
)
2196 pppoe_shutdown_session(s
);
2201 controlt
*c
= controlnew(14); // sending CDN
2205 buf
[0] = htons(cdn_result
);
2206 buf
[1] = htons(cdn_error
);
2207 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2210 control16(c
, 1, cdn_result
, 1);
2212 control16(c
, 14, s
, 1); // assigned session (our end)
2213 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2217 // update filter refcounts
2218 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2219 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2222 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2223 sess_local
[s
].lcp
.restart
= 0;
2224 sess_local
[s
].ipcp
.restart
= 0;
2225 sess_local
[s
].ipv6cp
.restart
= 0;
2226 sess_local
[s
].ccp
.restart
= 0;
2228 cluster_send_session(s
);
2231 void sendipcp(sessionidt s
, tunnelidt t
)
2233 uint8_t buf
[MAXETHER
];
2237 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2239 if (!session
[s
].unique_id
)
2241 if (!++last_id
) ++last_id
; // skip zero
2242 session
[s
].unique_id
= last_id
;
2245 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2249 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2250 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2251 q
[4] = 3; // ip address option
2252 q
[5] = 6; // option length
2253 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2254 config
->iftun_n_address
[tunnel
[t
].indexudp
] ? config
->iftun_n_address
[tunnel
[t
].indexudp
] :
2255 my_address
; // send my IP
2257 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2258 restart_timer(s
, ipcp
);
2261 void sendipv6cp(sessionidt s
, tunnelidt t
)
2263 uint8_t buf
[MAXETHER
];
2267 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2269 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2273 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2274 // only send one type
2276 *(uint16_t *) (q
+ 2) = htons(14);
2277 q
[4] = 1; // interface identifier option
2278 q
[5] = 10; // option length
2279 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2280 *(uint32_t *) (q
+ 10) = 0;
2283 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2284 restart_timer(s
, ipv6cp
);
2287 static void sessionclear(sessionidt s
)
2289 memset(&session
[s
], 0, sizeof(session
[s
]));
2290 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2291 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2293 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2294 session
[s
].next
= sessionfree
;
2298 // kill a session now
2299 void sessionkill(sessionidt s
, char *reason
)
2303 if (!session
[s
].opened
) // not alive
2306 if (session
[s
].next
)
2308 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2312 if (!session
[s
].die
)
2313 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2315 if (sess_local
[s
].radius
)
2316 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2318 if (session
[s
].forwardtosession
)
2320 sessionidt sess
= session
[s
].forwardtosession
;
2321 if (session
[sess
].forwardtosession
== s
)
2323 // Shutdown the linked session also.
2324 sessionshutdown(sess
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
2328 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2330 cluster_send_session(s
);
2333 static void tunnelclear(tunnelidt t
)
2336 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2337 tunnel
[t
].state
= TUNNELFREE
;
2340 static void bundleclear(bundleidt b
)
2343 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2344 bundle
[b
].state
= BUNDLEFREE
;
2347 // kill a tunnel now
2348 static void tunnelkill(tunnelidt t
, char *reason
)
2355 tunnel
[t
].state
= TUNNELDIE
;
2357 // free control messages
2358 while ((c
= tunnel
[t
].controls
))
2360 controlt
* n
= c
->next
;
2361 tunnel
[t
].controls
= n
;
2362 tunnel
[t
].controlc
--;
2363 c
->next
= controlfree
;
2367 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2368 if (session
[s
].tunnel
== t
)
2369 sessionkill(s
, reason
);
2373 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2374 cli_tunnel_actions
[t
].action
= 0;
2375 cluster_send_tunnel(t
);
2378 // shut down a tunnel cleanly
2379 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2383 CSTAT(tunnelshutdown
);
2385 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2387 // never set up, can immediately kill
2388 tunnelkill(t
, reason
);
2391 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2394 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2395 if (session
[s
].tunnel
== t
)
2396 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2398 tunnel
[t
].state
= TUNNELDIE
;
2399 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2400 cluster_send_tunnel(t
);
2401 // TBA - should we wait for sessions to stop?
2404 controlt
*c
= controlnew(4); // sending StopCCN
2409 buf
[0] = htons(result
);
2410 buf
[1] = htons(error
);
2413 int m
= strlen(msg
);
2414 if (m
+ 4 > sizeof(buf
))
2415 m
= sizeof(buf
) - 4;
2417 memcpy(buf
+2, msg
, m
);
2421 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2424 control16(c
, 1, result
, 1);
2426 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2427 controladd(c
, 0, t
); // send the message
2431 // read and process packet on tunnel (UDP)
2432 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, uint16_t indexudpfd
)
2434 uint8_t *sendchalresponse
= NULL
;
2435 uint8_t *recvchalresponse
= NULL
;
2436 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2437 uint8_t *p
= buf
+ 2;
2444 LOG_HEX(5, "UDP Data", buf
, len
);
2445 STAT(tunnel_rx_packets
);
2446 INC_STAT(tunnel_rx_bytes
, len
);
2449 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2450 STAT(tunnel_rx_errors
);
2453 if ((buf
[1] & 0x0F) != 2)
2455 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2456 STAT(tunnel_rx_errors
);
2461 l
= ntohs(*(uint16_t *) p
);
2464 t
= ntohs(*(uint16_t *) p
);
2466 s
= ntohs(*(uint16_t *) p
);
2468 if (s
>= MAXSESSION
)
2470 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2471 STAT(tunnel_rx_errors
);
2476 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2477 STAT(tunnel_rx_errors
);
2480 if (t
== TUNNEL_ID_PPPOE
)
2482 LOG(1, s
, t
, "Received UDP packet with tunnel ID reserved for pppoe\n");
2483 STAT(tunnel_rx_errors
);
2488 ns
= ntohs(*(uint16_t *) p
);
2490 nr
= ntohs(*(uint16_t *) p
);
2495 uint16_t o
= ntohs(*(uint16_t *) p
);
2500 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2501 STAT(tunnel_rx_errors
);
2506 // used to time out old tunnels
2507 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2508 tunnel
[t
].lastrec
= time_now
;
2512 uint16_t message
= 0xFFFF; // message type
2514 uint8_t mandatory
= 0;
2515 uint16_t asession
= 0; // assigned session
2516 uint32_t amagic
= 0; // magic number
2517 uint8_t aflags
= 0; // flags from last LCF
2518 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2519 char called
[MAXTEL
] = ""; // called number
2520 char calling
[MAXTEL
] = ""; // calling number
2522 if (!config
->cluster_iam_master
)
2524 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
2528 // control messages must have bits 0x80|0x40|0x08
2529 // (type, length and sequence) set, and bits 0x02|0x01
2530 // (offset and priority) clear
2531 if ((*buf
& 0xCB) != 0xC8)
2533 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2534 STAT(tunnel_rx_errors
);
2538 // check for duplicate tunnel open message
2544 // Is this a duplicate of the first packet? (SCCRQ)
2546 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2548 if (tunnel
[i
].state
!= TUNNELOPENING
||
2549 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2550 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2553 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2558 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2559 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2561 // if no tunnel specified, assign one
2564 if (!(t
= new_tunnel()))
2566 LOG(1, 0, 0, "No more tunnels\n");
2567 STAT(tunnel_overflow
);
2571 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2572 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2573 tunnel
[t
].window
= 4; // default window
2574 tunnel
[t
].indexudp
= indexudpfd
;
2575 STAT(tunnel_created
);
2576 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2577 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2580 // If the 'ns' just received is not the 'nr' we're
2581 // expecting, just send an ack and drop it.
2583 // if 'ns' is less, then we got a retransmitted packet.
2584 // if 'ns' is greater than missed a packet. Either way
2585 // we should ignore it.
2586 if (ns
!= tunnel
[t
].nr
)
2588 // is this the sequence we were expecting?
2589 STAT(tunnel_rx_errors
);
2590 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2591 t
, ns
, tunnel
[t
].nr
);
2593 if (l
) // Is this not a ZLB?
2598 // check sequence of this message
2600 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2601 // some to clear maybe?
2602 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2604 controlt
*c
= tunnel
[t
].controls
;
2605 tunnel
[t
].controls
= c
->next
;
2606 tunnel
[t
].controlc
--;
2607 c
->next
= controlfree
;
2610 tunnel
[t
].try = 0; // we have progress
2613 // receiver advance (do here so quoted correctly in any sends below)
2614 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2615 if (skip
< 0) skip
= 0;
2616 if (skip
< tunnel
[t
].controlc
)
2618 // some control packets can now be sent that were previous stuck out of window
2619 int tosend
= tunnel
[t
].window
- skip
;
2620 controlt
*c
= tunnel
[t
].controls
;
2628 tunnel
[t
].try = 0; // first send
2629 tunnelsend(c
->buf
, c
->length
, t
);
2634 if (!tunnel
[t
].controlc
)
2635 tunnel
[t
].retry
= 0; // caught up
2638 { // if not a null message
2643 // Default disconnect cause/message on receipt of CDN. Set to
2644 // more specific value from attribute 1 (result code) or 46
2645 // (disconnect cause) if present below.
2646 int disc_cause_set
= 0;
2647 int disc_cause
= TERM_NAS_REQUEST
;
2648 char const *disc_reason
= "Closed (Received CDN).";
2651 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2653 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2660 LOG(1, s
, t
, "Invalid length in AVP\n");
2661 STAT(tunnel_rx_errors
);
2666 if (flags
& 0x3C) // reserved bits, should be clear
2668 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2670 result
= 2; // general error
2671 error
= 3; // reserved field non-zero
2676 if (*(uint16_t *) (b
))
2678 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2680 result
= 2; // general error
2681 error
= 6; // generic vendor-specific error
2682 msg
= "unsupported vendor-specific";
2686 mtype
= ntohs(*(uint16_t *) (b
));
2694 // handle hidden AVPs
2695 if (!*config
->l2tp_secret
)
2697 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2699 result
= 2; // general error
2700 error
= 6; // generic vendor-specific error
2701 msg
= "secret not specified";
2704 if (!session
[s
].random_vector_length
)
2706 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2708 result
= 2; // general error
2709 error
= 6; // generic
2710 msg
= "no random vector";
2715 LOG(2, s
, t
, "Short hidden AVP.\n");
2717 result
= 2; // general error
2718 error
= 2; // length is wrong
2724 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2726 orig_len
= ntohs(*(uint16_t *) b
);
2727 if (orig_len
> n
+ 2)
2729 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2733 result
= 2; // general error
2734 error
= 2; // length is wrong
2743 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2744 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2748 case 0: // message type
2749 message
= ntohs(*(uint16_t *) b
);
2750 mandatory
= flags
& 0x80;
2751 LOG(4, s
, t
, " Message type = %u (%s)\n", message
, l2tp_code(message
));
2753 case 1: // result code
2755 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2756 char const *resdesc
= "(unknown)";
2757 char const *errdesc
= NULL
;
2762 resdesc
= l2tp_stopccn_result_code(rescode
);
2763 cause
= TERM_LOST_SERVICE
;
2765 else if (message
== 14)
2767 resdesc
= l2tp_cdn_result_code(rescode
);
2769 cause
= TERM_LOST_CARRIER
;
2771 cause
= TERM_ADMIN_RESET
;
2774 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2777 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2778 errdesc
= l2tp_error_code(errcode
);
2779 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2782 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2784 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2786 disc_cause_set
= mtype
;
2787 disc_reason
= errdesc
? errdesc
: resdesc
;
2794 case 2: // protocol version
2796 version
= ntohs(*(uint16_t *) (b
));
2797 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2798 if (version
&& version
!= 0x0100)
2799 { // allow 0.0 and 1.0
2800 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2802 result
= 5; // unspported protocol version
2803 error
= 0x0100; // supported version
2809 case 3: // framing capabilities
2811 case 4: // bearer capabilities
2813 case 5: // tie breaker
2814 // We never open tunnels, so we don't care about tie breakers
2816 case 6: // firmware revision
2818 case 7: // host name
2819 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2820 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2821 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2822 // TBA - to send to RADIUS
2824 case 8: // vendor name
2825 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2826 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2827 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2829 case 9: // assigned tunnel
2830 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2831 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2833 case 10: // rx window
2834 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2835 if (!tunnel
[t
].window
)
2836 tunnel
[t
].window
= 1; // window of 0 is silly
2837 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2839 case 11: // Request Challenge
2841 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2843 build_chap_response(b
, 2, n
, &sendchalresponse
);
2844 else if (message
== 2)
2845 build_chap_response(b
, 3, n
, &sendchalresponse
);
2848 case 13: // receive challenge Response
2849 if (tunnel
[t
].isremotelns
)
2851 recvchalresponse
= calloc(17, 1);
2852 memcpy(recvchalresponse
, b
, (n
< 17) ? n
: 16);
2853 LOG(3, s
, t
, "received challenge response from REMOTE LNS\n");
2856 // Why did they send a response? We never challenge.
2857 LOG(2, s
, t
, " received unexpected challenge response\n");
2860 case 14: // assigned session
2861 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2862 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2864 case 15: // call serial number
2865 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2867 case 18: // bearer type
2868 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2871 case 19: // framing type
2872 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2875 case 21: // called number
2876 memset(called
, 0, sizeof(called
));
2877 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2878 LOG(4, s
, t
, " Called <%s>\n", called
);
2880 case 22: // calling number
2881 memset(calling
, 0, sizeof(calling
));
2882 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2883 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2887 case 24: // tx connect speed
2890 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2894 // AS5300s send connect speed as a string
2896 memset(tmp
, 0, sizeof(tmp
));
2897 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2898 session
[s
].tx_connect_speed
= atol(tmp
);
2900 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2902 case 38: // rx connect speed
2905 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2909 // AS5300s send connect speed as a string
2911 memset(tmp
, 0, sizeof(tmp
));
2912 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2913 session
[s
].rx_connect_speed
= atol(tmp
);
2915 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2917 case 25: // Physical Channel ID
2919 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2920 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2923 case 29: // Proxy Authentication Type
2925 uint16_t atype
= ntohs(*(uint16_t *)b
);
2926 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2929 case 30: // Proxy Authentication Name
2932 memset(authname
, 0, sizeof(authname
));
2933 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2934 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2938 case 31: // Proxy Authentication Challenge
2940 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2943 case 32: // Proxy Authentication ID
2945 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2946 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2949 case 33: // Proxy Authentication Response
2950 LOG(4, s
, t
, " Proxy Auth Response\n");
2952 case 27: // last sent lcp
2953 { // find magic number
2954 uint8_t *p
= b
, *e
= p
+ n
;
2955 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2957 if (*p
== 5 && p
[1] == 6) // Magic-Number
2958 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2959 else if (*p
== 7) // Protocol-Field-Compression
2960 aflags
|= SESSION_PFC
;
2961 else if (*p
== 8) // Address-and-Control-Field-Compression
2962 aflags
|= SESSION_ACFC
;
2967 case 28: // last recv lcp confreq
2969 case 26: // Initial Received LCP CONFREQ
2971 case 39: // seq required - we control it as an LNS anyway...
2973 case 36: // Random Vector
2974 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2975 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2976 if (n
> sizeof(session
[s
].random_vector
))
2977 n
= sizeof(session
[s
].random_vector
);
2978 memcpy(session
[s
].random_vector
, b
, n
);
2979 session
[s
].random_vector_length
= n
;
2981 case 46: // ppp disconnect cause
2984 uint16_t code
= ntohs(*(uint16_t *) b
);
2985 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2986 uint8_t dir
= *(b
+ 4);
2988 LOG(4, s
, t
, " PPP disconnect cause "
2989 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2990 code
, proto
, dir
, n
- 5, b
+ 5);
2992 disc_cause_set
= mtype
;
2996 case 1: // admin disconnect
2997 disc_cause
= TERM_ADMIN_RESET
;
2998 disc_reason
= "Administrative disconnect";
3000 case 3: // lcp terminate
3001 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
3002 disc_cause
= TERM_USER_REQUEST
;
3003 disc_reason
= "Normal disconnection";
3005 case 4: // compulsory encryption unavailable
3006 if (dir
!= 1) break; // 1=refused by peer, 2=local
3007 disc_cause
= TERM_USER_ERROR
;
3008 disc_reason
= "Compulsory encryption refused";
3010 case 5: // lcp: fsm timeout
3011 disc_cause
= TERM_PORT_ERROR
;
3012 disc_reason
= "LCP: FSM timeout";
3014 case 6: // lcp: no recognisable lcp packets received
3015 disc_cause
= TERM_PORT_ERROR
;
3016 disc_reason
= "LCP: no recognisable LCP packets";
3018 case 7: // lcp: magic-no error (possibly looped back)
3019 disc_cause
= TERM_PORT_ERROR
;
3020 disc_reason
= "LCP: magic-no error (possible loop)";
3022 case 8: // lcp: echo request timeout
3023 disc_cause
= TERM_PORT_ERROR
;
3024 disc_reason
= "LCP: echo request timeout";
3026 case 13: // auth: fsm timeout
3027 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3028 disc_reason
= "Authentication: FSM timeout";
3030 case 15: // auth: unacceptable auth protocol
3031 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3032 disc_reason
= "Unacceptable authentication protocol";
3034 case 16: // auth: authentication failed
3035 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3036 disc_reason
= "Authentication failed";
3038 case 17: // ncp: fsm timeout
3039 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3040 disc_reason
= "NCP: FSM timeout";
3042 case 18: // ncp: no ncps available
3043 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3044 disc_reason
= "NCP: no NCPs available";
3046 case 19: // ncp: failure to converge on acceptable address
3047 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3048 disc_reason
= (dir
== 1)
3049 ? "NCP: too many Configure-Naks received from peer"
3050 : "NCP: too many Configure-Naks sent to peer";
3052 case 20: // ncp: user not permitted to use any address
3053 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3054 disc_reason
= (dir
== 1)
3055 ? "NCP: local link address not acceptable to peer"
3056 : "NCP: remote link address not acceptable";
3063 static char e
[] = "unknown AVP 0xXXXX";
3064 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
3066 result
= 2; // general error
3067 error
= 8; // unknown mandatory AVP
3068 sprintf((msg
= e
) + 14, "%04x", mtype
);
3075 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
3079 case 1: // SCCRQ - Start Control Connection Request
3080 tunnel
[t
].state
= TUNNELOPENING
;
3081 LOG(3, s
, t
, "Received SCCRQ\n");
3082 if (main_quit
!= QUIT_SHUTDOWN
)
3084 LOG(3, s
, t
, "sending SCCRP\n");
3085 controlt
*c
= controlnew(2); // sending SCCRP
3086 control16(c
, 2, version
, 1); // protocol version
3087 control32(c
, 3, 3, 1); // framing
3088 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3089 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Send Challenge response
3090 control16(c
, 9, t
, 1); // assigned tunnel
3091 controladd(c
, 0, t
); // send the resply
3095 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3099 tunnel
[t
].state
= TUNNELOPEN
;
3100 tunnel
[t
].lastrec
= time_now
;
3101 LOG(3, s
, t
, "Received SCCRP\n");
3102 if (main_quit
!= QUIT_SHUTDOWN
)
3104 if (tunnel
[t
].isremotelns
&& recvchalresponse
)
3108 lac_calc_rlns_auth(t
, 2, hash
); // id = 2 (SCCRP)
3109 // check authenticator
3110 if (memcmp(hash
, recvchalresponse
, 16) == 0)
3112 LOG(3, s
, t
, "sending SCCCN to REMOTE LNS\n");
3113 controlt
*c
= controlnew(3); // sending SCCCN
3114 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3115 controls(c
, 8, Vendor_name
, 1); // Vendor name
3116 control16(c
, 2, version
, 1); // protocol version
3117 control32(c
, 3, 3, 1); // framing Capabilities
3118 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Challenge response
3119 control16(c
, 9, t
, 1); // assigned tunnel
3120 controladd(c
, 0, t
); // send
3124 tunnelshutdown(t
, "Bad chap response from REMOTE LNS", 4, 0, 0);
3130 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3134 LOG(3, s
, t
, "Received SCCN\n");
3135 tunnel
[t
].state
= TUNNELOPEN
;
3136 tunnel
[t
].lastrec
= time_now
;
3137 controlnull(t
); // ack
3140 LOG(3, s
, t
, "Received StopCCN\n");
3141 controlnull(t
); // ack
3142 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
3145 LOG(3, s
, t
, "Received HELLO\n");
3146 controlnull(t
); // simply ACK
3150 LOG(3, s
, t
, "Received OCRQ\n");
3154 LOG(3, s
, t
, "Received OCRO\n");
3158 LOG(3, s
, t
, "Received OCCN\n");
3161 LOG(3, s
, t
, "Received ICRQ\n");
3162 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
3164 controlt
*c
= controlnew(11); // ICRP
3166 LOG(3, s
, t
, "Sending ICRP\n");
3169 sessionfree
= session
[s
].next
;
3170 memset(&session
[s
], 0, sizeof(session
[s
]));
3172 if (s
> config
->cluster_highest_sessionid
)
3173 config
->cluster_highest_sessionid
= s
;
3175 session
[s
].opened
= time_now
;
3176 session
[s
].tunnel
= t
;
3177 session
[s
].far
= asession
;
3178 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3179 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
3180 control16(c
, 14, s
, 1); // assigned session
3181 controladd(c
, asession
, t
); // send the reply
3183 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
3184 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3186 session
[s
].ppp
.phase
= Establish
;
3187 session
[s
].ppp
.lcp
= Starting
;
3189 STAT(session_created
);
3194 controlt
*c
= controlnew(14); // CDN
3195 LOG(3, s
, t
, "Sending CDN\n");
3198 STAT(session_overflow
);
3199 LOG(1, 0, t
, "No free sessions\n");
3200 control16(c
, 1, 4, 0); // temporary lack of resources
3203 control16(c
, 1, 2, 7); // shutting down, try another
3205 controladd(c
, asession
, t
); // send the message
3209 LOG(3, s
, t
, "Received ICRP\n");
3210 if (session
[s
].forwardtosession
)
3212 controlt
*c
= controlnew(12); // ICCN
3214 session
[s
].opened
= time_now
;
3215 session
[s
].tunnel
= t
;
3216 session
[s
].far
= asession
;
3217 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3219 control32(c
, 19, 1, 1); // Framing Type
3220 control32(c
, 24, 10000000, 1); // Tx Connect Speed
3221 controladd(c
, asession
, t
); // send the message
3222 LOG(3, s
, t
, "Sending ICCN\n");
3226 LOG(3, s
, t
, "Received ICCN\n");
3227 if (amagic
== 0) amagic
= time_now
;
3228 session
[s
].magic
= amagic
; // set magic number
3229 session
[s
].flags
= aflags
; // set flags received
3230 session
[s
].mru
= PPPoE_MRU
; // default
3231 controlnull(t
); // ack
3234 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3235 sess_local
[s
].ppp_mru
= MRU
;
3237 // Set multilink options before sending initial LCP packet
3238 sess_local
[s
].mp_mrru
= 1614;
3239 sess_local
[s
].mp_epdis
= ntohl(config
->iftun_address
? config
->iftun_address
: my_address
);
3242 change_state(s
, lcp
, RequestSent
);
3246 LOG(3, s
, t
, "Received CDN\n");
3247 controlnull(t
); // ack
3248 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3251 LOG(1, s
, t
, "Missing message type\n");
3254 STAT(tunnel_rx_errors
);
3256 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3258 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3261 if (sendchalresponse
) free(sendchalresponse
);
3262 if (recvchalresponse
) free(recvchalresponse
);
3263 cluster_send_tunnel(t
);
3267 LOG(4, s
, t
, " Got a ZLB ack\n");
3274 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3275 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3276 { // HDLC address header, discard
3282 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3283 STAT(tunnel_rx_errors
);
3293 proto
= ntohs(*(uint16_t *) p
);
3298 if (session
[s
].forwardtosession
)
3300 LOG(5, s
, t
, "Forwarding data session to session %u\n", session
[s
].forwardtosession
);
3301 // Forward to LAC/BAS or Remote LNS session
3302 lac_session_forward(buf
, len
, s
, proto
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3305 else if (config
->auth_tunnel_change_addr_src
)
3307 if (tunnel
[t
].ip
!= ntohl(addr
->sin_addr
.s_addr
) &&
3308 tunnel
[t
].port
== ntohs(addr
->sin_port
))
3310 // The remotes BAS are a clustered l2tpns server and the source IP has changed
3311 LOG(5, s
, t
, "The tunnel IP source (%s) has changed by new IP (%s)\n",
3312 fmtaddr(htonl(tunnel
[t
].ip
), 0), fmtaddr(addr
->sin_addr
.s_addr
, 0));
3314 tunnel
[t
].ip
= ntohl(addr
->sin_addr
.s_addr
);
3318 if (s
&& !session
[s
].opened
) // Is something wrong??
3320 if (!config
->cluster_iam_master
)
3322 // Pass it off to the master to deal with..
3323 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3327 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3328 STAT(tunnel_rx_errors
);
3332 if (proto
== PPPPAP
)
3334 session
[s
].last_packet
= time_now
;
3335 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3336 processpap(s
, t
, p
, l
);
3338 else if (proto
== PPPCHAP
)
3340 session
[s
].last_packet
= time_now
;
3341 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3342 processchap(s
, t
, p
, l
);
3344 else if (proto
== PPPLCP
)
3346 session
[s
].last_packet
= time_now
;
3347 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3348 processlcp(s
, t
, p
, l
);
3350 else if (proto
== PPPIPCP
)
3352 session
[s
].last_packet
= time_now
;
3353 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3354 processipcp(s
, t
, p
, l
);
3356 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3358 session
[s
].last_packet
= time_now
;
3359 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3360 processipv6cp(s
, t
, p
, l
);
3362 else if (proto
== PPPCCP
)
3364 session
[s
].last_packet
= time_now
;
3365 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3366 processccp(s
, t
, p
, l
);
3368 else if (proto
== PPPIP
)
3372 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3373 return; // closing session, PPP not processed
3376 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3377 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3379 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3383 processipin(s
, t
, p
, l
);
3385 else if (proto
== PPPMP
)
3389 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3390 return; // closing session, PPP not processed
3393 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3394 if (!config
->cluster_iam_master
)
3396 // The fragments reconstruction is managed by the Master.
3397 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3401 processmpin(s
, t
, p
, l
);
3403 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3407 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3408 return; // closing session, PPP not processed
3411 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3412 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3414 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3418 processipv6in(s
, t
, p
, l
);
3420 else if (session
[s
].ppp
.lcp
== Opened
)
3422 session
[s
].last_packet
= time_now
;
3423 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3424 protoreject(s
, t
, p
, l
, proto
);
3428 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3429 proto
, ppp_state(session
[s
].ppp
.lcp
));
3434 // read and process packet on tun
3435 // (i.e. this routine writes to buf[-8]).
3436 static void processtun(uint8_t * buf
, int len
)
3438 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3439 STAT(tun_rx_packets
);
3440 INC_STAT(tun_rx_bytes
, len
);
3448 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3449 STAT(tun_rx_errors
);
3453 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3454 processipout(buf
, len
);
3455 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3456 && config
->ipv6_prefix
.s6_addr
[0])
3457 processipv6out(buf
, len
);
3462 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3463 // that we look at the whole of the tunnel, radius and session tables
3465 static void regular_cleanups(double period
)
3467 // Next tunnel, radius and session to check for actions on.
3468 static tunnelidt t
= 0;
3470 static sessionidt s
= 0;
3483 // divide up tables into slices based on the last run
3484 t_slice
= config
->cluster_highest_tunnelid
* period
;
3485 r_slice
= (MAXRADIUS
- 1) * period
;
3486 s_slice
= config
->cluster_highest_sessionid
* period
;
3490 else if (t_slice
> config
->cluster_highest_tunnelid
)
3491 t_slice
= config
->cluster_highest_tunnelid
;
3495 else if (r_slice
> (MAXRADIUS
- 1))
3496 r_slice
= MAXRADIUS
- 1;
3500 else if (s_slice
> config
->cluster_highest_sessionid
)
3501 s_slice
= config
->cluster_highest_sessionid
;
3503 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3505 for (i
= 0; i
< t_slice
; i
++)
3508 if (t
> config
->cluster_highest_tunnelid
)
3511 if (t
== TUNNEL_ID_PPPOE
)
3514 // check for expired tunnels
3515 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3517 STAT(tunnel_timeout
);
3518 tunnelkill(t
, "Expired");
3522 // check for message resend
3523 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3525 // resend pending messages as timeout on reply
3526 if (tunnel
[t
].retry
<= TIME
)
3528 controlt
*c
= tunnel
[t
].controls
;
3529 uint16_t w
= tunnel
[t
].window
;
3530 tunnel
[t
].try++; // another try
3531 if (tunnel
[t
].try > 5)
3532 tunnelkill(t
, "Timeout on control message"); // game over
3536 tunnelsend(c
->buf
, c
->length
, t
);
3544 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3546 if (!config
->disable_sending_hello
)
3548 controlt
*c
= controlnew(6); // sending HELLO
3549 controladd(c
, 0, t
); // send the message
3550 LOG(3, 0, t
, "Sending HELLO message\n");
3555 // Check for tunnel changes requested from the CLI
3556 if ((a
= cli_tunnel_actions
[t
].action
))
3558 cli_tunnel_actions
[t
].action
= 0;
3559 if (a
& CLI_TUN_KILL
)
3561 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3562 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3568 for (i
= 0; i
< r_slice
; i
++)
3574 if (!radius
[r
].state
)
3577 if (radius
[r
].retry
<= TIME
)
3584 for (i
= 0; i
< s_slice
; i
++)
3587 if (s
> config
->cluster_highest_sessionid
)
3590 if (!session
[s
].opened
) // Session isn't in use
3593 // check for expired sessions
3596 if (session
[s
].die
<= TIME
)
3598 sessionkill(s
, "Expired");
3605 if (sess_local
[s
].lcp
.restart
<= time_now
)
3607 int next_state
= session
[s
].ppp
.lcp
;
3608 switch (session
[s
].ppp
.lcp
)
3612 next_state
= RequestSent
;
3615 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3617 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3618 sendlcp(s
, session
[s
].tunnel
);
3619 change_state(s
, lcp
, next_state
);
3623 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3624 STAT(session_timeout
);
3634 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3636 int next_state
= session
[s
].ppp
.ipcp
;
3637 switch (session
[s
].ppp
.ipcp
)
3641 next_state
= RequestSent
;
3644 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3646 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3647 sendipcp(s
, session
[s
].tunnel
);
3648 change_state(s
, ipcp
, next_state
);
3652 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3653 STAT(session_timeout
);
3663 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3665 int next_state
= session
[s
].ppp
.ipv6cp
;
3666 switch (session
[s
].ppp
.ipv6cp
)
3670 next_state
= RequestSent
;
3673 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3675 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3676 sendipv6cp(s
, session
[s
].tunnel
);
3677 change_state(s
, ipv6cp
, next_state
);
3681 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3682 change_state(s
, ipv6cp
, Stopped
);
3689 if (sess_local
[s
].ccp
.restart
<= time_now
)
3691 int next_state
= session
[s
].ppp
.ccp
;
3692 switch (session
[s
].ppp
.ccp
)
3696 next_state
= RequestSent
;
3699 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3701 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3702 sendccp(s
, session
[s
].tunnel
);
3703 change_state(s
, ccp
, next_state
);
3707 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3708 change_state(s
, ccp
, Stopped
);
3715 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3716 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3718 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3719 STAT(session_timeout
);
3724 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3725 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= config
->echo_timeout
) &&
3726 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3728 uint8_t b
[MAXETHER
];
3730 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3734 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3735 *(uint16_t *)(q
+ 2) = htons(8); // Length
3736 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3738 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3739 (int)(time_now
- session
[s
].last_packet
));
3741 tunnelsend(b
, (q
- b
) + 8, session
[s
].tunnel
); // send it
3742 sess_local
[s
].last_echo
= time_now
;
3746 // Drop sessions who have reached session_timeout seconds
3747 if (session
[s
].session_timeout
)
3749 bundleidt bid
= session
[s
].bundle
;
3752 if (time_now
- bundle
[bid
].last_check
>= 1)
3754 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3755 bundle
[bid
].last_check
= time_now
;
3756 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3759 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3761 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3768 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3770 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3776 // Drop sessions who have reached idle_timeout seconds
3777 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3779 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3780 STAT(session_timeout
);
3785 // Check for actions requested from the CLI
3786 if ((a
= cli_session_actions
[s
].action
))
3790 cli_session_actions
[s
].action
= 0;
3791 if (a
& CLI_SESS_KILL
)
3793 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3794 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3795 a
= 0; // dead, no need to check for other actions
3799 if (a
& CLI_SESS_NOSNOOP
)
3801 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3802 session
[s
].snoop_ip
= 0;
3803 session
[s
].snoop_port
= 0;
3807 else if (a
& CLI_SESS_SNOOP
)
3809 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3810 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3811 cli_session_actions
[s
].snoop_port
);
3813 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3814 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3819 if (a
& CLI_SESS_NOTHROTTLE
)
3821 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3822 throttle_session(s
, 0, 0);
3826 else if (a
& CLI_SESS_THROTTLE
)
3828 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3829 cli_session_actions
[s
].throttle_in
,
3830 cli_session_actions
[s
].throttle_out
);
3832 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3837 if (a
& CLI_SESS_NOFILTER
)
3839 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3840 filter_session(s
, 0, 0);
3844 else if (a
& CLI_SESS_FILTER
)
3846 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3847 cli_session_actions
[s
].filter_in
,
3848 cli_session_actions
[s
].filter_out
);
3850 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3856 cluster_send_session(s
);
3859 // RADIUS interim accounting
3860 if (config
->radius_accounting
&& config
->radius_interim
> 0
3861 && session
[s
].ip
&& !session
[s
].walled_garden
3862 && !sess_local
[s
].radius
// RADIUS already in progress
3863 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3864 && session
[s
].flags
& SESSION_STARTED
)
3866 int rad
= radiusnew(s
);
3869 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3870 STAT(radius_overflow
);
3874 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3875 session
[s
].user
, session
[s
].unique_id
);
3877 radiussend(rad
, RADIUSINTERIM
);
3878 sess_local
[s
].last_interim
= time_now
;
3883 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3884 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3888 // Are we in the middle of a tunnel update, or radius
3891 static int still_busy(void)
3894 static clockt last_talked
= 0;
3895 static clockt start_busy_wait
= 0;
3898 static time_t stopped_bgp
= 0;
3903 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3905 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3906 if (bgp_peers
[i
].state
== Established
)
3907 bgp_stop(&bgp_peers
[i
]);
3909 stopped_bgp
= time_now
;
3911 if (!config
->cluster_iam_master
)
3913 // we don't want to become master
3914 cluster_send_ping(0);
3920 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3925 if (!config
->cluster_iam_master
)
3928 if (main_quit
== QUIT_SHUTDOWN
)
3930 static int dropped
= 0;
3935 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3936 for (i
= 1; i
< MAXTUNNEL
; i
++)
3937 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3938 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3944 if (start_busy_wait
== 0)
3945 start_busy_wait
= TIME
;
3947 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3949 if (!tunnel
[i
].controlc
)
3952 if (last_talked
!= TIME
)
3954 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3960 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3961 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3963 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3967 for (i
= 1; i
< MAXRADIUS
; i
++)
3969 if (radius
[i
].state
== RADIUSNULL
)
3971 if (radius
[i
].state
== RADIUSWAIT
)
3974 if (last_talked
!= TIME
)
3976 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3986 # include <sys/epoll.h>
3988 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3989 # include "fake_epoll.h"
3992 // the base set of fds polled: cli, cluster, tun, udp (MAX_UDPFD), control, dae, netlink, udplac, pppoedisc, pppoesess
3993 #define BASE_FDS (9 + MAX_UDPFD)
3995 // additional polled fds
3997 # define EXTRA_FDS BGP_NUM_PEERS
3999 # define EXTRA_FDS 0
4002 // main loop - gets packets on tun or udp and processes them
4003 static void mainloop(void)
4007 uint8_t *p
= buf
+ 32; // for the hearder of the forwarded MPPP packet (see C_MPPP_FORWARD)
4008 // and the forwarded pppoe session
4009 int size_bufp
= sizeof(buf
) - 32;
4010 clockt next_cluster_ping
= 0; // send initial ping immediately
4011 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
4012 int maxevent
= sizeof(events
)/sizeof(*events
);
4014 if ((epollfd
= epoll_create(maxevent
)) < 0)
4016 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
4020 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",
4021 clifd
, cluster_sockfd
, tunfd
, udpfd
[0], controlfd
, daefd
, nlfd
, udplacfd
, pppoediscfd
, pppoesessfd
);
4023 /* setup our fds to poll for input */
4025 static struct event_data d
[BASE_FDS
];
4026 struct epoll_event e
;
4033 d
[i
].type
= FD_TYPE_CLI
;
4034 e
.data
.ptr
= &d
[i
++];
4035 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
4038 d
[i
].type
= FD_TYPE_CLUSTER
;
4039 e
.data
.ptr
= &d
[i
++];
4040 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
4042 d
[i
].type
= FD_TYPE_TUN
;
4043 e
.data
.ptr
= &d
[i
++];
4044 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
4046 d
[i
].type
= FD_TYPE_CONTROL
;
4047 e
.data
.ptr
= &d
[i
++];
4048 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
4050 d
[i
].type
= FD_TYPE_DAE
;
4051 e
.data
.ptr
= &d
[i
++];
4052 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
4054 d
[i
].type
= FD_TYPE_NETLINK
;
4055 e
.data
.ptr
= &d
[i
++];
4056 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
4058 d
[i
].type
= FD_TYPE_PPPOEDISC
;
4059 e
.data
.ptr
= &d
[i
++];
4060 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoediscfd
, &e
);
4062 d
[i
].type
= FD_TYPE_PPPOESESS
;
4063 e
.data
.ptr
= &d
[i
++];
4064 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoesessfd
, &e
);
4066 for (j
= 0; j
< config
->nbudpfd
; j
++)
4068 d
[i
].type
= FD_TYPE_UDP
;
4070 e
.data
.ptr
= &d
[i
++];
4071 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
[j
], &e
);
4076 signal(SIGPIPE
, SIG_IGN
);
4077 bgp_setup(config
->as_number
);
4078 if (config
->bind_address
)
4079 bgp_add_route(config
->bind_address
, 0xffffffff);
4081 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
4083 if (config
->neighbour
[i
].name
[0])
4084 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
4085 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
4086 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
4087 0); /* 0 = routing disabled */
4091 while (!main_quit
|| still_busy())
4101 config
->reload_config
++;
4104 if (config
->reload_config
)
4106 config
->reload_config
= 0;
4114 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
4115 STAT(select_called
);
4120 if (errno
== EINTR
||
4121 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
4124 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
4130 struct sockaddr_in addr
;
4131 struct in_addr local
;
4134 int udp_ready
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4135 int pppoesess_ready
= 0;
4136 int pppoesess_pkts
= 0;
4138 int cluster_ready
= 0;
4139 int udp_pkts
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4141 int cluster_pkts
= 0;
4143 uint32_t bgp_events
[BGP_NUM_PEERS
];
4144 memset(bgp_events
, 0, sizeof(bgp_events
));
4147 for (c
= n
, i
= 0; i
< c
; i
++)
4149 struct event_data
*d
= events
[i
].data
.ptr
;
4153 case FD_TYPE_CLI
: // CLI connections
4157 alen
= sizeof(addr
);
4158 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
4164 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
4170 // these are handled below, with multiple interleaved reads
4171 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
4172 case FD_TYPE_TUN
: tun_ready
++; break;
4173 case FD_TYPE_UDP
: udp_ready
[d
->index
]++; break;
4174 case FD_TYPE_PPPOESESS
: pppoesess_ready
++; break;
4176 case FD_TYPE_PPPOEDISC
: // pppoe discovery
4177 s
= read(pppoediscfd
, p
, size_bufp
);
4178 if (s
> 0) process_pppoe_disc(p
, s
);
4182 case FD_TYPE_CONTROL
: // nsctl commands
4183 alen
= sizeof(addr
);
4184 s
= recvfromto(controlfd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4185 if (s
> 0) processcontrol(p
, s
, &addr
, alen
, &local
);
4189 case FD_TYPE_DAE
: // DAE requests
4190 alen
= sizeof(addr
);
4191 s
= recvfromto(daefd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4192 if (s
> 0) processdae(p
, s
, &addr
, alen
, &local
);
4196 case FD_TYPE_RADIUS
: // RADIUS response
4197 alen
= sizeof(addr
);
4198 s
= recvfrom(radfds
[d
->index
], p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
4199 if (s
>= 0 && config
->cluster_iam_master
)
4201 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
4202 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
4203 processrad(p
, s
, d
->index
);
4205 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
4206 fmtaddr(addr
.sin_addr
.s_addr
, 0));
4214 bgp_events
[d
->index
] = events
[i
].events
;
4219 case FD_TYPE_NETLINK
:
4221 struct nlmsghdr
*nh
= (struct nlmsghdr
*)p
;
4222 s
= netlink_recv(p
, size_bufp
);
4223 if (nh
->nlmsg_type
== NLMSG_ERROR
)
4225 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
4228 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
4230 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
4234 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
4239 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
);
4245 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
4250 bgp_process(bgp_events
);
4253 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4255 for (j
= 0; j
< config
->nbudpfd
; j
++)
4257 // L2TP and L2TP REMOTE LNS
4260 alen
= sizeof(addr
);
4261 if ((s
= recvfrom(udpfd
[j
], p
, size_bufp
, 0, (void *) &addr
, &alen
)) > 0)
4263 processudp(p
, s
, &addr
, j
);
4277 if ((s
= read(tunfd
, p
, size_bufp
)) > 0)
4290 if (pppoesess_ready
)
4292 if ((s
= read(pppoesessfd
, p
, size_bufp
)) > 0)
4294 process_pppoe_sess(p
, s
);
4299 pppoesess_ready
= 0;
4307 alen
= sizeof(addr
);
4308 if ((s
= recvfrom(cluster_sockfd
, p
, size_bufp
, MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4310 processcluster(p
, s
, addr
.sin_addr
.s_addr
);
4321 if (udp_pkts
[0] > 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4322 STAT(multi_read_used
);
4324 if (c
>= config
->multi_read_count
)
4326 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun %d cluster and %d pppoe packets\n",
4327 config
->multi_read_count
, udp_pkts
[0], tun_pkts
, cluster_pkts
, pppoesess_pkts
);
4328 STAT(multi_read_exceeded
);
4334 /* no event received, but timers could still have expired */
4335 bgp_process_peers_timers();
4340 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4342 // Log current traffic stats
4343 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4344 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4345 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4346 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4347 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4349 udp_tx
= udp_rx
= 0;
4350 udp_rx_pkt
= eth_rx_pkt
= 0;
4351 eth_tx
= eth_rx
= 0;
4354 if (config
->dump_speed
)
4355 printf("%s\n", config
->bandwidth
);
4357 // Update the internal time counter
4358 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4362 struct param_timer p
= { time_now
};
4363 run_plugins(PLUGIN_TIMER
, &p
);
4367 // Runs on every machine (master and slaves).
4368 if (next_cluster_ping
<= TIME
)
4370 // Check to see which of the cluster is still alive..
4372 cluster_send_ping(basetime
); // Only does anything if we're a slave
4373 cluster_check_master(); // ditto.
4375 cluster_heartbeat(); // Only does anything if we're a master.
4376 cluster_check_slaves(); // ditto.
4378 master_update_counts(); // If we're a slave, send our byte counters to our master.
4380 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4381 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4383 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4386 if (!config
->cluster_iam_master
)
4389 // Run token bucket filtering queue..
4390 // Only run it every 1/10th of a second.
4392 static clockt last_run
= 0;
4393 if (last_run
!= TIME
)
4400 // Handle timeouts, retries etc.
4402 static double last_clean
= 0;
4406 TIME
= now(&this_clean
);
4407 diff
= this_clean
- last_clean
;
4409 // Run during idle time (after we've handled
4410 // all incoming packets) or every 1/10th sec
4411 if (!more
|| diff
> 0.1)
4413 regular_cleanups(diff
);
4414 last_clean
= this_clean
;
4418 if (*config
->accounting_dir
)
4420 static clockt next_acct
= 0;
4421 static clockt next_shut_acct
= 0;
4423 if (next_acct
<= TIME
)
4425 // Dump accounting data
4426 next_acct
= TIME
+ ACCT_TIME
;
4427 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4430 else if (next_shut_acct
<= TIME
)
4432 // Dump accounting data for shutdown sessions
4433 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4440 // Are we the master and shutting down??
4441 if (config
->cluster_iam_master
)
4442 cluster_heartbeat(); // Flush any queued changes..
4444 // Ok. Notify everyone we're shutting down. If we're
4445 // the master, this will force an election.
4446 cluster_send_ping(0);
4449 // Important!!! We MUST not process any packets past this point!
4450 LOG(1, 0, 0, "Shutdown complete\n");
4453 static void stripdomain(char *host
)
4457 if ((p
= strchr(host
, '.')))
4463 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4469 while (fgets(buf
, sizeof(buf
), resolv
))
4471 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4474 if (!isspace(buf
[6]))
4478 while (isspace(*b
)) b
++;
4483 while (*b
&& !isspace(*b
)) b
++;
4485 if (buf
[0] == 'd') // domain is canonical
4491 // first search line
4494 // hold, may be subsequent domain line
4495 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4506 int hl
= strlen(host
);
4507 int dl
= strlen(domain
);
4508 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4509 host
[hl
-dl
- 1] = 0;
4513 *p
= 0; // everything after first dot
4518 // Init data structures
4519 static void initdata(int optdebug
, char *optconfig
)
4523 if (!(config
= shared_malloc(sizeof(configt
))))
4525 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4529 memset(config
, 0, sizeof(configt
));
4530 time(&config
->start_time
);
4531 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4532 config
->debug
= optdebug
;
4533 config
->num_tbfs
= MAXTBFS
;
4534 config
->rl_rate
= 28; // 28kbps
4535 config
->cluster_mcast_ttl
= 1;
4536 config
->cluster_master_min_adv
= 1;
4537 config
->ppp_restart_time
= 3;
4538 config
->ppp_max_configure
= 10;
4539 config
->ppp_max_failure
= 5;
4540 config
->kill_timedout_sessions
= 1;
4541 strcpy(config
->random_device
, RANDOMDEVICE
);
4542 // Set default value echo_timeout and idle_echo_timeout
4543 config
->echo_timeout
= ECHO_TIMEOUT
;
4544 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4546 log_stream
= stderr
;
4549 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4551 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4554 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4557 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4559 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4562 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4564 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4567 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4569 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4572 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4574 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4577 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4579 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4583 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4585 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4589 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4591 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4595 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4597 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4601 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4603 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4606 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4608 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4610 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4613 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4615 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4617 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4620 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4622 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4623 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4624 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4625 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4626 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4628 // Put all the sessions on the free list marked as undefined.
4629 for (i
= 1; i
< MAXSESSION
; i
++)
4631 session
[i
].next
= i
+ 1;
4632 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4634 session
[MAXSESSION
- 1].next
= 0;
4637 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4638 for (i
= 1; i
< MAXTUNNEL
; i
++)
4639 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4641 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4642 bundle
[i
].state
= BUNDLEUNDEF
;
4647 // Grab my hostname unless it's been specified
4648 gethostname(hostname
, sizeof(hostname
));
4649 stripdomain(hostname
);
4652 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4655 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4657 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4662 lac_initremotelnsdata();
4665 static int assign_ip_address(sessionidt s
)
4669 time_t best_time
= time_now
;
4670 char *u
= session
[s
].user
;
4674 CSTAT(assign_ip_address
);
4676 for (i
= 1; i
< ip_pool_size
; i
++)
4678 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4681 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4688 if (ip_address_pool
[i
].last
< best_time
)
4691 if (!(best_time
= ip_address_pool
[i
].last
))
4692 break; // never used, grab this one
4698 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4702 session
[s
].ip
= ip_address_pool
[best
].address
;
4703 session
[s
].ip_pool_index
= best
;
4704 ip_address_pool
[best
].assigned
= 1;
4705 ip_address_pool
[best
].last
= time_now
;
4706 ip_address_pool
[best
].session
= s
;
4707 if (session
[s
].walled_garden
)
4708 /* Don't track addresses of users in walled garden (note: this
4709 means that their address isn't "sticky" even if they get
4711 ip_address_pool
[best
].user
[0] = 0;
4713 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4716 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4717 reuse
? "Reusing" : "Allocating", best
);
4722 static void free_ip_address(sessionidt s
)
4724 int i
= session
[s
].ip_pool_index
;
4727 CSTAT(free_ip_address
);
4730 return; // what the?
4732 if (i
< 0) // Is this actually part of the ip pool?
4736 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4738 ip_address_pool
[i
].assigned
= 0;
4739 ip_address_pool
[i
].session
= 0;
4740 ip_address_pool
[i
].last
= time_now
;
4744 // Fsck the address pool against the session table.
4745 // Normally only called when we become a master.
4747 // This isn't perfect: We aren't keep tracking of which
4748 // users used to have an IP address.
4750 void rebuild_address_pool(void)
4755 // Zero the IP pool allocation, and build
4756 // a map from IP address to pool index.
4757 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4759 ip_address_pool
[i
].assigned
= 0;
4760 ip_address_pool
[i
].session
= 0;
4761 if (!ip_address_pool
[i
].address
)
4764 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4767 for (i
= 0; i
< MAXSESSION
; ++i
)
4770 if (!(session
[i
].opened
&& session
[i
].ip
))
4773 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4775 if (session
[i
].ip_pool_index
< 0)
4777 // Not allocated out of the pool.
4778 if (ipid
< 1) // Not found in the pool either? good.
4781 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4782 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4784 // Fall through and process it as part of the pool.
4788 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4790 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4792 session
[i
].ip_pool_index
= ipid
;
4796 ip_address_pool
[ipid
].assigned
= 1;
4797 ip_address_pool
[ipid
].session
= i
;
4798 ip_address_pool
[ipid
].last
= time_now
;
4799 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4800 session
[i
].ip_pool_index
= ipid
;
4801 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4806 // Fix the address pool to match a changed session.
4807 // (usually when the master sends us an update).
4808 static void fix_address_pool(int sid
)
4812 ipid
= session
[sid
].ip_pool_index
;
4814 if (ipid
> ip_pool_size
)
4815 return; // Ignore it. rebuild_address_pool will fix it up.
4817 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4818 return; // Just ignore it. rebuild_address_pool will take care of it.
4820 ip_address_pool
[ipid
].assigned
= 1;
4821 ip_address_pool
[ipid
].session
= sid
;
4822 ip_address_pool
[ipid
].last
= time_now
;
4823 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4827 // Add a block of addresses to the IP pool to hand out.
4829 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4833 prefixlen
= 32; // Host route only.
4835 addr
&= 0xffffffff << (32 - prefixlen
);
4837 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4840 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4842 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4843 continue; // Skip 0 and broadcast addresses.
4845 ip_address_pool
[ip_pool_size
].address
= i
;
4846 ip_address_pool
[ip_pool_size
].assigned
= 0;
4848 if (ip_pool_size
>= MAXIPPOOL
)
4850 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4856 // Initialize the IP address pool
4857 static void initippool()
4862 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4864 if (!(f
= fopen(IPPOOLFILE
, "r")))
4866 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4870 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4873 buf
[4095] = 0; // Force it to be zero terminated/
4875 if (*buf
== '#' || *buf
== '\n')
4876 continue; // Skip comments / blank lines
4877 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4878 if ((p
= (char *)strchr(buf
, ':')))
4882 src
= inet_addr(buf
);
4883 if (src
== INADDR_NONE
)
4885 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4888 // This entry is for a specific IP only
4889 if (src
!= config
->bind_address
)
4894 if ((p
= (char *)strchr(pool
, '/')))
4898 in_addr_t start
= 0;
4900 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4902 if (!*p
|| !(numbits
= atoi(p
)))
4904 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4907 start
= ntohl(inet_addr(pool
));
4909 // Add a static route for this pool
4910 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4911 fmtaddr(htonl(start
), 0), numbits
);
4913 routeset(0, start
, numbits
, 0, 1);
4915 add_to_ip_pool(start
, numbits
);
4919 // It's a single ip address
4920 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4924 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4927 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4929 struct sockaddr_in snoop_addr
= {0};
4930 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4933 snoop_addr
.sin_family
= AF_INET
;
4934 snoop_addr
.sin_addr
.s_addr
= destination
;
4935 snoop_addr
.sin_port
= ntohs(port
);
4937 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4938 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4939 htons(snoop_addr
.sin_port
));
4941 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4942 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4944 STAT(packets_snooped
);
4947 static int dump_session(FILE **f
, sessiont
*s
)
4949 if (!s
->opened
|| (!s
->ip
&& !s
->forwardtosession
) || !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4954 char filename
[1024];
4956 time_t now
= time(NULL
);
4958 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4959 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4961 if (!(*f
= fopen(filename
, "w")))
4963 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4967 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4968 if(config
->account_all_origin
)
4970 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4975 "# format: username ip qos uptxoctets downrxoctets origin(L=LAC, R=Remote LNS, P=PPPOE)\n",
4977 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
4983 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4988 "# format: username ip qos uptxoctets downrxoctets\n",
4990 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
4996 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4997 if(config
->account_all_origin
)
4999 fprintf(*f
, "%s %s %d %u %u %s\n",
5000 s
->user
, // username
5001 fmtaddr(htonl(s
->ip
), 0), // ip
5002 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5003 (uint32_t) s
->cin_delta
, // uptxoctets
5004 (uint32_t) s
->cout_delta
, // downrxoctets
5005 (s
->tunnel
== TUNNEL_ID_PPPOE
)?"P":(tunnel
[s
->tunnel
].isremotelns
?"R":"L")); // Origin
5007 else if (!tunnel
[s
->tunnel
].isremotelns
&& (s
->tunnel
!= TUNNEL_ID_PPPOE
))
5009 fprintf(*f
, "%s %s %d %u %u\n",
5010 s
->user
, // username
5011 fmtaddr(htonl(s
->ip
), 0), // ip
5012 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5013 (uint32_t) s
->cin_delta
, // uptxoctets
5014 (uint32_t) s
->cout_delta
); // downrxoctets
5017 s
->cin_delta
= s
->cout_delta
= 0;
5022 static void dump_acct_info(int all
)
5028 CSTAT(dump_acct_info
);
5032 for (i
= 0; i
< shut_acct_n
; i
++)
5033 dump_session(&f
, &shut_acct
[i
]);
5039 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5040 dump_session(&f
, &session
[i
]);
5047 int main(int argc
, char *argv
[])
5051 char *optconfig
= CONFIGFILE
;
5053 time(&basetime
); // start clock
5056 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
5061 if (fork()) exit(0);
5063 if(!freopen("/dev/null", "r", stdin
)) LOG(0, 0, 0, "Error freopen stdin: %s\n", strerror(errno
));
5064 if(!freopen("/dev/null", "w", stdout
)) LOG(0, 0, 0, "Error freopen stdout: %s\n", strerror(errno
));
5065 if(!freopen("/dev/null", "w", stderr
)) LOG(0, 0, 0, "Error freopen stderr: %s\n", strerror(errno
));
5074 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
5077 printf("Args are:\n"
5078 "\t-d\t\tDetach from terminal\n"
5079 "\t-c <file>\tConfig file\n"
5080 "\t-h <hostname>\tForce hostname\n"
5088 // Start the timer routine off
5090 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
5093 initdata(optdebug
, optconfig
);
5097 /* set hostname /after/ having read the config file */
5098 if (*config
->hostname
)
5099 strcpy(hostname
, config
->hostname
);
5100 cli_init_complete(hostname
);
5102 init_tbf(config
->num_tbfs
);
5104 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
5105 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
5106 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
5109 rlim
.rlim_cur
= RLIM_INFINITY
;
5110 rlim
.rlim_max
= RLIM_INFINITY
;
5111 // Remove the maximum core size
5112 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
5113 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
5115 // Make core dumps go to /tmp
5116 if(chdir("/tmp")) LOG(0, 0, 0, "Error chdir /tmp: %s\n", strerror(errno
));
5119 if (config
->scheduler_fifo
)
5122 struct sched_param params
= {0};
5123 params
.sched_priority
= 1;
5125 if (get_nprocs() < 2)
5127 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
5128 config
->scheduler_fifo
= 0;
5132 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
5134 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
5138 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
5139 config
->scheduler_fifo
= 0;
5146 /* Set up the cluster communications port. */
5147 if (cluster_init() < 0)
5151 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevicename
);
5153 if (*config
->pppoe_if_to_bind
)
5156 LOG(1, 0, 0, "Set up on pppoe interface %s\n", config
->pppoe_if_to_bind
);
5159 if (!config
->nbmultiaddress
)
5161 config
->bind_n_address
[0] = config
->bind_address
;
5162 config
->nbmultiaddress
++;
5164 config
->nbudpfd
= config
->nbmultiaddress
;
5165 for (i
= 0; i
< config
->nbudpfd
; i
++)
5166 initudp(&udpfd
[i
], config
->bind_n_address
[i
]);
5168 config
->indexlacudpfd
= config
->nbudpfd
;
5169 udpfd
[config
->indexlacudpfd
] = udplacfd
;
5176 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
5183 unsigned seed
= time_now
^ getpid();
5184 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
5188 signal(SIGHUP
, sighup_handler
);
5189 signal(SIGCHLD
, sigchild_handler
);
5190 signal(SIGTERM
, shutdown_handler
);
5191 signal(SIGINT
, shutdown_handler
);
5192 signal(SIGQUIT
, shutdown_handler
);
5194 // Prevent us from getting paged out
5195 if (config
->lock_pages
)
5197 if (!mlockall(MCL_CURRENT
))
5198 LOG(1, 0, 0, "Locking pages into memory\n");
5200 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
5205 /* remove plugins (so cleanup code gets run) */
5208 // Remove the PID file if we wrote it
5209 if (config
->wrote_pid
&& *config
->pid_file
== '/')
5210 unlink(config
->pid_file
);
5212 /* kill CLI children */
5213 signal(SIGTERM
, SIG_IGN
);
5218 static void sighup_handler(int sig
)
5223 static void shutdown_handler(int sig
)
5225 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
5228 static void sigchild_handler(int sig
)
5230 while (waitpid(-1, NULL
, WNOHANG
) > 0)
5234 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
5237 *challenge_response
= NULL
;
5239 if (!*config
->l2tp_secret
)
5241 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
5245 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
5247 *challenge_response
= calloc(17, 1);
5250 MD5_Update(&ctx
, &id
, 1);
5251 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5252 MD5_Update(&ctx
, challenge
, challenge_length
);
5253 MD5_Final(*challenge_response
, &ctx
);
5258 static int facility_value(char *name
)
5261 for (i
= 0; facilitynames
[i
].c_name
; i
++)
5263 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
5264 return facilitynames
[i
].c_val
;
5269 static void update_config()
5273 static int timeout
= 0;
5274 static int interval
= 0;
5281 if (log_stream
!= stderr
)
5287 if (*config
->log_filename
)
5289 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
5291 char *p
= config
->log_filename
+ 7;
5294 openlog("l2tpns", LOG_PID
, facility_value(p
));
5298 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
5300 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
5302 fseek(log_stream
, 0, SEEK_END
);
5303 setbuf(log_stream
, NULL
);
5307 log_stream
= stderr
;
5308 setbuf(log_stream
, NULL
);
5314 log_stream
= stderr
;
5315 setbuf(log_stream
, NULL
);
5318 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
5319 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
5321 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
5322 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
5323 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5325 // reset MRU/MSS globals
5326 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5327 if (MRU
> PPPoE_MRU
)
5330 MSS
= MRU
- TCP_HDRS
;
5333 config
->numradiusservers
= 0;
5334 for (i
= 0; i
< MAXRADSERVER
; i
++)
5335 if (config
->radiusserver
[i
])
5337 config
->numradiusservers
++;
5338 // Set radius port: if not set, take the port from the
5339 // first radius server. For the first radius server,
5340 // take the #defined default value from l2tpns.h
5342 // test twice, In case someone works with
5343 // a secondary radius server without defining
5344 // a primary one, this will work even then.
5345 if (i
> 0 && !config
->radiusport
[i
])
5346 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5347 if (!config
->radiusport
[i
])
5348 config
->radiusport
[i
] = RADPORT
;
5351 if (!config
->numradiusservers
)
5352 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5354 // parse radius_authtypes_s
5355 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5356 p
= config
->radius_authtypes_s
;
5359 char *s
= strpbrk(p
, " \t,");
5365 while (*s
== ' ' || *s
== '\t')
5372 if (!strncasecmp("chap", p
, strlen(p
)))
5374 else if (!strncasecmp("pap", p
, strlen(p
)))
5377 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5379 config
->radius_authtypes
|= type
;
5380 if (!config
->radius_authprefer
)
5381 config
->radius_authprefer
= type
;
5386 if (!config
->radius_authtypes
)
5388 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5389 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5392 // normalise radius_authtypes_s
5393 if (config
->radius_authprefer
== AUTHPAP
)
5395 strcpy(config
->radius_authtypes_s
, "pap");
5396 if (config
->radius_authtypes
& AUTHCHAP
)
5397 strcat(config
->radius_authtypes_s
, ", chap");
5401 strcpy(config
->radius_authtypes_s
, "chap");
5402 if (config
->radius_authtypes
& AUTHPAP
)
5403 strcat(config
->radius_authtypes_s
, ", pap");
5406 if (!config
->radius_dae_port
)
5407 config
->radius_dae_port
= DAEPORT
;
5409 if(!config
->bind_portremotelns
)
5410 config
->bind_portremotelns
= L2TPLACPORT
;
5411 if(!config
->bind_address_remotelns
)
5412 config
->bind_address_remotelns
= INADDR_ANY
;
5414 if (*config
->bind_multi_address
)
5416 char *sip
= config
->bind_multi_address
;
5418 char *e
= config
->bind_multi_address
+ strlen(config
->bind_multi_address
);
5419 config
->nbmultiaddress
= 0;
5421 while (*sip
&& (sip
< e
))
5426 while (n
< e
&& (*n
== ',' || *n
== ' ')) n
++;
5428 while (n
< e
&& (isdigit(*n
) || *n
== '.'))
5436 u
= u
* 10 + *n
- '0';
5444 config
->bind_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5445 config
->iftun_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5446 config
->nbmultiaddress
++;
5447 LOG(1, 0, 0, "Bind address %s\n", fmtaddr(htonl(ip
), 0));
5449 if (config
->nbmultiaddress
>= MAX_BINDADDR
) break;
5455 if (config
->nbmultiaddress
>= 1)
5457 config
->bind_address
= config
->bind_n_address
[0];
5458 config
->iftun_address
= config
->bind_address
;
5462 if(!config
->iftun_address
)
5464 config
->iftun_address
= config
->bind_address
;
5465 config
->iftun_n_address
[0] = config
->iftun_address
;
5468 if (*config
->multi_hostname
)
5470 char *shost
= config
->multi_hostname
;
5472 char *e
= config
->multi_hostname
+ strlen(config
->multi_hostname
);
5473 config
->nbmultihostname
= 0;
5475 while (*shost
&& (shost
< e
))
5477 while ((n
< e
) && (*n
== ' ' || *n
== ',' || *n
== '\t')) n
++;
5480 while (n
< e
&& (*n
!= ',') && (*n
!= '\t'))
5482 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = *n
;
5488 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = 0;
5489 LOG(1, 0, 0, "Bind Hostname %s\n", config
->multi_n_hostname
[config
->nbmultihostname
]);
5490 config
->nbmultihostname
++;
5491 if (config
->nbmultihostname
>= MAX_NBHOSTNAME
) break;
5497 if (config
->nbmultihostname
>= 1)
5499 strcpy(hostname
, config
->multi_n_hostname
[0]);
5500 strcpy(config
->hostname
, hostname
);
5504 if (!*config
->pppoe_ac_name
)
5505 strncpy(config
->pppoe_ac_name
, DEFAULT_PPPOE_AC_NAME
, sizeof(config
->pppoe_ac_name
) - 1);
5507 // re-initialise the random number source
5508 initrandom(config
->random_device
);
5511 for (i
= 0; i
< MAXPLUGINS
; i
++)
5513 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5516 if (*config
->plugins
[i
])
5519 add_plugin(config
->plugins
[i
]);
5521 else if (*config
->old_plugins
[i
])
5524 remove_plugin(config
->old_plugins
[i
]);
5529 guest_accounts_num
= 0;
5530 char *p2
= config
->guest_user
;
5533 char *s
= strpbrk(p2
, " \t,");
5537 while (*s
== ' ' || *s
== '\t')
5544 strcpy(guest_users
[guest_accounts_num
], p2
);
5545 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5546 guest_accounts_num
++;
5549 // Rebuild the guest_user array
5550 strcpy(config
->guest_user
, "");
5552 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5554 strcat(config
->guest_user
, guest_users
[ui
]);
5555 if (ui
<guest_accounts_num
-1)
5557 strcat(config
->guest_user
, ",");
5562 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5563 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5564 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5565 if (!*config
->cluster_interface
)
5566 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5568 if (!config
->cluster_hb_interval
)
5569 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5571 if (!config
->cluster_hb_timeout
)
5572 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5574 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5576 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5577 // late, ensure we're sufficiently larger than that
5578 int t
= 4 * config
->cluster_hb_interval
+ 11;
5580 if (config
->cluster_hb_timeout
< t
)
5582 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5583 config
->cluster_hb_timeout
= t
;
5586 // Push timing changes to the slaves immediately if we're the master
5587 if (config
->cluster_iam_master
)
5588 cluster_heartbeat();
5590 interval
= config
->cluster_hb_interval
;
5591 timeout
= config
->cluster_hb_timeout
;
5595 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5598 if ((f
= fopen(config
->pid_file
, "w")))
5600 fprintf(f
, "%d\n", getpid());
5602 config
->wrote_pid
= 1;
5606 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5611 static void read_config_file()
5615 if (!config
->config_file
) return;
5616 if (!(f
= fopen(config
->config_file
, "r")))
5618 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5622 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5624 LOG(3, 0, 0, "Done reading config file\n");
5628 int sessionsetup(sessionidt s
, tunnelidt t
)
5630 // A session now exists, set it up
5636 CSTAT(sessionsetup
);
5638 LOG(3, s
, t
, "Doing session setup for session\n");
5640 // Join a bundle if the MRRU option is accepted
5641 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5643 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5644 if (join_bundle(s
) > 0)
5645 cluster_send_bundle(session
[s
].bundle
);
5648 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5649 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5656 assign_ip_address(s
);
5659 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5660 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5663 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5664 fmtaddr(htonl(session
[s
].ip
), 0));
5667 // Make sure this is right
5668 session
[s
].tunnel
= t
;
5670 // zap old sessions with same IP and/or username
5671 // Don't kill gardened sessions - doing so leads to a DoS
5672 // from someone who doesn't need to know the password
5675 user
= session
[s
].user
;
5676 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5678 if (i
== s
) continue;
5679 if (!session
[s
].opened
) break;
5680 // Allow duplicate sessions for multilink ones of the same bundle.
5681 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
) continue;
5683 if (ip
== session
[i
].ip
)
5685 sessionshutdown(i
, "Duplicate IP address", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5689 if (config
->allow_duplicate_users
) continue;
5690 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5694 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5696 if (!strcasecmp(user
, guest_users
[gu
]))
5702 if (found
) continue;
5704 // Drop the new session in case of duplicate sessionss, not the old one.
5705 if (!strcasecmp(user
, session
[i
].user
))
5706 sessionshutdown(i
, "Duplicate session for users", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5710 // no need to set a route for the same IP address of the bundle
5711 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5715 // Add the route for this session.
5716 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5718 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5719 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5722 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5725 // Static IPs need to be routed if not already
5726 // convered by a Framed-Route. Anything else is part
5727 // of the IP address pool and is already routed, it
5728 // just needs to be added to the IP cache.
5729 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5730 if (session
[s
].ip_pool_index
== -1) // static ip
5732 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5735 cache_ipmap(session
[s
].ip
, s
);
5738 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5739 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5741 // Run the plugin's against this new session.
5743 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5744 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5747 // Allocate TBFs if throttled
5748 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5749 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5751 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5753 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5754 fmtaddr(htonl(session
[s
].ip
), 0),
5755 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5757 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5759 return 1; // RADIUS OK and IP allocated, done...
5763 // This session just got dropped on us by the master or something.
5764 // Make sure our tables up up to date...
5766 int load_session(sessionidt s
, sessiont
*new)
5772 if (new->ip_pool_index
>= MAXIPPOOL
||
5773 new->tunnel
>= MAXTUNNEL
)
5775 LOG(0, s
, 0, "Strange session update received!\n");
5776 // FIXME! What to do here?
5781 // Ok. All sanity checks passed. Now we're committed to
5782 // loading the new session.
5785 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5787 // See if routes/ip cache need updating
5788 if (new->ip
!= session
[s
].ip
)
5791 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5792 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5793 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5801 // remove old routes...
5802 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5804 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5805 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5808 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5814 if (session
[s
].ip_pool_index
== -1) // static IP
5816 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5818 else // It's part of the IP pool, remove it manually.
5819 uncache_ipmap(session
[s
].ip
);
5822 // remove old IPV6 routes...
5823 if (session
[s
].ipv6route
.s6_addr
[0] && session
[s
].ipv6prefixlen
)
5824 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
5828 // add new routes...
5829 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5831 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5832 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5835 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5841 // If there's a new one, add it.
5842 if (new->ip_pool_index
== -1)
5844 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5847 cache_ipmap(new->ip
, s
);
5852 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5853 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5856 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5858 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5862 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5864 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5865 new->filter_out
= 0;
5868 if (new->filter_in
!= session
[s
].filter_in
)
5870 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5871 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5874 if (new->filter_out
!= session
[s
].filter_out
)
5876 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5877 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5880 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5881 // for walking the sessions to forward byte counts to the master.
5882 config
->cluster_highest_sessionid
= s
;
5884 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5886 // Do fixups into address pool.
5887 if (new->ip_pool_index
!= -1)
5888 fix_address_pool(s
);
5893 static void initplugins()
5897 loaded_plugins
= ll_init();
5898 // Initialize the plugins to nothing
5899 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5900 plugins
[i
] = ll_init();
5903 static void *open_plugin(char *plugin_name
, int load
)
5905 char path
[256] = "";
5907 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5908 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5909 return dlopen(path
, RTLD_NOW
);
5912 // plugin callback to get a config value
5913 static void *getconfig(char *key
, enum config_typet type
)
5917 for (i
= 0; config_values
[i
].key
; i
++)
5919 if (!strcmp(config_values
[i
].key
, key
))
5921 if (config_values
[i
].type
== type
)
5922 return ((void *) config
) + config_values
[i
].offset
;
5924 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5925 key
, type
, config_values
[i
].type
);
5931 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5935 static int add_plugin(char *plugin_name
)
5937 static struct pluginfuncs funcs
= {
5942 sessiontbysessionidt
,
5943 sessionidtbysessiont
,
5950 cluster_send_session
,
5953 void *p
= open_plugin(plugin_name
, 1);
5954 int (*initfunc
)(struct pluginfuncs
*);
5959 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5963 if (ll_contains(loaded_plugins
, p
))
5966 return 0; // already loaded
5970 int *v
= dlsym(p
, "plugin_api_version");
5971 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5973 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5979 if ((initfunc
= dlsym(p
, "plugin_init")))
5981 if (!initfunc(&funcs
))
5983 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5989 ll_push(loaded_plugins
, p
);
5991 for (i
= 0; i
< max_plugin_functions
; i
++)
5994 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5996 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5997 ll_push(plugins
[i
], x
);
6001 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
6005 static void run_plugin_done(void *plugin
)
6007 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
6013 static int remove_plugin(char *plugin_name
)
6015 void *p
= open_plugin(plugin_name
, 0);
6021 if (ll_contains(loaded_plugins
, p
))
6024 for (i
= 0; i
< max_plugin_functions
; i
++)
6027 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
6028 ll_delete(plugins
[i
], x
);
6031 ll_delete(loaded_plugins
, p
);
6037 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
6041 int run_plugins(int plugin_type
, void *data
)
6043 int (*func
)(void *data
);
6045 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
6046 return PLUGIN_RET_ERROR
;
6048 ll_reset(plugins
[plugin_type
]);
6049 while ((func
= ll_next(plugins
[plugin_type
])))
6053 if (r
!= PLUGIN_RET_OK
)
6054 return r
; // stop here
6057 return PLUGIN_RET_OK
;
6060 static void plugins_done()
6064 ll_reset(loaded_plugins
);
6065 while ((p
= ll_next(loaded_plugins
)))
6069 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
6071 struct nsctl request
;
6072 struct nsctl response
;
6073 int type
= unpack_control(&request
, buf
, len
);
6077 if (log_stream
&& config
->debug
>= 4)
6081 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
6082 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
6086 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6087 dump_control(&request
, log_stream
);
6093 case NSCTL_REQ_LOAD
:
6094 if (request
.argc
!= 1)
6096 response
.type
= NSCTL_RES_ERR
;
6098 response
.argv
[0] = "name of plugin required";
6100 else if ((r
= add_plugin(request
.argv
[0])) < 1)
6102 response
.type
= NSCTL_RES_ERR
;
6104 response
.argv
[0] = !r
6105 ? "plugin already loaded"
6106 : "error loading plugin";
6110 response
.type
= NSCTL_RES_OK
;
6116 case NSCTL_REQ_UNLOAD
:
6117 if (request
.argc
!= 1)
6119 response
.type
= NSCTL_RES_ERR
;
6121 response
.argv
[0] = "name of plugin required";
6123 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
6125 response
.type
= NSCTL_RES_ERR
;
6127 response
.argv
[0] = !r
6128 ? "plugin not loaded"
6129 : "plugin not found";
6133 response
.type
= NSCTL_RES_OK
;
6139 case NSCTL_REQ_HELP
:
6140 response
.type
= NSCTL_RES_OK
;
6143 ll_reset(loaded_plugins
);
6144 while ((p
= ll_next(loaded_plugins
)))
6146 char **help
= dlsym(p
, "plugin_control_help");
6147 while (response
.argc
< 0xff && help
&& *help
)
6148 response
.argv
[response
.argc
++] = *help
++;
6153 case NSCTL_REQ_CONTROL
:
6155 struct param_control param
= {
6156 config
->cluster_iam_master
,
6163 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
6165 if (r
== PLUGIN_RET_ERROR
)
6167 response
.type
= NSCTL_RES_ERR
;
6169 response
.argv
[0] = param
.additional
6171 : "error returned by plugin";
6173 else if (r
== PLUGIN_RET_NOTMASTER
)
6175 static char msg
[] = "must be run on master: 000.000.000.000";
6177 response
.type
= NSCTL_RES_ERR
;
6179 if (config
->cluster_master_address
)
6181 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
6182 response
.argv
[0] = msg
;
6186 response
.argv
[0] = "must be run on master: none elected";
6189 else if (!(param
.response
& NSCTL_RESPONSE
))
6191 response
.type
= NSCTL_RES_ERR
;
6193 response
.argv
[0] = param
.response
6194 ? "unrecognised response value from plugin"
6195 : "unhandled action";
6199 response
.type
= param
.response
;
6201 if (param
.additional
)
6204 response
.argv
[0] = param
.additional
;
6212 response
.type
= NSCTL_RES_ERR
;
6214 response
.argv
[0] = "error unpacking control packet";
6217 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
6220 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
6224 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
6227 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
6228 if (log_stream
&& config
->debug
>= 4)
6230 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6231 dump_control(&response
, log_stream
);
6235 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
6236 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
6241 static tunnelidt
new_tunnel()
6244 for (i
= 1; i
< MAXTUNNEL
; i
++)
6246 if ((tunnel
[i
].state
== TUNNELFREE
) && (i
!= TUNNEL_ID_PPPOE
))
6248 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
6249 if (i
> config
->cluster_highest_tunnelid
)
6250 config
->cluster_highest_tunnelid
= i
;
6254 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
6259 // We're becoming the master. Do any required setup..
6261 // This is principally telling all the plugins that we're
6262 // now a master, and telling them about all the sessions
6263 // that are active too..
6265 void become_master(void)
6268 static struct event_data d
[RADIUS_FDS
];
6269 struct epoll_event e
;
6271 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
6273 // running a bunch of iptables commands is slow and can cause
6274 // the master to drop tunnels on takeover--kludge around the
6275 // problem by forking for the moment (note: race)
6276 if (!fork_and_close())
6278 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6280 if (!session
[s
].opened
) // Not an in-use session.
6283 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
6290 for (i
= 0; i
< RADIUS_FDS
; i
++)
6292 d
[i
].type
= FD_TYPE_RADIUS
;
6296 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
6300 int cmd_show_hist_idle(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6306 if (CLI_HELP_REQUESTED
)
6307 return CLI_HELP_NO_ARGS
;
6310 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6312 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6315 if (!session
[s
].opened
)
6318 idle
= time_now
- session
[s
].last_data
;
6319 idle
/= 5 ; // In multiples of 5 seconds.
6329 for (i
= 0; i
< 63; ++i
)
6331 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6333 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
6334 cli_print(cli
, "%d total sessions open.", count
);
6338 int cmd_show_hist_open(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6344 if (CLI_HELP_REQUESTED
)
6345 return CLI_HELP_NO_ARGS
;
6348 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6350 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6353 if (!session
[s
].opened
)
6356 d
= time_now
- session
[s
].opened
;
6359 while (d
> 1 && open
< 32)
6369 for (i
= 0; i
< 30; ++i
)
6371 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6374 cli_print(cli
, "%d total sessions open.", count
);
6380 * This unencodes the AVP using the L2TP secret and the previously
6381 * stored random vector. It overwrites the hidden data with the
6382 * unhidden AVP subformat.
6384 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
6390 uint16_t m
= htons(type
);
6392 // Compute initial pad
6394 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
6395 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6396 MD5_Update(&ctx
, vector
, vec_len
);
6397 MD5_Final(digest
, &ctx
);
6399 // pointer to last decoded 16 octets
6404 // calculate a new pad based on the last decoded block
6405 if (d
>= sizeof(digest
))
6408 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6409 MD5_Update(&ctx
, last
, sizeof(digest
));
6410 MD5_Final(digest
, &ctx
);
6416 *value
++ ^= digest
[d
++];
6421 int find_filter(char const *name
, size_t len
)
6426 for (i
= 0; i
< MAXFILTER
; i
++)
6428 if (!*ip_filters
[i
].name
)
6436 if (strlen(ip_filters
[i
].name
) != len
)
6439 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6446 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6450 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6451 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6452 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6453 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6454 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6460 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6464 case FILTER_FLAG_OP_ANY
:
6465 return (flags
& sflags
) || (~flags
& cflags
);
6467 case FILTER_FLAG_OP_ALL
:
6468 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6470 case FILTER_FLAG_OP_EST
:
6471 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6477 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6479 uint16_t frag_offset
;
6483 uint16_t src_port
= 0;
6484 uint16_t dst_port
= 0;
6486 ip_filter_rulet
*rule
;
6488 if (len
< 20) // up to end of destination address
6491 if ((*buf
>> 4) != 4) // IPv4
6494 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6496 src_ip
= *(in_addr_t
*) (buf
+ 12);
6497 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6499 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6501 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6502 if (len
< l
+ 4) // ports
6505 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6506 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6507 if (proto
== IPPROTO_TCP
)
6509 if (len
< l
+ 14) // flags
6512 flags
= buf
[l
+ 13] & 0x3f;
6516 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6518 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6521 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6522 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6525 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6526 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6531 // layer 4 deny rules are skipped
6532 if (rule
->action
== FILTER_ACTION_DENY
&&
6533 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6541 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6543 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6546 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6549 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6550 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6557 return rule
->action
== FILTER_ACTION_PERMIT
;
6564 tunnelidt
lac_new_tunnel()
6566 return new_tunnel();
6569 void lac_tunnelclear(tunnelidt t
)
6574 void lac_send_SCCRQ(tunnelidt t
, uint8_t * auth
, unsigned int auth_len
)
6576 uint16_t version
= 0x0100; // protocol version
6578 tunnel
[t
].state
= TUNNELOPENING
;
6580 // Sent SCCRQ - Start Control Connection Request
6581 controlt
*c
= controlnew(1); // sending SCCRQ
6582 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
6583 controls(c
, 8, Vendor_name
, 1); // Vendor name
6584 control16(c
, 2, version
, 1); // protocol version
6585 control32(c
, 3, 3, 1); // framing Capabilities
6586 control16(c
, 9, t
, 1); // assigned tunnel
6587 controlb(c
, 11, (uint8_t *) auth
, auth_len
, 1); // CHAP Challenge
6588 LOG(3, 0, t
, "Sent SCCRQ to REMOTE LNS\n");
6589 controladd(c
, 0, t
); // send
6592 void lac_send_ICRQ(tunnelidt t
, sessionidt s
)
6594 // Sent ICRQ Incoming-call-request
6595 controlt
*c
= controlnew(10); // ICRQ
6597 control16(c
, 14, s
, 1); // assigned sesion
6598 call_serial_number
++;
6599 control32(c
, 15, call_serial_number
, 1); // call serial number
6600 LOG(3, s
, t
, "Sent ICRQ to REMOTE LNS (far ID %u)\n", tunnel
[t
].far
);
6601 controladd(c
, 0, t
); // send
6604 void lac_tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
6606 tunnelshutdown(t
, reason
, result
, error
, msg
);