3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
7 char const *cvs_id_l2tpns
= "$Id: l2tpns.c,v 1.176 2011/01/20 12:48:40 bodea Exp $";
13 #include <linux/if_tun.h>
17 #include <net/route.h>
20 #include <netinet/in.h>
21 #include <netinet/ip6.h>
27 #include <sys/ioctl.h>
28 #include <sys/socket.h>
31 #include <sys/resource.h>
39 #include <sys/sysinfo.h>
41 #include <linux/netlink.h>
42 #include <linux/rtnetlink.h>
49 #include "constants.h"
59 configt
*config
= NULL
; // all configuration
60 int nlfd
= -1; // netlink socket
61 int tunfd
= -1; // tun interface file handle. (network device)
62 int udpfd
= -1; // UDP file handle
63 int controlfd
= -1; // Control signal handle
64 int clifd
= -1; // Socket listening for CLI connections.
65 int daefd
= -1; // Socket listening for DAE connections.
66 int snoopfd
= -1; // UDP file handle for sending out intercept data
67 int *radfds
= NULL
; // RADIUS requests file handles
68 int rand_fd
= -1; // Random data source
69 int cluster_sockfd
= -1; // Intra-cluster communications socket.
70 int epollfd
= -1; // event polling
71 time_t basetime
= 0; // base clock
72 char hostname
[MAXHOSTNAME
] = ""; // us.
73 static int tunidx
; // ifr_ifindex of tun device
74 int nlseqnum
= 0; // netlink sequence number
75 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
76 static int syslog_log
= 0; // are we logging to syslog
77 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
78 uint32_t last_id
= 0; // Unique ID for radius accounting
80 char guest_users
[10][32]; // Array of guest users
81 int guest_accounts_num
= 0; // Number of guest users
83 // calculated from config->l2tp_mtu
84 uint16_t MRU
= 0; // PPP MRU
85 uint16_t MSS
= 0; // TCP MSS
87 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
88 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
93 } ip_hash
[256]; // Mapping from IP address to session structures.
97 struct ipv6radix
*branch
;
98 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
101 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
102 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
105 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
106 time_t time_now
= 0; // Current time in seconds since epoch.
107 static char time_now_string
[64] = {0}; // Current time as a string.
108 static int time_changed
= 0; // time_now changed
109 char main_quit
= 0; // True if we're in the process of exiting.
110 static char main_reload
= 0; // Re-load pending
111 linked_list
*loaded_plugins
;
112 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
114 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
115 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
117 config_descriptt config_values
[] = {
118 CONFIG("debug", debug
, INT
),
119 CONFIG("log_file", log_filename
, STRING
),
120 CONFIG("pid_file", pid_file
, STRING
),
121 CONFIG("random_device", random_device
, STRING
),
122 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
123 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
124 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
125 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
126 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
127 CONFIG("primary_dns", default_dns1
, IPv4
),
128 CONFIG("secondary_dns", default_dns2
, IPv4
),
129 CONFIG("primary_radius", radiusserver
[0], IPv4
),
130 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
131 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
132 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
133 CONFIG("radius_accounting", radius_accounting
, BOOL
),
134 CONFIG("radius_interim", radius_interim
, INT
),
135 CONFIG("radius_secret", radiussecret
, STRING
),
136 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
137 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
138 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
139 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
140 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
141 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
142 CONFIG("guest_account", guest_user
, STRING
),
143 CONFIG("bind_address", bind_address
, IPv4
),
144 CONFIG("peer_address", peer_address
, IPv4
),
145 CONFIG("send_garp", send_garp
, BOOL
),
146 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
147 CONFIG("throttle_buckets", num_tbfs
, INT
),
148 CONFIG("accounting_dir", accounting_dir
, STRING
),
149 CONFIG("dump_speed", dump_speed
, BOOL
),
150 CONFIG("multi_read_count", multi_read_count
, INT
),
151 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
152 CONFIG("lock_pages", lock_pages
, BOOL
),
153 CONFIG("icmp_rate", icmp_rate
, INT
),
154 CONFIG("packet_limit", max_packets
, INT
),
155 CONFIG("cluster_address", cluster_address
, IPv4
),
156 CONFIG("cluster_interface", cluster_interface
, STRING
),
157 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
158 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
159 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
160 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
161 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
162 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
163 CONFIG("hostname", hostname
, STRING
),
164 CONFIG("nexthop_address", nexthop_address
, IPv4
),
165 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
169 static char *plugin_functions
[] = {
174 "plugin_new_session",
175 "plugin_kill_session",
177 "plugin_radius_response",
178 "plugin_radius_reset",
179 "plugin_radius_account",
180 "plugin_become_master",
181 "plugin_new_session_master",
184 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
186 // Counters for shutdown sessions
187 static sessiont shut_acct
[8192];
188 static sessionidt shut_acct_n
= 0;
190 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
191 bundlet
*bundle
= NULL
; // Array of bundle structures.
192 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
193 sessiont
*session
= NULL
; // Array of session structures.
194 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
195 radiust
*radius
= NULL
; // Array of radius structures.
196 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
197 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
198 static controlt
*controlfree
= 0;
199 struct Tstats
*_statistics
= NULL
;
201 struct Tringbuffer
*ringbuffer
= NULL
;
204 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
205 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
206 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
207 static void uncache_ipmap(in_addr_t ip
);
208 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
209 static void free_ip_address(sessionidt s
);
210 static void dump_acct_info(int all
);
211 static void sighup_handler(int sig
);
212 static void shutdown_handler(int sig
);
213 static void sigchild_handler(int sig
);
214 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
215 static void update_config(void);
216 static void read_config_file(void);
217 static void initplugins(void);
218 static int add_plugin(char *plugin_name
);
219 static int remove_plugin(char *plugin_name
);
220 static void plugins_done(void);
221 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
222 static tunnelidt
new_tunnel(void);
223 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
224 static void bundleclear(bundleidt b
);
226 // on slaves, alow BGP to withdraw cleanly before exiting
229 // quit actions (master)
230 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
231 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
233 // return internal time (10ths since process startup), set f if given
234 // as a side-effect sets time_now, and time_changed
235 static clockt
now(double *f
)
239 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
240 if (t
.tv_sec
!= time_now
)
245 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
248 // work out a retry time based on try number
249 // This is a straight bounded exponential backoff.
250 // Maximum re-try time is 32 seconds. (2^5).
251 clockt
backoff(uint8_t try)
253 if (try > 5) try = 5; // max backoff
254 return now(NULL
) + 10 * (1 << try);
259 // Log a debug message. Typically called via the LOG macro
261 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
263 static char message
[65536] = {0};
269 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
270 ringbuffer
->tail
= 0;
271 if (ringbuffer
->tail
== ringbuffer
->head
)
272 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
273 ringbuffer
->head
= 0;
275 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
276 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
277 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
278 va_start(ap
, format
);
279 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, 4095, format
, ap
);
284 if (config
->debug
< level
) return;
286 va_start(ap
, format
);
287 vsnprintf(message
, sizeof(message
), format
, ap
);
290 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
292 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
297 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
300 const uint8_t *d
= data
;
302 if (config
->debug
< level
) return;
304 // No support for _log_hex to syslog
307 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
308 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
310 for (i
= 0; i
< maxsize
; )
312 fprintf(log_stream
, "%4X: ", i
);
313 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
315 fprintf(log_stream
, "%02X ", d
[j
]);
317 fputs(": ", log_stream
);
320 for (; j
< i
+ 16; j
++)
322 fputs(" ", log_stream
);
324 fputs(": ", log_stream
);
327 fputs(" ", log_stream
);
328 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
330 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
331 fputc(d
[j
], log_stream
);
333 fputc('.', log_stream
);
336 fputs(" ", log_stream
);
340 fputs("\n", log_stream
);
344 setbuf(log_stream
, NULL
);
348 // update a counter, accumulating 2^32 wraps
349 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
351 uint32_t new = *counter
+ delta
;
358 // initialise the random generator
359 static void initrandom(char *source
)
361 static char path
[sizeof(config
->random_device
)] = "*undefined*";
363 // reinitialise only if we are forced to do so or if the config has changed
364 if (source
&& !strncmp(path
, source
, sizeof(path
)))
367 // close previous source, if any
376 snprintf(path
, sizeof(path
), "%s", source
);
380 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
382 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
383 path
, strerror(errno
));
388 // fill buffer with random data
389 void random_data(uint8_t *buf
, int len
)
396 n
= read(rand_fd
, buf
, len
);
397 if (n
>= len
) return;
402 LOG(0, 0, 0, "Error reading from random source: %s\n",
405 // fall back to rand()
413 // append missing data
415 // not using the low order bits from the prng stream
416 buf
[n
++] = (rand() >> 4) & 0xff;
421 // This adds it to the routing table, advertises it
422 // via BGP if enabled, and stuffs it into the
423 // 'sessionbyip' cache.
425 // 'ip' must be in _host_ order.
427 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
437 if (!prefixlen
) prefixlen
= 32;
439 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
441 memset(&req
, 0, sizeof(req
));
445 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
446 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
450 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
451 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
454 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
456 req
.rt
.rtm_family
= AF_INET
;
457 req
.rt
.rtm_dst_len
= prefixlen
;
458 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
459 req
.rt
.rtm_protocol
= RTPROT_BOOT
; // XXX
460 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
461 req
.rt
.rtm_type
= RTN_UNICAST
;
463 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
465 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
469 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
472 LOG(1, s
, 0, "Route %s %s/%d%s%s\n", add
? "add" : "del",
473 fmtaddr(htonl(ip
), 0), prefixlen
,
474 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
476 if (netlink_send(&req
.nh
) < 0)
477 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
481 bgp_add_route(htonl(ip
), prefixlen
);
483 bgp_del_route(htonl(ip
), prefixlen
);
486 // Add/Remove the IPs to the 'sessionbyip' cache.
487 // Note that we add the zero address in the case of
488 // a network route. Roll on CIDR.
490 // Note that 's == 0' implies this is the address pool.
491 // We still cache it here, because it will pre-fill
492 // the malloc'ed tree.
496 if (!add
) // Are we deleting a route?
497 s
= 0; // Caching the session as '0' is the same as uncaching.
499 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
504 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
512 char ipv6addr
[INET6_ADDRSTRLEN
];
514 if (!config
->ipv6_prefix
.s6_addr
[0])
516 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
520 memset(&req
, 0, sizeof(req
));
524 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
525 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
529 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
530 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
533 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
535 req
.rt
.rtm_family
= AF_INET6
;
536 req
.rt
.rtm_dst_len
= prefixlen
;
537 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
538 req
.rt
.rtm_protocol
= RTPROT_BOOT
; // XXX
539 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
540 req
.rt
.rtm_type
= RTN_UNICAST
;
542 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
543 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
545 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
547 LOG(1, 0, 0, "Route %s %s/%d\n",
549 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
552 if (netlink_send(&req
.nh
) < 0)
553 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
557 bgp_add_route6(ip
, prefixlen
);
559 bgp_del_route6(ip
, prefixlen
);
564 if (!add
) // Are we deleting a route?
565 s
= 0; // Caching the session as '0' is the same as uncaching.
567 cache_ipv6map(ip
, prefixlen
, s
);
574 // Set up netlink socket
575 static void initnetlink(void)
577 struct sockaddr_nl nladdr
;
579 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
582 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
586 memset(&nladdr
, 0, sizeof(nladdr
));
587 nladdr
.nl_family
= AF_NETLINK
;
588 nladdr
.nl_pid
= getpid();
590 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
592 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
597 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
599 struct sockaddr_nl nladdr
;
603 nh
->nlmsg_pid
= getpid();
604 nh
->nlmsg_seq
= ++nlseqnum
;
606 // set kernel address
607 memset(&nladdr
, 0, sizeof(nladdr
));
608 nladdr
.nl_family
= AF_NETLINK
;
610 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
611 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
613 return sendmsg(nlfd
, &msg
, 0);
616 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
618 struct sockaddr_nl nladdr
;
622 // set kernel address
623 memset(&nladdr
, 0, sizeof(nladdr
));
624 nladdr
.nl_family
= AF_NETLINK
;
626 iov
= (struct iovec
){ buf
, len
};
627 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
629 return recvmsg(nlfd
, &msg
, 0);
632 /* adapted from iproute2 */
633 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
635 int len
= RTA_LENGTH(alen
);
638 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
639 rta
->rta_type
= type
;
641 memcpy(RTA_DATA(rta
), data
, alen
);
642 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
645 // messages corresponding to different phases seq number
646 static char *tun_nl_phase_msg
[] = {
648 "getting tun interface index",
649 "setting tun interface parameters",
650 "setting tun IPv4 address",
651 "setting tun LL IPv6 address",
652 "setting tun global IPv6 address",
656 // Set up TUN interface
657 static void inittun(void)
661 memset(&ifr
, 0, sizeof(ifr
));
662 ifr
.ifr_flags
= IFF_TUN
;
664 tunfd
= open(TUNDEVICE
, O_RDWR
);
667 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
671 int flags
= fcntl(tunfd
, F_GETFL
, 0);
672 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
674 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
676 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
679 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevice
) - 1);
680 strncpy(config
->tundevice
, ifr
.ifr_name
, sizeof(config
->tundevice
));
682 tunidx
= if_nametoindex(config
->tundevice
);
685 LOG(0, 0, 0, "Can't get tun interface index\n");
694 struct ifinfomsg ifinfo
;
695 struct ifaddrmsg ifaddr
;
697 char rtdata
[32]; // 32 should be enough
699 uint32_t txqlen
, mtu
;
702 memset(&req
, 0, sizeof(req
));
704 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
705 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
706 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
708 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
709 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
710 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
711 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
713 /* Bump up the qlen to deal with bursts from the network */
715 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
716 /* set MTU to modem MRU */
718 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
720 if (netlink_send(&req
.nh
) < 0)
723 memset(&req
, 0, sizeof(req
));
725 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
726 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
727 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
729 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
730 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
731 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
732 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
734 if (config
->bind_address
)
735 ip
= config
->bind_address
;
737 ip
= 0x01010101; // 1.1.1.1
738 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
740 if (netlink_send(&req
.nh
) < 0)
743 // Only setup IPv6 on the tun device if we have a configured prefix
744 if (config
->ipv6_prefix
.s6_addr
[0]) {
747 memset(&req
, 0, sizeof(req
));
749 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
750 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
751 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
753 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
754 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
755 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
756 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
758 // Link local address is FE80::1
759 memset(&ip6
, 0, sizeof(ip6
));
760 ip6
.s6_addr
[0] = 0xFE;
761 ip6
.s6_addr
[1] = 0x80;
763 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
765 if (netlink_send(&req
.nh
) < 0)
768 memset(&req
, 0, sizeof(req
));
770 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
771 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
772 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
774 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
775 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
776 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
777 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
779 // Global address is prefix::1
780 ip6
= config
->ipv6_prefix
;
782 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
784 if (netlink_send(&req
.nh
) < 0)
788 memset(&req
, 0, sizeof(req
));
790 req
.nh
.nlmsg_type
= NLMSG_DONE
;
791 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
793 if (netlink_send(&req
.nh
) < 0)
796 // if we get an error for seqnum < min_initok_nlseqnum,
797 // we must exit as initialization went wrong
798 if (config
->ipv6_prefix
.s6_addr
[0])
799 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
801 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
807 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
812 static void initudp(void)
815 struct sockaddr_in addr
;
818 memset(&addr
, 0, sizeof(addr
));
819 addr
.sin_family
= AF_INET
;
820 addr
.sin_port
= htons(L2TPPORT
);
821 addr
.sin_addr
.s_addr
= config
->bind_address
;
822 udpfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
823 setsockopt(udpfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
825 int flags
= fcntl(udpfd
, F_GETFL
, 0);
826 fcntl(udpfd
, F_SETFL
, flags
| O_NONBLOCK
);
828 if (bind(udpfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
830 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
835 memset(&addr
, 0, sizeof(addr
));
836 addr
.sin_family
= AF_INET
;
837 addr
.sin_port
= htons(NSCTL_PORT
);
838 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
839 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
840 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
841 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
843 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
847 // Dynamic Authorization Extensions to RADIUS
848 memset(&addr
, 0, sizeof(addr
));
849 addr
.sin_family
= AF_INET
;
850 addr
.sin_port
= htons(config
->radius_dae_port
);
851 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
852 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
853 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
854 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
856 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
861 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
865 // Find session by IP, < 1 for not found
867 // Confusingly enough, this 'ip' must be
868 // in _network_ order. This being the common
869 // case when looking it up from IP packet headers.
871 // We actually use this cache for two things.
872 // #1. For used IP addresses, this maps to the
873 // session ID that it's used by.
874 // #2. For un-used IP addresses, this maps to the
875 // index into the pool table that contains that
879 static sessionidt
lookup_ipmap(in_addr_t ip
)
881 uint8_t *a
= (uint8_t *) &ip
;
882 union iphash
*h
= ip_hash
;
884 if (!(h
= h
[*a
++].idx
)) return 0;
885 if (!(h
= h
[*a
++].idx
)) return 0;
886 if (!(h
= h
[*a
++].idx
)) return 0;
891 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
893 struct ipv6radix
*curnode
;
896 char ipv6addr
[INET6_ADDRSTRLEN
];
898 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
902 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
904 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
909 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
910 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
917 sessionidt
sessionbyip(in_addr_t ip
)
919 sessionidt s
= lookup_ipmap(ip
);
922 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
928 sessionidt
sessionbyipv6(struct in6_addr ip
)
931 CSTAT(sessionbyipv6
);
933 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
934 (ip
.s6_addr
[0] == 0xFE &&
935 ip
.s6_addr
[1] == 0x80 &&
936 ip
.s6_addr16
[1] == 0 &&
937 ip
.s6_addr16
[2] == 0 &&
938 ip
.s6_addr16
[3] == 0)) {
939 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
941 s
= lookup_ipv6map(ip
);
944 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
951 // Take an IP address in HOST byte order and
952 // add it to the sessionid by IP cache.
954 // (It's actually cached in network order)
956 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
958 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
959 uint8_t *a
= (uint8_t *) &nip
;
960 union iphash
*h
= ip_hash
;
963 for (i
= 0; i
< 3; i
++)
965 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
974 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
977 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
978 // else a map to an ip pool index.
981 static void uncache_ipmap(in_addr_t ip
)
983 cache_ipmap(ip
, 0); // Assign it to the NULL session.
986 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
990 struct ipv6radix
*curnode
;
991 char ipv6addr
[INET6_ADDRSTRLEN
];
993 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
995 bytes
= prefixlen
>> 3;
998 if (curnode
->branch
== NULL
)
1000 if (!(curnode
->branch
= calloc(256,
1001 sizeof (struct ipv6radix
))))
1004 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1011 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1012 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1016 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1017 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1023 // CLI list to dump current ipcache.
1025 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1027 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1031 if (CLI_HELP_REQUESTED
)
1032 return CLI_HELP_NO_ARGS
;
1034 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1036 for (i
= 0; i
< 256; ++i
)
1042 for (j
= 0; j
< 256; ++j
)
1048 for (k
= 0; k
< 256; ++k
)
1054 for (l
= 0; l
< 256; ++l
)
1059 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1065 cli_print(cli
, "%d entries in cache", count
);
1070 // Find session by username, 0 for not found
1071 // walled garden users aren't authenticated, so the username is
1072 // reasonably useless. Ignore them to avoid incorrect actions
1074 // This is VERY inefficent. Don't call it often. :)
1076 sessionidt
sessionbyuser(char *username
)
1079 CSTAT(sessionbyuser
);
1081 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1083 if (!session
[s
].opened
)
1086 if (session
[s
].walled_garden
)
1087 continue; // Skip walled garden users.
1089 if (!strncmp(session
[s
].user
, username
, 128))
1093 return 0; // Not found.
1096 void send_garp(in_addr_t ip
)
1102 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1105 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1108 memset(&ifr
, 0, sizeof(ifr
));
1109 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1110 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1112 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1116 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1117 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1119 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1124 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1127 static sessiont
*sessiontbysessionidt(sessionidt s
)
1129 if (!s
|| s
>= MAXSESSION
) return NULL
;
1133 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1135 sessionidt val
= s
-session
;
1136 if (s
< session
|| val
>= MAXSESSION
) return 0;
1140 // actually send a control message for a specific tunnel
1141 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1143 struct sockaddr_in addr
;
1149 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1150 STAT(tunnel_tx_errors
);
1156 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1157 STAT(tunnel_tx_errors
);
1161 memset(&addr
, 0, sizeof(addr
));
1162 addr
.sin_family
= AF_INET
;
1163 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1164 addr
.sin_port
= htons(tunnel
[t
].port
);
1166 // sequence expected, if sequence in message
1167 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1169 // If this is a control message, deal with retries
1172 tunnel
[t
].last
= time_now
; // control message sent
1173 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1176 STAT(tunnel_retries
);
1177 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1181 if (sendto(udpfd
, buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1183 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1184 strerror(errno
), udpfd
, buf
, l
, inet_ntoa(addr
.sin_addr
));
1185 STAT(tunnel_tx_errors
);
1189 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1190 STAT(tunnel_tx_packets
);
1191 INC_STAT(tunnel_tx_bytes
, l
);
1195 // Tiny helper function to write data to
1196 // the 'tun' device.
1198 int tun_write(uint8_t * data
, int size
)
1200 return write(tunfd
, data
, size
);
1203 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1204 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1206 int d
= (tcp
[12] >> 4) * 4;
1213 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1216 if (tcp
+ d
> buf
+ len
) // short?
1224 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1227 if (mss
+ 2 > data
) return; // short?
1231 if (*opts
== 0) return; // end of options
1232 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1235 opts
+= opts
[1]; // skip over option
1238 if (!mss
) return; // not found
1239 orig
= ntohs(*(uint16_t *) mss
);
1241 if (orig
<= MSS
) return; // mss OK
1243 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1244 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1245 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1246 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1249 *(int16_t *) mss
= htons(MSS
);
1251 // adjust checksum (see rfc1141)
1252 sum
= orig
+ (~MSS
& 0xffff);
1253 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1254 sum
= (sum
& 0xffff) + (sum
>> 16);
1255 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1258 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1262 // Skip the four extra bytes
1274 proto
= ntohs(*(uint16_t *) p
);
1282 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1283 return; // closing session, PPP not processed
1285 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1286 processipin(s
, t
, p
, l
);
1288 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1292 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1293 return; // closing session, PPP not processed
1296 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1297 processipv6in(s
, t
, p
, l
);
1299 else if (proto
== PPPIPCP
)
1301 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1302 processipcp(s
, t
, p
, l
);
1304 else if (proto
== PPPCCP
)
1306 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1307 processccp(s
, t
, p
, l
);
1311 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1315 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1317 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1318 sp
->cout_delta
+= len
;
1320 sp
->last_data
= time_now
;
1322 sess_local
[s
].cout
+= len
; // To send to master..
1323 sess_local
[s
].pout
++;
1326 // process outgoing (to tunnel) IP
1328 static void processipout(uint8_t *buf
, int len
)
1335 uint8_t *data
= buf
; // Keep a copy of the originals.
1338 uint8_t fragbuf
[MAXETHER
+ 20];
1340 CSTAT(processipout
);
1342 if (len
< MIN_IP_SIZE
)
1344 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1345 STAT(tun_rx_errors
);
1348 if (len
>= MAXETHER
)
1350 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1351 STAT(tun_rx_errors
);
1355 // Skip the tun header
1359 // Got an IP header now
1360 if (*(uint8_t *)(buf
) >> 4 != 4)
1362 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1366 ip
= *(uint32_t *)(buf
+ 16);
1367 if (!(s
= sessionbyip(ip
)))
1369 // Is this a packet for a session that doesn't exist?
1370 static int rate
= 0; // Number of ICMP packets we've sent this second.
1371 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1373 if (last
!= time_now
)
1379 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1381 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1382 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1383 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1388 t
= session
[s
].tunnel
;
1389 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1391 LOG(3, s
, t
, "Packet size more than session MRU\n");
1397 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1398 if (config
->max_packets
> 0)
1400 if (sess_local
[s
].last_packet_out
== TIME
)
1402 int max
= config
->max_packets
;
1404 // All packets for throttled sessions are handled by the
1405 // master, so further limit by using the throttle rate.
1406 // A bit of a kludge, since throttle rate is in kbps,
1407 // but should still be generous given our average DSL
1408 // packet size is 200 bytes: a limit of 28kbps equates
1409 // to around 180 packets per second.
1410 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1411 max
= sp
->throttle_out
;
1413 if (++sess_local
[s
].packets_out
> max
)
1415 sess_local
[s
].packets_dropped
++;
1421 if (sess_local
[s
].packets_dropped
)
1423 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1424 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1425 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1426 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1430 sess_local
[s
].last_packet_out
= TIME
;
1431 sess_local
[s
].packets_out
= 1;
1432 sess_local
[s
].packets_dropped
= 0;
1436 // run access-list if any
1437 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1440 // adjust MSS on SYN and SYN,ACK packets with options
1441 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1443 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1444 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1445 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1450 // Are we throttling this session?
1451 if (config
->cluster_iam_master
)
1452 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1454 master_throttle_packet(sp
->tbf_out
, data
, size
);
1458 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1460 // We are walled-gardening this
1461 master_garden_packet(s
, data
, size
);
1465 // Add on L2TP header
1468 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1470 bid
= session
[s
].bundle
;
1471 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1472 t
= session
[s
].tunnel
;
1474 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1475 if(len
> MINFRAGLEN
)
1477 // Partition the packet to "bundle[b].num_of_links" fragments
1478 bundlet
*b
= &bundle
[bid
];
1479 uint32_t num_of_links
= b
->num_of_links
;
1480 uint32_t fraglen
= len
/ num_of_links
;
1481 fraglen
= (fraglen
> session
[s
].mru
? session
[s
].mru
: fraglen
);
1482 uint32_t last_fraglen
= fraglen
+ len
% num_of_links
;
1483 last_fraglen
= (last_fraglen
> session
[s
].mru
? len
% num_of_links
: last_fraglen
);
1484 uint32_t remain
= len
;
1486 // send the first packet
1487 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1489 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1491 update_session_out_stat(s
, sp
, fraglen
);
1493 while (remain
> last_fraglen
)
1495 s
= b
->members
[b
->current_ses
= ++b
->current_ses
% num_of_links
];
1496 t
= session
[s
].tunnel
;
1498 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1499 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1501 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1502 update_session_out_stat(s
, sp
, fraglen
);
1505 // send the last fragment
1506 s
= b
->members
[b
->current_ses
= ++b
->current_ses
% num_of_links
];
1507 t
= session
[s
].tunnel
;
1509 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1510 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1512 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1513 update_session_out_stat(s
, sp
, remain
);
1514 if (remain
!= last_fraglen
)
1515 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1518 // Send it as one frame
1519 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1521 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1522 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1523 update_session_out_stat(s
, sp
, len
);
1528 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1530 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1531 update_session_out_stat(s
, sp
, len
);
1535 // Snooping this session, send it to intercept box
1536 if (sp
->snoop_ip
&& sp
->snoop_port
)
1537 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1542 // process outgoing (to tunnel) IPv6
1544 static void processipv6out(uint8_t * buf
, int len
)
1550 struct in6_addr ip6
;
1552 uint8_t *data
= buf
; // Keep a copy of the originals.
1555 uint8_t b
[MAXETHER
+ 20];
1557 CSTAT(processipv6out
);
1559 if (len
< MIN_IP_SIZE
)
1561 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1562 STAT(tunnel_tx_errors
);
1565 if (len
>= MAXETHER
)
1567 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1568 STAT(tunnel_tx_errors
);
1572 // Skip the tun header
1576 // Got an IP header now
1577 if (*(uint8_t *)(buf
) >> 4 != 6)
1579 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1583 ip6
= *(struct in6_addr
*)(buf
+24);
1584 s
= sessionbyipv6(ip6
);
1588 ip
= *(uint32_t *)(buf
+ 32);
1589 s
= sessionbyip(ip
);
1594 // Is this a packet for a session that doesn't exist?
1595 static int rate
= 0; // Number of ICMP packets we've sent this second.
1596 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1598 if (last
!= time_now
)
1604 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1606 // FIXME: Should send icmp6 host unreachable
1610 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1612 bundleidt bid
= session
[s
].bundle
;
1613 s
= bundle
[bid
].members
[bundle
[bid
].current_ses
= ++bundle
[bid
].current_ses
% bundle
[bid
].num_of_links
];
1614 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1616 t
= session
[s
].tunnel
;
1618 sp
->last_data
= time_now
;
1620 // FIXME: add DoS prevention/filters?
1624 // Are we throttling this session?
1625 if (config
->cluster_iam_master
)
1626 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1628 master_throttle_packet(sp
->tbf_out
, data
, size
);
1631 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1633 // We are walled-gardening this
1634 master_garden_packet(s
, data
, size
);
1638 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1640 // Add on L2TP header
1642 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1644 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1647 // Snooping this session, send it to intercept box
1648 if (sp
->snoop_ip
&& sp
->snoop_port
)
1649 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1651 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1652 sp
->cout_delta
+= len
;
1656 sess_local
[s
].cout
+= len
; // To send to master..
1657 sess_local
[s
].pout
++;
1661 // Helper routine for the TBF filters.
1662 // Used to send queued data in to the user!
1664 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1670 uint8_t b
[MAXETHER
+ 20];
1672 if (len
< 0 || len
> MAXETHER
)
1674 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1678 // Skip the tun header
1682 ip
= *(in_addr_t
*)(buf
+ 16);
1687 t
= session
[s
].tunnel
;
1690 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1692 // Add on L2TP header
1694 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1696 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1699 // Snooping this session.
1700 if (sp
->snoop_ip
&& sp
->snoop_port
)
1701 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1703 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1704 sp
->cout_delta
+= len
;
1708 sess_local
[s
].cout
+= len
; // To send to master..
1709 sess_local
[s
].pout
++;
1712 // add an AVP (16 bit)
1713 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1715 uint16_t l
= (m
? 0x8008 : 0x0008);
1716 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1717 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1718 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1719 *(uint16_t *) (c
->buf
+ c
->length
+ 6) = htons(val
);
1723 // add an AVP (32 bit)
1724 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1726 uint16_t l
= (m
? 0x800A : 0x000A);
1727 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1728 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1729 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1730 *(uint32_t *) (c
->buf
+ c
->length
+ 6) = htonl(val
);
1734 // add an AVP (string)
1735 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1737 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1738 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1739 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1740 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1741 memcpy(c
->buf
+ c
->length
+ 6, val
, strlen(val
));
1742 c
->length
+= 6 + strlen(val
);
1746 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1748 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1749 *(uint16_t *) (c
->buf
+ c
->length
+ 0) = htons(l
);
1750 *(uint16_t *) (c
->buf
+ c
->length
+ 2) = htons(0);
1751 *(uint16_t *) (c
->buf
+ c
->length
+ 4) = htons(avp
);
1752 memcpy(c
->buf
+ c
->length
+ 6, val
, len
);
1753 c
->length
+= 6 + len
;
1756 // new control connection
1757 static controlt
*controlnew(uint16_t mtype
)
1761 c
= malloc(sizeof(controlt
));
1765 controlfree
= c
->next
;
1769 *(uint16_t *) (c
->buf
+ 0) = htons(0xC802); // flags/ver
1771 control16(c
, 0, mtype
, 1);
1775 // send zero block if nothing is waiting
1777 static void controlnull(tunnelidt t
)
1780 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1783 *(uint16_t *) (buf
+ 0) = htons(0xC802); // flags/ver
1784 *(uint16_t *) (buf
+ 2) = htons(12); // length
1785 *(uint16_t *) (buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1786 *(uint16_t *) (buf
+ 6) = htons(0); // session
1787 *(uint16_t *) (buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1788 *(uint16_t *) (buf
+ 10) = htons(tunnel
[t
].nr
); // sequence
1789 tunnelsend(buf
, 12, t
);
1792 // add a control message to a tunnel, and send if within window
1793 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1795 *(uint16_t *) (c
->buf
+ 2) = htons(c
->length
); // length
1796 *(uint16_t *) (c
->buf
+ 4) = htons(tunnel
[t
].far
); // tunnel
1797 *(uint16_t *) (c
->buf
+ 6) = htons(far
); // session
1798 *(uint16_t *) (c
->buf
+ 8) = htons(tunnel
[t
].ns
); // sequence
1799 tunnel
[t
].ns
++; // advance sequence
1800 // link in message in to queue
1801 if (tunnel
[t
].controlc
)
1802 tunnel
[t
].controle
->next
= c
;
1804 tunnel
[t
].controls
= c
;
1806 tunnel
[t
].controle
= c
;
1807 tunnel
[t
].controlc
++;
1809 // send now if space in window
1810 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1812 tunnel
[t
].try = 0; // first send
1813 tunnelsend(c
->buf
, c
->length
, t
);
1818 // Throttle or Unthrottle a session
1820 // Throttle the data from/to through a session to no more than
1821 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1824 // If either value is -1, the current value is retained for that
1827 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1829 if (!session
[s
].opened
)
1830 return; // No-one home.
1832 if (!*session
[s
].user
)
1833 return; // User not logged in
1837 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1838 if (session
[s
].tbf_in
)
1839 free_tbf(session
[s
].tbf_in
);
1842 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1844 session
[s
].tbf_in
= 0;
1846 session
[s
].throttle_in
= rate_in
;
1851 int bytes
= rate_out
* 1024 / 8;
1852 if (session
[s
].tbf_out
)
1853 free_tbf(session
[s
].tbf_out
);
1856 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1858 session
[s
].tbf_out
= 0;
1860 session
[s
].throttle_out
= rate_out
;
1864 // add/remove filters from session (-1 = no change)
1865 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1867 if (!session
[s
].opened
)
1868 return; // No-one home.
1870 if (!*session
[s
].user
)
1871 return; // User not logged in
1874 if (filter_in
> MAXFILTER
) filter_in
= -1;
1875 if (filter_out
> MAXFILTER
) filter_out
= -1;
1876 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
1877 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
1881 if (session
[s
].filter_in
)
1882 ip_filters
[session
[s
].filter_in
- 1].used
--;
1885 ip_filters
[filter_in
- 1].used
++;
1887 session
[s
].filter_in
= filter_in
;
1890 if (filter_out
>= 0)
1892 if (session
[s
].filter_out
)
1893 ip_filters
[session
[s
].filter_out
- 1].used
--;
1896 ip_filters
[filter_out
- 1].used
++;
1898 session
[s
].filter_out
= filter_out
;
1902 // start tidy shutdown of session
1903 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
1905 int walled_garden
= session
[s
].walled_garden
;
1906 bundleidt b
= session
[s
].bundle
;
1907 //delete routes only for last session in bundle (in case of MPPP)
1908 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
1910 CSTAT(sessionshutdown
);
1912 if (!session
[s
].opened
)
1914 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
1915 return; // not a live session
1918 if (!session
[s
].die
)
1920 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
1921 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
1922 run_plugins(PLUGIN_KILL_SESSION
, &data
);
1923 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
1926 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
1928 // RADIUS Stop message
1929 uint16_t r
= radiusnew(s
);
1932 // stop, if not already trying
1933 if (radius
[r
].state
!= RADIUSSTOP
)
1935 radius
[r
].term_cause
= term_cause
;
1936 radius
[r
].term_msg
= reason
;
1937 radiussend(r
, RADIUSSTOP
);
1941 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
1943 // Save counters to dump to accounting file
1944 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
1945 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
1949 { // IP allocated, clear and unroute
1952 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
1954 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
1955 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
1958 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
1959 session
[s
].route
[r
].ip
= 0;
1962 if (session
[s
].ip_pool_index
== -1) // static ip
1964 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
1970 // unroute IPv6, if setup
1971 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
1972 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
1976 // This session was part of a bundle
1977 bundle
[b
].num_of_links
--;
1978 LOG(3, s
, 0, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
1979 if(bundle
[b
].num_of_links
== 0)
1982 LOG(3, s
, 0, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
1986 // Adjust the members array to accomodate the new change
1987 uint8_t mem_num
= 0;
1988 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
1989 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
1992 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
1993 if(bundle
[b
].members
[ml
] == s
)
1998 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
1999 LOG(3, s
, 0, "MPPP: Adjusted member links array\n");
2002 cluster_send_bundle(b
);
2006 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2007 throttle_session(s
, 0, 0);
2011 controlt
*c
= controlnew(14); // sending CDN
2015 *(uint16_t *) buf
= htons(cdn_result
);
2016 *(uint16_t *) (buf
+2) = htons(cdn_error
);
2017 controlb(c
, 1, buf
, 4, 1);
2020 control16(c
, 1, cdn_result
, 1);
2022 control16(c
, 14, s
, 1); // assigned session (our end)
2023 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2026 // update filter refcounts
2027 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2028 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2031 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2032 sess_local
[s
].lcp
.restart
= 0;
2033 sess_local
[s
].ipcp
.restart
= 0;
2034 sess_local
[s
].ipv6cp
.restart
= 0;
2035 sess_local
[s
].ccp
.restart
= 0;
2037 cluster_send_session(s
);
2040 void sendipcp(sessionidt s
, tunnelidt t
)
2042 uint8_t buf
[MAXETHER
];
2046 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2048 if (!session
[s
].unique_id
)
2050 if (!++last_id
) ++last_id
; // skip zero
2051 session
[s
].unique_id
= last_id
;
2054 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2058 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2059 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2060 q
[4] = 3; // ip address option
2061 q
[5] = 6; // option length
2062 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2063 config
->bind_address
? config
->bind_address
:
2064 my_address
; // send my IP
2066 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2067 restart_timer(s
, ipcp
);
2070 void sendipv6cp(sessionidt s
, tunnelidt t
)
2072 uint8_t buf
[MAXETHER
];
2076 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2078 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2082 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2083 // only send one type
2085 *(uint16_t *) (q
+ 2) = htons(14);
2086 q
[4] = 1; // interface identifier option
2087 q
[5] = 10; // option length
2088 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2089 *(uint32_t *) (q
+ 10) = 0;
2092 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2093 restart_timer(s
, ipv6cp
);
2096 static void sessionclear(sessionidt s
)
2098 memset(&session
[s
], 0, sizeof(session
[s
]));
2099 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2100 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2102 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2103 session
[s
].next
= sessionfree
;
2107 // kill a session now
2108 void sessionkill(sessionidt s
, char *reason
)
2112 if (!session
[s
].opened
) // not alive
2115 if (session
[s
].next
)
2117 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2121 if (!session
[s
].die
)
2122 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2124 if (sess_local
[s
].radius
)
2125 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2127 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2129 cluster_send_session(s
);
2132 static void tunnelclear(tunnelidt t
)
2135 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2136 tunnel
[t
].state
= TUNNELFREE
;
2139 static void bundleclear(bundleidt b
)
2142 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2143 bundle
[b
].state
= BUNDLEFREE
;
2146 // kill a tunnel now
2147 static void tunnelkill(tunnelidt t
, char *reason
)
2154 tunnel
[t
].state
= TUNNELDIE
;
2156 // free control messages
2157 while ((c
= tunnel
[t
].controls
))
2159 controlt
* n
= c
->next
;
2160 tunnel
[t
].controls
= n
;
2161 tunnel
[t
].controlc
--;
2162 c
->next
= controlfree
;
2166 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2167 if (session
[s
].tunnel
== t
)
2168 sessionkill(s
, reason
);
2172 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2173 cli_tunnel_actions
[t
].action
= 0;
2174 cluster_send_tunnel(t
);
2177 // shut down a tunnel cleanly
2178 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2182 CSTAT(tunnelshutdown
);
2184 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2186 // never set up, can immediately kill
2187 tunnelkill(t
, reason
);
2190 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2193 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2194 if (session
[s
].tunnel
== t
)
2195 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2197 tunnel
[t
].state
= TUNNELDIE
;
2198 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2199 cluster_send_tunnel(t
);
2200 // TBA - should we wait for sessions to stop?
2203 controlt
*c
= controlnew(4); // sending StopCCN
2208 *(uint16_t *) buf
= htons(result
);
2209 *(uint16_t *) (buf
+2) = htons(error
);
2212 int m
= strlen(msg
);
2213 if (m
+ 4 > sizeof(buf
))
2214 m
= sizeof(buf
) - 4;
2216 memcpy(buf
+4, msg
, m
);
2220 controlb(c
, 1, buf
, l
, 1);
2223 control16(c
, 1, result
, 1);
2225 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2226 controladd(c
, 0, t
); // send the message
2230 // read and process packet on tunnel (UDP)
2231 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
)
2233 uint8_t *chapresponse
= NULL
;
2234 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2235 uint8_t *p
= buf
+ 2;
2242 LOG_HEX(5, "UDP Data", buf
, len
);
2243 STAT(tunnel_rx_packets
);
2244 INC_STAT(tunnel_rx_bytes
, len
);
2247 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2248 STAT(tunnel_rx_errors
);
2251 if ((buf
[1] & 0x0F) != 2)
2253 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2254 STAT(tunnel_rx_errors
);
2259 l
= ntohs(*(uint16_t *) p
);
2262 t
= ntohs(*(uint16_t *) p
);
2264 s
= ntohs(*(uint16_t *) p
);
2266 if (s
>= MAXSESSION
)
2268 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2269 STAT(tunnel_rx_errors
);
2274 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2275 STAT(tunnel_rx_errors
);
2280 ns
= ntohs(*(uint16_t *) p
);
2282 nr
= ntohs(*(uint16_t *) p
);
2287 uint16_t o
= ntohs(*(uint16_t *) p
);
2292 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2293 STAT(tunnel_rx_errors
);
2298 // used to time out old tunnels
2299 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2300 tunnel
[t
].lastrec
= time_now
;
2304 uint16_t message
= 0xFFFF; // message type
2306 uint8_t mandatory
= 0;
2307 uint16_t asession
= 0; // assigned session
2308 uint32_t amagic
= 0; // magic number
2309 uint8_t aflags
= 0; // flags from last LCF
2310 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2311 char called
[MAXTEL
] = ""; // called number
2312 char calling
[MAXTEL
] = ""; // calling number
2314 if (!config
->cluster_iam_master
)
2316 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2320 // control messages must have bits 0x80|0x40|0x08
2321 // (type, length and sequence) set, and bits 0x02|0x01
2322 // (offset and priority) clear
2323 if ((*buf
& 0xCB) != 0xC8)
2325 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2326 STAT(tunnel_rx_errors
);
2330 // check for duplicate tunnel open message
2336 // Is this a duplicate of the first packet? (SCCRQ)
2338 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2340 if (tunnel
[i
].state
!= TUNNELOPENING
||
2341 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2342 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2345 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2350 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2351 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2353 // if no tunnel specified, assign one
2356 if (!(t
= new_tunnel()))
2358 LOG(1, 0, 0, "No more tunnels\n");
2359 STAT(tunnel_overflow
);
2363 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2364 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2365 tunnel
[t
].window
= 4; // default window
2366 STAT(tunnel_created
);
2367 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2368 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2371 // If the 'ns' just received is not the 'nr' we're
2372 // expecting, just send an ack and drop it.
2374 // if 'ns' is less, then we got a retransmitted packet.
2375 // if 'ns' is greater than missed a packet. Either way
2376 // we should ignore it.
2377 if (ns
!= tunnel
[t
].nr
)
2379 // is this the sequence we were expecting?
2380 STAT(tunnel_rx_errors
);
2381 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2382 t
, ns
, tunnel
[t
].nr
);
2384 if (l
) // Is this not a ZLB?
2389 // check sequence of this message
2391 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2392 // some to clear maybe?
2393 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2395 controlt
*c
= tunnel
[t
].controls
;
2396 tunnel
[t
].controls
= c
->next
;
2397 tunnel
[t
].controlc
--;
2398 c
->next
= controlfree
;
2401 tunnel
[t
].try = 0; // we have progress
2404 // receiver advance (do here so quoted correctly in any sends below)
2405 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2406 if (skip
< 0) skip
= 0;
2407 if (skip
< tunnel
[t
].controlc
)
2409 // some control packets can now be sent that were previous stuck out of window
2410 int tosend
= tunnel
[t
].window
- skip
;
2411 controlt
*c
= tunnel
[t
].controls
;
2419 tunnel
[t
].try = 0; // first send
2420 tunnelsend(c
->buf
, c
->length
, t
);
2425 if (!tunnel
[t
].controlc
)
2426 tunnel
[t
].retry
= 0; // caught up
2429 { // if not a null message
2434 // Default disconnect cause/message on receipt of CDN. Set to
2435 // more specific value from attribute 1 (result code) or 46
2436 // (disconnect cause) if present below.
2437 int disc_cause_set
= 0;
2438 int disc_cause
= TERM_NAS_REQUEST
;
2439 char const *disc_reason
= "Closed (Received CDN).";
2442 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2444 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2451 LOG(1, s
, t
, "Invalid length in AVP\n");
2452 STAT(tunnel_rx_errors
);
2457 if (flags
& 0x3C) // reserved bits, should be clear
2459 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2461 result
= 2; // general error
2462 error
= 3; // reserved field non-zero
2467 if (*(uint16_t *) (b
))
2469 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2471 result
= 2; // general error
2472 error
= 6; // generic vendor-specific error
2473 msg
= "unsupported vendor-specific";
2477 mtype
= ntohs(*(uint16_t *) (b
));
2485 // handle hidden AVPs
2486 if (!*config
->l2tp_secret
)
2488 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2490 result
= 2; // general error
2491 error
= 6; // generic vendor-specific error
2492 msg
= "secret not specified";
2495 if (!session
[s
].random_vector_length
)
2497 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2499 result
= 2; // general error
2500 error
= 6; // generic
2501 msg
= "no random vector";
2506 LOG(2, s
, t
, "Short hidden AVP.\n");
2508 result
= 2; // general error
2509 error
= 2; // length is wrong
2515 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2517 orig_len
= ntohs(*(uint16_t *) b
);
2518 if (orig_len
> n
+ 2)
2520 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2524 result
= 2; // general error
2525 error
= 2; // length is wrong
2534 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2535 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2539 case 0: // message type
2540 message
= ntohs(*(uint16_t *) b
);
2541 mandatory
= flags
& 0x80;
2542 LOG(4, s
, t
, " Message type = %u (%s)\n", *b
, l2tp_code(message
));
2544 case 1: // result code
2546 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2547 char const *resdesc
= "(unknown)";
2548 char const *errdesc
= NULL
;
2553 resdesc
= l2tp_stopccn_result_code(rescode
);
2554 cause
= TERM_LOST_SERVICE
;
2556 else if (message
== 14)
2558 resdesc
= l2tp_cdn_result_code(rescode
);
2560 cause
= TERM_LOST_CARRIER
;
2562 cause
= TERM_ADMIN_RESET
;
2565 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2568 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2569 errdesc
= l2tp_error_code(errcode
);
2570 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2573 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2575 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2577 disc_cause_set
= mtype
;
2578 disc_reason
= errdesc
? errdesc
: resdesc
;
2585 case 2: // protocol version
2587 version
= ntohs(*(uint16_t *) (b
));
2588 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2589 if (version
&& version
!= 0x0100)
2590 { // allow 0.0 and 1.0
2591 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2593 result
= 5; // unspported protocol version
2594 error
= 0x0100; // supported version
2600 case 3: // framing capabilities
2602 case 4: // bearer capabilities
2604 case 5: // tie breaker
2605 // We never open tunnels, so we don't care about tie breakers
2607 case 6: // firmware revision
2609 case 7: // host name
2610 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2611 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2612 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2613 // TBA - to send to RADIUS
2615 case 8: // vendor name
2616 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2617 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2618 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2620 case 9: // assigned tunnel
2621 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2622 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2624 case 10: // rx window
2625 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2626 if (!tunnel
[t
].window
)
2627 tunnel
[t
].window
= 1; // window of 0 is silly
2628 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2630 case 11: // Challenge
2632 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2633 build_chap_response(b
, 2, n
, &chapresponse
);
2636 case 13: // Response
2637 // Why did they send a response? We never challenge.
2638 LOG(2, s
, t
, " received unexpected challenge response\n");
2641 case 14: // assigned session
2642 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2643 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2645 case 15: // call serial number
2646 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2648 case 18: // bearer type
2649 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2652 case 19: // framing type
2653 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2656 case 21: // called number
2657 memset(called
, 0, sizeof(called
));
2658 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2659 LOG(4, s
, t
, " Called <%s>\n", called
);
2661 case 22: // calling number
2662 memset(calling
, 0, sizeof(calling
));
2663 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2664 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2668 case 24: // tx connect speed
2671 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2675 // AS5300s send connect speed as a string
2677 memset(tmp
, 0, sizeof(tmp
));
2678 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2679 session
[s
].tx_connect_speed
= atol(tmp
);
2681 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2683 case 38: // rx connect speed
2686 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2690 // AS5300s send connect speed as a string
2692 memset(tmp
, 0, sizeof(tmp
));
2693 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2694 session
[s
].rx_connect_speed
= atol(tmp
);
2696 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2698 case 25: // Physical Channel ID
2700 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2701 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2704 case 29: // Proxy Authentication Type
2706 uint16_t atype
= ntohs(*(uint16_t *)b
);
2707 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2710 case 30: // Proxy Authentication Name
2713 memset(authname
, 0, sizeof(authname
));
2714 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2715 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2719 case 31: // Proxy Authentication Challenge
2721 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2724 case 32: // Proxy Authentication ID
2726 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2727 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2730 case 33: // Proxy Authentication Response
2731 LOG(4, s
, t
, " Proxy Auth Response\n");
2733 case 27: // last sent lcp
2734 { // find magic number
2735 uint8_t *p
= b
, *e
= p
+ n
;
2736 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2738 if (*p
== 5 && p
[1] == 6) // Magic-Number
2739 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2740 else if (*p
== 7) // Protocol-Field-Compression
2741 aflags
|= SESSION_PFC
;
2742 else if (*p
== 8) // Address-and-Control-Field-Compression
2743 aflags
|= SESSION_ACFC
;
2748 case 28: // last recv lcp confreq
2750 case 26: // Initial Received LCP CONFREQ
2752 case 39: // seq required - we control it as an LNS anyway...
2754 case 36: // Random Vector
2755 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2756 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2757 if (n
> sizeof(session
[s
].random_vector
))
2758 n
= sizeof(session
[s
].random_vector
);
2759 memcpy(session
[s
].random_vector
, b
, n
);
2760 session
[s
].random_vector_length
= n
;
2762 case 46: // ppp disconnect cause
2765 uint16_t code
= ntohs(*(uint16_t *) b
);
2766 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2767 uint8_t dir
= *(b
+ 4);
2769 LOG(4, s
, t
, " PPP disconnect cause "
2770 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2771 code
, proto
, dir
, n
- 5, b
+ 5);
2773 disc_cause_set
= mtype
;
2777 case 1: // admin disconnect
2778 disc_cause
= TERM_ADMIN_RESET
;
2779 disc_reason
= "Administrative disconnect";
2781 case 3: // lcp terminate
2782 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2783 disc_cause
= TERM_USER_REQUEST
;
2784 disc_reason
= "Normal disconnection";
2786 case 4: // compulsory encryption unavailable
2787 if (dir
!= 1) break; // 1=refused by peer, 2=local
2788 disc_cause
= TERM_USER_ERROR
;
2789 disc_reason
= "Compulsory encryption refused";
2791 case 5: // lcp: fsm timeout
2792 disc_cause
= TERM_PORT_ERROR
;
2793 disc_reason
= "LCP: FSM timeout";
2795 case 6: // lcp: no recognisable lcp packets received
2796 disc_cause
= TERM_PORT_ERROR
;
2797 disc_reason
= "LCP: no recognisable LCP packets";
2799 case 7: // lcp: magic-no error (possibly looped back)
2800 disc_cause
= TERM_PORT_ERROR
;
2801 disc_reason
= "LCP: magic-no error (possible loop)";
2803 case 8: // lcp: echo request timeout
2804 disc_cause
= TERM_PORT_ERROR
;
2805 disc_reason
= "LCP: echo request timeout";
2807 case 13: // auth: fsm timeout
2808 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2809 disc_reason
= "Authentication: FSM timeout";
2811 case 15: // auth: unacceptable auth protocol
2812 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2813 disc_reason
= "Unacceptable authentication protocol";
2815 case 16: // auth: authentication failed
2816 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2817 disc_reason
= "Authentication failed";
2819 case 17: // ncp: fsm timeout
2820 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2821 disc_reason
= "NCP: FSM timeout";
2823 case 18: // ncp: no ncps available
2824 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2825 disc_reason
= "NCP: no NCPs available";
2827 case 19: // ncp: failure to converge on acceptable address
2828 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2829 disc_reason
= (dir
== 1)
2830 ? "NCP: too many Configure-Naks received from peer"
2831 : "NCP: too many Configure-Naks sent to peer";
2833 case 20: // ncp: user not permitted to use any address
2834 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2835 disc_reason
= (dir
== 1)
2836 ? "NCP: local link address not acceptable to peer"
2837 : "NCP: remote link address not acceptable";
2844 static char e
[] = "unknown AVP 0xXXXX";
2845 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
2847 result
= 2; // general error
2848 error
= 8; // unknown mandatory AVP
2849 sprintf((msg
= e
) + 14, "%04x", mtype
);
2856 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
2860 case 1: // SCCRQ - Start Control Connection Request
2861 tunnel
[t
].state
= TUNNELOPENING
;
2862 if (main_quit
!= QUIT_SHUTDOWN
)
2864 controlt
*c
= controlnew(2); // sending SCCRP
2865 control16(c
, 2, version
, 1); // protocol version
2866 control32(c
, 3, 3, 1); // framing
2867 controls(c
, 7, hostname
, 1); // host name
2868 if (chapresponse
) controlb(c
, 13, chapresponse
, 16, 1); // Challenge response
2869 control16(c
, 9, t
, 1); // assigned tunnel
2870 controladd(c
, 0, t
); // send the resply
2874 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
2878 tunnel
[t
].state
= TUNNELOPEN
;
2879 tunnel
[t
].lastrec
= time_now
;
2882 tunnel
[t
].state
= TUNNELOPEN
;
2883 tunnel
[t
].lastrec
= time_now
;
2884 controlnull(t
); // ack
2887 controlnull(t
); // ack
2888 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
2891 controlnull(t
); // simply ACK
2903 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
2905 controlt
*c
= controlnew(11); // ICRP
2908 sessionfree
= session
[s
].next
;
2909 memset(&session
[s
], 0, sizeof(session
[s
]));
2911 if (s
> config
->cluster_highest_sessionid
)
2912 config
->cluster_highest_sessionid
= s
;
2914 session
[s
].opened
= time_now
;
2915 session
[s
].tunnel
= t
;
2916 session
[s
].far
= asession
;
2917 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
2918 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
2919 control16(c
, 14, s
, 1); // assigned session
2920 controladd(c
, asession
, t
); // send the reply
2922 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
2923 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
2925 session
[s
].ppp
.phase
= Establish
;
2926 session
[s
].ppp
.lcp
= Starting
;
2928 STAT(session_created
);
2933 controlt
*c
= controlnew(14); // CDN
2936 STAT(session_overflow
);
2937 LOG(1, 0, t
, "No free sessions\n");
2938 control16(c
, 1, 4, 0); // temporary lack of resources
2941 control16(c
, 1, 2, 7); // shutting down, try another
2943 controladd(c
, asession
, t
); // send the message
2950 if (amagic
== 0) amagic
= time_now
;
2951 session
[s
].magic
= amagic
; // set magic number
2952 session
[s
].flags
= aflags
; // set flags received
2953 session
[s
].mru
= PPPoE_MRU
; // default
2954 controlnull(t
); // ack
2957 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
2958 sess_local
[s
].ppp_mru
= MRU
;
2960 // Set multilink options before sending initial LCP packet
2961 sess_local
[s
].mp_mrru
= 1614;
2962 sess_local
[s
].mp_epdis
= ntohl(config
->bind_address
? config
->bind_address
: my_address
);
2965 change_state(s
, lcp
, RequestSent
);
2969 controlnull(t
); // ack
2970 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
2973 LOG(1, s
, t
, "Missing message type\n");
2976 STAT(tunnel_rx_errors
);
2978 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
2980 LOG(1, s
, t
, "Unknown message type %u\n", message
);
2983 if (chapresponse
) free(chapresponse
);
2984 cluster_send_tunnel(t
);
2988 LOG(4, s
, t
, " Got a ZLB ack\n");
2995 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
2996 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
2997 { // HDLC address header, discard
3003 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3004 STAT(tunnel_rx_errors
);
3014 proto
= ntohs(*(uint16_t *) p
);
3019 if (s
&& !session
[s
].opened
) // Is something wrong??
3021 if (!config
->cluster_iam_master
)
3023 // Pass it off to the master to deal with..
3024 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3029 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3030 STAT(tunnel_rx_errors
);
3034 if (proto
== PPPPAP
)
3036 session
[s
].last_packet
= time_now
;
3037 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3038 processpap(s
, t
, p
, l
);
3040 else if (proto
== PPPCHAP
)
3042 session
[s
].last_packet
= time_now
;
3043 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3044 processchap(s
, t
, p
, l
);
3046 else if (proto
== PPPLCP
)
3048 session
[s
].last_packet
= time_now
;
3049 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3050 processlcp(s
, t
, p
, l
);
3052 else if (proto
== PPPIPCP
)
3054 session
[s
].last_packet
= time_now
;
3055 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3056 processipcp(s
, t
, p
, l
);
3058 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3060 session
[s
].last_packet
= time_now
;
3061 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3062 processipv6cp(s
, t
, p
, l
);
3064 else if (proto
== PPPCCP
)
3066 session
[s
].last_packet
= time_now
;
3067 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3068 processccp(s
, t
, p
, l
);
3070 else if (proto
== PPPIP
)
3074 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3075 return; // closing session, PPP not processed
3078 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3079 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3081 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3085 processipin(s
, t
, p
, l
);
3087 else if (proto
== PPPMP
)
3091 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3092 return; // closing session, PPP not processed
3095 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3096 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3098 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3102 processmpin(s
, t
, p
, l
);
3104 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3108 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3109 return; // closing session, PPP not processed
3112 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3113 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3115 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3119 processipv6in(s
, t
, p
, l
);
3121 else if (session
[s
].ppp
.lcp
== Opened
)
3123 session
[s
].last_packet
= time_now
;
3124 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3125 protoreject(s
, t
, p
, l
, proto
);
3129 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3130 proto
, ppp_state(session
[s
].ppp
.lcp
));
3135 // read and process packet on tun
3136 static void processtun(uint8_t * buf
, int len
)
3138 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3139 STAT(tun_rx_packets
);
3140 INC_STAT(tun_rx_bytes
, len
);
3148 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3149 STAT(tun_rx_errors
);
3153 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3154 processipout(buf
, len
);
3155 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3156 && config
->ipv6_prefix
.s6_addr
[0])
3157 processipv6out(buf
, len
);
3162 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3163 // that we look at the whole of the tunnel, radius and session tables
3165 static void regular_cleanups(double period
)
3167 // Next tunnel, radius and session to check for actions on.
3168 static tunnelidt t
= 0;
3170 static sessionidt s
= 0;
3183 // divide up tables into slices based on the last run
3184 t_slice
= config
->cluster_highest_tunnelid
* period
;
3185 r_slice
= (MAXRADIUS
- 1) * period
;
3186 s_slice
= config
->cluster_highest_sessionid
* period
;
3190 else if (t_slice
> config
->cluster_highest_tunnelid
)
3191 t_slice
= config
->cluster_highest_tunnelid
;
3195 else if (r_slice
> (MAXRADIUS
- 1))
3196 r_slice
= MAXRADIUS
- 1;
3200 else if (s_slice
> config
->cluster_highest_sessionid
)
3201 s_slice
= config
->cluster_highest_sessionid
;
3203 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3205 for (i
= 0; i
< t_slice
; i
++)
3208 if (t
> config
->cluster_highest_tunnelid
)
3211 // check for expired tunnels
3212 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3214 STAT(tunnel_timeout
);
3215 tunnelkill(t
, "Expired");
3219 // check for message resend
3220 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3222 // resend pending messages as timeout on reply
3223 if (tunnel
[t
].retry
<= TIME
)
3225 controlt
*c
= tunnel
[t
].controls
;
3226 uint16_t w
= tunnel
[t
].window
;
3227 tunnel
[t
].try++; // another try
3228 if (tunnel
[t
].try > 5)
3229 tunnelkill(t
, "Timeout on control message"); // game over
3233 tunnelsend(c
->buf
, c
->length
, t
);
3241 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3243 controlt
*c
= controlnew(6); // sending HELLO
3244 controladd(c
, 0, t
); // send the message
3245 LOG(3, 0, t
, "Sending HELLO message\n");
3249 // Check for tunnel changes requested from the CLI
3250 if ((a
= cli_tunnel_actions
[t
].action
))
3252 cli_tunnel_actions
[t
].action
= 0;
3253 if (a
& CLI_TUN_KILL
)
3255 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3256 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3262 for (i
= 0; i
< r_slice
; i
++)
3268 if (!radius
[r
].state
)
3271 if (radius
[r
].retry
<= TIME
)
3278 for (i
= 0; i
< s_slice
; i
++)
3281 if (s
> config
->cluster_highest_sessionid
)
3284 if (!session
[s
].opened
) // Session isn't in use
3287 // check for expired sessions
3290 if (session
[s
].die
<= TIME
)
3292 sessionkill(s
, "Expired");
3299 if (sess_local
[s
].lcp
.restart
<= time_now
)
3301 int next_state
= session
[s
].ppp
.lcp
;
3302 switch (session
[s
].ppp
.lcp
)
3306 next_state
= RequestSent
;
3309 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3311 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3312 sendlcp(s
, session
[s
].tunnel
);
3313 change_state(s
, lcp
, next_state
);
3317 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3318 STAT(session_timeout
);
3328 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3330 int next_state
= session
[s
].ppp
.ipcp
;
3331 switch (session
[s
].ppp
.ipcp
)
3335 next_state
= RequestSent
;
3338 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3340 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3341 sendipcp(s
, session
[s
].tunnel
);
3342 change_state(s
, ipcp
, next_state
);
3346 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3347 STAT(session_timeout
);
3357 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3359 int next_state
= session
[s
].ppp
.ipv6cp
;
3360 switch (session
[s
].ppp
.ipv6cp
)
3364 next_state
= RequestSent
;
3367 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3369 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3370 sendipv6cp(s
, session
[s
].tunnel
);
3371 change_state(s
, ipv6cp
, next_state
);
3375 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3376 change_state(s
, ipv6cp
, Stopped
);
3383 if (sess_local
[s
].ccp
.restart
<= time_now
)
3385 int next_state
= session
[s
].ppp
.ccp
;
3386 switch (session
[s
].ppp
.ccp
)
3390 next_state
= RequestSent
;
3393 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3395 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3396 sendccp(s
, session
[s
].tunnel
);
3397 change_state(s
, ccp
, next_state
);
3401 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3402 change_state(s
, ccp
, Stopped
);
3409 // Drop sessions who have not responded within IDLE_TIMEOUT seconds
3410 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= IDLE_TIMEOUT
))
3412 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3413 STAT(session_timeout
);
3418 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3419 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= ECHO_TIMEOUT
) &&
3420 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3422 uint8_t b
[MAXETHER
];
3424 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3428 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3429 *(uint16_t *)(q
+ 2) = htons(8); // Length
3430 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3432 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3433 (int)(time_now
- session
[s
].last_packet
));
3434 tunnelsend(b
, 24, session
[s
].tunnel
); // send it
3435 sess_local
[s
].last_echo
= time_now
;
3439 // Drop sessions who have reached session_timeout seconds
3440 if (session
[s
].session_timeout
)
3442 bundleidt bid
= session
[s
].bundle
;
3445 if (time_now
- bundle
[bid
].last_check
>= 1)
3447 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3448 bundle
[bid
].last_check
= time_now
;
3449 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3452 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3454 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3461 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3463 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3469 // Drop sessions who have reached idle_timeout seconds
3470 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3472 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3473 STAT(session_timeout
);
3478 // Check for actions requested from the CLI
3479 if ((a
= cli_session_actions
[s
].action
))
3483 cli_session_actions
[s
].action
= 0;
3484 if (a
& CLI_SESS_KILL
)
3486 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3487 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3488 a
= 0; // dead, no need to check for other actions
3492 if (a
& CLI_SESS_NOSNOOP
)
3494 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3495 session
[s
].snoop_ip
= 0;
3496 session
[s
].snoop_port
= 0;
3500 else if (a
& CLI_SESS_SNOOP
)
3502 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3503 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3504 cli_session_actions
[s
].snoop_port
);
3506 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3507 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3512 if (a
& CLI_SESS_NOTHROTTLE
)
3514 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3515 throttle_session(s
, 0, 0);
3519 else if (a
& CLI_SESS_THROTTLE
)
3521 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3522 cli_session_actions
[s
].throttle_in
,
3523 cli_session_actions
[s
].throttle_out
);
3525 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3530 if (a
& CLI_SESS_NOFILTER
)
3532 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3533 filter_session(s
, 0, 0);
3537 else if (a
& CLI_SESS_FILTER
)
3539 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3540 cli_session_actions
[s
].filter_in
,
3541 cli_session_actions
[s
].filter_out
);
3543 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3549 cluster_send_session(s
);
3552 // RADIUS interim accounting
3553 if (config
->radius_accounting
&& config
->radius_interim
> 0
3554 && session
[s
].ip
&& !session
[s
].walled_garden
3555 && !sess_local
[s
].radius
// RADIUS already in progress
3556 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3557 && session
[s
].flags
& SESSION_STARTED
)
3559 int rad
= radiusnew(s
);
3562 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3563 STAT(radius_overflow
);
3567 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3568 session
[s
].user
, session
[s
].unique_id
);
3570 radiussend(rad
, RADIUSINTERIM
);
3571 sess_local
[s
].last_interim
= time_now
;
3576 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3577 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3581 // Are we in the middle of a tunnel update, or radius
3584 static int still_busy(void)
3587 static clockt last_talked
= 0;
3588 static clockt start_busy_wait
= 0;
3591 static time_t stopped_bgp
= 0;
3596 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3598 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3599 if (bgp_peers
[i
].state
== Established
)
3600 bgp_stop(&bgp_peers
[i
]);
3602 stopped_bgp
= time_now
;
3604 if (!config
->cluster_iam_master
)
3606 // we don't want to become master
3607 cluster_send_ping(0);
3613 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3618 if (!config
->cluster_iam_master
)
3621 if (main_quit
== QUIT_SHUTDOWN
)
3623 static int dropped
= 0;
3628 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3629 for (i
= 1; i
< MAXTUNNEL
; i
++)
3630 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3631 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3637 if (start_busy_wait
== 0)
3638 start_busy_wait
= TIME
;
3640 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3642 if (!tunnel
[i
].controlc
)
3645 if (last_talked
!= TIME
)
3647 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3653 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3654 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3656 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3660 for (i
= 1; i
< MAXRADIUS
; i
++)
3662 if (radius
[i
].state
== RADIUSNULL
)
3664 if (radius
[i
].state
== RADIUSWAIT
)
3667 if (last_talked
!= TIME
)
3669 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3679 # include <sys/epoll.h>
3681 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3682 # include "fake_epoll.h"
3685 // the base set of fds polled: cli, cluster, tun, udp, control, dae, netlink
3688 // additional polled fds
3690 # define EXTRA_FDS BGP_NUM_PEERS
3692 # define EXTRA_FDS 0
3695 // main loop - gets packets on tun or udp and processes them
3696 static void mainloop(void)
3700 clockt next_cluster_ping
= 0; // send initial ping immediately
3701 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3702 int maxevent
= sizeof(events
)/sizeof(*events
);
3704 if ((epollfd
= epoll_create(maxevent
)) < 0)
3706 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
3710 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d, nlfd=%d\n",
3711 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
, nlfd
);
3713 /* setup our fds to poll for input */
3715 static struct event_data d
[BASE_FDS
];
3716 struct epoll_event e
;
3723 d
[i
].type
= FD_TYPE_CLI
;
3724 e
.data
.ptr
= &d
[i
++];
3725 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
3728 d
[i
].type
= FD_TYPE_CLUSTER
;
3729 e
.data
.ptr
= &d
[i
++];
3730 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
3732 d
[i
].type
= FD_TYPE_TUN
;
3733 e
.data
.ptr
= &d
[i
++];
3734 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
3736 d
[i
].type
= FD_TYPE_UDP
;
3737 e
.data
.ptr
= &d
[i
++];
3738 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
, &e
);
3740 d
[i
].type
= FD_TYPE_CONTROL
;
3741 e
.data
.ptr
= &d
[i
++];
3742 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
3744 d
[i
].type
= FD_TYPE_DAE
;
3745 e
.data
.ptr
= &d
[i
++];
3746 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
3748 d
[i
].type
= FD_TYPE_NETLINK
;
3749 e
.data
.ptr
= &d
[i
++];
3750 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
3754 signal(SIGPIPE
, SIG_IGN
);
3755 bgp_setup(config
->as_number
);
3756 if (config
->bind_address
)
3757 bgp_add_route(config
->bind_address
, 0xffffffff);
3759 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3761 if (config
->neighbour
[i
].name
[0])
3762 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
3763 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
3764 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
3765 0); /* 0 = routing disabled */
3769 while (!main_quit
|| still_busy())
3779 config
->reload_config
++;
3782 if (config
->reload_config
)
3784 config
->reload_config
= 0;
3792 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
3793 STAT(select_called
);
3798 if (errno
== EINTR
||
3799 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
3802 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
3808 struct sockaddr_in addr
;
3809 struct in_addr local
;
3814 int cluster_ready
= 0;
3817 int cluster_pkts
= 0;
3819 uint32_t bgp_events
[BGP_NUM_PEERS
];
3820 memset(bgp_events
, 0, sizeof(bgp_events
));
3823 for (c
= n
, i
= 0; i
< c
; i
++)
3825 struct event_data
*d
= events
[i
].data
.ptr
;
3829 case FD_TYPE_CLI
: // CLI connections
3833 alen
= sizeof(addr
);
3834 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
3840 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
3846 // these are handled below, with multiple interleaved reads
3847 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
3848 case FD_TYPE_TUN
: tun_ready
++; break;
3849 case FD_TYPE_UDP
: udp_ready
++; break;
3851 case FD_TYPE_CONTROL
: // nsctl commands
3852 alen
= sizeof(addr
);
3853 s
= recvfromto(controlfd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3854 if (s
> 0) processcontrol(buf
, s
, &addr
, alen
, &local
);
3858 case FD_TYPE_DAE
: // DAE requests
3859 alen
= sizeof(addr
);
3860 s
= recvfromto(daefd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
3861 if (s
> 0) processdae(buf
, s
, &addr
, alen
, &local
);
3865 case FD_TYPE_RADIUS
: // RADIUS response
3866 alen
= sizeof(addr
);
3867 s
= recvfrom(radfds
[d
->index
], buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
3868 if (s
>= 0 && config
->cluster_iam_master
)
3870 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
3871 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
3872 processrad(buf
, s
, d
->index
);
3874 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
3875 fmtaddr(addr
.sin_addr
.s_addr
, 0));
3883 bgp_events
[d
->index
] = events
[i
].events
;
3888 case FD_TYPE_NETLINK
:
3890 struct nlmsghdr
*nh
= (struct nlmsghdr
*)buf
;
3891 s
= netlink_recv(buf
, sizeof(buf
));
3892 if (nh
->nlmsg_type
== NLMSG_ERROR
)
3894 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
3897 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
3899 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
3904 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
3909 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
);
3915 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
3920 bgp_process(bgp_events
);
3923 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
3928 alen
= sizeof(addr
);
3929 if ((s
= recvfrom(udpfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
3931 processudp(buf
, s
, &addr
);
3944 if ((s
= read(tunfd
, buf
, sizeof(buf
))) > 0)
3959 alen
= sizeof(addr
);
3960 if ((s
= recvfrom(cluster_sockfd
, buf
, sizeof(buf
), MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
3962 processcluster(buf
, s
, addr
.sin_addr
.s_addr
);
3973 if (udp_pkts
> 1 || tun_pkts
> 1 || cluster_pkts
> 1)
3974 STAT(multi_read_used
);
3976 if (c
>= config
->multi_read_count
)
3978 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
3979 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
);
3981 STAT(multi_read_exceeded
);
3987 /* no event received, but timers could still have expired */
3988 bgp_process_peers_timers();
3993 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
3995 // Log current traffic stats
3996 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
3997 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
3998 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
3999 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4000 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4002 udp_tx
= udp_rx
= 0;
4003 udp_rx_pkt
= eth_rx_pkt
= 0;
4004 eth_tx
= eth_rx
= 0;
4007 if (config
->dump_speed
)
4008 printf("%s\n", config
->bandwidth
);
4010 // Update the internal time counter
4011 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4015 struct param_timer p
= { time_now
};
4016 run_plugins(PLUGIN_TIMER
, &p
);
4020 // Runs on every machine (master and slaves).
4021 if (next_cluster_ping
<= TIME
)
4023 // Check to see which of the cluster is still alive..
4025 cluster_send_ping(basetime
); // Only does anything if we're a slave
4026 cluster_check_master(); // ditto.
4028 cluster_heartbeat(); // Only does anything if we're a master.
4029 cluster_check_slaves(); // ditto.
4031 master_update_counts(); // If we're a slave, send our byte counters to our master.
4033 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4034 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4036 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4039 if (!config
->cluster_iam_master
)
4042 // Run token bucket filtering queue..
4043 // Only run it every 1/10th of a second.
4045 static clockt last_run
= 0;
4046 if (last_run
!= TIME
)
4053 // Handle timeouts, retries etc.
4055 static double last_clean
= 0;
4059 TIME
= now(&this_clean
);
4060 diff
= this_clean
- last_clean
;
4062 // Run during idle time (after we've handled
4063 // all incoming packets) or every 1/10th sec
4064 if (!more
|| diff
> 0.1)
4066 regular_cleanups(diff
);
4067 last_clean
= this_clean
;
4071 if (*config
->accounting_dir
)
4073 static clockt next_acct
= 0;
4074 static clockt next_shut_acct
= 0;
4076 if (next_acct
<= TIME
)
4078 // Dump accounting data
4079 next_acct
= TIME
+ ACCT_TIME
;
4080 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4083 else if (next_shut_acct
<= TIME
)
4085 // Dump accounting data for shutdown sessions
4086 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4093 // Are we the master and shutting down??
4094 if (config
->cluster_iam_master
)
4095 cluster_heartbeat(); // Flush any queued changes..
4097 // Ok. Notify everyone we're shutting down. If we're
4098 // the master, this will force an election.
4099 cluster_send_ping(0);
4102 // Important!!! We MUST not process any packets past this point!
4103 LOG(1, 0, 0, "Shutdown complete\n");
4106 static void stripdomain(char *host
)
4110 if ((p
= strchr(host
, '.')))
4116 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4122 while (fgets(buf
, sizeof(buf
), resolv
))
4124 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4127 if (!isspace(buf
[6]))
4131 while (isspace(*b
)) b
++;
4136 while (*b
&& !isspace(*b
)) b
++;
4138 if (buf
[0] == 'd') // domain is canonical
4144 // first search line
4147 // hold, may be subsequent domain line
4148 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4159 int hl
= strlen(host
);
4160 int dl
= strlen(domain
);
4161 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4162 host
[hl
-dl
- 1] = 0;
4166 *p
= 0; // everything after first dot
4171 // Init data structures
4172 static void initdata(int optdebug
, char *optconfig
)
4176 if (!(config
= shared_malloc(sizeof(configt
))))
4178 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4182 memset(config
, 0, sizeof(configt
));
4183 time(&config
->start_time
);
4184 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4185 config
->debug
= optdebug
;
4186 config
->num_tbfs
= MAXTBFS
;
4187 config
->rl_rate
= 28; // 28kbps
4188 config
->cluster_mcast_ttl
= 1;
4189 config
->cluster_master_min_adv
= 1;
4190 config
->ppp_restart_time
= 3;
4191 config
->ppp_max_configure
= 10;
4192 config
->ppp_max_failure
= 5;
4193 config
->kill_timedout_sessions
= 1;
4194 strcpy(config
->random_device
, RANDOMDEVICE
);
4196 log_stream
= stderr
;
4199 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4201 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4204 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4207 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4209 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4212 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4214 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4217 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4219 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4222 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4224 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4227 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4229 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4233 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4235 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4239 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4241 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4245 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4247 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4251 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4253 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4256 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4258 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4260 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4263 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4265 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4267 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4270 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4272 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4273 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4274 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4275 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4276 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4278 // Put all the sessions on the free list marked as undefined.
4279 for (i
= 1; i
< MAXSESSION
; i
++)
4281 session
[i
].next
= i
+ 1;
4282 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4284 session
[MAXSESSION
- 1].next
= 0;
4287 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4288 for (i
= 1; i
< MAXTUNNEL
; i
++)
4289 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4291 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4292 bundle
[i
].state
= BUNDLEUNDEF
;
4297 if (!*config
->hostname
)
4299 // Grab my hostname unless it's been specified
4300 gethostname(hostname
, sizeof(hostname
));
4301 stripdomain(hostname
);
4304 strcpy(hostname
, config
->hostname
);
4307 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4310 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4312 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4318 static int assign_ip_address(sessionidt s
)
4322 time_t best_time
= time_now
;
4323 char *u
= session
[s
].user
;
4327 CSTAT(assign_ip_address
);
4329 for (i
= 1; i
< ip_pool_size
; i
++)
4331 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4334 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4341 if (ip_address_pool
[i
].last
< best_time
)
4344 if (!(best_time
= ip_address_pool
[i
].last
))
4345 break; // never used, grab this one
4351 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4355 session
[s
].ip
= ip_address_pool
[best
].address
;
4356 session
[s
].ip_pool_index
= best
;
4357 ip_address_pool
[best
].assigned
= 1;
4358 ip_address_pool
[best
].last
= time_now
;
4359 ip_address_pool
[best
].session
= s
;
4360 if (session
[s
].walled_garden
)
4361 /* Don't track addresses of users in walled garden (note: this
4362 means that their address isn't "sticky" even if they get
4364 ip_address_pool
[best
].user
[0] = 0;
4366 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4369 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4370 reuse
? "Reusing" : "Allocating", best
);
4375 static void free_ip_address(sessionidt s
)
4377 int i
= session
[s
].ip_pool_index
;
4380 CSTAT(free_ip_address
);
4383 return; // what the?
4385 if (i
< 0) // Is this actually part of the ip pool?
4389 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4391 ip_address_pool
[i
].assigned
= 0;
4392 ip_address_pool
[i
].session
= 0;
4393 ip_address_pool
[i
].last
= time_now
;
4397 // Fsck the address pool against the session table.
4398 // Normally only called when we become a master.
4400 // This isn't perfect: We aren't keep tracking of which
4401 // users used to have an IP address.
4403 void rebuild_address_pool(void)
4408 // Zero the IP pool allocation, and build
4409 // a map from IP address to pool index.
4410 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4412 ip_address_pool
[i
].assigned
= 0;
4413 ip_address_pool
[i
].session
= 0;
4414 if (!ip_address_pool
[i
].address
)
4417 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4420 for (i
= 0; i
< MAXSESSION
; ++i
)
4423 if (!(session
[i
].opened
&& session
[i
].ip
))
4426 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4428 if (session
[i
].ip_pool_index
< 0)
4430 // Not allocated out of the pool.
4431 if (ipid
< 1) // Not found in the pool either? good.
4434 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4435 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4437 // Fall through and process it as part of the pool.
4441 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4443 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4445 session
[i
].ip_pool_index
= ipid
;
4449 ip_address_pool
[ipid
].assigned
= 1;
4450 ip_address_pool
[ipid
].session
= i
;
4451 ip_address_pool
[ipid
].last
= time_now
;
4452 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4453 session
[i
].ip_pool_index
= ipid
;
4454 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4459 // Fix the address pool to match a changed session.
4460 // (usually when the master sends us an update).
4461 static void fix_address_pool(int sid
)
4465 ipid
= session
[sid
].ip_pool_index
;
4467 if (ipid
> ip_pool_size
)
4468 return; // Ignore it. rebuild_address_pool will fix it up.
4470 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4471 return; // Just ignore it. rebuild_address_pool will take care of it.
4473 ip_address_pool
[ipid
].assigned
= 1;
4474 ip_address_pool
[ipid
].session
= sid
;
4475 ip_address_pool
[ipid
].last
= time_now
;
4476 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4480 // Add a block of addresses to the IP pool to hand out.
4482 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4486 prefixlen
= 32; // Host route only.
4488 addr
&= 0xffffffff << (32 - prefixlen
);
4490 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4493 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4495 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4496 continue; // Skip 0 and broadcast addresses.
4498 ip_address_pool
[ip_pool_size
].address
= i
;
4499 ip_address_pool
[ip_pool_size
].assigned
= 0;
4501 if (ip_pool_size
>= MAXIPPOOL
)
4503 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4509 // Initialize the IP address pool
4510 static void initippool()
4515 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4517 if (!(f
= fopen(IPPOOLFILE
, "r")))
4519 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4523 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4526 buf
[4095] = 0; // Force it to be zero terminated/
4528 if (*buf
== '#' || *buf
== '\n')
4529 continue; // Skip comments / blank lines
4530 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4531 if ((p
= (char *)strchr(buf
, ':')))
4535 src
= inet_addr(buf
);
4536 if (src
== INADDR_NONE
)
4538 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4541 // This entry is for a specific IP only
4542 if (src
!= config
->bind_address
)
4547 if ((p
= (char *)strchr(pool
, '/')))
4551 in_addr_t start
= 0;
4553 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4555 if (!*p
|| !(numbits
= atoi(p
)))
4557 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4560 start
= ntohl(inet_addr(pool
));
4562 // Add a static route for this pool
4563 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4564 fmtaddr(htonl(start
), 0), numbits
);
4566 routeset(0, start
, numbits
, 0, 1);
4568 add_to_ip_pool(start
, numbits
);
4572 // It's a single ip address
4573 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4577 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4580 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4582 struct sockaddr_in snoop_addr
= {0};
4583 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4586 snoop_addr
.sin_family
= AF_INET
;
4587 snoop_addr
.sin_addr
.s_addr
= destination
;
4588 snoop_addr
.sin_port
= ntohs(port
);
4590 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4591 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4592 htons(snoop_addr
.sin_port
));
4594 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4595 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4597 STAT(packets_snooped
);
4600 static int dump_session(FILE **f
, sessiont
*s
)
4602 if (!s
->opened
|| !s
->ip
|| !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4607 char filename
[1024];
4609 time_t now
= time(NULL
);
4611 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4612 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4614 if (!(*f
= fopen(filename
, "w")))
4616 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4620 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4621 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4626 "# format: username ip qos uptxoctets downrxoctets\n",
4628 fmtaddr(config
->bind_address
? config
->bind_address
: my_address
, 0),
4633 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4634 fprintf(*f
, "%s %s %d %u %u\n",
4635 s
->user
, // username
4636 fmtaddr(htonl(s
->ip
), 0), // ip
4637 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4638 (uint32_t) s
->cin_delta
, // uptxoctets
4639 (uint32_t) s
->cout_delta
); // downrxoctets
4641 s
->cin_delta
= s
->cout_delta
= 0;
4646 static void dump_acct_info(int all
)
4652 CSTAT(dump_acct_info
);
4656 for (i
= 0; i
< shut_acct_n
; i
++)
4657 dump_session(&f
, &shut_acct
[i
]);
4663 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4664 dump_session(&f
, &session
[i
]);
4671 int main(int argc
, char *argv
[])
4675 char *optconfig
= CONFIGFILE
;
4677 time(&basetime
); // start clock
4680 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
4685 if (fork()) exit(0);
4687 freopen("/dev/null", "r", stdin
);
4688 freopen("/dev/null", "w", stdout
);
4689 freopen("/dev/null", "w", stderr
);
4698 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
4701 printf("Args are:\n"
4702 "\t-d\t\tDetach from terminal\n"
4703 "\t-c <file>\tConfig file\n"
4704 "\t-h <hostname>\tForce hostname\n"
4712 // Start the timer routine off
4714 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4717 initdata(optdebug
, optconfig
);
4722 init_tbf(config
->num_tbfs
);
4724 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
4725 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
4726 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4729 rlim
.rlim_cur
= RLIM_INFINITY
;
4730 rlim
.rlim_max
= RLIM_INFINITY
;
4731 // Remove the maximum core size
4732 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
4733 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
4735 // Make core dumps go to /tmp
4739 if (config
->scheduler_fifo
)
4742 struct sched_param params
= {0};
4743 params
.sched_priority
= 1;
4745 if (get_nprocs() < 2)
4747 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
4748 config
->scheduler_fifo
= 0;
4752 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
4754 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
4758 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
4759 config
->scheduler_fifo
= 0;
4766 /* Set up the cluster communications port. */
4767 if (cluster_init() < 0)
4771 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevice
);
4779 unsigned seed
= time_now
^ getpid();
4780 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
4784 signal(SIGHUP
, sighup_handler
);
4785 signal(SIGCHLD
, sigchild_handler
);
4786 signal(SIGTERM
, shutdown_handler
);
4787 signal(SIGINT
, shutdown_handler
);
4788 signal(SIGQUIT
, shutdown_handler
);
4790 // Prevent us from getting paged out
4791 if (config
->lock_pages
)
4793 if (!mlockall(MCL_CURRENT
))
4794 LOG(1, 0, 0, "Locking pages into memory\n");
4796 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
4801 /* remove plugins (so cleanup code gets run) */
4804 // Remove the PID file if we wrote it
4805 if (config
->wrote_pid
&& *config
->pid_file
== '/')
4806 unlink(config
->pid_file
);
4808 /* kill CLI children */
4809 signal(SIGTERM
, SIG_IGN
);
4814 static void sighup_handler(int sig
)
4819 static void shutdown_handler(int sig
)
4821 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
4824 static void sigchild_handler(int sig
)
4826 while (waitpid(-1, NULL
, WNOHANG
) > 0)
4830 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
4833 *challenge_response
= NULL
;
4835 if (!*config
->l2tp_secret
)
4837 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
4841 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
4843 *challenge_response
= calloc(17, 1);
4846 MD5_Update(&ctx
, &id
, 1);
4847 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
4848 MD5_Update(&ctx
, challenge
, challenge_length
);
4849 MD5_Final(*challenge_response
, &ctx
);
4854 static int facility_value(char *name
)
4857 for (i
= 0; facilitynames
[i
].c_name
; i
++)
4859 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
4860 return facilitynames
[i
].c_val
;
4865 static void update_config()
4869 static int timeout
= 0;
4870 static int interval
= 0;
4877 if (log_stream
!= stderr
)
4883 if (*config
->log_filename
)
4885 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
4887 char *p
= config
->log_filename
+ 7;
4890 openlog("l2tpns", LOG_PID
, facility_value(p
));
4894 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
4896 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
4898 fseek(log_stream
, 0, SEEK_END
);
4899 setbuf(log_stream
, NULL
);
4903 log_stream
= stderr
;
4904 setbuf(log_stream
, NULL
);
4910 log_stream
= stderr
;
4911 setbuf(log_stream
, NULL
);
4914 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
4915 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
4917 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
4918 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
4919 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
4921 // reset MRU/MSS globals
4922 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
4923 if (MRU
> PPPoE_MRU
)
4926 MSS
= MRU
- TCP_HDRS
;
4929 config
->numradiusservers
= 0;
4930 for (i
= 0; i
< MAXRADSERVER
; i
++)
4931 if (config
->radiusserver
[i
])
4933 config
->numradiusservers
++;
4934 // Set radius port: if not set, take the port from the
4935 // first radius server. For the first radius server,
4936 // take the #defined default value from l2tpns.h
4938 // test twice, In case someone works with
4939 // a secondary radius server without defining
4940 // a primary one, this will work even then.
4941 if (i
> 0 && !config
->radiusport
[i
])
4942 config
->radiusport
[i
] = config
->radiusport
[i
-1];
4943 if (!config
->radiusport
[i
])
4944 config
->radiusport
[i
] = RADPORT
;
4947 if (!config
->numradiusservers
)
4948 LOG(0, 0, 0, "No RADIUS servers defined!\n");
4950 // parse radius_authtypes_s
4951 config
->radius_authtypes
= config
->radius_authprefer
= 0;
4952 p
= config
->radius_authtypes_s
;
4955 char *s
= strpbrk(p
, " \t,");
4961 while (*s
== ' ' || *s
== '\t')
4968 if (!strncasecmp("chap", p
, strlen(p
)))
4970 else if (!strncasecmp("pap", p
, strlen(p
)))
4973 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
4975 config
->radius_authtypes
|= type
;
4976 if (!config
->radius_authprefer
)
4977 config
->radius_authprefer
= type
;
4982 if (!config
->radius_authtypes
)
4984 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
4985 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
4988 // normalise radius_authtypes_s
4989 if (config
->radius_authprefer
== AUTHPAP
)
4991 strcpy(config
->radius_authtypes_s
, "pap");
4992 if (config
->radius_authtypes
& AUTHCHAP
)
4993 strcat(config
->radius_authtypes_s
, ", chap");
4997 strcpy(config
->radius_authtypes_s
, "chap");
4998 if (config
->radius_authtypes
& AUTHPAP
)
4999 strcat(config
->radius_authtypes_s
, ", pap");
5002 if (!config
->radius_dae_port
)
5003 config
->radius_dae_port
= DAEPORT
;
5005 // re-initialise the random number source
5006 initrandom(config
->random_device
);
5009 for (i
= 0; i
< MAXPLUGINS
; i
++)
5011 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5014 if (*config
->plugins
[i
])
5017 add_plugin(config
->plugins
[i
]);
5019 else if (*config
->old_plugins
[i
])
5022 remove_plugin(config
->old_plugins
[i
]);
5027 guest_accounts_num
= 0;
5028 char *p2
= config
->guest_user
;
5031 char *s
= strpbrk(p2
, " \t,");
5035 while (*s
== ' ' || *s
== '\t')
5042 strcpy(guest_users
[guest_accounts_num
], p2
);
5043 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5044 guest_accounts_num
++;
5047 // Rebuild the guest_user array
5048 strcpy(config
->guest_user
, "");
5050 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5052 strcat(config
->guest_user
, guest_users
[ui
]);
5053 if (ui
<guest_accounts_num
-1)
5055 strcat(config
->guest_user
, ",");
5060 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5061 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5062 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5063 if (!*config
->cluster_interface
)
5064 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5066 if (!config
->cluster_hb_interval
)
5067 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5069 if (!config
->cluster_hb_timeout
)
5070 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5072 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5074 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5075 // late, ensure we're sufficiently larger than that
5076 int t
= 4 * config
->cluster_hb_interval
+ 11;
5078 if (config
->cluster_hb_timeout
< t
)
5080 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5081 config
->cluster_hb_timeout
= t
;
5084 // Push timing changes to the slaves immediately if we're the master
5085 if (config
->cluster_iam_master
)
5086 cluster_heartbeat();
5088 interval
= config
->cluster_hb_interval
;
5089 timeout
= config
->cluster_hb_timeout
;
5093 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5096 if ((f
= fopen(config
->pid_file
, "w")))
5098 fprintf(f
, "%d\n", getpid());
5100 config
->wrote_pid
= 1;
5104 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5109 static void read_config_file()
5113 if (!config
->config_file
) return;
5114 if (!(f
= fopen(config
->config_file
, "r")))
5116 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5120 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5122 LOG(3, 0, 0, "Done reading config file\n");
5126 int sessionsetup(sessionidt s
, tunnelidt t
)
5128 // A session now exists, set it up
5134 CSTAT(sessionsetup
);
5136 LOG(3, s
, t
, "Doing session setup for session\n");
5138 // Join a bundle if the MRRU option is accepted
5139 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5141 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5142 if (join_bundle(s
) > 0)
5143 cluster_send_bundle(session
[s
].bundle
);
5146 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5147 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5154 assign_ip_address(s
);
5157 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5158 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5161 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5162 fmtaddr(htonl(session
[s
].ip
), 0));
5166 // Make sure this is right
5167 session
[s
].tunnel
= t
;
5169 // zap old sessions with same IP and/or username
5170 // Don't kill gardened sessions - doing so leads to a DoS
5171 // from someone who doesn't need to know the password
5174 user
= session
[s
].user
;
5175 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5177 if (i
== s
) continue;
5178 if (!session
[s
].opened
) continue;
5179 // Allow duplicate sessions for multilink ones of the same bundle.
5180 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
)
5182 if (ip
== session
[i
].ip
)
5184 sessionkill(i
, "Duplicate IP address");
5188 if (config
->allow_duplicate_users
) continue;
5189 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5193 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5195 if (!strcasecmp(user
, guest_users
[gu
]))
5201 if (found
) continue;
5203 // Drop the new session in case of duplicate sessionss, not the old one.
5204 if (!strcasecmp(user
, session
[i
].user
))
5205 sessionkill(i
, "Duplicate session for users");
5209 // no need to set a route for the same IP address of the bundle
5210 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5214 // Add the route for this session.
5215 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5217 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5218 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5221 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5224 // Static IPs need to be routed if not already
5225 // convered by a Framed-Route. Anything else is part
5226 // of the IP address pool and is already routed, it
5227 // just needs to be added to the IP cache.
5228 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5229 if (session
[s
].ip_pool_index
== -1) // static ip
5231 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5234 cache_ipmap(session
[s
].ip
, s
);
5237 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5238 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5240 // Run the plugin's against this new session.
5242 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5243 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5246 // Allocate TBFs if throttled
5247 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5248 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5250 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5252 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5253 fmtaddr(htonl(session
[s
].ip
), 0),
5254 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5256 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5258 return 1; // RADIUS OK and IP allocated, done...
5262 // This session just got dropped on us by the master or something.
5263 // Make sure our tables up up to date...
5265 int load_session(sessionidt s
, sessiont
*new)
5271 if (new->ip_pool_index
>= MAXIPPOOL
||
5272 new->tunnel
>= MAXTUNNEL
)
5274 LOG(0, s
, 0, "Strange session update received!\n");
5275 // FIXME! What to do here?
5280 // Ok. All sanity checks passed. Now we're committed to
5281 // loading the new session.
5284 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5286 // See if routes/ip cache need updating
5287 if (new->ip
!= session
[s
].ip
)
5290 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5291 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5292 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5300 // remove old routes...
5301 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5303 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5304 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5307 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5313 if (session
[s
].ip_pool_index
== -1) // static IP
5315 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5317 else // It's part of the IP pool, remove it manually.
5318 uncache_ipmap(session
[s
].ip
);
5323 // add new routes...
5324 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5326 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5327 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5330 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5336 // If there's a new one, add it.
5337 if (new->ip_pool_index
== -1)
5339 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5342 cache_ipmap(new->ip
, s
);
5347 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5348 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5351 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5353 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5357 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5359 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5360 new->filter_out
= 0;
5363 if (new->filter_in
!= session
[s
].filter_in
)
5365 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5366 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5369 if (new->filter_out
!= session
[s
].filter_out
)
5371 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5372 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5375 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5376 // for walking the sessions to forward byte counts to the master.
5377 config
->cluster_highest_sessionid
= s
;
5379 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5381 // Do fixups into address pool.
5382 if (new->ip_pool_index
!= -1)
5383 fix_address_pool(s
);
5388 static void initplugins()
5392 loaded_plugins
= ll_init();
5393 // Initialize the plugins to nothing
5394 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5395 plugins
[i
] = ll_init();
5398 static void *open_plugin(char *plugin_name
, int load
)
5400 char path
[256] = "";
5402 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5403 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5404 return dlopen(path
, RTLD_NOW
);
5407 // plugin callback to get a config value
5408 static void *getconfig(char *key
, enum config_typet type
)
5412 for (i
= 0; config_values
[i
].key
; i
++)
5414 if (!strcmp(config_values
[i
].key
, key
))
5416 if (config_values
[i
].type
== type
)
5417 return ((void *) config
) + config_values
[i
].offset
;
5419 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5420 key
, type
, config_values
[i
].type
);
5426 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5430 static int add_plugin(char *plugin_name
)
5432 static struct pluginfuncs funcs
= {
5437 sessiontbysessionidt
,
5438 sessionidtbysessiont
,
5445 cluster_send_session
,
5448 void *p
= open_plugin(plugin_name
, 1);
5449 int (*initfunc
)(struct pluginfuncs
*);
5454 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5458 if (ll_contains(loaded_plugins
, p
))
5461 return 0; // already loaded
5465 int *v
= dlsym(p
, "plugin_api_version");
5466 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5468 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5474 if ((initfunc
= dlsym(p
, "plugin_init")))
5476 if (!initfunc(&funcs
))
5478 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5484 ll_push(loaded_plugins
, p
);
5486 for (i
= 0; i
< max_plugin_functions
; i
++)
5489 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5491 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5492 ll_push(plugins
[i
], x
);
5496 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5500 static void run_plugin_done(void *plugin
)
5502 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5508 static int remove_plugin(char *plugin_name
)
5510 void *p
= open_plugin(plugin_name
, 0);
5516 if (ll_contains(loaded_plugins
, p
))
5519 for (i
= 0; i
< max_plugin_functions
; i
++)
5522 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5523 ll_delete(plugins
[i
], x
);
5526 ll_delete(loaded_plugins
, p
);
5532 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5536 int run_plugins(int plugin_type
, void *data
)
5538 int (*func
)(void *data
);
5540 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5541 return PLUGIN_RET_ERROR
;
5543 ll_reset(plugins
[plugin_type
]);
5544 while ((func
= ll_next(plugins
[plugin_type
])))
5548 if (r
!= PLUGIN_RET_OK
)
5549 return r
; // stop here
5552 return PLUGIN_RET_OK
;
5555 static void plugins_done()
5559 ll_reset(loaded_plugins
);
5560 while ((p
= ll_next(loaded_plugins
)))
5564 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
5566 struct nsctl request
;
5567 struct nsctl response
;
5568 int type
= unpack_control(&request
, buf
, len
);
5572 if (log_stream
&& config
->debug
>= 4)
5576 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
5577 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
5581 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5582 dump_control(&request
, log_stream
);
5588 case NSCTL_REQ_LOAD
:
5589 if (request
.argc
!= 1)
5591 response
.type
= NSCTL_RES_ERR
;
5593 response
.argv
[0] = "name of plugin required";
5595 else if ((r
= add_plugin(request
.argv
[0])) < 1)
5597 response
.type
= NSCTL_RES_ERR
;
5599 response
.argv
[0] = !r
5600 ? "plugin already loaded"
5601 : "error loading plugin";
5605 response
.type
= NSCTL_RES_OK
;
5611 case NSCTL_REQ_UNLOAD
:
5612 if (request
.argc
!= 1)
5614 response
.type
= NSCTL_RES_ERR
;
5616 response
.argv
[0] = "name of plugin required";
5618 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
5620 response
.type
= NSCTL_RES_ERR
;
5622 response
.argv
[0] = !r
5623 ? "plugin not loaded"
5624 : "plugin not found";
5628 response
.type
= NSCTL_RES_OK
;
5634 case NSCTL_REQ_HELP
:
5635 response
.type
= NSCTL_RES_OK
;
5638 ll_reset(loaded_plugins
);
5639 while ((p
= ll_next(loaded_plugins
)))
5641 char **help
= dlsym(p
, "plugin_control_help");
5642 while (response
.argc
< 0xff && help
&& *help
)
5643 response
.argv
[response
.argc
++] = *help
++;
5648 case NSCTL_REQ_CONTROL
:
5650 struct param_control param
= {
5651 config
->cluster_iam_master
,
5658 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
5660 if (r
== PLUGIN_RET_ERROR
)
5662 response
.type
= NSCTL_RES_ERR
;
5664 response
.argv
[0] = param
.additional
5666 : "error returned by plugin";
5668 else if (r
== PLUGIN_RET_NOTMASTER
)
5670 static char msg
[] = "must be run on master: 000.000.000.000";
5672 response
.type
= NSCTL_RES_ERR
;
5674 if (config
->cluster_master_address
)
5676 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
5677 response
.argv
[0] = msg
;
5681 response
.argv
[0] = "must be run on master: none elected";
5684 else if (!(param
.response
& NSCTL_RESPONSE
))
5686 response
.type
= NSCTL_RES_ERR
;
5688 response
.argv
[0] = param
.response
5689 ? "unrecognised response value from plugin"
5690 : "unhandled action";
5694 response
.type
= param
.response
;
5696 if (param
.additional
)
5699 response
.argv
[0] = param
.additional
;
5707 response
.type
= NSCTL_RES_ERR
;
5709 response
.argv
[0] = "error unpacking control packet";
5712 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
5715 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5719 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
5722 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
5723 if (log_stream
&& config
->debug
>= 4)
5725 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5726 dump_control(&response
, log_stream
);
5730 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
5731 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
5736 static tunnelidt
new_tunnel()
5739 for (i
= 1; i
< MAXTUNNEL
; i
++)
5741 if (tunnel
[i
].state
== TUNNELFREE
)
5743 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
5744 if (i
> config
->cluster_highest_tunnelid
)
5745 config
->cluster_highest_tunnelid
= i
;
5749 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
5754 // We're becoming the master. Do any required setup..
5756 // This is principally telling all the plugins that we're
5757 // now a master, and telling them about all the sessions
5758 // that are active too..
5760 void become_master(void)
5763 static struct event_data d
[RADIUS_FDS
];
5764 struct epoll_event e
;
5766 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
5768 // running a bunch of iptables commands is slow and can cause
5769 // the master to drop tunnels on takeover--kludge around the
5770 // problem by forking for the moment (note: race)
5771 if (!fork_and_close())
5773 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5775 if (!session
[s
].opened
) // Not an in-use session.
5778 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
5785 for (i
= 0; i
< RADIUS_FDS
; i
++)
5787 d
[i
].type
= FD_TYPE_RADIUS
;
5791 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
5795 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5801 if (CLI_HELP_REQUESTED
)
5802 return CLI_HELP_NO_ARGS
;
5805 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5807 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5810 if (!session
[s
].opened
)
5813 idle
= time_now
- session
[s
].last_data
;
5814 idle
/= 5 ; // In multiples of 5 seconds.
5824 for (i
= 0; i
< 63; ++i
)
5826 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5828 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
5829 cli_print(cli
, "%d total sessions open.", count
);
5833 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
5839 if (CLI_HELP_REQUESTED
)
5840 return CLI_HELP_NO_ARGS
;
5843 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
5845 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
5848 if (!session
[s
].opened
)
5851 d
= time_now
- session
[s
].opened
;
5854 while (d
> 1 && open
< 32)
5864 for (i
= 0; i
< 30; ++i
)
5866 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
5869 cli_print(cli
, "%d total sessions open.", count
);
5875 * This unencodes the AVP using the L2TP secret and the previously
5876 * stored random vector. It overwrites the hidden data with the
5877 * unhidden AVP subformat.
5879 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
5885 uint16_t m
= htons(type
);
5887 // Compute initial pad
5889 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
5890 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5891 MD5_Update(&ctx
, vector
, vec_len
);
5892 MD5_Final(digest
, &ctx
);
5894 // pointer to last decoded 16 octets
5899 // calculate a new pad based on the last decoded block
5900 if (d
>= sizeof(digest
))
5903 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5904 MD5_Update(&ctx
, last
, sizeof(digest
));
5905 MD5_Final(digest
, &ctx
);
5911 *value
++ ^= digest
[d
++];
5916 int find_filter(char const *name
, size_t len
)
5921 for (i
= 0; i
< MAXFILTER
; i
++)
5923 if (!*ip_filters
[i
].name
)
5931 if (strlen(ip_filters
[i
].name
) != len
)
5934 if (!strncmp(ip_filters
[i
].name
, name
, len
))
5941 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
5945 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
5946 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
5947 case FILTER_PORT_OP_GT
: return port
> p
->port
;
5948 case FILTER_PORT_OP_LT
: return port
< p
->port
;
5949 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
5955 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
5959 case FILTER_FLAG_OP_ANY
:
5960 return (flags
& sflags
) || (~flags
& cflags
);
5962 case FILTER_FLAG_OP_ALL
:
5963 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
5965 case FILTER_FLAG_OP_EST
:
5966 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
5972 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
5974 uint16_t frag_offset
;
5978 uint16_t src_port
= 0;
5979 uint16_t dst_port
= 0;
5981 ip_filter_rulet
*rule
;
5983 if (len
< 20) // up to end of destination address
5986 if ((*buf
>> 4) != 4) // IPv4
5989 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
5991 src_ip
= *(in_addr_t
*) (buf
+ 12);
5992 dst_ip
= *(in_addr_t
*) (buf
+ 16);
5994 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
5996 int l
= (buf
[0] & 0xf) * 4; // length of IP header
5997 if (len
< l
+ 4) // ports
6000 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6001 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6002 if (proto
== IPPROTO_TCP
)
6004 if (len
< l
+ 14) // flags
6007 flags
= buf
[l
+ 13] & 0x3f;
6011 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6013 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6016 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6017 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6020 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6021 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6026 // layer 4 deny rules are skipped
6027 if (rule
->action
== FILTER_ACTION_DENY
&&
6028 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6036 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6038 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6041 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6044 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6045 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6052 return rule
->action
== FILTER_ACTION_PERMIT
;