3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
16 #include <net/route.h>
19 #include <netinet/in.h>
20 #include <netinet/ip6.h>
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
29 #include <sys/resource.h>
37 #include <sys/sysinfo.h>
39 #include <linux/netlink.h>
40 #include <linux/rtnetlink.h>
48 #include "constants.h"
61 char * Vendor_name
= "Linux L2TPNS";
62 uint32_t call_serial_number
= 0;
65 configt
*config
= NULL
; // all configuration
66 int nlfd
= -1; // netlink socket
67 int tunfd
= -1; // tun interface file handle. (network device)
68 int udpfd
[MAX_UDPFD
+ 1] = INIT_TABUDPFD
; // array UDP file handle + 1 for lac udp
69 int udplacfd
= -1; // UDP LAC file handle
70 int controlfd
= -1; // Control signal handle
71 int clifd
= -1; // Socket listening for CLI connections.
72 int daefd
= -1; // Socket listening for DAE connections.
73 int snoopfd
= -1; // UDP file handle for sending out intercept data
74 int *radfds
= NULL
; // RADIUS requests file handles
75 int rand_fd
= -1; // Random data source
76 int cluster_sockfd
= -1; // Intra-cluster communications socket.
77 int epollfd
= -1; // event polling
78 time_t basetime
= 0; // base clock
79 char hostname
[MAXHOSTNAME
] = ""; // us.
80 static int tunidx
; // ifr_ifindex of tun device
81 int nlseqnum
= 0; // netlink sequence number
82 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
83 static int syslog_log
= 0; // are we logging to syslog
84 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
85 uint32_t last_id
= 0; // Unique ID for radius accounting
87 char guest_users
[10][32]; // Array of guest users
88 int guest_accounts_num
= 0; // Number of guest users
90 // calculated from config->l2tp_mtu
91 uint16_t MRU
= 0; // PPP MRU
92 uint16_t MSS
= 0; // TCP MSS
94 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
95 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
100 } ip_hash
[256]; // Mapping from IP address to session structures.
104 struct ipv6radix
*branch
;
105 } ipv6_hash
[16]; // Mapping from IPv6 address to session structures.
108 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
109 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
112 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
113 time_t time_now
= 0; // Current time in seconds since epoch.
114 uint64_t time_now_ms
= 0; // Current time in milliseconds since epoch.
115 static char time_now_string
[64] = {0}; // Current time as a string.
116 static int time_changed
= 0; // time_now changed
117 char main_quit
= 0; // True if we're in the process of exiting.
118 static char main_reload
= 0; // Re-load pending
119 linked_list
*loaded_plugins
;
120 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
122 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
123 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
125 config_descriptt config_values
[] = {
126 CONFIG("debug", debug
, INT
),
127 CONFIG("log_file", log_filename
, STRING
),
128 CONFIG("pid_file", pid_file
, STRING
),
129 CONFIG("random_device", random_device
, STRING
),
130 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
131 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
132 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
133 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
134 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
135 CONFIG("ppp_keepalive", ppp_keepalive
, BOOL
),
136 CONFIG("primary_dns", default_dns1
, IPv4
),
137 CONFIG("secondary_dns", default_dns2
, IPv4
),
138 CONFIG("primary_radius", radiusserver
[0], IPv4
),
139 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
140 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
141 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
142 CONFIG("radius_accounting", radius_accounting
, BOOL
),
143 CONFIG("radius_interim", radius_interim
, INT
),
144 CONFIG("radius_secret", radiussecret
, STRING
),
145 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
146 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
147 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
148 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
149 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
150 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
151 CONFIG("guest_account", guest_user
, STRING
),
152 CONFIG("bind_address", bind_address
, IPv4
),
153 CONFIG("peer_address", peer_address
, IPv4
),
154 CONFIG("send_garp", send_garp
, BOOL
),
155 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
156 CONFIG("throttle_buckets", num_tbfs
, INT
),
157 CONFIG("accounting_dir", accounting_dir
, STRING
),
158 CONFIG("account_all_origin", account_all_origin
, BOOL
),
159 CONFIG("dump_speed", dump_speed
, BOOL
),
160 CONFIG("multi_read_count", multi_read_count
, INT
),
161 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
162 CONFIG("lock_pages", lock_pages
, BOOL
),
163 CONFIG("icmp_rate", icmp_rate
, INT
),
164 CONFIG("packet_limit", max_packets
, INT
),
165 CONFIG("cluster_address", cluster_address
, IPv4
),
166 CONFIG("cluster_interface", cluster_interface
, STRING
),
167 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
168 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
169 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
170 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
171 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
172 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
173 CONFIG("hostname", hostname
, STRING
),
175 CONFIG("nexthop_address", nexthop_address
, IPv4
),
176 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
178 CONFIG("echo_timeout", echo_timeout
, INT
),
179 CONFIG("idle_echo_timeout", idle_echo_timeout
, INT
),
180 CONFIG("iftun_address", iftun_address
, IPv4
),
181 CONFIG("tundevicename", tundevicename
, STRING
),
182 CONFIG("disable_lac_func", disable_lac_func
, BOOL
),
183 CONFIG("auth_tunnel_change_addr_src", auth_tunnel_change_addr_src
, BOOL
),
184 CONFIG("bind_address_remotelns", bind_address_remotelns
, IPv4
),
185 CONFIG("bind_portremotelns", bind_portremotelns
, SHORT
),
186 CONFIG("pppoe_if_to_bind", pppoe_if_to_bind
, STRING
),
187 CONFIG("pppoe_service_name", pppoe_service_name
, STRING
),
188 CONFIG("pppoe_ac_name", pppoe_ac_name
, STRING
),
189 CONFIG("disable_sending_hello", disable_sending_hello
, BOOL
),
190 CONFIG("disable_no_spoof", disable_no_spoof
, BOOL
),
191 CONFIG("bind_multi_address", bind_multi_address
, STRING
),
192 CONFIG("pppoe_only_equal_svc_name", pppoe_only_equal_svc_name
, BOOL
),
193 CONFIG("multi_hostname", multi_hostname
, STRING
),
194 CONFIG("no_throttle_local_IP", no_throttle_local_IP
, BOOL
),
195 CONFIG("dhcp6_preferred_lifetime", dhcp6_preferred_lifetime
, INT
),
196 CONFIG("dhcp6_valid_lifetime", dhcp6_valid_lifetime
, INT
),
197 CONFIG("dhcp6_server_duid", dhcp6_server_duid
, INT
),
198 CONFIG("dns6_lifetime", dns6_lifetime
, INT
),
199 CONFIG("primary_ipv6_dns", default_ipv6_dns1
, IPv6
),
200 CONFIG("secondary_ipv6_dns", default_ipv6_dns2
, IPv6
),
201 CONFIG("default_ipv6_domain_list", default_ipv6_domain_list
, STRING
),
205 static char *plugin_functions
[] = {
210 "plugin_new_session",
211 "plugin_kill_session",
213 "plugin_radius_response",
214 "plugin_radius_reset",
215 "plugin_radius_account",
216 "plugin_become_master",
217 "plugin_new_session_master",
220 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
222 // Counters for shutdown sessions
223 static sessiont shut_acct
[8192];
224 static sessionidt shut_acct_n
= 0;
226 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
227 bundlet
*bundle
= NULL
; // Array of bundle structures.
228 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
229 sessiont
*session
= NULL
; // Array of session structures.
230 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
231 radiust
*radius
= NULL
; // Array of radius structures.
232 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
233 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
234 static controlt
*controlfree
= 0;
235 struct Tstats
*_statistics
= NULL
;
237 struct Tringbuffer
*ringbuffer
= NULL
;
240 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
241 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
242 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
243 static void uncache_ipmap(in_addr_t ip
);
244 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
245 static void free_ip_address(sessionidt s
);
246 static void dump_acct_info(int all
);
247 static void sighup_handler(int sig
);
248 static void shutdown_handler(int sig
);
249 static void sigchild_handler(int sig
);
250 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
251 static void update_config(void);
252 static void read_config_file(void);
253 static void initplugins(void);
254 static int add_plugin(char *plugin_name
);
255 static int remove_plugin(char *plugin_name
);
256 static void plugins_done(void);
257 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
258 static tunnelidt
new_tunnel(void);
259 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
260 static void bundleclear(bundleidt b
);
262 // return internal time (10ths since process startup), set f if given
263 // as a side-effect sets time_now, and time_changed
264 static clockt
now(double *f
)
268 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
269 if (t
.tv_sec
!= time_now
)
275 // Time in milliseconds
276 // TODO FOR MLPPP DEV
277 //time_now_ms = (t.tv_sec * 1000) + (t.tv_usec/1000);
279 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
282 // work out a retry time based on try number
283 // This is a straight bounded exponential backoff.
284 // Maximum re-try time is 32 seconds. (2^5).
285 clockt
backoff(uint8_t try)
287 if (try > 5) try = 5; // max backoff
288 return now(NULL
) + 10 * (1 << try);
293 // Log a debug message. Typically called via the LOG macro
295 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
297 static char message
[65536] = {0};
303 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
304 ringbuffer
->tail
= 0;
305 if (ringbuffer
->tail
== ringbuffer
->head
)
306 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
307 ringbuffer
->head
= 0;
309 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
310 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
311 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
312 va_start(ap
, format
);
313 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, MAX_LOG_LENGTH
, format
, ap
);
318 if (config
->debug
< level
) return;
320 va_start(ap
, format
);
321 vsnprintf(message
, sizeof(message
), format
, ap
);
324 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
326 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
331 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
334 const uint8_t *d
= data
;
336 if (config
->debug
< level
) return;
338 // No support for _log_hex to syslog
341 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
342 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
344 for (i
= 0; i
< maxsize
; )
346 fprintf(log_stream
, "%4X: ", i
);
347 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
349 fprintf(log_stream
, "%02X ", d
[j
]);
351 fputs(": ", log_stream
);
354 for (; j
< i
+ 16; j
++)
356 fputs(" ", log_stream
);
358 fputs(": ", log_stream
);
361 fputs(" ", log_stream
);
362 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
364 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
365 fputc(d
[j
], log_stream
);
367 fputc('.', log_stream
);
370 fputs(" ", log_stream
);
374 fputs("\n", log_stream
);
378 setbuf(log_stream
, NULL
);
382 // update a counter, accumulating 2^32 wraps
383 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
385 uint32_t new = *counter
+ delta
;
392 // initialise the random generator
393 static void initrandom(char *source
)
395 static char path
[sizeof(config
->random_device
)] = "*undefined*";
397 // reinitialise only if we are forced to do so or if the config has changed
398 if (source
&& !strncmp(path
, source
, sizeof(path
)))
401 // close previous source, if any
410 snprintf(path
, sizeof(path
), "%s", source
);
414 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
416 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
417 path
, strerror(errno
));
422 // fill buffer with random data
423 void random_data(uint8_t *buf
, int len
)
430 n
= read(rand_fd
, buf
, len
);
431 if (n
>= len
) return;
436 LOG(0, 0, 0, "Error reading from random source: %s\n",
439 // fall back to rand()
447 // append missing data
449 // not using the low order bits from the prng stream
450 buf
[n
++] = (rand() >> 4) & 0xff;
455 // This adds it to the routing table, advertises it
456 // via BGP if enabled, and stuffs it into the
457 // 'sessionbyip' cache.
459 // 'ip' must be in _host_ order.
461 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
471 if (!prefixlen
) prefixlen
= 32;
473 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
475 memset(&req
, 0, sizeof(req
));
479 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
480 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
484 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
485 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
488 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
490 req
.rt
.rtm_family
= AF_INET
;
491 req
.rt
.rtm_dst_len
= prefixlen
;
492 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
493 req
.rt
.rtm_protocol
= 42;
494 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
495 req
.rt
.rtm_type
= RTN_UNICAST
;
497 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
499 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
503 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
506 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
507 fmtaddr(htonl(ip
), 0), prefixlen
,
508 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
510 if (netlink_send(&req
.nh
) < 0)
511 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
515 bgp_add_route(htonl(ip
), prefixlen
);
517 bgp_del_route(htonl(ip
), prefixlen
);
520 // Add/Remove the IPs to the 'sessionbyip' cache.
521 // Note that we add the zero address in the case of
522 // a network route. Roll on CIDR.
524 // Note that 's == 0' implies this is the address pool.
525 // We still cache it here, because it will pre-fill
526 // the malloc'ed tree.
530 if (!add
) // Are we deleting a route?
531 s
= 0; // Caching the session as '0' is the same as uncaching.
533 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
538 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
546 char ipv6addr
[INET6_ADDRSTRLEN
];
548 if (!config
->ipv6_prefix
.s6_addr
[0])
550 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
554 memset(&req
, 0, sizeof(req
));
558 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
559 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
563 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
564 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
567 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
569 req
.rt
.rtm_family
= AF_INET6
;
570 req
.rt
.rtm_dst_len
= prefixlen
;
571 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
572 req
.rt
.rtm_protocol
= 42;
573 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
574 req
.rt
.rtm_type
= RTN_UNICAST
;
576 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
577 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
579 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
581 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
583 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
586 if (netlink_send(&req
.nh
) < 0)
587 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
591 bgp_add_route6(ip
, prefixlen
);
593 bgp_del_route6(ip
, prefixlen
);
598 if (!add
) // Are we deleting a route?
599 s
= 0; // Caching the session as '0' is the same as uncaching.
601 cache_ipv6map(ip
, prefixlen
, s
);
608 // Set up netlink socket
609 static void initnetlink(void)
611 struct sockaddr_nl nladdr
;
613 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
616 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
620 memset(&nladdr
, 0, sizeof(nladdr
));
621 nladdr
.nl_family
= AF_NETLINK
;
622 nladdr
.nl_pid
= getpid();
624 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
626 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
631 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
633 struct sockaddr_nl nladdr
;
637 nh
->nlmsg_pid
= getpid();
638 nh
->nlmsg_seq
= ++nlseqnum
;
640 // set kernel address
641 memset(&nladdr
, 0, sizeof(nladdr
));
642 nladdr
.nl_family
= AF_NETLINK
;
644 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
645 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
647 return sendmsg(nlfd
, &msg
, 0);
650 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
652 struct sockaddr_nl nladdr
;
656 // set kernel address
657 memset(&nladdr
, 0, sizeof(nladdr
));
658 nladdr
.nl_family
= AF_NETLINK
;
660 iov
= (struct iovec
){ buf
, len
};
661 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
663 return recvmsg(nlfd
, &msg
, 0);
666 /* adapted from iproute2 */
667 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
669 int len
= RTA_LENGTH(alen
);
672 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
673 rta
->rta_type
= type
;
675 memcpy(RTA_DATA(rta
), data
, alen
);
676 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
679 // messages corresponding to different phases seq number
680 static char *tun_nl_phase_msg
[] = {
682 "getting tun interface index",
683 "setting tun interface parameters",
684 "setting tun IPv4 address",
685 "setting tun LL IPv6 address",
686 "setting tun global IPv6 address",
690 // Set up TUN interface
691 static void inittun(void)
695 memset(&ifr
, 0, sizeof(ifr
));
696 ifr
.ifr_flags
= IFF_TUN
;
698 tunfd
= open(TUNDEVICE
, O_RDWR
);
701 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
705 int flags
= fcntl(tunfd
, F_GETFL
, 0);
706 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
709 if (*config
->tundevicename
)
710 strncpy(ifr
.ifr_name
, config
->tundevicename
, IFNAMSIZ
);
712 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
714 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
717 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevicename
) - 1);
718 strncpy(config
->tundevicename
, ifr
.ifr_name
, sizeof(config
->tundevicename
));
720 tunidx
= if_nametoindex(config
->tundevicename
);
723 LOG(0, 0, 0, "Can't get tun interface index\n");
732 struct ifinfomsg ifinfo
;
733 struct ifaddrmsg ifaddr
;
735 char rtdata
[32]; // 32 should be enough
737 uint32_t txqlen
, mtu
;
740 memset(&req
, 0, sizeof(req
));
742 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
743 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
744 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
746 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
747 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
748 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
749 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
751 /* Bump up the qlen to deal with bursts from the network */
753 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
754 /* set MTU to modem MRU */
756 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
758 if (netlink_send(&req
.nh
) < 0)
761 memset(&req
, 0, sizeof(req
));
763 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
764 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
765 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
767 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
768 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
769 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
770 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
772 if (config
->nbmultiaddress
> 1)
775 for (i
= 0; i
< config
->nbmultiaddress
; i
++)
777 ip
= config
->iftun_n_address
[i
];
778 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
779 if (netlink_send(&req
.nh
) < 0)
785 if (config
->iftun_address
)
786 ip
= config
->iftun_address
;
788 ip
= 0x01010101; // 1.1.1.1
789 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
791 if (netlink_send(&req
.nh
) < 0)
797 // Only setup IPv6 on the tun device if we have a configured prefix
798 if (config
->ipv6_prefix
.s6_addr
[0]) {
801 memset(&req
, 0, sizeof(req
));
803 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
804 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
805 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
807 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
808 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
809 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
810 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
812 // Link local address is FE80::1
813 memset(&ip6
, 0, sizeof(ip6
));
814 ip6
.s6_addr
[0] = 0xFE;
815 ip6
.s6_addr
[1] = 0x80;
817 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
819 if (netlink_send(&req
.nh
) < 0)
822 memset(&req
, 0, sizeof(req
));
824 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
825 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
826 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
828 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
829 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
830 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
831 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
833 // Global address is prefix::1
834 ip6
= config
->ipv6_prefix
;
836 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
838 if (netlink_send(&req
.nh
) < 0)
842 memset(&req
, 0, sizeof(req
));
844 req
.nh
.nlmsg_type
= NLMSG_DONE
;
845 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
847 if (netlink_send(&req
.nh
) < 0)
850 // if we get an error for seqnum < min_initok_nlseqnum,
851 // we must exit as initialization went wrong
852 if (config
->ipv6_prefix
.s6_addr
[0])
853 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
855 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
861 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
865 // set up LAC UDP ports
866 static void initlacudp(void)
869 struct sockaddr_in addr
;
871 // Tunnel to Remote LNS
872 memset(&addr
, 0, sizeof(addr
));
873 addr
.sin_family
= AF_INET
;
874 addr
.sin_port
= htons(config
->bind_portremotelns
);
875 addr
.sin_addr
.s_addr
= config
->bind_address_remotelns
;
876 udplacfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
877 setsockopt(udplacfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
879 int flags
= fcntl(udplacfd
, F_GETFL
, 0);
880 fcntl(udplacfd
, F_SETFL
, flags
| O_NONBLOCK
);
882 if (bind(udplacfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
884 LOG(0, 0, 0, "Error in UDP REMOTE LNS bind: %s\n", strerror(errno
));
889 // set up control ports
890 static void initcontrol(void)
893 struct sockaddr_in addr
;
896 memset(&addr
, 0, sizeof(addr
));
897 addr
.sin_family
= AF_INET
;
898 addr
.sin_port
= htons(NSCTL_PORT
);
899 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
900 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
901 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
902 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
904 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
909 // set up Dynamic Authorization Extensions to RADIUS port
910 static void initdae(void)
913 struct sockaddr_in addr
;
915 // Dynamic Authorization Extensions to RADIUS
916 memset(&addr
, 0, sizeof(addr
));
917 addr
.sin_family
= AF_INET
;
918 addr
.sin_port
= htons(config
->radius_dae_port
);
919 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
920 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
921 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
922 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
924 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
930 static void initudp(int * pudpfd
, in_addr_t ip_bind
)
933 struct sockaddr_in addr
;
936 memset(&addr
, 0, sizeof(addr
));
937 addr
.sin_family
= AF_INET
;
938 addr
.sin_port
= htons(L2TPPORT
);
939 addr
.sin_addr
.s_addr
= ip_bind
;
940 (*pudpfd
) = socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
941 setsockopt((*pudpfd
), SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
943 int flags
= fcntl((*pudpfd
), F_GETFL
, 0);
944 fcntl((*pudpfd
), F_SETFL
, flags
| O_NONBLOCK
);
946 if (bind((*pudpfd
), (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
948 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
954 // Find session by IP, < 1 for not found
956 // Confusingly enough, this 'ip' must be
957 // in _network_ order. This being the common
958 // case when looking it up from IP packet headers.
960 // We actually use this cache for two things.
961 // #1. For used IP addresses, this maps to the
962 // session ID that it's used by.
963 // #2. For un-used IP addresses, this maps to the
964 // index into the pool table that contains that
968 static sessionidt
lookup_ipmap(in_addr_t ip
)
970 uint8_t *a
= (uint8_t *) &ip
;
971 union iphash
*h
= ip_hash
;
973 if (!(h
= h
[*a
++].idx
)) return 0;
974 if (!(h
= h
[*a
++].idx
)) return 0;
975 if (!(h
= h
[*a
++].idx
)) return 0;
980 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
982 struct ipv6radix
*curnode
;
985 char ipv6addr
[INET6_ADDRSTRLEN
];
987 curnode
= &ipv6_hash
[((ip
.s6_addr
[0]) & 0xF0)>>4];
991 while (s
== 0 && i
< 32 && curnode
->branch
!= NULL
)
994 curnode
= &curnode
->branch
[ip
.s6_addr
[i
>>1] & 0x0F];
996 curnode
= &curnode
->branch
[(ip
.s6_addr
[i
>>1] & 0xF0)>>4];
1002 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
1003 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1010 sessionidt
sessionbyip(in_addr_t ip
)
1012 sessionidt s
= lookup_ipmap(ip
);
1015 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1021 sessionidt
sessionbyipv6(struct in6_addr ip
)
1024 CSTAT(sessionbyipv6
);
1026 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
1027 (ip
.s6_addr
[0] == 0xFE &&
1028 ip
.s6_addr
[1] == 0x80 &&
1029 ip
.s6_addr16
[1] == 0 &&
1030 ip
.s6_addr16
[2] == 0 &&
1031 ip
.s6_addr16
[3] == 0))
1033 in_addr_t
*pipv4
= (in_addr_t
*) &ip
.s6_addr
[8];
1034 s
= lookup_ipmap(*pipv4
);
1036 s
= lookup_ipv6map(ip
);
1039 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1045 sessionidt
sessionbyipv6new(struct in6_addr ip
)
1048 CSTAT(sessionbyipv6new
);
1050 s
= lookup_ipv6map(ip
);
1052 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
1059 // Take an IP address in HOST byte order and
1060 // add it to the sessionid by IP cache.
1062 // (It's actually cached in network order)
1064 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
1066 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
1067 uint8_t *a
= (uint8_t *) &nip
;
1068 union iphash
*h
= ip_hash
;
1071 for (i
= 0; i
< 3; i
++)
1073 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
1082 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
1085 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
1086 // else a map to an ip pool index.
1089 static void uncache_ipmap(in_addr_t ip
)
1091 cache_ipmap(ip
, 0); // Assign it to the NULL session.
1094 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
1098 struct ipv6radix
*curnode
;
1099 char ipv6addr
[INET6_ADDRSTRLEN
];
1101 curnode
= &ipv6_hash
[((ip
.s6_addr
[0]) & 0xF0)>>4];
1103 niblles
= prefixlen
>> 2;
1108 if (curnode
->branch
== NULL
)
1110 if (!(curnode
->branch
= calloc(16, sizeof (struct ipv6radix
))))
1115 curnode
= &curnode
->branch
[ip
.s6_addr
[i
>>1] & 0x0F];
1117 curnode
= &curnode
->branch
[(ip
.s6_addr
[i
>>1] & 0xF0)>>4];
1125 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1126 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1130 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1131 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1137 // CLI list to dump current ipcache.
1139 int cmd_show_ipcache(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
1141 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1145 if (CLI_HELP_REQUESTED
)
1146 return CLI_HELP_NO_ARGS
;
1148 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1150 for (i
= 0; i
< 256; ++i
)
1156 for (j
= 0; j
< 256; ++j
)
1162 for (k
= 0; k
< 256; ++k
)
1168 for (l
= 0; l
< 256; ++l
)
1173 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1179 cli_print(cli
, "%d entries in cache", count
);
1183 // Find session by username, 0 for not found
1184 // walled garden users aren't authenticated, so the username is
1185 // reasonably useless. Ignore them to avoid incorrect actions
1187 // This is VERY inefficent. Don't call it often. :)
1189 sessionidt
sessionbyuser(char *username
)
1192 CSTAT(sessionbyuser
);
1194 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1196 if (!session
[s
].opened
)
1199 if (session
[s
].walled_garden
)
1200 continue; // Skip walled garden users.
1202 if (!strncmp(session
[s
].user
, username
, 128))
1206 return 0; // Not found.
1209 void send_garp(in_addr_t ip
)
1215 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1218 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1221 memset(&ifr
, 0, sizeof(ifr
));
1222 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1223 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1225 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1229 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1230 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1232 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1237 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1240 static sessiont
*sessiontbysessionidt(sessionidt s
)
1242 if (!s
|| s
>= MAXSESSION
) return NULL
;
1246 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1248 sessionidt val
= s
-session
;
1249 if (s
< session
|| val
>= MAXSESSION
) return 0;
1253 // actually send a control message for a specific tunnel
1254 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1256 struct sockaddr_in addr
;
1262 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1263 STAT(tunnel_tx_errors
);
1267 if (t
== TUNNEL_ID_PPPOE
)
1269 pppoe_sess_send(buf
, l
, t
);
1275 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1276 STAT(tunnel_tx_errors
);
1280 memset(&addr
, 0, sizeof(addr
));
1281 addr
.sin_family
= AF_INET
;
1282 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1283 addr
.sin_port
= htons(tunnel
[t
].port
);
1285 // sequence expected, if sequence in message
1286 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1288 // If this is a control message, deal with retries
1291 tunnel
[t
].last
= time_now
; // control message sent
1292 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1295 STAT(tunnel_retries
);
1296 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1300 if (sendto(udpfd
[tunnel
[t
].indexudp
], buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1302 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1303 strerror(errno
), udpfd
[tunnel
[t
].indexudp
], buf
, l
, inet_ntoa(addr
.sin_addr
));
1304 STAT(tunnel_tx_errors
);
1308 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1309 STAT(tunnel_tx_packets
);
1310 INC_STAT(tunnel_tx_bytes
, l
);
1314 // Tiny helper function to write data to
1315 // the 'tun' device.
1317 int tun_write(uint8_t * data
, int size
)
1319 return write(tunfd
, data
, size
);
1322 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1323 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1325 int d
= (tcp
[12] >> 4) * 4;
1332 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1335 if (tcp
+ d
> buf
+ len
) // short?
1343 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1346 if (mss
+ 2 > data
) return; // short?
1350 if (*opts
== 0) return; // end of options
1351 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1354 opts
+= opts
[1]; // skip over option
1357 if (!mss
) return; // not found
1358 orig
= ntohs(*(uint16_t *) mss
);
1360 if (orig
<= MSS
) return; // mss OK
1362 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1363 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1364 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1365 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1368 *(int16_t *) mss
= htons(MSS
);
1370 // adjust checksum (see rfc1141)
1371 sum
= orig
+ (~MSS
& 0xffff);
1372 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1373 sum
= (sum
& 0xffff) + (sum
>> 16);
1374 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1377 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1381 // Skip the four extra bytes
1393 proto
= ntohs(*(uint16_t *) p
);
1401 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1402 return; // closing session, PPP not processed
1404 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1405 processipin(s
, t
, p
, l
);
1407 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1411 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1412 return; // closing session, PPP not processed
1415 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1416 processipv6in(s
, t
, p
, l
);
1418 else if (proto
== PPPIPCP
)
1420 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1421 processipcp(s
, t
, p
, l
);
1423 else if (proto
== PPPCCP
)
1425 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1426 processccp(s
, t
, p
, l
);
1430 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1434 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1436 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1437 sp
->cout_delta
+= len
;
1439 sp
->last_data
= time_now
;
1441 sess_local
[s
].cout
+= len
; // To send to master..
1442 sess_local
[s
].pout
++;
1445 // process outgoing (to tunnel) IP
1447 // (i.e. this routine writes to data[-8]).
1448 void processipout(uint8_t *buf
, int len
)
1453 in_addr_t ip
, ip_src
;
1455 uint8_t *data
= buf
; // Keep a copy of the originals.
1458 uint8_t fragbuf
[MAXETHER
+ 20];
1460 CSTAT(processipout
);
1462 if (len
< MIN_IP_SIZE
)
1464 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1465 STAT(tun_rx_errors
);
1468 if (len
>= MAXETHER
)
1470 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1471 STAT(tun_rx_errors
);
1475 // Skip the tun header
1479 // Got an IP header now
1480 if (*(uint8_t *)(buf
) >> 4 != 4)
1482 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1486 ip_src
= *(uint32_t *)(buf
+ 12);
1487 ip
= *(uint32_t *)(buf
+ 16);
1488 if (!(s
= sessionbyip(ip
)))
1490 // Is this a packet for a session that doesn't exist?
1491 static int rate
= 0; // Number of ICMP packets we've sent this second.
1492 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1494 if (last
!= time_now
)
1500 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1502 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1503 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1504 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1509 t
= session
[s
].tunnel
;
1510 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1512 LOG(3, s
, t
, "Packet size more than session MRU\n");
1518 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1519 if (config
->max_packets
> 0)
1521 if (sess_local
[s
].last_packet_out
== TIME
)
1523 int max
= config
->max_packets
;
1525 // All packets for throttled sessions are handled by the
1526 // master, so further limit by using the throttle rate.
1527 // A bit of a kludge, since throttle rate is in kbps,
1528 // but should still be generous given our average DSL
1529 // packet size is 200 bytes: a limit of 28kbps equates
1530 // to around 180 packets per second.
1531 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1532 max
= sp
->throttle_out
;
1534 if (++sess_local
[s
].packets_out
> max
)
1536 sess_local
[s
].packets_dropped
++;
1542 if (sess_local
[s
].packets_dropped
)
1544 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1545 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1546 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1547 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1551 sess_local
[s
].last_packet_out
= TIME
;
1552 sess_local
[s
].packets_out
= 1;
1553 sess_local
[s
].packets_dropped
= 0;
1557 // run access-list if any
1558 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1561 // adjust MSS on SYN and SYN,ACK packets with options
1562 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1564 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1565 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1566 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1571 if (!config
->no_throttle_local_IP
|| !sessionbyip(ip_src
))
1573 // Are we throttling this session?
1574 if (config
->cluster_iam_master
)
1575 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1577 master_throttle_packet(sp
->tbf_out
, data
, size
);
1582 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1584 // We are walled-gardening this
1585 master_garden_packet(s
, data
, size
);
1589 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1592 if (!config
->cluster_iam_master
)
1594 // The MPPP packets must be managed by the Master.
1595 master_forward_mppp_packet(s
, data
, size
);
1599 // Add on L2TP header
1600 sessionidt members
[MAXBUNDLESES
];
1601 bundleidt bid
= session
[s
].bundle
;
1602 bundlet
*b
= &bundle
[bid
];
1603 uint32_t num_of_links
, nb_opened
;
1606 num_of_links
= b
->num_of_links
;
1608 for (i
= 0;i
< num_of_links
;i
++)
1611 if (session
[s
].ppp
.lcp
== Opened
)
1613 members
[nb_opened
] = s
;
1620 LOG(3, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1624 num_of_links
= nb_opened
;
1625 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1626 s
= members
[b
->current_ses
];
1627 t
= session
[s
].tunnel
;
1629 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1631 if (num_of_links
> 1)
1633 if(len
> MINFRAGLEN
)
1635 //for rotate traffic among the member links
1636 uint32_t divisor
= num_of_links
;
1638 divisor
= divisor
/2 + (divisor
& 1);
1640 // Partition the packet to "num_of_links" fragments
1641 uint32_t fraglen
= len
/ divisor
;
1642 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1643 uint32_t remain
= len
;
1645 // send the first packet
1646 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1648 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1651 update_session_out_stat(s
, sp
, fraglen
);
1654 while (remain
> last_fraglen
)
1656 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1657 s
= members
[b
->current_ses
];
1658 t
= session
[s
].tunnel
;
1660 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1661 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1663 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1664 update_session_out_stat(s
, sp
, fraglen
);
1667 // send the last fragment
1668 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1669 s
= members
[b
->current_ses
];
1670 t
= session
[s
].tunnel
;
1672 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1673 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1675 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1676 update_session_out_stat(s
, sp
, remain
);
1677 if (remain
!= last_fraglen
)
1678 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1682 // Send it as one frame
1683 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1685 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1686 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1687 update_session_out_stat(s
, sp
, len
);
1692 // Send it as one frame (NO MPPP Frame)
1693 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1694 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1695 update_session_out_stat(s
, sp
, len
);
1700 uint8_t *p
= opt_makeppp(buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1701 tunnelsend(p
, len
+ (buf
-p
), t
); // send it...
1702 update_session_out_stat(s
, sp
, len
);
1705 // Snooping this session, send it to intercept box
1706 if (sp
->snoop_ip
&& sp
->snoop_port
)
1707 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1712 // process outgoing (to tunnel) IPv6
1714 static void processipv6out(uint8_t * buf
, int len
)
1719 struct in6_addr ip6
;
1721 uint8_t *data
= buf
; // Keep a copy of the originals.
1724 uint8_t b
[MAXETHER
+ 20];
1726 CSTAT(processipv6out
);
1728 if (len
< MIN_IP_SIZE
)
1730 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1731 STAT(tunnel_tx_errors
);
1734 if (len
>= MAXETHER
)
1736 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1737 STAT(tunnel_tx_errors
);
1741 // Skip the tun header
1745 // Got an IP header now
1746 if (*(uint8_t *)(buf
) >> 4 != 6)
1748 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1752 ip6
= *(struct in6_addr
*)(buf
+24);
1753 s
= sessionbyipv6(ip6
);
1757 s
= sessionbyipv6new(ip6
);
1762 // Is this a packet for a session that doesn't exist?
1763 static int rate
= 0; // Number of ICMP packets we've sent this second.
1764 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1766 if (last
!= time_now
)
1772 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1774 // FIXME: Should send icmp6 host unreachable
1778 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1780 bundleidt bid
= session
[s
].bundle
;
1781 bundlet
*b
= &bundle
[bid
];
1783 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1784 s
= b
->members
[b
->current_ses
];
1785 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1787 t
= session
[s
].tunnel
;
1789 sp
->last_data
= time_now
;
1791 // FIXME: add DoS prevention/filters?
1795 // Are we throttling this session?
1796 if (config
->cluster_iam_master
)
1797 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1799 master_throttle_packet(sp
->tbf_out
, data
, size
);
1802 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1804 // We are walled-gardening this
1805 master_garden_packet(s
, data
, size
);
1809 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1811 // Add on L2TP header
1813 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1815 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1818 // Snooping this session, send it to intercept box
1819 if (sp
->snoop_ip
&& sp
->snoop_port
)
1820 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1822 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1823 sp
->cout_delta
+= len
;
1827 sess_local
[s
].cout
+= len
; // To send to master..
1828 sess_local
[s
].pout
++;
1832 // Helper routine for the TBF filters.
1833 // Used to send queued data in to the user!
1835 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1840 uint8_t *data
= buf
; // Keep a copy of the originals.
1842 uint8_t b
[MAXETHER
+ 20];
1844 if (len
< 0 || len
> MAXETHER
)
1846 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1850 // Skip the tun header
1857 t
= session
[s
].tunnel
;
1860 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1862 // Add on L2TP header
1863 if (*(uint16_t *) (data
+ 2) == htons(PKTIPV6
))
1864 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0); // IPV6
1866 p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0); // IPV4
1870 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1872 // Snooping this session.
1873 if (sp
->snoop_ip
&& sp
->snoop_port
)
1874 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1876 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1877 sp
->cout_delta
+= len
;
1881 sess_local
[s
].cout
+= len
; // To send to master..
1882 sess_local
[s
].pout
++;
1885 // add an AVP (16 bit)
1886 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1888 uint16_t l
= (m
? 0x8008 : 0x0008);
1889 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1890 pint16
[0] = htons(l
);
1891 pint16
[1] = htons(0);
1892 pint16
[2] = htons(avp
);
1893 pint16
[3] = htons(val
);
1897 // add an AVP (32 bit)
1898 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1900 uint16_t l
= (m
? 0x800A : 0x000A);
1901 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1902 uint32_t *pint32
= (uint32_t *) (c
->buf
+ c
->length
+ 6);
1903 pint16
[0] = htons(l
);
1904 pint16
[1] = htons(0);
1905 pint16
[2] = htons(avp
);
1906 pint32
[0] = htonl(val
);
1910 // add an AVP (string)
1911 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1913 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1914 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1915 pint16
[0] = htons(l
);
1916 pint16
[1] = htons(0);
1917 pint16
[2] = htons(avp
);
1918 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1919 c
->length
+= 6 + strlen(val
);
1923 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1925 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1926 uint16_t *pint16
= (uint16_t *) (c
->buf
+ c
->length
+ 0);
1927 pint16
[0] = htons(l
);
1928 pint16
[1] = htons(0);
1929 pint16
[2] = htons(avp
);
1930 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1931 c
->length
+= 6 + len
;
1934 // new control connection
1935 static controlt
*controlnew(uint16_t mtype
)
1939 c
= malloc(sizeof(controlt
));
1943 controlfree
= c
->next
;
1947 c
->buf
[0] = 0xC8; // flags
1948 c
->buf
[1] = 0x02; // ver
1950 control16(c
, 0, mtype
, 1);
1954 // send zero block if nothing is waiting
1956 static void controlnull(tunnelidt t
)
1959 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1962 buf
[0] = htons(0xC802); // flags/ver
1963 buf
[1] = htons(12); // length
1964 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1965 buf
[3] = htons(0); // session
1966 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1967 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1968 tunnelsend((uint8_t *)buf
, 12, t
);
1971 // add a control message to a tunnel, and send if within window
1972 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1974 uint16_t *pint16
= (uint16_t *) (c
->buf
+ 2);
1975 pint16
[0] = htons(c
->length
); // length
1976 pint16
[1] = htons(tunnel
[t
].far
); // tunnel
1977 pint16
[2] = htons(far
); // session
1978 pint16
[3] = htons(tunnel
[t
].ns
); // sequence
1979 tunnel
[t
].ns
++; // advance sequence
1980 // link in message in to queue
1981 if (tunnel
[t
].controlc
)
1982 tunnel
[t
].controle
->next
= c
;
1984 tunnel
[t
].controls
= c
;
1986 tunnel
[t
].controle
= c
;
1987 tunnel
[t
].controlc
++;
1989 // send now if space in window
1990 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1992 tunnel
[t
].try = 0; // first send
1993 tunnelsend(c
->buf
, c
->length
, t
);
1998 // Throttle or Unthrottle a session
2000 // Throttle the data from/to through a session to no more than
2001 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
2004 // If either value is -1, the current value is retained for that
2007 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
2009 if (!session
[s
].opened
)
2010 return; // No-one home.
2012 if (!*session
[s
].user
)
2013 return; // User not logged in
2017 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
2018 if (session
[s
].tbf_in
)
2019 free_tbf(session
[s
].tbf_in
);
2022 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
2024 session
[s
].tbf_in
= 0;
2026 session
[s
].throttle_in
= rate_in
;
2031 int bytes
= rate_out
* 1024 / 8;
2032 if (session
[s
].tbf_out
)
2033 free_tbf(session
[s
].tbf_out
);
2036 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
2038 session
[s
].tbf_out
= 0;
2040 session
[s
].throttle_out
= rate_out
;
2044 // add/remove filters from session (-1 = no change)
2045 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
2047 if (!session
[s
].opened
)
2048 return; // No-one home.
2050 if (!*session
[s
].user
)
2051 return; // User not logged in
2054 if (filter_in
> MAXFILTER
) filter_in
= -1;
2055 if (filter_out
> MAXFILTER
) filter_out
= -1;
2056 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
2057 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
2061 if (session
[s
].filter_in
)
2062 ip_filters
[session
[s
].filter_in
- 1].used
--;
2065 ip_filters
[filter_in
- 1].used
++;
2067 session
[s
].filter_in
= filter_in
;
2070 if (filter_out
>= 0)
2072 if (session
[s
].filter_out
)
2073 ip_filters
[session
[s
].filter_out
- 1].used
--;
2076 ip_filters
[filter_out
- 1].used
++;
2078 session
[s
].filter_out
= filter_out
;
2082 // start tidy shutdown of session
2083 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
2085 int walled_garden
= session
[s
].walled_garden
;
2086 bundleidt b
= session
[s
].bundle
;
2087 //delete routes only for last session in bundle (in case of MPPP)
2088 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
2090 CSTAT(sessionshutdown
);
2092 if (!session
[s
].opened
)
2094 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
2095 return; // not a live session
2098 if (!session
[s
].die
)
2100 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
2101 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
2102 run_plugins(PLUGIN_KILL_SESSION
, &data
);
2105 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
2107 // RADIUS Stop message
2108 uint16_t r
= radiusnew(s
);
2111 // stop, if not already trying
2112 if (radius
[r
].state
!= RADIUSSTOP
)
2114 radius
[r
].term_cause
= term_cause
;
2115 radius
[r
].term_msg
= reason
;
2116 radiussend(r
, RADIUSSTOP
);
2120 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
2122 // Save counters to dump to accounting file
2123 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
2124 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
2127 if (!session
[s
].die
)
2128 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
2131 { // IP allocated, clear and unroute
2134 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
2136 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2137 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2140 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2141 session
[s
].route
[r
].ip
= 0;
2144 if (session
[s
].ip_pool_index
== -1) // static ip
2146 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2152 // unroute IPv6, if setup
2153 for (r
= 0; r
< MAXROUTE6
&& session
[s
].route6
[r
].ipv6route
.s6_addr
[0] && session
[s
].route6
[r
].ipv6prefixlen
; r
++)
2155 if (del_routes
) route6set(s
, session
[s
].route6
[r
].ipv6route
, session
[s
].route6
[r
].ipv6prefixlen
, 0);
2156 memset(&session
[s
].route6
[r
], 0, sizeof(session
[s
].route6
[r
]));
2159 if (session
[s
].ipv6address
.s6_addr
[0] && del_routes
)
2161 route6set(s
, session
[s
].ipv6address
, 128, 0);
2166 // This session was part of a bundle
2167 bundle
[b
].num_of_links
--;
2168 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2169 if(bundle
[b
].num_of_links
== 0)
2172 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2176 // Adjust the members array to accomodate the new change
2177 uint8_t mem_num
= 0;
2178 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2179 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2182 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2183 if(bundle
[b
].members
[ml
] == s
)
2188 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2189 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2191 // If the killed session is the first of the bundle,
2192 // the new first session must be stored in the cache_ipmap
2193 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2196 sessionidt new_s
= bundle
[b
].members
[0];
2199 // Add the route for this session.
2200 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2205 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2206 ip
= session
[new_s
].route
[r
].ip
;
2208 if (!prefixlen
) prefixlen
= 32;
2209 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2211 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2212 cache_ipmap(i
, new_s
);
2214 cache_ipmap(session
[new_s
].ip
, new_s
);
2217 for (r
= 0; r
< MAXROUTE6
&& session
[new_s
].route6
[r
].ipv6prefixlen
; r
++)
2219 cache_ipv6map(session
[new_s
].route6
[r
].ipv6route
, session
[new_s
].route6
[r
].ipv6prefixlen
, new_s
);
2222 if (session
[new_s
].ipv6address
.s6_addr
[0])
2224 cache_ipv6map(session
[new_s
].ipv6address
, 128, new_s
);
2230 cluster_send_bundle(b
);
2234 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2235 throttle_session(s
, 0, 0);
2239 if (session
[s
].tunnel
== TUNNEL_ID_PPPOE
)
2241 pppoe_shutdown_session(s
);
2246 controlt
*c
= controlnew(14); // sending CDN
2250 buf
[0] = htons(cdn_result
);
2251 buf
[1] = htons(cdn_error
);
2252 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2255 control16(c
, 1, cdn_result
, 1);
2257 control16(c
, 14, s
, 1); // assigned session (our end)
2258 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2262 // update filter refcounts
2263 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2264 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2267 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2268 sess_local
[s
].lcp
.restart
= 0;
2269 sess_local
[s
].ipcp
.restart
= 0;
2270 sess_local
[s
].ipv6cp
.restart
= 0;
2271 sess_local
[s
].ccp
.restart
= 0;
2273 cluster_send_session(s
);
2276 void sendipcp(sessionidt s
, tunnelidt t
)
2278 uint8_t buf
[MAXETHER
];
2282 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2284 if (!session
[s
].unique_id
)
2286 if (!++last_id
) ++last_id
; // skip zero
2287 session
[s
].unique_id
= last_id
;
2290 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2294 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2295 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2296 q
[4] = 3; // ip address option
2297 q
[5] = 6; // option length
2298 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2299 config
->iftun_n_address
[tunnel
[t
].indexudp
] ? config
->iftun_n_address
[tunnel
[t
].indexudp
] :
2300 my_address
; // send my IP
2302 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2303 restart_timer(s
, ipcp
);
2306 void sendipv6cp(sessionidt s
, tunnelidt t
)
2308 uint8_t buf
[MAXETHER
];
2312 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2314 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2318 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2319 // only send one type
2321 *(uint16_t *) (q
+ 2) = htons(14);
2322 q
[4] = 1; // interface identifier option
2323 q
[5] = 10; // option length
2324 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2325 *(uint32_t *) (q
+ 10) = 0;
2328 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2329 restart_timer(s
, ipv6cp
);
2332 static void sessionclear(sessionidt s
)
2334 memset(&session
[s
], 0, sizeof(session
[s
]));
2335 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2336 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2338 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2339 session
[s
].next
= sessionfree
;
2343 // kill a session now
2344 void sessionkill(sessionidt s
, char *reason
)
2348 if (!session
[s
].opened
) // not alive
2351 if (session
[s
].next
)
2353 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2357 if (!session
[s
].die
)
2358 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2360 if (sess_local
[s
].radius
)
2361 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2363 if (session
[s
].forwardtosession
)
2365 sessionidt sess
= session
[s
].forwardtosession
;
2366 if (session
[sess
].forwardtosession
== s
)
2368 // Shutdown the linked session also.
2369 sessionshutdown(sess
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
2373 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2375 cluster_send_session(s
);
2378 static void tunnelclear(tunnelidt t
)
2381 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2382 tunnel
[t
].state
= TUNNELFREE
;
2385 static void bundleclear(bundleidt b
)
2388 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2389 bundle
[b
].state
= BUNDLEFREE
;
2392 // kill a tunnel now
2393 static void tunnelkill(tunnelidt t
, char *reason
)
2400 tunnel
[t
].state
= TUNNELDIE
;
2402 // free control messages
2403 while ((c
= tunnel
[t
].controls
))
2405 controlt
* n
= c
->next
;
2406 tunnel
[t
].controls
= n
;
2407 tunnel
[t
].controlc
--;
2408 c
->next
= controlfree
;
2412 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2413 if (session
[s
].tunnel
== t
)
2414 sessionkill(s
, reason
);
2418 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2419 cli_tunnel_actions
[t
].action
= 0;
2420 cluster_send_tunnel(t
);
2423 // shut down a tunnel cleanly
2424 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2428 CSTAT(tunnelshutdown
);
2430 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2432 // never set up, can immediately kill
2433 tunnelkill(t
, reason
);
2436 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2439 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2440 if (session
[s
].tunnel
== t
)
2441 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2443 tunnel
[t
].state
= TUNNELDIE
;
2444 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2445 cluster_send_tunnel(t
);
2446 // TBA - should we wait for sessions to stop?
2449 controlt
*c
= controlnew(4); // sending StopCCN
2454 buf
[0] = htons(result
);
2455 buf
[1] = htons(error
);
2458 int m
= strlen(msg
);
2459 if (m
+ 4 > sizeof(buf
))
2460 m
= sizeof(buf
) - 4;
2462 memcpy(buf
+2, msg
, m
);
2466 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2469 control16(c
, 1, result
, 1);
2471 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2472 controladd(c
, 0, t
); // send the message
2476 // read and process packet on tunnel (UDP)
2477 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, uint16_t indexudpfd
)
2479 uint8_t *sendchalresponse
= NULL
;
2480 uint8_t *recvchalresponse
= NULL
;
2481 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2482 uint8_t *p
= buf
+ 2;
2489 LOG_HEX(5, "UDP Data", buf
, len
);
2490 STAT(tunnel_rx_packets
);
2491 INC_STAT(tunnel_rx_bytes
, len
);
2494 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2495 STAT(tunnel_rx_errors
);
2498 if ((buf
[1] & 0x0F) != 2)
2500 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2501 STAT(tunnel_rx_errors
);
2506 l
= ntohs(*(uint16_t *) p
);
2509 t
= ntohs(*(uint16_t *) p
);
2511 s
= ntohs(*(uint16_t *) p
);
2513 if (s
>= MAXSESSION
)
2515 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2516 STAT(tunnel_rx_errors
);
2521 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2522 STAT(tunnel_rx_errors
);
2525 if (t
== TUNNEL_ID_PPPOE
)
2527 LOG(1, s
, t
, "Received UDP packet with tunnel ID reserved for pppoe\n");
2528 STAT(tunnel_rx_errors
);
2533 ns
= ntohs(*(uint16_t *) p
);
2535 nr
= ntohs(*(uint16_t *) p
);
2540 uint16_t o
= ntohs(*(uint16_t *) p
);
2545 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2546 STAT(tunnel_rx_errors
);
2551 // used to time out old tunnels
2552 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2553 tunnel
[t
].lastrec
= time_now
;
2557 uint16_t message
= 0xFFFF; // message type
2559 uint8_t mandatory
= 0;
2560 uint16_t asession
= 0; // assigned session
2561 uint32_t amagic
= 0; // magic number
2562 uint8_t aflags
= 0; // flags from last LCF
2563 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2564 char called
[MAXTEL
] = ""; // called number
2565 char calling
[MAXTEL
] = ""; // calling number
2567 if (!config
->cluster_iam_master
)
2569 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
2573 // control messages must have bits 0x80|0x40|0x08
2574 // (type, length and sequence) set, and bits 0x02|0x01
2575 // (offset and priority) clear
2576 if ((*buf
& 0xCB) != 0xC8)
2578 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2579 STAT(tunnel_rx_errors
);
2583 // check for duplicate tunnel open message
2589 // Is this a duplicate of the first packet? (SCCRQ)
2591 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2593 if (tunnel
[i
].state
!= TUNNELOPENING
||
2594 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2595 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2598 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2603 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2604 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2606 // if no tunnel specified, assign one
2609 if (!(t
= new_tunnel()))
2611 LOG(1, 0, 0, "No more tunnels\n");
2612 STAT(tunnel_overflow
);
2616 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2617 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2618 tunnel
[t
].window
= 4; // default window
2619 tunnel
[t
].indexudp
= indexudpfd
;
2620 STAT(tunnel_created
);
2621 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2622 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2625 // If the 'ns' just received is not the 'nr' we're
2626 // expecting, just send an ack and drop it.
2628 // if 'ns' is less, then we got a retransmitted packet.
2629 // if 'ns' is greater than missed a packet. Either way
2630 // we should ignore it.
2631 if (ns
!= tunnel
[t
].nr
)
2633 // is this the sequence we were expecting?
2634 STAT(tunnel_rx_errors
);
2635 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2636 t
, ns
, tunnel
[t
].nr
);
2638 if (l
) // Is this not a ZLB?
2643 // check sequence of this message
2645 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2646 // some to clear maybe?
2647 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2649 controlt
*c
= tunnel
[t
].controls
;
2650 tunnel
[t
].controls
= c
->next
;
2651 tunnel
[t
].controlc
--;
2652 c
->next
= controlfree
;
2655 tunnel
[t
].try = 0; // we have progress
2658 // receiver advance (do here so quoted correctly in any sends below)
2659 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2660 if (skip
< 0) skip
= 0;
2661 if (skip
< tunnel
[t
].controlc
)
2663 // some control packets can now be sent that were previous stuck out of window
2664 int tosend
= tunnel
[t
].window
- skip
;
2665 controlt
*c
= tunnel
[t
].controls
;
2673 tunnel
[t
].try = 0; // first send
2674 tunnelsend(c
->buf
, c
->length
, t
);
2679 if (!tunnel
[t
].controlc
)
2680 tunnel
[t
].retry
= 0; // caught up
2683 { // if not a null message
2688 // Default disconnect cause/message on receipt of CDN. Set to
2689 // more specific value from attribute 1 (result code) or 46
2690 // (disconnect cause) if present below.
2691 int disc_cause_set
= 0;
2692 int disc_cause
= TERM_NAS_REQUEST
;
2693 char const *disc_reason
= "Closed (Received CDN).";
2696 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2698 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2705 LOG(1, s
, t
, "Invalid length in AVP\n");
2706 STAT(tunnel_rx_errors
);
2711 if (flags
& 0x3C) // reserved bits, should be clear
2713 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2715 result
= 2; // general error
2716 error
= 3; // reserved field non-zero
2721 if (*(uint16_t *) (b
))
2723 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2725 result
= 2; // general error
2726 error
= 6; // generic vendor-specific error
2727 msg
= "unsupported vendor-specific";
2731 mtype
= ntohs(*(uint16_t *) (b
));
2739 // handle hidden AVPs
2740 if (!*config
->l2tp_secret
)
2742 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2744 result
= 2; // general error
2745 error
= 6; // generic vendor-specific error
2746 msg
= "secret not specified";
2749 if (!session
[s
].random_vector_length
)
2751 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2753 result
= 2; // general error
2754 error
= 6; // generic
2755 msg
= "no random vector";
2760 LOG(2, s
, t
, "Short hidden AVP.\n");
2762 result
= 2; // general error
2763 error
= 2; // length is wrong
2769 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2771 orig_len
= ntohs(*(uint16_t *) b
);
2772 if (orig_len
> n
+ 2)
2774 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2778 result
= 2; // general error
2779 error
= 2; // length is wrong
2788 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2789 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2793 case 0: // message type
2794 message
= ntohs(*(uint16_t *) b
);
2795 mandatory
= flags
& 0x80;
2796 LOG(4, s
, t
, " Message type = %u (%s)\n", message
, l2tp_code(message
));
2798 case 1: // result code
2800 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2801 char const *resdesc
= "(unknown)";
2802 char const *errdesc
= NULL
;
2807 resdesc
= l2tp_stopccn_result_code(rescode
);
2808 cause
= TERM_LOST_SERVICE
;
2810 else if (message
== 14)
2812 resdesc
= l2tp_cdn_result_code(rescode
);
2814 cause
= TERM_LOST_CARRIER
;
2816 cause
= TERM_ADMIN_RESET
;
2819 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2822 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2823 errdesc
= l2tp_error_code(errcode
);
2824 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2827 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2829 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2831 disc_cause_set
= mtype
;
2832 disc_reason
= errdesc
? errdesc
: resdesc
;
2839 case 2: // protocol version
2841 version
= ntohs(*(uint16_t *) (b
));
2842 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2843 if (version
&& version
!= 0x0100)
2844 { // allow 0.0 and 1.0
2845 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2847 result
= 5; // unspported protocol version
2848 error
= 0x0100; // supported version
2854 case 3: // framing capabilities
2856 case 4: // bearer capabilities
2858 case 5: // tie breaker
2859 // We never open tunnels, so we don't care about tie breakers
2861 case 6: // firmware revision
2863 case 7: // host name
2864 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2865 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2866 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2867 // TBA - to send to RADIUS
2869 case 8: // vendor name
2870 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2871 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2872 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2874 case 9: // assigned tunnel
2875 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2876 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2878 case 10: // rx window
2879 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2880 if (!tunnel
[t
].window
)
2881 tunnel
[t
].window
= 1; // window of 0 is silly
2882 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2884 case 11: // Request Challenge
2886 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2888 build_chap_response(b
, 2, n
, &sendchalresponse
);
2889 else if (message
== 2)
2890 build_chap_response(b
, 3, n
, &sendchalresponse
);
2893 case 13: // receive challenge Response
2894 if (tunnel
[t
].isremotelns
)
2896 recvchalresponse
= calloc(17, 1);
2897 memcpy(recvchalresponse
, b
, (n
< 17) ? n
: 16);
2898 LOG(3, s
, t
, "received challenge response from REMOTE LNS\n");
2901 // Why did they send a response? We never challenge.
2902 LOG(2, s
, t
, " received unexpected challenge response\n");
2905 case 14: // assigned session
2906 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2907 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2909 case 15: // call serial number
2910 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2912 case 18: // bearer type
2913 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2916 case 19: // framing type
2917 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2920 case 21: // called number
2921 memset(called
, 0, sizeof(called
));
2922 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2923 LOG(4, s
, t
, " Called <%s>\n", called
);
2925 case 22: // calling number
2926 memset(calling
, 0, sizeof(calling
));
2927 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2928 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2932 case 24: // tx connect speed
2935 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2939 // AS5300s send connect speed as a string
2941 memset(tmp
, 0, sizeof(tmp
));
2942 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2943 session
[s
].tx_connect_speed
= atol(tmp
);
2945 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2947 case 38: // rx connect speed
2950 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2954 // AS5300s send connect speed as a string
2956 memset(tmp
, 0, sizeof(tmp
));
2957 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2958 session
[s
].rx_connect_speed
= atol(tmp
);
2960 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2962 case 25: // Physical Channel ID
2964 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2965 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2968 case 29: // Proxy Authentication Type
2970 uint16_t atype
= ntohs(*(uint16_t *)b
);
2971 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2974 case 30: // Proxy Authentication Name
2977 memset(authname
, 0, sizeof(authname
));
2978 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2979 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2983 case 31: // Proxy Authentication Challenge
2985 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2988 case 32: // Proxy Authentication ID
2990 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2991 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2994 case 33: // Proxy Authentication Response
2995 LOG(4, s
, t
, " Proxy Auth Response\n");
2997 case 27: // last sent lcp
2998 { // find magic number
2999 uint8_t *p
= b
, *e
= p
+ n
;
3000 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
3002 if (*p
== 5 && p
[1] == 6) // Magic-Number
3003 amagic
= ntohl(*(uint32_t *) (p
+ 2));
3004 else if (*p
== 7) // Protocol-Field-Compression
3005 aflags
|= SESSION_PFC
;
3006 else if (*p
== 8) // Address-and-Control-Field-Compression
3007 aflags
|= SESSION_ACFC
;
3012 case 28: // last recv lcp confreq
3014 case 26: // Initial Received LCP CONFREQ
3016 case 39: // seq required - we control it as an LNS anyway...
3018 case 36: // Random Vector
3019 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
3020 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
3021 if (n
> sizeof(session
[s
].random_vector
))
3022 n
= sizeof(session
[s
].random_vector
);
3023 memcpy(session
[s
].random_vector
, b
, n
);
3024 session
[s
].random_vector_length
= n
;
3026 case 46: // ppp disconnect cause
3029 uint16_t code
= ntohs(*(uint16_t *) b
);
3030 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
3031 uint8_t dir
= *(b
+ 4);
3033 LOG(4, s
, t
, " PPP disconnect cause "
3034 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
3035 code
, proto
, dir
, n
- 5, b
+ 5);
3037 disc_cause_set
= mtype
;
3041 case 1: // admin disconnect
3042 disc_cause
= TERM_ADMIN_RESET
;
3043 disc_reason
= "Administrative disconnect";
3045 case 3: // lcp terminate
3046 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
3047 disc_cause
= TERM_USER_REQUEST
;
3048 disc_reason
= "Normal disconnection";
3050 case 4: // compulsory encryption unavailable
3051 if (dir
!= 1) break; // 1=refused by peer, 2=local
3052 disc_cause
= TERM_USER_ERROR
;
3053 disc_reason
= "Compulsory encryption refused";
3055 case 5: // lcp: fsm timeout
3056 disc_cause
= TERM_PORT_ERROR
;
3057 disc_reason
= "LCP: FSM timeout";
3059 case 6: // lcp: no recognisable lcp packets received
3060 disc_cause
= TERM_PORT_ERROR
;
3061 disc_reason
= "LCP: no recognisable LCP packets";
3063 case 7: // lcp: magic-no error (possibly looped back)
3064 disc_cause
= TERM_PORT_ERROR
;
3065 disc_reason
= "LCP: magic-no error (possible loop)";
3067 case 8: // lcp: echo request timeout
3068 disc_cause
= TERM_PORT_ERROR
;
3069 disc_reason
= "LCP: echo request timeout";
3071 case 13: // auth: fsm timeout
3072 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3073 disc_reason
= "Authentication: FSM timeout";
3075 case 15: // auth: unacceptable auth protocol
3076 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3077 disc_reason
= "Unacceptable authentication protocol";
3079 case 16: // auth: authentication failed
3080 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3081 disc_reason
= "Authentication failed";
3083 case 17: // ncp: fsm timeout
3084 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3085 disc_reason
= "NCP: FSM timeout";
3087 case 18: // ncp: no ncps available
3088 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3089 disc_reason
= "NCP: no NCPs available";
3091 case 19: // ncp: failure to converge on acceptable address
3092 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3093 disc_reason
= (dir
== 1)
3094 ? "NCP: too many Configure-Naks received from peer"
3095 : "NCP: too many Configure-Naks sent to peer";
3097 case 20: // ncp: user not permitted to use any address
3098 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
3099 disc_reason
= (dir
== 1)
3100 ? "NCP: local link address not acceptable to peer"
3101 : "NCP: remote link address not acceptable";
3108 static char e
[] = "unknown AVP 0xXXXX";
3109 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
3111 result
= 2; // general error
3112 error
= 8; // unknown mandatory AVP
3113 sprintf((msg
= e
) + 14, "%04x", mtype
);
3120 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
3124 case 1: // SCCRQ - Start Control Connection Request
3125 tunnel
[t
].state
= TUNNELOPENING
;
3126 LOG(3, s
, t
, "Received SCCRQ\n");
3127 if (main_quit
!= QUIT_SHUTDOWN
)
3129 LOG(3, s
, t
, "sending SCCRP\n");
3130 controlt
*c
= controlnew(2); // sending SCCRP
3131 control16(c
, 2, version
, 1); // protocol version
3132 control32(c
, 3, 3, 1); // framing
3133 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3134 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Send Challenge response
3135 control16(c
, 9, t
, 1); // assigned tunnel
3136 controladd(c
, 0, t
); // send the resply
3140 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3144 tunnel
[t
].state
= TUNNELOPEN
;
3145 tunnel
[t
].lastrec
= time_now
;
3146 LOG(3, s
, t
, "Received SCCRP\n");
3147 if (main_quit
!= QUIT_SHUTDOWN
)
3149 if (tunnel
[t
].isremotelns
&& recvchalresponse
)
3153 lac_calc_rlns_auth(t
, 2, hash
); // id = 2 (SCCRP)
3154 // check authenticator
3155 if (memcmp(hash
, recvchalresponse
, 16) == 0)
3157 LOG(3, s
, t
, "sending SCCCN to REMOTE LNS\n");
3158 controlt
*c
= controlnew(3); // sending SCCCN
3159 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
3160 controls(c
, 8, Vendor_name
, 1); // Vendor name
3161 control16(c
, 2, version
, 1); // protocol version
3162 control32(c
, 3, 3, 1); // framing Capabilities
3163 if (sendchalresponse
) controlb(c
, 13, sendchalresponse
, 16, 1); // Challenge response
3164 control16(c
, 9, t
, 1); // assigned tunnel
3165 controladd(c
, 0, t
); // send
3169 tunnelshutdown(t
, "Bad chap response from REMOTE LNS", 4, 0, 0);
3175 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3179 LOG(3, s
, t
, "Received SCCN\n");
3180 tunnel
[t
].state
= TUNNELOPEN
;
3181 tunnel
[t
].lastrec
= time_now
;
3182 controlnull(t
); // ack
3185 LOG(3, s
, t
, "Received StopCCN\n");
3186 controlnull(t
); // ack
3187 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
3190 LOG(3, s
, t
, "Received HELLO\n");
3191 controlnull(t
); // simply ACK
3195 LOG(3, s
, t
, "Received OCRQ\n");
3199 LOG(3, s
, t
, "Received OCRO\n");
3203 LOG(3, s
, t
, "Received OCCN\n");
3206 LOG(3, s
, t
, "Received ICRQ\n");
3207 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
3209 controlt
*c
= controlnew(11); // ICRP
3211 LOG(3, s
, t
, "Sending ICRP\n");
3214 sessionfree
= session
[s
].next
;
3215 memset(&session
[s
], 0, sizeof(session
[s
]));
3217 if (s
> config
->cluster_highest_sessionid
)
3218 config
->cluster_highest_sessionid
= s
;
3220 session
[s
].opened
= time_now
;
3221 session
[s
].tunnel
= t
;
3222 session
[s
].far
= asession
;
3223 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3224 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
3225 control16(c
, 14, s
, 1); // assigned session
3226 controladd(c
, asession
, t
); // send the reply
3228 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
3229 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3231 session
[s
].ppp
.phase
= Establish
;
3232 session
[s
].ppp
.lcp
= Starting
;
3234 STAT(session_created
);
3239 controlt
*c
= controlnew(14); // CDN
3240 LOG(3, s
, t
, "Sending CDN\n");
3243 STAT(session_overflow
);
3244 LOG(1, 0, t
, "No free sessions\n");
3245 control16(c
, 1, 4, 0); // temporary lack of resources
3248 control16(c
, 1, 2, 7); // shutting down, try another
3250 controladd(c
, asession
, t
); // send the message
3254 LOG(3, s
, t
, "Received ICRP\n");
3255 if (session
[s
].forwardtosession
)
3257 controlt
*c
= controlnew(12); // ICCN
3259 session
[s
].opened
= time_now
;
3260 session
[s
].tunnel
= t
;
3261 session
[s
].far
= asession
;
3262 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3264 control32(c
, 19, 1, 1); // Framing Type
3265 control32(c
, 24, 10000000, 1); // Tx Connect Speed
3266 controladd(c
, asession
, t
); // send the message
3267 LOG(3, s
, t
, "Sending ICCN\n");
3271 LOG(3, s
, t
, "Received ICCN\n");
3272 if (amagic
== 0) amagic
= time_now
;
3273 session
[s
].magic
= amagic
; // set magic number
3274 session
[s
].flags
= aflags
; // set flags received
3275 session
[s
].mru
= PPPoE_MRU
; // default
3276 controlnull(t
); // ack
3279 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3280 sess_local
[s
].ppp_mru
= MRU
;
3282 // Set multilink options before sending initial LCP packet
3283 sess_local
[s
].mp_mrru
= 1614;
3284 sess_local
[s
].mp_epdis
= ntohl(config
->iftun_address
? config
->iftun_address
: my_address
);
3287 change_state(s
, lcp
, RequestSent
);
3291 LOG(3, s
, t
, "Received CDN\n");
3292 controlnull(t
); // ack
3293 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3296 LOG(1, s
, t
, "Missing message type\n");
3299 STAT(tunnel_rx_errors
);
3301 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3303 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3306 if (sendchalresponse
) free(sendchalresponse
);
3307 if (recvchalresponse
) free(recvchalresponse
);
3308 cluster_send_tunnel(t
);
3312 LOG(4, s
, t
, " Got a ZLB ack\n");
3319 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3320 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3321 { // HDLC address header, discard
3327 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3328 STAT(tunnel_rx_errors
);
3338 proto
= ntohs(*(uint16_t *) p
);
3343 if (session
[s
].forwardtosession
)
3345 LOG(5, s
, t
, "Forwarding data session to session %u\n", session
[s
].forwardtosession
);
3346 // Forward to LAC/BAS or Remote LNS session
3347 lac_session_forward(buf
, len
, s
, proto
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3350 else if (config
->auth_tunnel_change_addr_src
)
3352 if (tunnel
[t
].ip
!= ntohl(addr
->sin_addr
.s_addr
) &&
3353 tunnel
[t
].port
== ntohs(addr
->sin_port
))
3355 // The remotes BAS are a clustered l2tpns server and the source IP has changed
3356 LOG(5, s
, t
, "The tunnel IP source (%s) has changed by new IP (%s)\n",
3357 fmtaddr(htonl(tunnel
[t
].ip
), 0), fmtaddr(addr
->sin_addr
.s_addr
, 0));
3359 tunnel
[t
].ip
= ntohl(addr
->sin_addr
.s_addr
);
3363 if (s
&& !session
[s
].opened
) // Is something wrong??
3365 if (!config
->cluster_iam_master
)
3367 // Pass it off to the master to deal with..
3368 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3372 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3373 STAT(tunnel_rx_errors
);
3377 if (proto
== PPPPAP
)
3379 session
[s
].last_packet
= time_now
;
3380 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3381 processpap(s
, t
, p
, l
);
3383 else if (proto
== PPPCHAP
)
3385 session
[s
].last_packet
= time_now
;
3386 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3387 processchap(s
, t
, p
, l
);
3389 else if (proto
== PPPLCP
)
3391 session
[s
].last_packet
= time_now
;
3392 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3393 processlcp(s
, t
, p
, l
);
3395 else if (proto
== PPPIPCP
)
3397 session
[s
].last_packet
= time_now
;
3398 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3399 processipcp(s
, t
, p
, l
);
3401 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3403 session
[s
].last_packet
= time_now
;
3404 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3405 processipv6cp(s
, t
, p
, l
);
3407 else if (proto
== PPPCCP
)
3409 session
[s
].last_packet
= time_now
;
3410 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3411 processccp(s
, t
, p
, l
);
3413 else if (proto
== PPPIP
)
3417 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3418 return; // closing session, PPP not processed
3421 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3422 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3424 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3428 processipin(s
, t
, p
, l
);
3430 else if (proto
== PPPMP
)
3434 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3435 return; // closing session, PPP not processed
3438 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3439 if (!config
->cluster_iam_master
)
3441 // The fragments reconstruction is managed by the Master.
3442 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3446 processmpin(s
, t
, p
, l
);
3448 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3452 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3453 return; // closing session, PPP not processed
3456 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3457 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3459 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3463 if (!config
->cluster_iam_master
)
3465 // Check if DhcpV6, IP dst: FF02::1:2, Src Port 0x0222 (546), Dst Port 0x0223 (547)
3466 if (*(p
+ 6) == 17 && *(p
+ 24) == 0xFF && *(p
+ 25) == 2 &&
3467 *(uint32_t *)(p
+ 26) == 0 && *(uint32_t *)(p
+ 30) == 0 &&
3468 *(uint16_t *)(p
+ 34) == 0 && *(p
+ 36) == 0 && *(p
+ 37) == 1 && *(p
+ 38) == 0 && *(p
+ 39) == 2 &&
3469 *(p
+ 40) == 2 && *(p
+ 41) == 0x22 && *(p
+ 42) == 2 && *(p
+ 43) == 0x23)
3471 // DHCPV6 must be managed by the Master.
3472 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
);
3477 processipv6in(s
, t
, p
, l
);
3479 else if (session
[s
].ppp
.lcp
== Opened
)
3481 session
[s
].last_packet
= time_now
;
3482 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
, indexudpfd
); return; }
3483 protoreject(s
, t
, p
, l
, proto
);
3487 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3488 proto
, ppp_state(session
[s
].ppp
.lcp
));
3493 // read and process packet on tun
3494 // (i.e. this routine writes to buf[-8]).
3495 static void processtun(uint8_t * buf
, int len
)
3497 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3498 STAT(tun_rx_packets
);
3499 INC_STAT(tun_rx_bytes
, len
);
3507 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3508 STAT(tun_rx_errors
);
3512 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3513 processipout(buf
, len
);
3514 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3515 && config
->ipv6_prefix
.s6_addr
[0])
3516 processipv6out(buf
, len
);
3521 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3522 // that we look at the whole of the tunnel, radius and session tables
3524 static void regular_cleanups(double period
)
3526 // Next tunnel, radius and session to check for actions on.
3527 static tunnelidt t
= 0;
3529 static sessionidt s
= 0;
3542 // divide up tables into slices based on the last run
3543 t_slice
= config
->cluster_highest_tunnelid
* period
;
3544 r_slice
= (MAXRADIUS
- 1) * period
;
3545 s_slice
= config
->cluster_highest_sessionid
* period
;
3549 else if (t_slice
> config
->cluster_highest_tunnelid
)
3550 t_slice
= config
->cluster_highest_tunnelid
;
3554 else if (r_slice
> (MAXRADIUS
- 1))
3555 r_slice
= MAXRADIUS
- 1;
3559 else if (s_slice
> config
->cluster_highest_sessionid
)
3560 s_slice
= config
->cluster_highest_sessionid
;
3562 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3564 for (i
= 0; i
< t_slice
; i
++)
3567 if (t
> config
->cluster_highest_tunnelid
)
3570 if (t
== TUNNEL_ID_PPPOE
)
3573 // check for expired tunnels
3574 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3576 STAT(tunnel_timeout
);
3577 tunnelkill(t
, "Expired");
3581 // check for message resend
3582 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3584 // resend pending messages as timeout on reply
3585 if (tunnel
[t
].retry
<= TIME
)
3587 controlt
*c
= tunnel
[t
].controls
;
3588 uint16_t w
= tunnel
[t
].window
;
3589 tunnel
[t
].try++; // another try
3590 if (tunnel
[t
].try > 5)
3591 tunnelkill(t
, "Timeout on control message"); // game over
3595 tunnelsend(c
->buf
, c
->length
, t
);
3603 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3605 if (!config
->disable_sending_hello
)
3607 controlt
*c
= controlnew(6); // sending HELLO
3608 controladd(c
, 0, t
); // send the message
3609 LOG(3, 0, t
, "Sending HELLO message\n");
3614 // Check for tunnel changes requested from the CLI
3615 if ((a
= cli_tunnel_actions
[t
].action
))
3617 cli_tunnel_actions
[t
].action
= 0;
3618 if (a
& CLI_TUN_KILL
)
3620 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3621 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3627 for (i
= 0; i
< r_slice
; i
++)
3633 if (!radius
[r
].state
)
3636 if (radius
[r
].retry
<= TIME
)
3643 for (i
= 0; i
< s_slice
; i
++)
3646 if (s
> config
->cluster_highest_sessionid
)
3649 if (!session
[s
].opened
) // Session isn't in use
3652 // check for expired sessions
3655 if (session
[s
].die
<= TIME
)
3657 sessionkill(s
, "Expired");
3664 if (sess_local
[s
].lcp
.restart
<= time_now
)
3666 int next_state
= session
[s
].ppp
.lcp
;
3667 switch (session
[s
].ppp
.lcp
)
3671 next_state
= RequestSent
;
3674 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3676 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3677 sendlcp(s
, session
[s
].tunnel
);
3678 change_state(s
, lcp
, next_state
);
3682 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3683 STAT(session_timeout
);
3693 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3695 int next_state
= session
[s
].ppp
.ipcp
;
3696 switch (session
[s
].ppp
.ipcp
)
3700 next_state
= RequestSent
;
3703 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3705 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3706 sendipcp(s
, session
[s
].tunnel
);
3707 change_state(s
, ipcp
, next_state
);
3711 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3712 STAT(session_timeout
);
3722 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3724 int next_state
= session
[s
].ppp
.ipv6cp
;
3725 switch (session
[s
].ppp
.ipv6cp
)
3729 next_state
= RequestSent
;
3732 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3734 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3735 sendipv6cp(s
, session
[s
].tunnel
);
3736 change_state(s
, ipv6cp
, next_state
);
3740 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3741 change_state(s
, ipv6cp
, Stopped
);
3748 if (sess_local
[s
].ccp
.restart
<= time_now
)
3750 int next_state
= session
[s
].ppp
.ccp
;
3751 switch (session
[s
].ppp
.ccp
)
3755 next_state
= RequestSent
;
3758 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3760 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3761 sendccp(s
, session
[s
].tunnel
);
3762 change_state(s
, ccp
, next_state
);
3766 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3767 change_state(s
, ccp
, Stopped
);
3774 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3775 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3777 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3778 STAT(session_timeout
);
3783 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3784 if (session
[s
].ppp
.phase
>= Establish
&&
3785 ((!config
->ppp_keepalive
) ||
3786 (time_now
- session
[s
].last_packet
>= config
->echo_timeout
)) &&
3787 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3789 uint8_t b
[MAXETHER
];
3791 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3795 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3796 *(uint16_t *)(q
+ 2) = htons(8); // Length
3797 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3799 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3800 (int)(time_now
- session
[s
].last_packet
));
3802 tunnelsend(b
, (q
- b
) + 8, session
[s
].tunnel
); // send it
3803 sess_local
[s
].last_echo
= time_now
;
3807 // Drop sessions who have reached session_timeout seconds
3808 if (session
[s
].session_timeout
)
3810 bundleidt bid
= session
[s
].bundle
;
3813 if (time_now
- bundle
[bid
].last_check
>= 1)
3815 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3816 bundle
[bid
].last_check
= time_now
;
3817 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3820 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3822 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3829 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3831 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3837 // Drop sessions who have reached idle_timeout seconds
3838 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3840 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3841 STAT(session_timeout
);
3846 // Check for actions requested from the CLI
3847 if ((a
= cli_session_actions
[s
].action
))
3851 cli_session_actions
[s
].action
= 0;
3852 if (a
& CLI_SESS_KILL
)
3854 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3855 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3856 a
= 0; // dead, no need to check for other actions
3860 if (a
& CLI_SESS_NOSNOOP
)
3862 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3863 session
[s
].snoop_ip
= 0;
3864 session
[s
].snoop_port
= 0;
3868 else if (a
& CLI_SESS_SNOOP
)
3870 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3871 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3872 cli_session_actions
[s
].snoop_port
);
3874 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3875 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3880 if (a
& CLI_SESS_NOTHROTTLE
)
3882 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3883 throttle_session(s
, 0, 0);
3887 else if (a
& CLI_SESS_THROTTLE
)
3889 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3890 cli_session_actions
[s
].throttle_in
,
3891 cli_session_actions
[s
].throttle_out
);
3893 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3898 if (a
& CLI_SESS_NOFILTER
)
3900 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3901 filter_session(s
, 0, 0);
3905 else if (a
& CLI_SESS_FILTER
)
3907 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3908 cli_session_actions
[s
].filter_in
,
3909 cli_session_actions
[s
].filter_out
);
3911 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3917 cluster_send_session(s
);
3920 // RADIUS interim accounting
3921 if (config
->radius_accounting
&& config
->radius_interim
> 0
3922 && session
[s
].ip
&& !session
[s
].walled_garden
3923 && !sess_local
[s
].radius
// RADIUS already in progress
3924 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3925 && session
[s
].flags
& SESSION_STARTED
)
3927 int rad
= radiusnew(s
);
3930 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3931 STAT(radius_overflow
);
3935 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3936 session
[s
].user
, session
[s
].unique_id
);
3938 radiussend(rad
, RADIUSINTERIM
);
3939 sess_local
[s
].last_interim
= time_now
;
3944 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3945 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3949 // Are we in the middle of a tunnel update, or radius
3952 static int still_busy(void)
3955 static clockt last_talked
= 0;
3956 static clockt start_busy_wait
= 0;
3959 static time_t stopped_bgp
= 0;
3964 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3966 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3967 if (bgp_peers
[i
].state
== Established
)
3968 bgp_stop(&bgp_peers
[i
]);
3970 stopped_bgp
= time_now
;
3972 if (!config
->cluster_iam_master
)
3974 // we don't want to become master
3975 cluster_send_ping(0);
3981 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3986 if (!config
->cluster_iam_master
)
3989 if (main_quit
== QUIT_SHUTDOWN
)
3991 static int dropped
= 0;
3996 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3997 for (i
= 1; i
< MAXTUNNEL
; i
++)
3998 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3999 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
4005 if (start_busy_wait
== 0)
4006 start_busy_wait
= TIME
;
4008 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
4010 if (!tunnel
[i
].controlc
)
4013 if (last_talked
!= TIME
)
4015 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
4021 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
4022 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
4024 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
4028 for (i
= 1; i
< MAXRADIUS
; i
++)
4030 if (radius
[i
].state
== RADIUSNULL
)
4032 if (radius
[i
].state
== RADIUSWAIT
)
4035 if (last_talked
!= TIME
)
4037 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
4047 # include <sys/epoll.h>
4049 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
4050 # include "fake_epoll.h"
4053 // the base set of fds polled: cli, cluster, tun, udp (MAX_UDPFD), control, dae, netlink, udplac, pppoedisc, pppoesess
4054 #define BASE_FDS (9 + MAX_UDPFD)
4056 // additional polled fds
4058 # define EXTRA_FDS BGP_NUM_PEERS
4060 # define EXTRA_FDS 0
4063 // main loop - gets packets on tun or udp and processes them
4064 static void mainloop(void)
4068 uint8_t *p
= buf
+ 32; // for the hearder of the forwarded MPPP packet (see C_MPPP_FORWARD)
4069 // and the forwarded pppoe session
4070 int size_bufp
= sizeof(buf
) - 32;
4071 clockt next_cluster_ping
= 0; // send initial ping immediately
4072 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
4073 int maxevent
= sizeof(events
)/sizeof(*events
);
4075 if ((epollfd
= epoll_create(maxevent
)) < 0)
4077 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
4081 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",
4082 clifd
, cluster_sockfd
, tunfd
, udpfd
[0], controlfd
, daefd
, nlfd
, udplacfd
, pppoediscfd
, pppoesessfd
);
4084 /* setup our fds to poll for input */
4086 static struct event_data d
[BASE_FDS
];
4087 struct epoll_event e
;
4094 d
[i
].type
= FD_TYPE_CLI
;
4095 e
.data
.ptr
= &d
[i
++];
4096 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
4099 d
[i
].type
= FD_TYPE_CLUSTER
;
4100 e
.data
.ptr
= &d
[i
++];
4101 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
4103 d
[i
].type
= FD_TYPE_TUN
;
4104 e
.data
.ptr
= &d
[i
++];
4105 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
4107 d
[i
].type
= FD_TYPE_CONTROL
;
4108 e
.data
.ptr
= &d
[i
++];
4109 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
4111 d
[i
].type
= FD_TYPE_DAE
;
4112 e
.data
.ptr
= &d
[i
++];
4113 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
4115 d
[i
].type
= FD_TYPE_NETLINK
;
4116 e
.data
.ptr
= &d
[i
++];
4117 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
4119 d
[i
].type
= FD_TYPE_PPPOEDISC
;
4120 e
.data
.ptr
= &d
[i
++];
4121 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoediscfd
, &e
);
4123 d
[i
].type
= FD_TYPE_PPPOESESS
;
4124 e
.data
.ptr
= &d
[i
++];
4125 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, pppoesessfd
, &e
);
4127 for (j
= 0; j
< config
->nbudpfd
; j
++)
4129 d
[i
].type
= FD_TYPE_UDP
;
4131 e
.data
.ptr
= &d
[i
++];
4132 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
[j
], &e
);
4137 signal(SIGPIPE
, SIG_IGN
);
4138 bgp_setup(config
->as_number
);
4139 if (config
->bind_address
)
4140 bgp_add_route(config
->bind_address
, 0xffffffff);
4142 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
4144 if (config
->neighbour
[i
].name
[0])
4145 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
4146 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
4147 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
4148 0); /* 0 = routing disabled */
4152 while (!main_quit
|| still_busy())
4162 config
->reload_config
++;
4165 if (config
->reload_config
)
4167 config
->reload_config
= 0;
4175 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
4176 STAT(select_called
);
4181 if (errno
== EINTR
||
4182 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
4185 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
4191 struct sockaddr_in addr
;
4192 struct in_addr local
;
4195 int udp_ready
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4196 int pppoesess_ready
= 0;
4197 int pppoesess_pkts
= 0;
4199 int cluster_ready
= 0;
4200 int udp_pkts
[MAX_UDPFD
+ 1] = INIT_TABUDPVAR
;
4202 int cluster_pkts
= 0;
4204 uint32_t bgp_events
[BGP_NUM_PEERS
];
4205 memset(bgp_events
, 0, sizeof(bgp_events
));
4208 for (c
= n
, i
= 0; i
< c
; i
++)
4210 struct event_data
*d
= events
[i
].data
.ptr
;
4214 case FD_TYPE_CLI
: // CLI connections
4218 alen
= sizeof(addr
);
4219 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
4225 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
4231 // these are handled below, with multiple interleaved reads
4232 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
4233 case FD_TYPE_TUN
: tun_ready
++; break;
4234 case FD_TYPE_UDP
: udp_ready
[d
->index
]++; break;
4235 case FD_TYPE_PPPOESESS
: pppoesess_ready
++; break;
4237 case FD_TYPE_PPPOEDISC
: // pppoe discovery
4238 s
= read(pppoediscfd
, p
, size_bufp
);
4239 if (s
> 0) process_pppoe_disc(p
, s
);
4243 case FD_TYPE_CONTROL
: // nsctl commands
4244 alen
= sizeof(addr
);
4245 s
= recvfromto(controlfd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4246 if (s
> 0) processcontrol(p
, s
, &addr
, alen
, &local
);
4250 case FD_TYPE_DAE
: // DAE requests
4251 alen
= sizeof(addr
);
4252 s
= recvfromto(daefd
, p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4253 if (s
> 0) processdae(p
, s
, &addr
, alen
, &local
);
4257 case FD_TYPE_RADIUS
: // RADIUS response
4258 alen
= sizeof(addr
);
4259 s
= recvfrom(radfds
[d
->index
], p
, size_bufp
, MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
4260 if (s
>= 0 && config
->cluster_iam_master
)
4262 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
4263 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
4264 processrad(p
, s
, d
->index
);
4266 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
4267 fmtaddr(addr
.sin_addr
.s_addr
, 0));
4275 bgp_events
[d
->index
] = events
[i
].events
;
4280 case FD_TYPE_NETLINK
:
4282 struct nlmsghdr
*nh
= (struct nlmsghdr
*)p
;
4283 s
= netlink_recv(p
, size_bufp
);
4284 if (nh
->nlmsg_type
== NLMSG_ERROR
)
4286 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
4289 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
4291 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
4295 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
4300 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
);
4306 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
4311 bgp_process(bgp_events
);
4314 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4316 for (j
= 0; j
< config
->nbudpfd
; j
++)
4318 // L2TP and L2TP REMOTE LNS
4321 alen
= sizeof(addr
);
4322 if ((s
= recvfrom(udpfd
[j
], p
, size_bufp
, 0, (void *) &addr
, &alen
)) > 0)
4324 processudp(p
, s
, &addr
, j
);
4338 if ((s
= read(tunfd
, p
, size_bufp
)) > 0)
4351 if (pppoesess_ready
)
4353 if ((s
= read(pppoesessfd
, p
, size_bufp
)) > 0)
4355 process_pppoe_sess(p
, s
);
4360 pppoesess_ready
= 0;
4368 alen
= sizeof(addr
);
4369 if ((s
= recvfrom(cluster_sockfd
, p
, size_bufp
, MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4371 processcluster(p
, s
, addr
.sin_addr
.s_addr
);
4382 if (udp_pkts
[0] > 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4383 STAT(multi_read_used
);
4385 if (c
>= config
->multi_read_count
)
4387 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun %d cluster and %d pppoe packets\n",
4388 config
->multi_read_count
, udp_pkts
[0], tun_pkts
, cluster_pkts
, pppoesess_pkts
);
4389 STAT(multi_read_exceeded
);
4395 /* no event received, but timers could still have expired */
4396 bgp_process_peers_timers();
4401 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4403 // Log current traffic stats
4404 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4405 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4406 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4407 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4408 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4410 udp_tx
= udp_rx
= 0;
4411 udp_rx_pkt
= eth_rx_pkt
= 0;
4412 eth_tx
= eth_rx
= 0;
4415 if (config
->dump_speed
)
4416 printf("%s\n", config
->bandwidth
);
4418 // Update the internal time counter
4419 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4423 struct param_timer p
= { time_now
};
4424 run_plugins(PLUGIN_TIMER
, &p
);
4428 // Runs on every machine (master and slaves).
4429 if (next_cluster_ping
<= TIME
)
4431 // Check to see which of the cluster is still alive..
4433 cluster_send_ping(basetime
); // Only does anything if we're a slave
4434 cluster_check_master(); // ditto.
4436 cluster_heartbeat(); // Only does anything if we're a master.
4437 cluster_check_slaves(); // ditto.
4439 master_update_counts(); // If we're a slave, send our byte counters to our master.
4441 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4442 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4444 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4447 if (!config
->cluster_iam_master
)
4450 // Run token bucket filtering queue..
4451 // Only run it every 1/10th of a second.
4453 static clockt last_run
= 0;
4454 if (last_run
!= TIME
)
4461 // Handle timeouts, retries etc.
4463 static double last_clean
= 0;
4467 TIME
= now(&this_clean
);
4468 diff
= this_clean
- last_clean
;
4470 // Run during idle time (after we've handled
4471 // all incoming packets) or every 1/10th sec
4472 if (!more
|| diff
> 0.1)
4474 regular_cleanups(diff
);
4475 last_clean
= this_clean
;
4479 if (*config
->accounting_dir
)
4481 static clockt next_acct
= 0;
4482 static clockt next_shut_acct
= 0;
4484 if (next_acct
<= TIME
)
4486 // Dump accounting data
4487 next_acct
= TIME
+ ACCT_TIME
;
4488 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4491 else if (next_shut_acct
<= TIME
)
4493 // Dump accounting data for shutdown sessions
4494 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4501 // Are we the master and shutting down??
4502 if (config
->cluster_iam_master
)
4503 cluster_heartbeat(); // Flush any queued changes..
4505 // Ok. Notify everyone we're shutting down. If we're
4506 // the master, this will force an election.
4507 cluster_send_ping(0);
4510 // Important!!! We MUST not process any packets past this point!
4511 LOG(1, 0, 0, "Shutdown complete\n");
4514 static void stripdomain(char *host
)
4518 if ((p
= strchr(host
, '.')))
4524 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4530 while (fgets(buf
, sizeof(buf
), resolv
))
4532 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4535 if (!isspace(buf
[6]))
4539 while (isspace(*b
)) b
++;
4544 while (*b
&& !isspace(*b
)) b
++;
4546 if (buf
[0] == 'd') // domain is canonical
4552 // first search line
4555 // hold, may be subsequent domain line
4556 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4567 int hl
= strlen(host
);
4568 int dl
= strlen(domain
);
4569 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4570 host
[hl
-dl
- 1] = 0;
4574 *p
= 0; // everything after first dot
4579 // Init data structures
4580 static void initdata(int optdebug
, char *optconfig
)
4584 if (!(config
= shared_malloc(sizeof(configt
))))
4586 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4590 memset(config
, 0, sizeof(configt
));
4591 time(&config
->start_time
);
4592 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4593 config
->debug
= optdebug
;
4594 config
->num_tbfs
= MAXTBFS
;
4595 config
->rl_rate
= 28; // 28kbps
4596 config
->cluster_mcast_ttl
= 1;
4597 config
->cluster_master_min_adv
= 1;
4598 config
->ppp_restart_time
= 3;
4599 config
->ppp_max_configure
= 10;
4600 config
->ppp_max_failure
= 5;
4601 config
->kill_timedout_sessions
= 1;
4602 strcpy(config
->random_device
, RANDOMDEVICE
);
4603 // Set default value echo_timeout and idle_echo_timeout
4604 config
->echo_timeout
= ECHO_TIMEOUT
;
4605 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4606 config
->ppp_keepalive
= 1;
4607 // Set default RDNSS lifetime
4608 config
->dns6_lifetime
= 1200;
4610 log_stream
= stderr
;
4613 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4615 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4618 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4621 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4623 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4626 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4628 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4631 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4633 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4636 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4638 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4641 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4643 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4647 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4649 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4653 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4655 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4659 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4661 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4665 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4667 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4670 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4672 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4674 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4677 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4679 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4681 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4684 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4686 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4687 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4688 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4689 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4690 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4692 // Put all the sessions on the free list marked as undefined.
4693 for (i
= 1; i
< MAXSESSION
; i
++)
4695 session
[i
].next
= i
+ 1;
4696 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4698 session
[MAXSESSION
- 1].next
= 0;
4701 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4702 for (i
= 1; i
< MAXTUNNEL
; i
++)
4703 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4705 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4706 bundle
[i
].state
= BUNDLEUNDEF
;
4711 // Grab my hostname unless it's been specified
4712 gethostname(hostname
, sizeof(hostname
));
4713 stripdomain(hostname
);
4716 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4719 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4721 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4726 lac_initremotelnsdata();
4729 static int assign_ip_address(sessionidt s
)
4733 time_t best_time
= time_now
;
4734 char *u
= session
[s
].user
;
4738 CSTAT(assign_ip_address
);
4740 for (i
= 1; i
< ip_pool_size
; i
++)
4742 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4745 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4752 if (ip_address_pool
[i
].last
< best_time
)
4755 if (!(best_time
= ip_address_pool
[i
].last
))
4756 break; // never used, grab this one
4762 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4766 session
[s
].ip
= ip_address_pool
[best
].address
;
4767 session
[s
].ip_pool_index
= best
;
4768 ip_address_pool
[best
].assigned
= 1;
4769 ip_address_pool
[best
].last
= time_now
;
4770 ip_address_pool
[best
].session
= s
;
4771 if (session
[s
].walled_garden
)
4772 /* Don't track addresses of users in walled garden (note: this
4773 means that their address isn't "sticky" even if they get
4775 ip_address_pool
[best
].user
[0] = 0;
4777 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4780 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4781 reuse
? "Reusing" : "Allocating", best
);
4786 static void free_ip_address(sessionidt s
)
4788 int i
= session
[s
].ip_pool_index
;
4791 CSTAT(free_ip_address
);
4794 return; // what the?
4796 if (i
< 0) // Is this actually part of the ip pool?
4800 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4802 ip_address_pool
[i
].assigned
= 0;
4803 ip_address_pool
[i
].session
= 0;
4804 ip_address_pool
[i
].last
= time_now
;
4808 // Fsck the address pool against the session table.
4809 // Normally only called when we become a master.
4811 // This isn't perfect: We aren't keep tracking of which
4812 // users used to have an IP address.
4814 void rebuild_address_pool(void)
4819 // Zero the IP pool allocation, and build
4820 // a map from IP address to pool index.
4821 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4823 ip_address_pool
[i
].assigned
= 0;
4824 ip_address_pool
[i
].session
= 0;
4825 if (!ip_address_pool
[i
].address
)
4828 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4831 for (i
= 0; i
< MAXSESSION
; ++i
)
4834 if (!(session
[i
].opened
&& session
[i
].ip
))
4837 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4839 if (session
[i
].ip_pool_index
< 0)
4841 // Not allocated out of the pool.
4842 if (ipid
< 1) // Not found in the pool either? good.
4845 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4846 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4848 // Fall through and process it as part of the pool.
4852 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4854 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4856 session
[i
].ip_pool_index
= ipid
;
4860 ip_address_pool
[ipid
].assigned
= 1;
4861 ip_address_pool
[ipid
].session
= i
;
4862 ip_address_pool
[ipid
].last
= time_now
;
4863 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4864 session
[i
].ip_pool_index
= ipid
;
4865 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4870 // Fix the address pool to match a changed session.
4871 // (usually when the master sends us an update).
4872 static void fix_address_pool(int sid
)
4876 ipid
= session
[sid
].ip_pool_index
;
4878 if (ipid
> ip_pool_size
)
4879 return; // Ignore it. rebuild_address_pool will fix it up.
4881 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4882 return; // Just ignore it. rebuild_address_pool will take care of it.
4884 ip_address_pool
[ipid
].assigned
= 1;
4885 ip_address_pool
[ipid
].session
= sid
;
4886 ip_address_pool
[ipid
].last
= time_now
;
4887 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4891 // Add a block of addresses to the IP pool to hand out.
4893 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4897 prefixlen
= 32; // Host route only.
4899 addr
&= 0xffffffff << (32 - prefixlen
);
4901 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4904 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4906 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4907 continue; // Skip 0 and broadcast addresses.
4909 ip_address_pool
[ip_pool_size
].address
= i
;
4910 ip_address_pool
[ip_pool_size
].assigned
= 0;
4912 if (ip_pool_size
>= MAXIPPOOL
)
4914 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4920 // Initialize the IP address pool
4921 static void initippool()
4926 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4928 if (!(f
= fopen(IPPOOLFILE
, "r")))
4930 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4934 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4937 buf
[4095] = 0; // Force it to be zero terminated/
4939 if (*buf
== '#' || *buf
== '\n')
4940 continue; // Skip comments / blank lines
4941 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4942 if ((p
= (char *)strchr(buf
, ':')))
4946 src
= inet_addr(buf
);
4947 if (src
== INADDR_NONE
)
4949 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4952 // This entry is for a specific IP only
4953 if (src
!= config
->bind_address
)
4958 if ((p
= (char *)strchr(pool
, '/')))
4962 in_addr_t start
= 0;
4964 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4966 if (!*p
|| !(numbits
= atoi(p
)))
4968 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4971 start
= ntohl(inet_addr(pool
));
4973 // Add a static route for this pool
4974 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4975 fmtaddr(htonl(start
), 0), numbits
);
4977 routeset(0, start
, numbits
, 0, 1);
4979 add_to_ip_pool(start
, numbits
);
4983 // It's a single ip address
4984 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4988 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4991 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4993 struct sockaddr_in snoop_addr
= {0};
4994 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4997 snoop_addr
.sin_family
= AF_INET
;
4998 snoop_addr
.sin_addr
.s_addr
= destination
;
4999 snoop_addr
.sin_port
= ntohs(port
);
5001 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
5002 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
5003 htons(snoop_addr
.sin_port
));
5005 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
5006 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
5008 STAT(packets_snooped
);
5011 static int dump_session(FILE **f
, sessiont
*s
)
5013 if (!s
->opened
|| (!s
->ip
&& !s
->forwardtosession
) || !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
5018 char filename
[1024];
5020 time_t now
= time(NULL
);
5022 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
5023 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
5025 if (!(*f
= fopen(filename
, "w")))
5027 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
5031 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
5032 if(config
->account_all_origin
)
5034 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
5039 "# format: username ip qos uptxoctets downrxoctets origin(L=LAC, R=Remote LNS, P=PPPOE)\n",
5041 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
5047 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
5052 "# format: username ip qos uptxoctets downrxoctets\n",
5054 fmtaddr(config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] ? config
->iftun_n_address
[tunnel
[s
->tunnel
].indexudp
] : my_address
, 0),
5060 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
5061 if(config
->account_all_origin
)
5063 fprintf(*f
, "%s %s %d %u %u %s\n",
5064 s
->user
, // username
5065 fmtaddr(htonl(s
->ip
), 0), // ip
5066 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5067 (uint32_t) s
->cin_delta
, // uptxoctets
5068 (uint32_t) s
->cout_delta
, // downrxoctets
5069 (s
->tunnel
== TUNNEL_ID_PPPOE
)?"P":(tunnel
[s
->tunnel
].isremotelns
?"R":"L")); // Origin
5071 else if (!tunnel
[s
->tunnel
].isremotelns
&& (s
->tunnel
!= TUNNEL_ID_PPPOE
))
5073 fprintf(*f
, "%s %s %d %u %u\n",
5074 s
->user
, // username
5075 fmtaddr(htonl(s
->ip
), 0), // ip
5076 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
5077 (uint32_t) s
->cin_delta
, // uptxoctets
5078 (uint32_t) s
->cout_delta
); // downrxoctets
5081 s
->cin_delta
= s
->cout_delta
= 0;
5086 static void dump_acct_info(int all
)
5092 CSTAT(dump_acct_info
);
5096 for (i
= 0; i
< shut_acct_n
; i
++)
5097 dump_session(&f
, &shut_acct
[i
]);
5103 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5104 dump_session(&f
, &session
[i
]);
5111 int main(int argc
, char *argv
[])
5115 char *optconfig
= CONFIGFILE
;
5117 time(&basetime
); // start clock
5120 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
5125 if (fork()) exit(0);
5127 if(!freopen("/dev/null", "r", stdin
)) LOG(0, 0, 0, "Error freopen stdin: %s\n", strerror(errno
));
5128 if(!freopen("/dev/null", "w", stdout
)) LOG(0, 0, 0, "Error freopen stdout: %s\n", strerror(errno
));
5129 if(!freopen("/dev/null", "w", stderr
)) LOG(0, 0, 0, "Error freopen stderr: %s\n", strerror(errno
));
5138 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
5141 printf("Args are:\n"
5142 "\t-d\t\tDetach from terminal\n"
5143 "\t-c <file>\tConfig file\n"
5144 "\t-h <hostname>\tForce hostname\n"
5152 // Start the timer routine off
5154 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
5157 initdata(optdebug
, optconfig
);
5161 /* set hostname /after/ having read the config file */
5162 if (*config
->hostname
)
5163 strcpy(hostname
, config
->hostname
);
5164 cli_init_complete(hostname
);
5166 init_tbf(config
->num_tbfs
);
5168 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
5169 LOG(0, 0, 0, "Copyright (c) 2012, 2013, 2014 ISP FDN & SAMESWIRELESS\n");
5170 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
5171 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
5174 rlim
.rlim_cur
= RLIM_INFINITY
;
5175 rlim
.rlim_max
= RLIM_INFINITY
;
5176 // Remove the maximum core size
5177 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
5178 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
5180 // Make core dumps go to /tmp
5181 if(chdir("/tmp")) LOG(0, 0, 0, "Error chdir /tmp: %s\n", strerror(errno
));
5184 if (config
->scheduler_fifo
)
5187 struct sched_param params
= {0};
5188 params
.sched_priority
= 1;
5190 if (get_nprocs() < 2)
5192 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
5193 config
->scheduler_fifo
= 0;
5197 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
5199 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
5203 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
5204 config
->scheduler_fifo
= 0;
5211 /* Set up the cluster communications port. */
5212 if (cluster_init() < 0)
5216 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevicename
);
5218 if (*config
->pppoe_if_to_bind
)
5221 LOG(1, 0, 0, "Set up on pppoe interface %s\n", config
->pppoe_if_to_bind
);
5224 if (!config
->nbmultiaddress
)
5226 config
->bind_n_address
[0] = config
->bind_address
;
5227 config
->nbmultiaddress
++;
5229 config
->nbudpfd
= config
->nbmultiaddress
;
5230 for (i
= 0; i
< config
->nbudpfd
; i
++)
5231 initudp(&udpfd
[i
], config
->bind_n_address
[i
]);
5233 config
->indexlacudpfd
= config
->nbudpfd
;
5234 udpfd
[config
->indexlacudpfd
] = udplacfd
;
5241 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
5249 unsigned seed
= time_now
^ getpid();
5250 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
5254 signal(SIGHUP
, sighup_handler
);
5255 signal(SIGCHLD
, sigchild_handler
);
5256 signal(SIGTERM
, shutdown_handler
);
5257 signal(SIGINT
, shutdown_handler
);
5258 signal(SIGQUIT
, shutdown_handler
);
5260 // Prevent us from getting paged out
5261 if (config
->lock_pages
)
5263 if (!mlockall(MCL_CURRENT
))
5264 LOG(1, 0, 0, "Locking pages into memory\n");
5266 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
5271 /* remove plugins (so cleanup code gets run) */
5274 // Remove the PID file if we wrote it
5275 if (config
->wrote_pid
&& *config
->pid_file
== '/')
5276 unlink(config
->pid_file
);
5278 /* kill CLI children */
5279 signal(SIGTERM
, SIG_IGN
);
5284 static void sighup_handler(int sig
)
5289 static void shutdown_handler(int sig
)
5291 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
5294 static void sigchild_handler(int sig
)
5296 while (waitpid(-1, NULL
, WNOHANG
) > 0)
5300 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
5303 *challenge_response
= NULL
;
5305 if (!*config
->l2tp_secret
)
5307 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
5311 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
5313 *challenge_response
= calloc(17, 1);
5316 MD5_Update(&ctx
, &id
, 1);
5317 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5318 MD5_Update(&ctx
, challenge
, challenge_length
);
5319 MD5_Final(*challenge_response
, &ctx
);
5324 static int facility_value(char *name
)
5327 for (i
= 0; facilitynames
[i
].c_name
; i
++)
5329 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
5330 return facilitynames
[i
].c_val
;
5335 static void update_config()
5339 static int timeout
= 0;
5340 static int interval
= 0;
5347 if (log_stream
!= stderr
)
5353 if (*config
->log_filename
)
5355 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
5357 char *p
= config
->log_filename
+ 7;
5360 openlog("l2tpns", LOG_PID
, facility_value(p
));
5364 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
5366 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
5368 fseek(log_stream
, 0, SEEK_END
);
5369 setbuf(log_stream
, NULL
);
5373 log_stream
= stderr
;
5374 setbuf(log_stream
, NULL
);
5380 log_stream
= stderr
;
5381 setbuf(log_stream
, NULL
);
5384 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
5385 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
5387 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
5388 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
5389 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5391 // reset MRU/MSS globals
5392 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5393 if (MRU
> PPPoE_MRU
)
5396 MSS
= MRU
- TCP_HDRS
;
5399 config
->numradiusservers
= 0;
5400 for (i
= 0; i
< MAXRADSERVER
; i
++)
5401 if (config
->radiusserver
[i
])
5403 config
->numradiusservers
++;
5404 // Set radius port: if not set, take the port from the
5405 // first radius server. For the first radius server,
5406 // take the #defined default value from l2tpns.h
5408 // test twice, In case someone works with
5409 // a secondary radius server without defining
5410 // a primary one, this will work even then.
5411 if (i
> 0 && !config
->radiusport
[i
])
5412 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5413 if (!config
->radiusport
[i
])
5414 config
->radiusport
[i
] = RADPORT
;
5417 if (!config
->numradiusservers
)
5418 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5420 // parse radius_authtypes_s
5421 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5422 p
= config
->radius_authtypes_s
;
5425 char *s
= strpbrk(p
, " \t,");
5431 while (*s
== ' ' || *s
== '\t')
5438 if (!strncasecmp("chap", p
, strlen(p
)))
5440 else if (!strncasecmp("pap", p
, strlen(p
)))
5443 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5445 config
->radius_authtypes
|= type
;
5446 if (!config
->radius_authprefer
)
5447 config
->radius_authprefer
= type
;
5452 if (!config
->radius_authtypes
)
5454 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5455 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5458 // normalise radius_authtypes_s
5459 if (config
->radius_authprefer
== AUTHPAP
)
5461 strcpy(config
->radius_authtypes_s
, "pap");
5462 if (config
->radius_authtypes
& AUTHCHAP
)
5463 strcat(config
->radius_authtypes_s
, ", chap");
5467 strcpy(config
->radius_authtypes_s
, "chap");
5468 if (config
->radius_authtypes
& AUTHPAP
)
5469 strcat(config
->radius_authtypes_s
, ", pap");
5472 if (!config
->radius_dae_port
)
5473 config
->radius_dae_port
= DAEPORT
;
5475 if(!config
->bind_portremotelns
)
5476 config
->bind_portremotelns
= L2TPLACPORT
;
5477 if(!config
->bind_address_remotelns
)
5478 config
->bind_address_remotelns
= INADDR_ANY
;
5480 if (*config
->bind_multi_address
)
5482 char *sip
= config
->bind_multi_address
;
5484 char *e
= config
->bind_multi_address
+ strlen(config
->bind_multi_address
);
5485 config
->nbmultiaddress
= 0;
5487 while (*sip
&& (sip
< e
))
5492 while (n
< e
&& (*n
== ',' || *n
== ' ')) n
++;
5494 while (n
< e
&& (isdigit(*n
) || *n
== '.'))
5502 u
= u
* 10 + *n
- '0';
5510 config
->bind_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5511 config
->iftun_n_address
[config
->nbmultiaddress
] = htonl(ip
);
5512 config
->nbmultiaddress
++;
5513 LOG(1, 0, 0, "Bind address %s\n", fmtaddr(htonl(ip
), 0));
5515 if (config
->nbmultiaddress
>= MAX_BINDADDR
) break;
5521 if (config
->nbmultiaddress
>= 1)
5523 config
->bind_address
= config
->bind_n_address
[0];
5524 config
->iftun_address
= config
->bind_address
;
5528 if(!config
->iftun_address
)
5530 config
->iftun_address
= config
->bind_address
;
5531 config
->iftun_n_address
[0] = config
->iftun_address
;
5534 if (*config
->multi_hostname
)
5536 char *shost
= config
->multi_hostname
;
5538 char *e
= config
->multi_hostname
+ strlen(config
->multi_hostname
);
5539 config
->nbmultihostname
= 0;
5541 while (*shost
&& (shost
< e
))
5543 while ((n
< e
) && (*n
== ' ' || *n
== ',' || *n
== '\t')) n
++;
5546 while (n
< e
&& (*n
!= ',') && (*n
!= '\t'))
5548 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = *n
;
5554 config
->multi_n_hostname
[config
->nbmultihostname
][i
] = 0;
5555 LOG(1, 0, 0, "Bind Hostname %s\n", config
->multi_n_hostname
[config
->nbmultihostname
]);
5556 config
->nbmultihostname
++;
5557 if (config
->nbmultihostname
>= MAX_NBHOSTNAME
) break;
5563 if (config
->nbmultihostname
>= 1)
5565 strcpy(hostname
, config
->multi_n_hostname
[0]);
5566 strcpy(config
->hostname
, hostname
);
5570 if (!*config
->pppoe_ac_name
)
5571 strncpy(config
->pppoe_ac_name
, DEFAULT_PPPOE_AC_NAME
, sizeof(config
->pppoe_ac_name
) - 1);
5573 // re-initialise the random number source
5574 initrandom(config
->random_device
);
5577 for (i
= 0; i
< MAXPLUGINS
; i
++)
5579 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5582 if (*config
->plugins
[i
])
5585 add_plugin(config
->plugins
[i
]);
5587 else if (*config
->old_plugins
[i
])
5590 remove_plugin(config
->old_plugins
[i
]);
5595 guest_accounts_num
= 0;
5596 char *p2
= config
->guest_user
;
5599 char *s
= strpbrk(p2
, " \t,");
5603 while (*s
== ' ' || *s
== '\t')
5610 strcpy(guest_users
[guest_accounts_num
], p2
);
5611 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5612 guest_accounts_num
++;
5615 // Rebuild the guest_user array
5616 strcpy(config
->guest_user
, "");
5618 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5620 strcat(config
->guest_user
, guest_users
[ui
]);
5621 if (ui
<guest_accounts_num
-1)
5623 strcat(config
->guest_user
, ",");
5628 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5629 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5630 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5631 if (!*config
->cluster_interface
)
5632 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5634 if (!config
->cluster_hb_interval
)
5635 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5637 if (!config
->cluster_hb_timeout
)
5638 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5640 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5642 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5643 // late, ensure we're sufficiently larger than that
5644 int t
= 4 * config
->cluster_hb_interval
+ 11;
5646 if (config
->cluster_hb_timeout
< t
)
5648 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5649 config
->cluster_hb_timeout
= t
;
5652 // Push timing changes to the slaves immediately if we're the master
5653 if (config
->cluster_iam_master
)
5654 cluster_heartbeat();
5656 interval
= config
->cluster_hb_interval
;
5657 timeout
= config
->cluster_hb_timeout
;
5661 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5664 if ((f
= fopen(config
->pid_file
, "w")))
5666 fprintf(f
, "%d\n", getpid());
5668 config
->wrote_pid
= 1;
5672 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5677 static void read_config_file()
5681 if (!config
->config_file
) return;
5682 if (!(f
= fopen(config
->config_file
, "r")))
5684 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5688 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5690 LOG(3, 0, 0, "Done reading config file\n");
5694 int sessionsetup(sessionidt s
, tunnelidt t
)
5696 // A session now exists, set it up
5702 CSTAT(sessionsetup
);
5704 LOG(3, s
, t
, "Doing session setup for session\n");
5706 // Join a bundle if the MRRU option is accepted
5707 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5709 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5710 if (join_bundle(s
) > 0)
5711 cluster_send_bundle(session
[s
].bundle
);
5714 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5715 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5722 assign_ip_address(s
);
5725 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5726 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5729 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5730 fmtaddr(htonl(session
[s
].ip
), 0));
5733 // Make sure this is right
5734 session
[s
].tunnel
= t
;
5736 // zap old sessions with same IP and/or username
5737 // Don't kill gardened sessions - doing so leads to a DoS
5738 // from someone who doesn't need to know the password
5741 user
= session
[s
].user
;
5742 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5744 if (i
== s
) continue;
5745 if (!session
[s
].opened
) break;
5746 // Allow duplicate sessions for multilink ones of the same bundle.
5747 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
) continue;
5749 if (ip
== session
[i
].ip
)
5751 sessionshutdown(i
, "Duplicate IP address", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5755 if (config
->allow_duplicate_users
) continue;
5756 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5760 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5762 if (!strcasecmp(user
, guest_users
[gu
]))
5768 if (found
) continue;
5770 // Drop the new session in case of duplicate sessionss, not the old one.
5771 if (!strcasecmp(user
, session
[i
].user
))
5772 sessionshutdown(i
, "Duplicate session for users", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
5776 // no need to set a route for the same IP address of the bundle
5777 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5781 // Add the route for this session.
5782 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5784 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5785 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5788 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5791 // Static IPs need to be routed if not already
5792 // convered by a Framed-Route. Anything else is part
5793 // of the IP address pool and is already routed, it
5794 // just needs to be added to the IP cache.
5795 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5796 if (session
[s
].ip_pool_index
== -1) // static ip
5798 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5801 cache_ipmap(session
[s
].ip
, s
);
5804 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5805 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5807 // Run the plugin's against this new session.
5809 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5810 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5813 // Allocate TBFs if throttled
5814 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5815 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5817 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5819 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5820 fmtaddr(htonl(session
[s
].ip
), 0),
5821 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5823 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5825 return 1; // RADIUS OK and IP allocated, done...
5829 // This session just got dropped on us by the master or something.
5830 // Make sure our tables up up to date...
5832 int load_session(sessionidt s
, sessiont
*new)
5838 if (new->ip_pool_index
>= MAXIPPOOL
||
5839 new->tunnel
>= MAXTUNNEL
)
5841 LOG(0, s
, 0, "Strange session update received!\n");
5842 // FIXME! What to do here?
5847 // Ok. All sanity checks passed. Now we're committed to
5848 // loading the new session.
5851 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5853 // See if routes/ip cache need updating
5854 if (new->ip
!= session
[s
].ip
)
5857 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5858 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5859 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5867 // remove old routes...
5868 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5870 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5871 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5874 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5880 if (session
[s
].ip_pool_index
== -1) // static IP
5882 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5884 else // It's part of the IP pool, remove it manually.
5885 uncache_ipmap(session
[s
].ip
);
5888 // remove old IPV6 routes...
5889 for (i
= 0; i
< MAXROUTE6
&& session
[s
].route6
[i
].ipv6route
.s6_addr
[0] && session
[s
].route6
[i
].ipv6prefixlen
; i
++)
5891 route6set(s
, session
[s
].route6
[i
].ipv6route
, session
[s
].route6
[i
].ipv6prefixlen
, 0);
5894 if (session
[s
].ipv6address
.s6_addr
[0])
5896 route6set(s
, session
[s
].ipv6address
, 128, 0);
5901 // add new routes...
5902 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5904 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5905 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5908 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5914 // If there's a new one, add it.
5915 if (new->ip_pool_index
== -1)
5917 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5920 cache_ipmap(new->ip
, s
);
5925 if (new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5927 for (i
= 0; i
< MAXROUTE6
&& new->route6
[i
].ipv6prefixlen
; i
++)
5929 route6set(s
, new->route6
[i
].ipv6route
, new->route6
[i
].ipv6prefixlen
, 1);
5933 if (new->ipv6address
.s6_addr
[0] && new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5935 // Check if included in prefix
5936 if (sessionbyipv6(new->ipv6address
) != s
)
5937 route6set(s
, new->ipv6address
, 128, 1);
5941 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5943 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5947 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5949 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5950 new->filter_out
= 0;
5953 if (new->filter_in
!= session
[s
].filter_in
)
5955 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5956 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5959 if (new->filter_out
!= session
[s
].filter_out
)
5961 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5962 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5965 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5966 // for walking the sessions to forward byte counts to the master.
5967 config
->cluster_highest_sessionid
= s
;
5969 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5971 // Do fixups into address pool.
5972 if (new->ip_pool_index
!= -1)
5973 fix_address_pool(s
);
5978 static void initplugins()
5982 loaded_plugins
= ll_init();
5983 // Initialize the plugins to nothing
5984 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5985 plugins
[i
] = ll_init();
5988 static void *open_plugin(char *plugin_name
, int load
)
5990 char path
[256] = "";
5992 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5993 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5994 return dlopen(path
, RTLD_NOW
);
5997 // plugin callback to get a config value
5998 static void *getconfig(char *key
, enum config_typet type
)
6002 for (i
= 0; config_values
[i
].key
; i
++)
6004 if (!strcmp(config_values
[i
].key
, key
))
6006 if (config_values
[i
].type
== type
)
6007 return ((void *) config
) + config_values
[i
].offset
;
6009 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
6010 key
, type
, config_values
[i
].type
);
6016 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
6020 static int add_plugin(char *plugin_name
)
6022 static struct pluginfuncs funcs
= {
6027 sessiontbysessionidt
,
6028 sessionidtbysessiont
,
6035 cluster_send_session
,
6038 void *p
= open_plugin(plugin_name
, 1);
6039 int (*initfunc
)(struct pluginfuncs
*);
6044 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
6048 if (ll_contains(loaded_plugins
, p
))
6051 return 0; // already loaded
6055 int *v
= dlsym(p
, "plugin_api_version");
6056 if (!v
|| *v
!= PLUGIN_API_VERSION
)
6058 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
6064 if ((initfunc
= dlsym(p
, "plugin_init")))
6066 if (!initfunc(&funcs
))
6068 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
6074 ll_push(loaded_plugins
, p
);
6076 for (i
= 0; i
< max_plugin_functions
; i
++)
6079 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
6081 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
6082 ll_push(plugins
[i
], x
);
6086 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
6090 static void run_plugin_done(void *plugin
)
6092 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
6098 static int remove_plugin(char *plugin_name
)
6100 void *p
= open_plugin(plugin_name
, 0);
6106 if (ll_contains(loaded_plugins
, p
))
6109 for (i
= 0; i
< max_plugin_functions
; i
++)
6112 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
6113 ll_delete(plugins
[i
], x
);
6116 ll_delete(loaded_plugins
, p
);
6122 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
6126 int run_plugins(int plugin_type
, void *data
)
6128 int (*func
)(void *data
);
6130 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
6131 return PLUGIN_RET_ERROR
;
6133 ll_reset(plugins
[plugin_type
]);
6134 while ((func
= ll_next(plugins
[plugin_type
])))
6138 if (r
!= PLUGIN_RET_OK
)
6139 return r
; // stop here
6142 return PLUGIN_RET_OK
;
6145 static void plugins_done()
6149 ll_reset(loaded_plugins
);
6150 while ((p
= ll_next(loaded_plugins
)))
6154 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
6156 struct nsctl request
;
6157 struct nsctl response
;
6158 int type
= unpack_control(&request
, buf
, len
);
6162 if (log_stream
&& config
->debug
>= 4)
6166 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
6167 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
6171 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6172 dump_control(&request
, log_stream
);
6178 case NSCTL_REQ_LOAD
:
6179 if (request
.argc
!= 1)
6181 response
.type
= NSCTL_RES_ERR
;
6183 response
.argv
[0] = "name of plugin required";
6185 else if ((r
= add_plugin(request
.argv
[0])) < 1)
6187 response
.type
= NSCTL_RES_ERR
;
6189 response
.argv
[0] = !r
6190 ? "plugin already loaded"
6191 : "error loading plugin";
6195 response
.type
= NSCTL_RES_OK
;
6201 case NSCTL_REQ_UNLOAD
:
6202 if (request
.argc
!= 1)
6204 response
.type
= NSCTL_RES_ERR
;
6206 response
.argv
[0] = "name of plugin required";
6208 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
6210 response
.type
= NSCTL_RES_ERR
;
6212 response
.argv
[0] = !r
6213 ? "plugin not loaded"
6214 : "plugin not found";
6218 response
.type
= NSCTL_RES_OK
;
6224 case NSCTL_REQ_HELP
:
6225 response
.type
= NSCTL_RES_OK
;
6228 ll_reset(loaded_plugins
);
6229 while ((p
= ll_next(loaded_plugins
)))
6231 char **help
= dlsym(p
, "plugin_control_help");
6232 while (response
.argc
< 0xff && help
&& *help
)
6233 response
.argv
[response
.argc
++] = *help
++;
6238 case NSCTL_REQ_CONTROL
:
6240 struct param_control param
= {
6241 config
->cluster_iam_master
,
6248 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
6250 if (r
== PLUGIN_RET_ERROR
)
6252 response
.type
= NSCTL_RES_ERR
;
6254 response
.argv
[0] = param
.additional
6256 : "error returned by plugin";
6258 else if (r
== PLUGIN_RET_NOTMASTER
)
6260 static char msg
[] = "must be run on master: 000.000.000.000";
6262 response
.type
= NSCTL_RES_ERR
;
6264 if (config
->cluster_master_address
)
6266 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
6267 response
.argv
[0] = msg
;
6271 response
.argv
[0] = "must be run on master: none elected";
6274 else if (!(param
.response
& NSCTL_RESPONSE
))
6276 response
.type
= NSCTL_RES_ERR
;
6278 response
.argv
[0] = param
.response
6279 ? "unrecognised response value from plugin"
6280 : "unhandled action";
6284 response
.type
= param
.response
;
6286 if (param
.additional
)
6289 response
.argv
[0] = param
.additional
;
6297 response
.type
= NSCTL_RES_ERR
;
6299 response
.argv
[0] = "error unpacking control packet";
6302 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
6305 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
6309 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
6312 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
6313 if (log_stream
&& config
->debug
>= 4)
6315 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6316 dump_control(&response
, log_stream
);
6320 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
6321 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
6326 static tunnelidt
new_tunnel()
6329 for (i
= 1; i
< MAXTUNNEL
; i
++)
6331 if ((tunnel
[i
].state
== TUNNELFREE
) && (i
!= TUNNEL_ID_PPPOE
))
6333 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
6334 if (i
> config
->cluster_highest_tunnelid
)
6335 config
->cluster_highest_tunnelid
= i
;
6339 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
6344 // We're becoming the master. Do any required setup..
6346 // This is principally telling all the plugins that we're
6347 // now a master, and telling them about all the sessions
6348 // that are active too..
6350 void become_master(void)
6353 static struct event_data d
[RADIUS_FDS
];
6354 struct epoll_event e
;
6356 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
6358 // running a bunch of iptables commands is slow and can cause
6359 // the master to drop tunnels on takeover--kludge around the
6360 // problem by forking for the moment (note: race)
6361 if (!fork_and_close())
6363 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6365 if (!session
[s
].opened
) // Not an in-use session.
6368 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
6375 for (i
= 0; i
< RADIUS_FDS
; i
++)
6377 d
[i
].type
= FD_TYPE_RADIUS
;
6381 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
6385 int cmd_show_hist_idle(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6391 if (CLI_HELP_REQUESTED
)
6392 return CLI_HELP_NO_ARGS
;
6395 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6397 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6400 if (!session
[s
].opened
)
6403 idle
= time_now
- session
[s
].last_data
;
6404 idle
/= 5 ; // In multiples of 5 seconds.
6414 for (i
= 0; i
< 63; ++i
)
6416 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6418 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
6419 cli_print(cli
, "%d total sessions open.", count
);
6423 int cmd_show_hist_open(struct cli_def
*cli
, const char *command
, char **argv
, int argc
)
6429 if (CLI_HELP_REQUESTED
)
6430 return CLI_HELP_NO_ARGS
;
6433 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6435 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6438 if (!session
[s
].opened
)
6441 d
= time_now
- session
[s
].opened
;
6444 while (d
> 1 && open
< 32)
6454 for (i
= 0; i
< 30; ++i
)
6456 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6459 cli_print(cli
, "%d total sessions open.", count
);
6465 * This unencodes the AVP using the L2TP secret and the previously
6466 * stored random vector. It overwrites the hidden data with the
6467 * unhidden AVP subformat.
6469 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
6475 uint16_t m
= htons(type
);
6477 // Compute initial pad
6479 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
6480 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6481 MD5_Update(&ctx
, vector
, vec_len
);
6482 MD5_Final(digest
, &ctx
);
6484 // pointer to last decoded 16 octets
6489 // calculate a new pad based on the last decoded block
6490 if (d
>= sizeof(digest
))
6493 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6494 MD5_Update(&ctx
, last
, sizeof(digest
));
6495 MD5_Final(digest
, &ctx
);
6501 *value
++ ^= digest
[d
++];
6506 int find_filter(char const *name
, size_t len
)
6511 for (i
= 0; i
< MAXFILTER
; i
++)
6513 if (!*ip_filters
[i
].name
)
6521 if (strlen(ip_filters
[i
].name
) != len
)
6524 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6531 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6535 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6536 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6537 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6538 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6539 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6545 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6549 case FILTER_FLAG_OP_ANY
:
6550 return (flags
& sflags
) || (~flags
& cflags
);
6552 case FILTER_FLAG_OP_ALL
:
6553 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6555 case FILTER_FLAG_OP_EST
:
6556 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6562 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6564 uint16_t frag_offset
;
6568 uint16_t src_port
= 0;
6569 uint16_t dst_port
= 0;
6571 ip_filter_rulet
*rule
;
6573 if (len
< 20) // up to end of destination address
6576 if ((*buf
>> 4) != 4) // IPv4
6579 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6581 src_ip
= *(in_addr_t
*) (buf
+ 12);
6582 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6584 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6586 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6587 if (len
< l
+ 4) // ports
6590 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6591 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6592 if (proto
== IPPROTO_TCP
)
6594 if (len
< l
+ 14) // flags
6597 flags
= buf
[l
+ 13] & 0x3f;
6601 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6603 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6606 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6607 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6610 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6611 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6616 // layer 4 deny rules are skipped
6617 if (rule
->action
== FILTER_ACTION_DENY
&&
6618 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6626 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6628 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6631 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6634 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6635 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6642 return rule
->action
== FILTER_ACTION_PERMIT
;
6649 tunnelidt
lac_new_tunnel()
6651 return new_tunnel();
6654 void lac_tunnelclear(tunnelidt t
)
6659 void lac_send_SCCRQ(tunnelidt t
, uint8_t * auth
, unsigned int auth_len
)
6661 uint16_t version
= 0x0100; // protocol version
6663 tunnel
[t
].state
= TUNNELOPENING
;
6665 // Sent SCCRQ - Start Control Connection Request
6666 controlt
*c
= controlnew(1); // sending SCCRQ
6667 controls(c
, 7, config
->multi_n_hostname
[tunnel
[t
].indexudp
][0]?config
->multi_n_hostname
[tunnel
[t
].indexudp
]:hostname
, 1); // host name
6668 controls(c
, 8, Vendor_name
, 1); // Vendor name
6669 control16(c
, 2, version
, 1); // protocol version
6670 control32(c
, 3, 3, 1); // framing Capabilities
6671 control16(c
, 9, t
, 1); // assigned tunnel
6672 controlb(c
, 11, (uint8_t *) auth
, auth_len
, 1); // CHAP Challenge
6673 LOG(3, 0, t
, "Sent SCCRQ to REMOTE LNS\n");
6674 controladd(c
, 0, t
); // send
6677 void lac_send_ICRQ(tunnelidt t
, sessionidt s
)
6679 // Sent ICRQ Incoming-call-request
6680 controlt
*c
= controlnew(10); // ICRQ
6682 control16(c
, 14, s
, 1); // assigned sesion
6683 call_serial_number
++;
6684 control32(c
, 15, call_serial_number
, 1); // call serial number
6685 LOG(3, s
, t
, "Sent ICRQ to REMOTE LNS (far ID %u)\n", tunnel
[t
].far
);
6686 controladd(c
, 0, t
); // send
6689 void lac_tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
6691 tunnelshutdown(t
, reason
, result
, error
, msg
);