3 // Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering
4 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
11 #include <linux/if_tun.h>
15 #include <net/route.h>
18 #include <netinet/in.h>
19 #include <netinet/ip6.h>
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
29 #include <sys/resource.h>
37 #include <sys/sysinfo.h>
39 #include <linux/netlink.h>
40 #include <linux/rtnetlink.h>
47 #include "constants.h"
61 char * Vendor_name
= "Linux L2TPNS";
62 uint32_t call_serial_number
= 0;
66 configt
*config
= NULL
; // all configuration
67 int nlfd
= -1; // netlink socket
68 int tunfd
= -1; // tun interface file handle. (network device)
69 int udpfd
= -1; // UDP file handle
71 int udplacfd
= -1; // UDP LAC file handle
73 int controlfd
= -1; // Control signal handle
74 int clifd
= -1; // Socket listening for CLI connections.
75 int daefd
= -1; // Socket listening for DAE connections.
76 int snoopfd
= -1; // UDP file handle for sending out intercept data
77 int *radfds
= NULL
; // RADIUS requests file handles
78 int rand_fd
= -1; // Random data source
79 int cluster_sockfd
= -1; // Intra-cluster communications socket.
80 int epollfd
= -1; // event polling
81 time_t basetime
= 0; // base clock
82 char hostname
[MAXHOSTNAME
] = ""; // us.
83 static int tunidx
; // ifr_ifindex of tun device
84 int nlseqnum
= 0; // netlink sequence number
85 int min_initok_nlseqnum
= 0; // minimun seq number for messages after init is ok
86 static int syslog_log
= 0; // are we logging to syslog
87 static FILE *log_stream
= 0; // file handle for direct logging (i.e. direct into file, not via syslog).
88 uint32_t last_id
= 0; // Unique ID for radius accounting
90 char guest_users
[10][32]; // Array of guest users
91 int guest_accounts_num
= 0; // Number of guest users
93 // calculated from config->l2tp_mtu
94 uint16_t MRU
= 0; // PPP MRU
95 uint16_t MSS
= 0; // TCP MSS
97 struct cli_session_actions
*cli_session_actions
= NULL
; // Pending session changes requested by CLI
98 struct cli_tunnel_actions
*cli_tunnel_actions
= NULL
; // Pending tunnel changes required by CLI
103 } ip_hash
[256]; // Mapping from IP address to session structures.
107 struct ipv6radix
*branch
;
108 } ipv6_hash
[256]; // Mapping from IPv6 address to session structures.
111 static uint32_t udp_rx
= 0, udp_rx_pkt
= 0, udp_tx
= 0;
112 static uint32_t eth_rx
= 0, eth_rx_pkt
= 0;
115 static uint32_t ip_pool_size
= 1; // Size of the pool of addresses used for dynamic address allocation.
116 time_t time_now
= 0; // Current time in seconds since epoch.
117 uint64_t time_now_ms
= 0; // Current time in milliseconds since epoch.
118 static char time_now_string
[64] = {0}; // Current time as a string.
119 static int time_changed
= 0; // time_now changed
120 char main_quit
= 0; // True if we're in the process of exiting.
121 static char main_reload
= 0; // Re-load pending
122 linked_list
*loaded_plugins
;
123 linked_list
*plugins
[MAX_PLUGIN_TYPES
];
125 #define membersize(STRUCT, MEMBER) sizeof(((STRUCT *)0)->MEMBER)
126 #define CONFIG(NAME, MEMBER, TYPE) { NAME, offsetof(configt, MEMBER), membersize(configt, MEMBER), TYPE }
128 config_descriptt config_values
[] = {
129 CONFIG("debug", debug
, INT
),
130 CONFIG("log_file", log_filename
, STRING
),
131 CONFIG("pid_file", pid_file
, STRING
),
132 CONFIG("random_device", random_device
, STRING
),
133 CONFIG("l2tp_secret", l2tp_secret
, STRING
),
134 CONFIG("l2tp_mtu", l2tp_mtu
, INT
),
135 CONFIG("ppp_restart_time", ppp_restart_time
, INT
),
136 CONFIG("ppp_max_configure", ppp_max_configure
, INT
),
137 CONFIG("ppp_max_failure", ppp_max_failure
, INT
),
138 CONFIG("primary_dns", default_dns1
, IPv4
),
139 CONFIG("secondary_dns", default_dns2
, IPv4
),
140 CONFIG("primary_radius", radiusserver
[0], IPv4
),
141 CONFIG("secondary_radius", radiusserver
[1], IPv4
),
142 CONFIG("primary_radius_port", radiusport
[0], SHORT
),
143 CONFIG("secondary_radius_port", radiusport
[1], SHORT
),
144 CONFIG("radius_accounting", radius_accounting
, BOOL
),
145 CONFIG("radius_interim", radius_interim
, INT
),
146 CONFIG("radius_secret", radiussecret
, STRING
),
147 CONFIG("radius_authtypes", radius_authtypes_s
, STRING
),
148 CONFIG("radius_dae_port", radius_dae_port
, SHORT
),
149 CONFIG("radius_bind_min", radius_bind_min
, SHORT
),
150 CONFIG("radius_bind_max", radius_bind_max
, SHORT
),
151 CONFIG("allow_duplicate_users", allow_duplicate_users
, BOOL
),
152 CONFIG("kill_timedout_sessions", kill_timedout_sessions
, BOOL
),
153 CONFIG("guest_account", guest_user
, STRING
),
154 CONFIG("bind_address", bind_address
, IPv4
),
155 CONFIG("peer_address", peer_address
, IPv4
),
156 CONFIG("send_garp", send_garp
, BOOL
),
157 CONFIG("throttle_speed", rl_rate
, UNSIGNED_LONG
),
158 CONFIG("throttle_buckets", num_tbfs
, INT
),
159 CONFIG("accounting_dir", accounting_dir
, STRING
),
160 CONFIG("dump_speed", dump_speed
, BOOL
),
161 CONFIG("multi_read_count", multi_read_count
, INT
),
162 CONFIG("scheduler_fifo", scheduler_fifo
, BOOL
),
163 CONFIG("lock_pages", lock_pages
, BOOL
),
164 CONFIG("icmp_rate", icmp_rate
, INT
),
165 CONFIG("packet_limit", max_packets
, INT
),
166 CONFIG("cluster_address", cluster_address
, IPv4
),
167 CONFIG("cluster_interface", cluster_interface
, STRING
),
168 CONFIG("cluster_mcast_ttl", cluster_mcast_ttl
, INT
),
169 CONFIG("cluster_hb_interval", cluster_hb_interval
, INT
),
170 CONFIG("cluster_hb_timeout", cluster_hb_timeout
, INT
),
171 CONFIG("cluster_master_min_adv", cluster_master_min_adv
, INT
),
172 CONFIG("ipv6_prefix", ipv6_prefix
, IPv6
),
173 CONFIG("cli_bind_address", cli_bind_address
, IPv4
),
174 CONFIG("hostname", hostname
, STRING
),
176 CONFIG("nexthop_address", nexthop_address
, IPv4
),
177 CONFIG("nexthop6_address", nexthop6_address
, IPv6
),
179 CONFIG("echo_timeout", echo_timeout
, INT
),
180 CONFIG("idle_echo_timeout", idle_echo_timeout
, INT
),
181 CONFIG("iftun_address", iftun_address
, IPv4
),
183 CONFIG("disable_lac_func", disable_lac_func
, BOOL
),
184 CONFIG("bind_address_remotelns", bind_address_remotelns
, IPv4
),
185 CONFIG("bind_portremotelns", bind_portremotelns
, SHORT
),
190 static char *plugin_functions
[] = {
195 "plugin_new_session",
196 "plugin_kill_session",
198 "plugin_radius_response",
199 "plugin_radius_reset",
200 "plugin_radius_account",
201 "plugin_become_master",
202 "plugin_new_session_master",
205 #define max_plugin_functions (sizeof(plugin_functions) / sizeof(char *))
207 // Counters for shutdown sessions
208 static sessiont shut_acct
[8192];
209 static sessionidt shut_acct_n
= 0;
211 tunnelt
*tunnel
= NULL
; // Array of tunnel structures.
212 bundlet
*bundle
= NULL
; // Array of bundle structures.
213 fragmentationt
*frag
= NULL
; // Array of fragmentation structures.
214 sessiont
*session
= NULL
; // Array of session structures.
215 sessionlocalt
*sess_local
= NULL
; // Array of local per-session counters.
216 radiust
*radius
= NULL
; // Array of radius structures.
217 ippoolt
*ip_address_pool
= NULL
; // Array of dynamic IP addresses.
218 ip_filtert
*ip_filters
= NULL
; // Array of named filters.
219 static controlt
*controlfree
= 0;
220 struct Tstats
*_statistics
= NULL
;
222 struct Tringbuffer
*ringbuffer
= NULL
;
225 static ssize_t
netlink_send(struct nlmsghdr
*nh
);
226 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
);
227 static void cache_ipmap(in_addr_t ip
, sessionidt s
);
228 static void uncache_ipmap(in_addr_t ip
);
229 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
);
230 static void free_ip_address(sessionidt s
);
231 static void dump_acct_info(int all
);
232 static void sighup_handler(int sig
);
233 static void shutdown_handler(int sig
);
234 static void sigchild_handler(int sig
);
235 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
);
236 static void update_config(void);
237 static void read_config_file(void);
238 static void initplugins(void);
239 static int add_plugin(char *plugin_name
);
240 static int remove_plugin(char *plugin_name
);
241 static void plugins_done(void);
242 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
243 static tunnelidt
new_tunnel(void);
244 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
);
245 static void bundleclear(bundleidt b
);
247 // return internal time (10ths since process startup), set f if given
248 // as a side-effect sets time_now, and time_changed
249 static clockt
now(double *f
)
253 if (f
) *f
= t
.tv_sec
+ t
.tv_usec
/ 1000000.0;
254 if (t
.tv_sec
!= time_now
)
260 // Time in milliseconds
261 time_now_ms
= (t
.tv_sec
* 1000) + (t
.tv_usec
/1000);
263 return (t
.tv_sec
- basetime
) * 10 + t
.tv_usec
/ 100000 + 1;
266 // work out a retry time based on try number
267 // This is a straight bounded exponential backoff.
268 // Maximum re-try time is 32 seconds. (2^5).
269 clockt
backoff(uint8_t try)
271 if (try > 5) try = 5; // max backoff
272 return now(NULL
) + 10 * (1 << try);
277 // Log a debug message. Typically called via the LOG macro
279 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...)
281 static char message
[65536] = {0};
287 if (++ringbuffer
->tail
>= RINGBUFFER_SIZE
)
288 ringbuffer
->tail
= 0;
289 if (ringbuffer
->tail
== ringbuffer
->head
)
290 if (++ringbuffer
->head
>= RINGBUFFER_SIZE
)
291 ringbuffer
->head
= 0;
293 ringbuffer
->buffer
[ringbuffer
->tail
].level
= level
;
294 ringbuffer
->buffer
[ringbuffer
->tail
].session
= s
;
295 ringbuffer
->buffer
[ringbuffer
->tail
].tunnel
= t
;
296 va_start(ap
, format
);
297 vsnprintf(ringbuffer
->buffer
[ringbuffer
->tail
].message
, MAX_LOG_LENGTH
, format
, ap
);
302 if (config
->debug
< level
) return;
304 va_start(ap
, format
);
305 vsnprintf(message
, sizeof(message
), format
, ap
);
308 fprintf(log_stream
, "%s %02d/%02d %s", time_now_string
, t
, s
, message
);
310 syslog(level
+ 2, "%02d/%02d %s", t
, s
, message
); // We don't need LOG_EMERG or LOG_ALERT
315 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
)
318 const uint8_t *d
= data
;
320 if (config
->debug
< level
) return;
322 // No support for _log_hex to syslog
325 _log(level
, 0, 0, "%s (%d bytes):\n", title
, maxsize
);
326 setvbuf(log_stream
, NULL
, _IOFBF
, 16384);
328 for (i
= 0; i
< maxsize
; )
330 fprintf(log_stream
, "%4X: ", i
);
331 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
333 fprintf(log_stream
, "%02X ", d
[j
]);
335 fputs(": ", log_stream
);
338 for (; j
< i
+ 16; j
++)
340 fputs(" ", log_stream
);
342 fputs(": ", log_stream
);
345 fputs(" ", log_stream
);
346 for (j
= i
; j
< maxsize
&& j
< (i
+ 16); j
++)
348 if (d
[j
] >= 0x20 && d
[j
] < 0x7f && d
[j
] != 0x20)
349 fputc(d
[j
], log_stream
);
351 fputc('.', log_stream
);
354 fputs(" ", log_stream
);
358 fputs("\n", log_stream
);
362 setbuf(log_stream
, NULL
);
366 // update a counter, accumulating 2^32 wraps
367 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
)
369 uint32_t new = *counter
+ delta
;
376 // initialise the random generator
377 static void initrandom(char *source
)
379 static char path
[sizeof(config
->random_device
)] = "*undefined*";
381 // reinitialise only if we are forced to do so or if the config has changed
382 if (source
&& !strncmp(path
, source
, sizeof(path
)))
385 // close previous source, if any
394 snprintf(path
, sizeof(path
), "%s", source
);
398 rand_fd
= open(path
, O_RDONLY
|O_NONBLOCK
);
400 LOG(0, 0, 0, "Error opening the random device %s: %s\n",
401 path
, strerror(errno
));
406 // fill buffer with random data
407 void random_data(uint8_t *buf
, int len
)
414 n
= read(rand_fd
, buf
, len
);
415 if (n
>= len
) return;
420 LOG(0, 0, 0, "Error reading from random source: %s\n",
423 // fall back to rand()
431 // append missing data
433 // not using the low order bits from the prng stream
434 buf
[n
++] = (rand() >> 4) & 0xff;
439 // This adds it to the routing table, advertises it
440 // via BGP if enabled, and stuffs it into the
441 // 'sessionbyip' cache.
443 // 'ip' must be in _host_ order.
445 static void routeset(sessionidt s
, in_addr_t ip
, int prefixlen
, in_addr_t gw
, int add
)
455 if (!prefixlen
) prefixlen
= 32;
457 ip
&= 0xffffffff << (32 - prefixlen
);; // Force the ip to be the first one in the route.
459 memset(&req
, 0, sizeof(req
));
463 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
464 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
468 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
469 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
472 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
474 req
.rt
.rtm_family
= AF_INET
;
475 req
.rt
.rtm_dst_len
= prefixlen
;
476 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
477 req
.rt
.rtm_protocol
= 42;
478 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
479 req
.rt
.rtm_type
= RTN_UNICAST
;
481 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
483 netlink_addattr(&req
.nh
, RTA_DST
, &n_ip
, sizeof(n_ip
));
487 netlink_addattr(&req
.nh
, RTA_GATEWAY
, &n_ip
, sizeof(n_ip
));
490 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d%s%s\n", add
? "add" : "del",
491 fmtaddr(htonl(ip
), 0), prefixlen
,
492 gw
? " via" : "", gw
? fmtaddr(htonl(gw
), 2) : "");
494 if (netlink_send(&req
.nh
) < 0)
495 LOG(0, 0, 0, "routeset() error in sending netlink message: %s\n", strerror(errno
));
499 bgp_add_route(htonl(ip
), prefixlen
);
501 bgp_del_route(htonl(ip
), prefixlen
);
504 // Add/Remove the IPs to the 'sessionbyip' cache.
505 // Note that we add the zero address in the case of
506 // a network route. Roll on CIDR.
508 // Note that 's == 0' implies this is the address pool.
509 // We still cache it here, because it will pre-fill
510 // the malloc'ed tree.
514 if (!add
) // Are we deleting a route?
515 s
= 0; // Caching the session as '0' is the same as uncaching.
517 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
522 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
)
530 char ipv6addr
[INET6_ADDRSTRLEN
];
532 if (!config
->ipv6_prefix
.s6_addr
[0])
534 LOG(0, 0, 0, "Asked to set IPv6 route, but IPv6 not setup.\n");
538 memset(&req
, 0, sizeof(req
));
542 req
.nh
.nlmsg_type
= RTM_NEWROUTE
;
543 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
;
547 req
.nh
.nlmsg_type
= RTM_DELROUTE
;
548 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
;
551 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.rt
));
553 req
.rt
.rtm_family
= AF_INET6
;
554 req
.rt
.rtm_dst_len
= prefixlen
;
555 req
.rt
.rtm_table
= RT_TABLE_MAIN
;
556 req
.rt
.rtm_protocol
= 42;
557 req
.rt
.rtm_scope
= RT_SCOPE_LINK
;
558 req
.rt
.rtm_type
= RTN_UNICAST
;
560 netlink_addattr(&req
.nh
, RTA_OIF
, &tunidx
, sizeof(int));
561 netlink_addattr(&req
.nh
, RTA_DST
, &ip
, sizeof(ip
));
563 netlink_addattr(&req
.nh
, RTA_METRICS
, &metric
, sizeof(metric
));
565 LOG(1, s
, session
[s
].tunnel
, "Route %s %s/%d\n",
567 inet_ntop(AF_INET6
, &ip
, ipv6addr
, INET6_ADDRSTRLEN
),
570 if (netlink_send(&req
.nh
) < 0)
571 LOG(0, 0, 0, "route6set() error in sending netlink message: %s\n", strerror(errno
));
575 bgp_add_route6(ip
, prefixlen
);
577 bgp_del_route6(ip
, prefixlen
);
582 if (!add
) // Are we deleting a route?
583 s
= 0; // Caching the session as '0' is the same as uncaching.
585 cache_ipv6map(ip
, prefixlen
, s
);
592 // Set up netlink socket
593 static void initnetlink(void)
595 struct sockaddr_nl nladdr
;
597 nlfd
= socket(AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
600 LOG(0, 0, 0, "Can't create netlink socket: %s\n", strerror(errno
));
604 memset(&nladdr
, 0, sizeof(nladdr
));
605 nladdr
.nl_family
= AF_NETLINK
;
606 nladdr
.nl_pid
= getpid();
608 if (bind(nlfd
, (struct sockaddr
*)&nladdr
, sizeof(nladdr
)) < 0)
610 LOG(0, 0, 0, "Can't bind netlink socket: %s\n", strerror(errno
));
615 static ssize_t
netlink_send(struct nlmsghdr
*nh
)
617 struct sockaddr_nl nladdr
;
621 nh
->nlmsg_pid
= getpid();
622 nh
->nlmsg_seq
= ++nlseqnum
;
624 // set kernel address
625 memset(&nladdr
, 0, sizeof(nladdr
));
626 nladdr
.nl_family
= AF_NETLINK
;
628 iov
= (struct iovec
){ (void *)nh
, nh
->nlmsg_len
};
629 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
631 return sendmsg(nlfd
, &msg
, 0);
634 static ssize_t
netlink_recv(void *buf
, ssize_t len
)
636 struct sockaddr_nl nladdr
;
640 // set kernel address
641 memset(&nladdr
, 0, sizeof(nladdr
));
642 nladdr
.nl_family
= AF_NETLINK
;
644 iov
= (struct iovec
){ buf
, len
};
645 msg
= (struct msghdr
){ (void *)&nladdr
, sizeof(nladdr
), &iov
, 1, NULL
, 0, 0 };
647 return recvmsg(nlfd
, &msg
, 0);
650 /* adapted from iproute2 */
651 static void netlink_addattr(struct nlmsghdr
*nh
, int type
, const void *data
, int alen
)
653 int len
= RTA_LENGTH(alen
);
656 rta
= (struct rtattr
*)(((void *)nh
) + NLMSG_ALIGN(nh
->nlmsg_len
));
657 rta
->rta_type
= type
;
659 memcpy(RTA_DATA(rta
), data
, alen
);
660 nh
->nlmsg_len
= NLMSG_ALIGN(nh
->nlmsg_len
) + RTA_ALIGN(len
);
663 // messages corresponding to different phases seq number
664 static char *tun_nl_phase_msg
[] = {
666 "getting tun interface index",
667 "setting tun interface parameters",
668 "setting tun IPv4 address",
669 "setting tun LL IPv6 address",
670 "setting tun global IPv6 address",
674 // Set up TUN interface
675 static void inittun(void)
679 memset(&ifr
, 0, sizeof(ifr
));
680 ifr
.ifr_flags
= IFF_TUN
;
682 tunfd
= open(TUNDEVICE
, O_RDWR
);
685 LOG(0, 0, 0, "Can't open %s: %s\n", TUNDEVICE
, strerror(errno
));
689 int flags
= fcntl(tunfd
, F_GETFL
, 0);
690 fcntl(tunfd
, F_SETFL
, flags
| O_NONBLOCK
);
692 if (ioctl(tunfd
, TUNSETIFF
, (void *) &ifr
) < 0)
694 LOG(0, 0, 0, "Can't set tun interface: %s\n", strerror(errno
));
697 assert(strlen(ifr
.ifr_name
) < sizeof(config
->tundevice
) - 1);
698 strncpy(config
->tundevice
, ifr
.ifr_name
, sizeof(config
->tundevice
));
700 tunidx
= if_nametoindex(config
->tundevice
);
703 LOG(0, 0, 0, "Can't get tun interface index\n");
712 struct ifinfomsg ifinfo
;
713 struct ifaddrmsg ifaddr
;
715 char rtdata
[32]; // 32 should be enough
717 uint32_t txqlen
, mtu
;
720 memset(&req
, 0, sizeof(req
));
722 req
.nh
.nlmsg_type
= RTM_NEWLINK
;
723 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_MULTI
;
724 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifinfo
));
726 req
.ifmsg
.ifinfo
.ifi_family
= AF_UNSPEC
;
727 req
.ifmsg
.ifinfo
.ifi_index
= tunidx
;
728 req
.ifmsg
.ifinfo
.ifi_flags
|= IFF_UP
; // set interface up
729 req
.ifmsg
.ifinfo
.ifi_change
= IFF_UP
; // only change this flag
731 /* Bump up the qlen to deal with bursts from the network */
733 netlink_addattr(&req
.nh
, IFLA_TXQLEN
, &txqlen
, sizeof(txqlen
));
734 /* set MTU to modem MRU */
736 netlink_addattr(&req
.nh
, IFLA_MTU
, &mtu
, sizeof(mtu
));
738 if (netlink_send(&req
.nh
) < 0)
741 memset(&req
, 0, sizeof(req
));
743 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
744 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
745 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
747 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET
;
748 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 32;
749 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
750 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
752 if (config
->iftun_address
)
753 ip
= config
->iftun_address
;
755 ip
= 0x01010101; // 1.1.1.1
756 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip
, sizeof(ip
));
758 if (netlink_send(&req
.nh
) < 0)
761 // Only setup IPv6 on the tun device if we have a configured prefix
762 if (config
->ipv6_prefix
.s6_addr
[0]) {
765 memset(&req
, 0, sizeof(req
));
767 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
768 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
769 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
771 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
772 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
773 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_LINK
;
774 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
776 // Link local address is FE80::1
777 memset(&ip6
, 0, sizeof(ip6
));
778 ip6
.s6_addr
[0] = 0xFE;
779 ip6
.s6_addr
[1] = 0x80;
781 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
783 if (netlink_send(&req
.nh
) < 0)
786 memset(&req
, 0, sizeof(req
));
788 req
.nh
.nlmsg_type
= RTM_NEWADDR
;
789 req
.nh
.nlmsg_flags
= NLM_F_REQUEST
| NLM_F_CREATE
| NLM_F_REPLACE
| NLM_F_MULTI
;
790 req
.nh
.nlmsg_len
= NLMSG_LENGTH(sizeof(req
.ifmsg
.ifaddr
));
792 req
.ifmsg
.ifaddr
.ifa_family
= AF_INET6
;
793 req
.ifmsg
.ifaddr
.ifa_prefixlen
= 64;
794 req
.ifmsg
.ifaddr
.ifa_scope
= RT_SCOPE_UNIVERSE
;
795 req
.ifmsg
.ifaddr
.ifa_index
= tunidx
;
797 // Global address is prefix::1
798 ip6
= config
->ipv6_prefix
;
800 netlink_addattr(&req
.nh
, IFA_LOCAL
, &ip6
, sizeof(ip6
));
802 if (netlink_send(&req
.nh
) < 0)
806 memset(&req
, 0, sizeof(req
));
808 req
.nh
.nlmsg_type
= NLMSG_DONE
;
809 req
.nh
.nlmsg_len
= NLMSG_LENGTH(0);
811 if (netlink_send(&req
.nh
) < 0)
814 // if we get an error for seqnum < min_initok_nlseqnum,
815 // we must exit as initialization went wrong
816 if (config
->ipv6_prefix
.s6_addr
[0])
817 min_initok_nlseqnum
= 5 + 1; // idx + if + addr + 2*addr6
819 min_initok_nlseqnum
= 3 + 1; // idx + if + addr
825 LOG(0, 0, 0, "Error while setting up tun device: %s\n", strerror(errno
));
830 static void initudp(void)
833 struct sockaddr_in addr
;
836 memset(&addr
, 0, sizeof(addr
));
837 addr
.sin_family
= AF_INET
;
838 addr
.sin_port
= htons(L2TPPORT
);
839 addr
.sin_addr
.s_addr
= config
->bind_address
;
840 udpfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
841 setsockopt(udpfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
843 int flags
= fcntl(udpfd
, F_GETFL
, 0);
844 fcntl(udpfd
, F_SETFL
, flags
| O_NONBLOCK
);
846 if (bind(udpfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
848 LOG(0, 0, 0, "Error in UDP bind: %s\n", strerror(errno
));
853 memset(&addr
, 0, sizeof(addr
));
854 addr
.sin_family
= AF_INET
;
855 addr
.sin_port
= htons(NSCTL_PORT
);
856 controlfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
857 setsockopt(controlfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
858 setsockopt(controlfd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
859 if (bind(controlfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
861 LOG(0, 0, 0, "Error in control bind: %s\n", strerror(errno
));
865 // Dynamic Authorization Extensions to RADIUS
866 memset(&addr
, 0, sizeof(addr
));
867 addr
.sin_family
= AF_INET
;
868 addr
.sin_port
= htons(config
->radius_dae_port
);
869 daefd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
870 setsockopt(daefd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
871 setsockopt(daefd
, SOL_IP
, IP_PKTINFO
, &on
, sizeof(on
)); // recvfromto
872 if (bind(daefd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
874 LOG(0, 0, 0, "Error in DAE bind: %s\n", strerror(errno
));
879 // Tunnel to Remote LNS
880 memset(&addr
, 0, sizeof(addr
));
881 addr
.sin_family
= AF_INET
;
882 addr
.sin_port
= htons(config
->bind_portremotelns
);
883 addr
.sin_addr
.s_addr
= config
->bind_address_remotelns
;
884 udplacfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
885 setsockopt(udplacfd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
));
887 int flags
= fcntl(udplacfd
, F_GETFL
, 0);
888 fcntl(udplacfd
, F_SETFL
, flags
| O_NONBLOCK
);
890 if (bind(udplacfd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0)
892 LOG(0, 0, 0, "Error in UDP REMOTE LNS bind: %s\n", strerror(errno
));
898 snoopfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
902 // Find session by IP, < 1 for not found
904 // Confusingly enough, this 'ip' must be
905 // in _network_ order. This being the common
906 // case when looking it up from IP packet headers.
908 // We actually use this cache for two things.
909 // #1. For used IP addresses, this maps to the
910 // session ID that it's used by.
911 // #2. For un-used IP addresses, this maps to the
912 // index into the pool table that contains that
916 static sessionidt
lookup_ipmap(in_addr_t ip
)
918 uint8_t *a
= (uint8_t *) &ip
;
919 union iphash
*h
= ip_hash
;
921 if (!(h
= h
[*a
++].idx
)) return 0;
922 if (!(h
= h
[*a
++].idx
)) return 0;
923 if (!(h
= h
[*a
++].idx
)) return 0;
928 static sessionidt
lookup_ipv6map(struct in6_addr ip
)
930 struct ipv6radix
*curnode
;
933 char ipv6addr
[INET6_ADDRSTRLEN
];
935 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
939 while (s
== 0 && i
< 15 && curnode
->branch
!= NULL
)
941 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
946 LOG(4, s
, session
[s
].tunnel
, "Looking up address %s and got %d\n",
947 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
954 sessionidt
sessionbyip(in_addr_t ip
)
956 sessionidt s
= lookup_ipmap(ip
);
959 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
965 sessionidt
sessionbyipv6(struct in6_addr ip
)
968 CSTAT(sessionbyipv6
);
970 if (!memcmp(&config
->ipv6_prefix
, &ip
, 8) ||
971 (ip
.s6_addr
[0] == 0xFE &&
972 ip
.s6_addr
[1] == 0x80 &&
973 ip
.s6_addr16
[1] == 0 &&
974 ip
.s6_addr16
[2] == 0 &&
975 ip
.s6_addr16
[3] == 0)) {
976 s
= lookup_ipmap(*(in_addr_t
*) &ip
.s6_addr
[8]);
978 s
= lookup_ipv6map(ip
);
981 if (s
> 0 && s
< MAXSESSION
&& session
[s
].opened
)
988 // Take an IP address in HOST byte order and
989 // add it to the sessionid by IP cache.
991 // (It's actually cached in network order)
993 static void cache_ipmap(in_addr_t ip
, sessionidt s
)
995 in_addr_t nip
= htonl(ip
); // MUST be in network order. I.e. MSB must in be ((char *) (&ip))[0]
996 uint8_t *a
= (uint8_t *) &nip
;
997 union iphash
*h
= ip_hash
;
1000 for (i
= 0; i
< 3; i
++)
1002 if (!(h
[a
[i
]].idx
|| (h
[a
[i
]].idx
= calloc(256, sizeof(union iphash
)))))
1011 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s\n", fmtaddr(nip
, 0));
1014 LOG(4, 0, 0, "Un-caching ip address %s\n", fmtaddr(nip
, 0));
1015 // else a map to an ip pool index.
1018 static void uncache_ipmap(in_addr_t ip
)
1020 cache_ipmap(ip
, 0); // Assign it to the NULL session.
1023 static void cache_ipv6map(struct in6_addr ip
, int prefixlen
, sessionidt s
)
1027 struct ipv6radix
*curnode
;
1028 char ipv6addr
[INET6_ADDRSTRLEN
];
1030 curnode
= &ipv6_hash
[ip
.s6_addr
[0]];
1032 bytes
= prefixlen
>> 3;
1035 if (curnode
->branch
== NULL
)
1037 if (!(curnode
->branch
= calloc(256,
1038 sizeof (struct ipv6radix
))))
1041 curnode
= &curnode
->branch
[ip
.s6_addr
[i
]];
1048 LOG(4, s
, session
[s
].tunnel
, "Caching ip address %s/%d\n",
1049 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1053 LOG(4, 0, 0, "Un-caching ip address %s/%d\n",
1054 inet_ntop(AF_INET6
, &ip
, ipv6addr
,
1060 // CLI list to dump current ipcache.
1062 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1064 union iphash
*d
= ip_hash
, *e
, *f
, *g
;
1068 if (CLI_HELP_REQUESTED
)
1069 return CLI_HELP_NO_ARGS
;
1071 cli_print(cli
, "%7s %s", "Sess#", "IP Address");
1073 for (i
= 0; i
< 256; ++i
)
1079 for (j
= 0; j
< 256; ++j
)
1085 for (k
= 0; k
< 256; ++k
)
1091 for (l
= 0; l
< 256; ++l
)
1096 cli_print(cli
, "%7d %d.%d.%d.%d", g
[l
].sess
, i
, j
, k
, l
);
1102 cli_print(cli
, "%d entries in cache", count
);
1107 // Find session by username, 0 for not found
1108 // walled garden users aren't authenticated, so the username is
1109 // reasonably useless. Ignore them to avoid incorrect actions
1111 // This is VERY inefficent. Don't call it often. :)
1113 sessionidt
sessionbyuser(char *username
)
1116 CSTAT(sessionbyuser
);
1118 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
1120 if (!session
[s
].opened
)
1123 if (session
[s
].walled_garden
)
1124 continue; // Skip walled garden users.
1126 if (!strncmp(session
[s
].user
, username
, 128))
1130 return 0; // Not found.
1133 void send_garp(in_addr_t ip
)
1139 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1142 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1145 memset(&ifr
, 0, sizeof(ifr
));
1146 strncpy(ifr
.ifr_name
, "eth0", sizeof(ifr
.ifr_name
) - 1);
1147 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1149 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1153 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1154 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1156 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1161 sendarp(ifr
.ifr_ifindex
, mac
, ip
);
1164 static sessiont
*sessiontbysessionidt(sessionidt s
)
1166 if (!s
|| s
>= MAXSESSION
) return NULL
;
1170 static sessionidt
sessionidtbysessiont(sessiont
*s
)
1172 sessionidt val
= s
-session
;
1173 if (s
< session
|| val
>= MAXSESSION
) return 0;
1177 // actually send a control message for a specific tunnel
1178 void tunnelsend(uint8_t * buf
, uint16_t l
, tunnelidt t
)
1180 struct sockaddr_in addr
;
1186 LOG(0, 0, t
, "tunnelsend called with 0 as tunnel id\n");
1187 STAT(tunnel_tx_errors
);
1193 LOG(1, 0, t
, "Error sending data out tunnel: no remote endpoint (tunnel not set up)\n");
1194 STAT(tunnel_tx_errors
);
1198 memset(&addr
, 0, sizeof(addr
));
1199 addr
.sin_family
= AF_INET
;
1200 *(uint32_t *) & addr
.sin_addr
= htonl(tunnel
[t
].ip
);
1201 addr
.sin_port
= htons(tunnel
[t
].port
);
1203 // sequence expected, if sequence in message
1204 if (*buf
& 0x08) *(uint16_t *) (buf
+ ((*buf
& 0x40) ? 10 : 8)) = htons(tunnel
[t
].nr
);
1206 // If this is a control message, deal with retries
1209 tunnel
[t
].last
= time_now
; // control message sent
1210 tunnel
[t
].retry
= backoff(tunnel
[t
].try); // when to resend
1213 STAT(tunnel_retries
);
1214 LOG(3, 0, t
, "Control message resend try %d\n", tunnel
[t
].try);
1218 if (sendto((tunnel
[t
].isremotelns
?udplacfd
:udpfd
), buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1220 if (sendto(udpfd
, buf
, l
, 0, (void *) &addr
, sizeof(addr
)) < 0)
1223 LOG(0, ntohs((*(uint16_t *) (buf
+ 6))), t
, "Error sending data out tunnel: %s (udpfd=%d, buf=%p, len=%d, dest=%s)\n",
1224 strerror(errno
), udpfd
, buf
, l
, inet_ntoa(addr
.sin_addr
));
1225 STAT(tunnel_tx_errors
);
1229 LOG_HEX(5, "Send Tunnel Data", buf
, l
);
1230 STAT(tunnel_tx_packets
);
1231 INC_STAT(tunnel_tx_bytes
, l
);
1235 // Tiny helper function to write data to
1236 // the 'tun' device.
1238 int tun_write(uint8_t * data
, int size
)
1240 return write(tunfd
, data
, size
);
1243 // adjust tcp mss to avoid fragmentation (called only for tcp packets with syn set)
1244 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
)
1246 int d
= (tcp
[12] >> 4) * 4;
1253 if ((tcp
[13] & 0x3f) & ~(TCP_FLAG_SYN
|TCP_FLAG_ACK
)) // only want SYN and SYN,ACK
1256 if (tcp
+ d
> buf
+ len
) // short?
1264 if (*opts
== 2 && opts
[1] == 4) // mss option (2), length 4
1267 if (mss
+ 2 > data
) return; // short?
1271 if (*opts
== 0) return; // end of options
1272 if (*opts
== 1 || !opts
[1]) // no op (one byte), or no length (prevent loop)
1275 opts
+= opts
[1]; // skip over option
1278 if (!mss
) return; // not found
1279 orig
= ntohs(*(uint16_t *) mss
);
1281 if (orig
<= MSS
) return; // mss OK
1283 LOG(5, s
, t
, "TCP: %s:%u -> %s:%u SYN%s: adjusted mss from %u to %u\n",
1284 fmtaddr(*(in_addr_t
*) (buf
+ 12), 0), ntohs(*(uint16_t *) tcp
),
1285 fmtaddr(*(in_addr_t
*) (buf
+ 16), 1), ntohs(*(uint16_t *) (tcp
+ 2)),
1286 (tcp
[13] & TCP_FLAG_ACK
) ? ",ACK" : "", orig
, MSS
);
1289 *(int16_t *) mss
= htons(MSS
);
1291 // adjust checksum (see rfc1141)
1292 sum
= orig
+ (~MSS
& 0xffff);
1293 sum
+= ntohs(*(uint16_t *) (tcp
+ 16));
1294 sum
= (sum
& 0xffff) + (sum
>> 16);
1295 *(uint16_t *) (tcp
+ 16) = htons(sum
+ (sum
>> 16));
1298 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
)
1302 // Skip the four extra bytes
1314 proto
= ntohs(*(uint16_t *) p
);
1322 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1323 return; // closing session, PPP not processed
1325 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1326 processipin(s
, t
, p
, l
);
1328 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1332 LOG(4, s
, t
, "MPPP: Session %d is closing. Don't process PPP packets\n", s
);
1333 return; // closing session, PPP not processed
1336 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1337 processipv6in(s
, t
, p
, l
);
1339 else if (proto
== PPPIPCP
)
1341 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1342 processipcp(s
, t
, p
, l
);
1344 else if (proto
== PPPCCP
)
1346 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
1347 processccp(s
, t
, p
, l
);
1351 LOG(2, s
, t
, "MPPP: Unsupported MP protocol 0x%04X received\n",proto
);
1355 static void update_session_out_stat(sessionidt s
, sessiont
*sp
, int len
)
1357 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1358 sp
->cout_delta
+= len
;
1360 sp
->last_data
= time_now
;
1362 sess_local
[s
].cout
+= len
; // To send to master..
1363 sess_local
[s
].pout
++;
1366 // process outgoing (to tunnel) IP
1368 // (i.e. this routine writes to data[-8]).
1369 void processipout(uint8_t *buf
, int len
)
1376 uint8_t *data
= buf
; // Keep a copy of the originals.
1379 uint8_t fragbuf
[MAXETHER
+ 20];
1381 CSTAT(processipout
);
1383 if (len
< MIN_IP_SIZE
)
1385 LOG(1, 0, 0, "Short IP, %d bytes\n", len
);
1386 STAT(tun_rx_errors
);
1389 if (len
>= MAXETHER
)
1391 LOG(1, 0, 0, "Oversize IP packet %d bytes\n", len
);
1392 STAT(tun_rx_errors
);
1396 // Skip the tun header
1400 // Got an IP header now
1401 if (*(uint8_t *)(buf
) >> 4 != 4)
1403 LOG(1, 0, 0, "IP: Don't understand anything except IPv4\n");
1407 ip
= *(uint32_t *)(buf
+ 16);
1408 if (!(s
= sessionbyip(ip
)))
1410 // Is this a packet for a session that doesn't exist?
1411 static int rate
= 0; // Number of ICMP packets we've sent this second.
1412 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1414 if (last
!= time_now
)
1420 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1422 LOG(4, 0, 0, "IP: Sending ICMP host unreachable to %s\n", fmtaddr(*(in_addr_t
*)(buf
+ 12), 0));
1423 host_unreachable(*(in_addr_t
*)(buf
+ 12), *(uint16_t *)(buf
+ 4),
1424 config
->bind_address
? config
->bind_address
: my_address
, buf
, len
);
1429 t
= session
[s
].tunnel
;
1430 if (len
> session
[s
].mru
|| (session
[s
].mrru
&& len
> session
[s
].mrru
))
1432 LOG(3, s
, t
, "Packet size more than session MRU\n");
1438 // DoS prevention: enforce a maximum number of packets per 0.1s for a session
1439 if (config
->max_packets
> 0)
1441 if (sess_local
[s
].last_packet_out
== TIME
)
1443 int max
= config
->max_packets
;
1445 // All packets for throttled sessions are handled by the
1446 // master, so further limit by using the throttle rate.
1447 // A bit of a kludge, since throttle rate is in kbps,
1448 // but should still be generous given our average DSL
1449 // packet size is 200 bytes: a limit of 28kbps equates
1450 // to around 180 packets per second.
1451 if (!config
->cluster_iam_master
&& sp
->throttle_out
&& sp
->throttle_out
< max
)
1452 max
= sp
->throttle_out
;
1454 if (++sess_local
[s
].packets_out
> max
)
1456 sess_local
[s
].packets_dropped
++;
1462 if (sess_local
[s
].packets_dropped
)
1464 INC_STAT(tun_rx_dropped
, sess_local
[s
].packets_dropped
);
1465 LOG(3, s
, t
, "Dropped %u/%u packets to %s for %suser %s\n",
1466 sess_local
[s
].packets_dropped
, sess_local
[s
].packets_out
,
1467 fmtaddr(ip
, 0), sp
->throttle_out
? "throttled " : "",
1471 sess_local
[s
].last_packet_out
= TIME
;
1472 sess_local
[s
].packets_out
= 1;
1473 sess_local
[s
].packets_dropped
= 0;
1477 // run access-list if any
1478 if (session
[s
].filter_out
&& !ip_filter(buf
, len
, session
[s
].filter_out
- 1))
1481 // adjust MSS on SYN and SYN,ACK packets with options
1482 if ((ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff) == 0 && buf
[9] == IPPROTO_TCP
) // first tcp fragment
1484 int ihl
= (buf
[0] & 0xf) * 4; // length of IP header
1485 if (len
>= ihl
+ 20 && (buf
[ihl
+ 13] & TCP_FLAG_SYN
) && ((buf
[ihl
+ 12] >> 4) > 5))
1486 adjust_tcp_mss(s
, t
, buf
, len
, buf
+ ihl
);
1491 // Are we throttling this session?
1492 if (config
->cluster_iam_master
)
1493 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1495 master_throttle_packet(sp
->tbf_out
, data
, size
);
1499 if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1501 // We are walled-gardening this
1502 master_garden_packet(s
, data
, size
);
1506 if(session
[s
].bundle
!= 0 && bundle
[session
[s
].bundle
].num_of_links
> 1)
1509 if (!config
->cluster_iam_master
)
1511 // The MPPP packets must be managed by the Master.
1512 master_forward_mppp_packet(s
, data
, size
);
1516 // Add on L2TP header
1517 sessionidt members
[MAXBUNDLESES
];
1518 bundleidt bid
= session
[s
].bundle
;
1519 bundlet
*b
= &bundle
[bid
];
1520 uint32_t num_of_links
, nb_opened
;
1523 num_of_links
= b
->num_of_links
;
1525 for (i
= 0;i
< num_of_links
;i
++)
1528 if (session
[s
].ppp
.lcp
== Opened
)
1530 members
[nb_opened
] = s
;
1537 LOG(3, s
, t
, "MPPP: PROCESSIPOUT ERROR, no session opened in bundle:%d\n", bid
);
1541 num_of_links
= nb_opened
;
1542 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1543 s
= members
[b
->current_ses
];
1544 t
= session
[s
].tunnel
;
1546 LOG(4, s
, t
, "MPPP: (1)Session number becomes: %d\n", s
);
1548 if (num_of_links
> 1)
1550 if(len
> MINFRAGLEN
)
1552 //for rotate traffic among the member links
1553 uint32_t divisor
= num_of_links
;
1555 divisor
= divisor
/2 + (divisor
& 1);
1557 // Partition the packet to "num_of_links" fragments
1558 uint32_t fraglen
= len
/ divisor
;
1559 uint32_t last_fraglen
= fraglen
+ len
% divisor
;
1560 uint32_t remain
= len
;
1562 // send the first packet
1563 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, fraglen
, s
, t
, PPPIP
, 0, bid
, MP_BEGIN
);
1565 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1568 update_session_out_stat(s
, sp
, fraglen
);
1571 while (remain
> last_fraglen
)
1573 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1574 s
= members
[b
->current_ses
];
1575 t
= session
[s
].tunnel
;
1577 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1578 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), fraglen
, s
, t
, PPPIP
, 0, bid
, 0);
1580 tunnelsend(fragbuf
, fraglen
+ (p
-fragbuf
), t
); // send it...
1581 update_session_out_stat(s
, sp
, fraglen
);
1584 // send the last fragment
1585 b
->current_ses
= (b
->current_ses
+ 1) % num_of_links
;
1586 s
= members
[b
->current_ses
];
1587 t
= session
[s
].tunnel
;
1589 LOG(4, s
, t
, "MPPP: (2)Session number becomes: %d\n", s
);
1590 p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
+(len
- remain
), remain
, s
, t
, PPPIP
, 0, bid
, MP_END
);
1592 tunnelsend(fragbuf
, remain
+ (p
-fragbuf
), t
); // send it...
1593 update_session_out_stat(s
, sp
, remain
);
1594 if (remain
!= last_fraglen
)
1595 LOG(3, s
, t
, "PROCESSIPOUT ERROR REMAIN != LAST_FRAGLEN, %d != %d\n", remain
, last_fraglen
);
1599 // Send it as one frame
1600 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, bid
, MP_BOTH_BITS
);
1602 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1603 LOG(4, s
, t
, "MPPP: packet sent as one frame\n");
1604 update_session_out_stat(s
, sp
, len
);
1609 // Send it as one frame (NO MPPP Frame)
1610 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1612 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1613 update_session_out_stat(s
, sp
, len
);
1618 uint8_t *p
= makeppp(fragbuf
, sizeof(fragbuf
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1620 tunnelsend(fragbuf
, len
+ (p
-fragbuf
), t
); // send it...
1621 update_session_out_stat(s
, sp
, len
);
1624 // Snooping this session, send it to intercept box
1625 if (sp
->snoop_ip
&& sp
->snoop_port
)
1626 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1631 // process outgoing (to tunnel) IPv6
1633 static void processipv6out(uint8_t * buf
, int len
)
1639 struct in6_addr ip6
;
1641 uint8_t *data
= buf
; // Keep a copy of the originals.
1644 uint8_t b
[MAXETHER
+ 20];
1646 CSTAT(processipv6out
);
1648 if (len
< MIN_IP_SIZE
)
1650 LOG(1, 0, 0, "Short IPv6, %d bytes\n", len
);
1651 STAT(tunnel_tx_errors
);
1654 if (len
>= MAXETHER
)
1656 LOG(1, 0, 0, "Oversize IPv6 packet %d bytes\n", len
);
1657 STAT(tunnel_tx_errors
);
1661 // Skip the tun header
1665 // Got an IP header now
1666 if (*(uint8_t *)(buf
) >> 4 != 6)
1668 LOG(1, 0, 0, "IP: Don't understand anything except IPv6\n");
1672 ip6
= *(struct in6_addr
*)(buf
+24);
1673 s
= sessionbyipv6(ip6
);
1677 ip
= *(uint32_t *)(buf
+ 32);
1678 s
= sessionbyip(ip
);
1683 // Is this a packet for a session that doesn't exist?
1684 static int rate
= 0; // Number of ICMP packets we've sent this second.
1685 static int last
= 0; // Last time we reset the ICMP packet counter 'rate'.
1687 if (last
!= time_now
)
1693 if (rate
++ < config
->icmp_rate
) // Only send a max of icmp_rate per second.
1695 // FIXME: Should send icmp6 host unreachable
1699 if (session
[s
].bundle
&& bundle
[session
[s
].bundle
].num_of_links
> 1)
1701 bundleidt bid
= session
[s
].bundle
;
1702 bundlet
*b
= &bundle
[bid
];
1704 b
->current_ses
= (b
->current_ses
+ 1) % b
->num_of_links
;
1705 s
= b
->members
[b
->current_ses
];
1706 LOG(3, s
, session
[s
].tunnel
, "MPPP: Session number becomes: %u\n", s
);
1708 t
= session
[s
].tunnel
;
1710 sp
->last_data
= time_now
;
1712 // FIXME: add DoS prevention/filters?
1716 // Are we throttling this session?
1717 if (config
->cluster_iam_master
)
1718 tbf_queue_packet(sp
->tbf_out
, data
, size
);
1720 master_throttle_packet(sp
->tbf_out
, data
, size
);
1723 else if (sp
->walled_garden
&& !config
->cluster_iam_master
)
1725 // We are walled-gardening this
1726 master_garden_packet(s
, data
, size
);
1730 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1732 // Add on L2TP header
1734 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIPV6
, 0, 0, 0);
1736 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1739 // Snooping this session, send it to intercept box
1740 if (sp
->snoop_ip
&& sp
->snoop_port
)
1741 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1743 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1744 sp
->cout_delta
+= len
;
1748 sess_local
[s
].cout
+= len
; // To send to master..
1749 sess_local
[s
].pout
++;
1753 // Helper routine for the TBF filters.
1754 // Used to send queued data in to the user!
1756 static void send_ipout(sessionidt s
, uint8_t *buf
, int len
)
1761 uint8_t b
[MAXETHER
+ 20];
1763 if (len
< 0 || len
> MAXETHER
)
1765 LOG(1, 0, 0, "Odd size IP packet: %d bytes\n", len
);
1769 // Skip the tun header
1776 t
= session
[s
].tunnel
;
1779 LOG(5, s
, t
, "Ethernet -> Tunnel (%d bytes)\n", len
);
1781 // Add on L2TP header
1783 uint8_t *p
= makeppp(b
, sizeof(b
), buf
, len
, s
, t
, PPPIP
, 0, 0, 0);
1785 tunnelsend(b
, len
+ (p
-b
), t
); // send it...
1788 // Snooping this session.
1789 if (sp
->snoop_ip
&& sp
->snoop_port
)
1790 snoop_send_packet(buf
, len
, sp
->snoop_ip
, sp
->snoop_port
);
1792 increment_counter(&sp
->cout
, &sp
->cout_wrap
, len
); // byte count
1793 sp
->cout_delta
+= len
;
1797 sess_local
[s
].cout
+= len
; // To send to master..
1798 sess_local
[s
].pout
++;
1801 // add an AVP (16 bit)
1802 static void control16(controlt
* c
, uint16_t avp
, uint16_t val
, uint8_t m
)
1804 uint16_t l
= (m
? 0x8008 : 0x0008);
1805 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1806 c
->buf16
[c
->length
/2 + 1] = htons(0);
1807 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1808 c
->buf16
[c
->length
/2 + 3] = htons(val
);
1812 // add an AVP (32 bit)
1813 static void control32(controlt
* c
, uint16_t avp
, uint32_t val
, uint8_t m
)
1815 uint16_t l
= (m
? 0x800A : 0x000A);
1816 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1817 c
->buf16
[c
->length
/2 + 1] = htons(0);
1818 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1819 *(uint32_t *) &c
->buf
[c
->length
+ 6] = htonl(val
);
1823 // add an AVP (string)
1824 static void controls(controlt
* c
, uint16_t avp
, char *val
, uint8_t m
)
1826 uint16_t l
= ((m
? 0x8000 : 0) + strlen(val
) + 6);
1827 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1828 c
->buf16
[c
->length
/2 + 1] = htons(0);
1829 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1830 memcpy(&c
->buf
[c
->length
+ 6], val
, strlen(val
));
1831 c
->length
+= 6 + strlen(val
);
1835 static void controlb(controlt
* c
, uint16_t avp
, uint8_t *val
, unsigned int len
, uint8_t m
)
1837 uint16_t l
= ((m
? 0x8000 : 0) + len
+ 6);
1838 c
->buf16
[c
->length
/2 + 0] = htons(l
);
1839 c
->buf16
[c
->length
/2 + 1] = htons(0);
1840 c
->buf16
[c
->length
/2 + 2] = htons(avp
);
1841 memcpy(&c
->buf
[c
->length
+ 6], val
, len
);
1842 c
->length
+= 6 + len
;
1845 // new control connection
1846 static controlt
*controlnew(uint16_t mtype
)
1850 c
= malloc(sizeof(controlt
));
1854 controlfree
= c
->next
;
1858 c
->buf16
[0] = htons(0xC802); // flags/ver
1860 control16(c
, 0, mtype
, 1);
1864 // send zero block if nothing is waiting
1866 static void controlnull(tunnelidt t
)
1869 if (tunnel
[t
].controlc
) // Messages queued; They will carry the ack.
1872 buf
[0] = htons(0xC802); // flags/ver
1873 buf
[1] = htons(12); // length
1874 buf
[2] = htons(tunnel
[t
].far
); // tunnel
1875 buf
[3] = htons(0); // session
1876 buf
[4] = htons(tunnel
[t
].ns
); // sequence
1877 buf
[5] = htons(tunnel
[t
].nr
); // sequence
1878 tunnelsend((uint8_t *)buf
, 12, t
);
1881 // add a control message to a tunnel, and send if within window
1882 static void controladd(controlt
*c
, sessionidt far
, tunnelidt t
)
1884 c
->buf16
[1] = htons(c
->length
); // length
1885 c
->buf16
[2] = htons(tunnel
[t
].far
); // tunnel
1886 c
->buf16
[3] = htons(far
); // session
1887 c
->buf16
[4] = htons(tunnel
[t
].ns
); // sequence
1888 tunnel
[t
].ns
++; // advance sequence
1889 // link in message in to queue
1890 if (tunnel
[t
].controlc
)
1891 tunnel
[t
].controle
->next
= c
;
1893 tunnel
[t
].controls
= c
;
1895 tunnel
[t
].controle
= c
;
1896 tunnel
[t
].controlc
++;
1898 // send now if space in window
1899 if (tunnel
[t
].controlc
<= tunnel
[t
].window
)
1901 tunnel
[t
].try = 0; // first send
1902 tunnelsend(c
->buf
, c
->length
, t
);
1907 // Throttle or Unthrottle a session
1909 // Throttle the data from/to through a session to no more than
1910 // 'rate_in' kbit/sec in (from user) or 'rate_out' kbit/sec out (to
1913 // If either value is -1, the current value is retained for that
1916 void throttle_session(sessionidt s
, int rate_in
, int rate_out
)
1918 if (!session
[s
].opened
)
1919 return; // No-one home.
1921 if (!*session
[s
].user
)
1922 return; // User not logged in
1926 int bytes
= rate_in
* 1024 / 8; // kbits to bytes
1927 if (session
[s
].tbf_in
)
1928 free_tbf(session
[s
].tbf_in
);
1931 session
[s
].tbf_in
= new_tbf(s
, bytes
* 2, bytes
, send_ipin
);
1933 session
[s
].tbf_in
= 0;
1935 session
[s
].throttle_in
= rate_in
;
1940 int bytes
= rate_out
* 1024 / 8;
1941 if (session
[s
].tbf_out
)
1942 free_tbf(session
[s
].tbf_out
);
1945 session
[s
].tbf_out
= new_tbf(s
, bytes
* 2, bytes
, send_ipout
);
1947 session
[s
].tbf_out
= 0;
1949 session
[s
].throttle_out
= rate_out
;
1953 // add/remove filters from session (-1 = no change)
1954 void filter_session(sessionidt s
, int filter_in
, int filter_out
)
1956 if (!session
[s
].opened
)
1957 return; // No-one home.
1959 if (!*session
[s
].user
)
1960 return; // User not logged in
1963 if (filter_in
> MAXFILTER
) filter_in
= -1;
1964 if (filter_out
> MAXFILTER
) filter_out
= -1;
1965 if (session
[s
].filter_in
> MAXFILTER
) session
[s
].filter_in
= 0;
1966 if (session
[s
].filter_out
> MAXFILTER
) session
[s
].filter_out
= 0;
1970 if (session
[s
].filter_in
)
1971 ip_filters
[session
[s
].filter_in
- 1].used
--;
1974 ip_filters
[filter_in
- 1].used
++;
1976 session
[s
].filter_in
= filter_in
;
1979 if (filter_out
>= 0)
1981 if (session
[s
].filter_out
)
1982 ip_filters
[session
[s
].filter_out
- 1].used
--;
1985 ip_filters
[filter_out
- 1].used
++;
1987 session
[s
].filter_out
= filter_out
;
1991 // start tidy shutdown of session
1992 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
)
1994 int walled_garden
= session
[s
].walled_garden
;
1995 bundleidt b
= session
[s
].bundle
;
1996 //delete routes only for last session in bundle (in case of MPPP)
1997 int del_routes
= !b
|| (bundle
[b
].num_of_links
== 1);
1999 CSTAT(sessionshutdown
);
2001 if (!session
[s
].opened
)
2003 LOG(3, s
, session
[s
].tunnel
, "Called sessionshutdown on an unopened session.\n");
2004 return; // not a live session
2007 if (!session
[s
].die
)
2009 struct param_kill_session data
= { &tunnel
[session
[s
].tunnel
], &session
[s
] };
2010 LOG(2, s
, session
[s
].tunnel
, "Shutting down session %u: %s\n", s
, reason
);
2011 run_plugins(PLUGIN_KILL_SESSION
, &data
);
2012 session
[s
].die
= TIME
+ 150; // Clean up in 15 seconds
2015 if (session
[s
].ip
&& !walled_garden
&& !session
[s
].die
)
2017 // RADIUS Stop message
2018 uint16_t r
= radiusnew(s
);
2021 // stop, if not already trying
2022 if (radius
[r
].state
!= RADIUSSTOP
)
2024 radius
[r
].term_cause
= term_cause
;
2025 radius
[r
].term_msg
= reason
;
2026 radiussend(r
, RADIUSSTOP
);
2030 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Stop message\n");
2032 // Save counters to dump to accounting file
2033 if (*config
->accounting_dir
&& shut_acct_n
< sizeof(shut_acct
) / sizeof(*shut_acct
))
2034 memcpy(&shut_acct
[shut_acct_n
++], &session
[s
], sizeof(session
[s
]));
2038 { // IP allocated, clear and unroute
2041 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
2043 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
2044 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
2047 if (del_routes
) routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 0);
2048 session
[s
].route
[r
].ip
= 0;
2051 if (session
[s
].ip_pool_index
== -1) // static ip
2053 if (!routed
&& del_routes
) routeset(s
, session
[s
].ip
, 0, 0, 0);
2059 // unroute IPv6, if setup
2060 if (session
[s
].ppp
.ipv6cp
== Opened
&& session
[s
].ipv6prefixlen
&& del_routes
)
2061 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 0);
2065 // This session was part of a bundle
2066 bundle
[b
].num_of_links
--;
2067 LOG(3, s
, session
[s
].tunnel
, "MPPP: Dropping member link: %d from bundle %d\n",s
,b
);
2068 if(bundle
[b
].num_of_links
== 0)
2071 LOG(3, s
, session
[s
].tunnel
, "MPPP: Kill bundle: %d (No remaing member links)\n",b
);
2075 // Adjust the members array to accomodate the new change
2076 uint8_t mem_num
= 0;
2077 // It should be here num_of_links instead of num_of_links-1 (previous instruction "num_of_links--")
2078 if(bundle
[b
].members
[bundle
[b
].num_of_links
] != s
)
2081 for(ml
= 0; ml
<bundle
[b
].num_of_links
; ml
++)
2082 if(bundle
[b
].members
[ml
] == s
)
2087 bundle
[b
].members
[mem_num
] = bundle
[b
].members
[bundle
[b
].num_of_links
];
2088 LOG(3, s
, session
[s
].tunnel
, "MPPP: Adjusted member links array\n");
2090 // If the killed session is the first of the bundle,
2091 // the new first session must be stored in the cache_ipmap
2092 // else the function sessionbyip return 0 and the sending not work any more (processipout).
2095 sessionidt new_s
= bundle
[b
].members
[0];
2098 // Add the route for this session.
2099 for (r
= 0; r
< MAXROUTE
&& session
[new_s
].route
[r
].ip
; r
++)
2104 prefixlen
= session
[new_s
].route
[r
].prefixlen
;
2105 ip
= session
[new_s
].route
[r
].ip
;
2107 if (!prefixlen
) prefixlen
= 32;
2108 ip
&= 0xffffffff << (32 - prefixlen
); // Force the ip to be the first one in the route.
2110 for (i
= ip
; i
< ip
+(1<<(32-prefixlen
)) ; ++i
)
2111 cache_ipmap(i
, new_s
);
2113 cache_ipmap(session
[new_s
].ip
, new_s
);
2116 if (session
[new_s
].ipv6prefixlen
)
2117 cache_ipv6map(session
[new_s
].ipv6route
, session
[new_s
].ipv6prefixlen
, new_s
);
2122 cluster_send_bundle(b
);
2126 if (session
[s
].throttle_in
|| session
[s
].throttle_out
) // Unthrottle if throttled.
2127 throttle_session(s
, 0, 0);
2131 controlt
*c
= controlnew(14); // sending CDN
2135 buf
[0] = htons(cdn_result
);
2136 buf
[1] = htons(cdn_error
);
2137 controlb(c
, 1, (uint8_t *)buf
, 4, 1);
2140 control16(c
, 1, cdn_result
, 1);
2142 control16(c
, 14, s
, 1); // assigned session (our end)
2143 controladd(c
, session
[s
].far
, session
[s
].tunnel
); // send the message
2146 // update filter refcounts
2147 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
2148 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
2151 memset(&session
[s
].ppp
, 0, sizeof(session
[s
].ppp
));
2152 sess_local
[s
].lcp
.restart
= 0;
2153 sess_local
[s
].ipcp
.restart
= 0;
2154 sess_local
[s
].ipv6cp
.restart
= 0;
2155 sess_local
[s
].ccp
.restart
= 0;
2157 cluster_send_session(s
);
2160 void sendipcp(sessionidt s
, tunnelidt t
)
2162 uint8_t buf
[MAXETHER
];
2166 LOG(3, s
, t
, "IPCP: send ConfigReq\n");
2168 if (!session
[s
].unique_id
)
2170 if (!++last_id
) ++last_id
; // skip zero
2171 session
[s
].unique_id
= last_id
;
2174 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPCP
, 0, 0, 0);
2178 q
[1] = session
[s
].unique_id
& 0xf; // ID, dont care, we only send one type of request
2179 *(uint16_t *) (q
+ 2) = htons(10); // packet length
2180 q
[4] = 3; // ip address option
2181 q
[5] = 6; // option length
2182 *(in_addr_t
*) (q
+ 6) = config
->peer_address
? config
->peer_address
:
2183 config
->iftun_address
? config
->iftun_address
:
2184 my_address
; // send my IP
2186 tunnelsend(buf
, 10 + (q
- buf
), t
); // send it
2187 restart_timer(s
, ipcp
);
2190 void sendipv6cp(sessionidt s
, tunnelidt t
)
2192 uint8_t buf
[MAXETHER
];
2196 LOG(3, s
, t
, "IPV6CP: send ConfigReq\n");
2198 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPIPV6CP
, 0, 0, 0);
2202 q
[1] = session
[s
].unique_id
& 0xf; // ID, don't care, we
2203 // only send one type
2205 *(uint16_t *) (q
+ 2) = htons(14);
2206 q
[4] = 1; // interface identifier option
2207 q
[5] = 10; // option length
2208 *(uint32_t *) (q
+ 6) = 0; // We'll be prefix::1
2209 *(uint32_t *) (q
+ 10) = 0;
2212 tunnelsend(buf
, 14 + (q
- buf
), t
); // send it
2213 restart_timer(s
, ipv6cp
);
2216 static void sessionclear(sessionidt s
)
2218 memset(&session
[s
], 0, sizeof(session
[s
]));
2219 memset(&sess_local
[s
], 0, sizeof(sess_local
[s
]));
2220 memset(&cli_session_actions
[s
], 0, sizeof(cli_session_actions
[s
]));
2222 session
[s
].tunnel
= T_FREE
; // Mark it as free.
2223 session
[s
].next
= sessionfree
;
2227 // kill a session now
2228 void sessionkill(sessionidt s
, char *reason
)
2232 if (!session
[s
].opened
) // not alive
2235 if (session
[s
].next
)
2237 LOG(0, s
, session
[s
].tunnel
, "Tried to kill a session with next pointer set (%u)\n", session
[s
].next
);
2241 if (!session
[s
].die
)
2242 sessionshutdown(s
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
); // close radius/routes, etc.
2244 if (sess_local
[s
].radius
)
2245 radiusclear(sess_local
[s
].radius
, s
); // cant send clean accounting data, session is killed
2248 if (session
[s
].forwardtosession
)
2250 sessionidt sess
= session
[s
].forwardtosession
;
2251 if (session
[sess
].forwardtosession
== s
)
2253 // Shutdown the linked session also.
2254 sessionshutdown(sess
, reason
, CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
2259 LOG(2, s
, session
[s
].tunnel
, "Kill session %d (%s): %s\n", s
, session
[s
].user
, reason
);
2261 cluster_send_session(s
);
2264 static void tunnelclear(tunnelidt t
)
2267 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
2268 tunnel
[t
].state
= TUNNELFREE
;
2271 static void bundleclear(bundleidt b
)
2274 memset(&bundle
[b
], 0, sizeof(bundle
[b
]));
2275 bundle
[b
].state
= BUNDLEFREE
;
2278 // kill a tunnel now
2279 static void tunnelkill(tunnelidt t
, char *reason
)
2286 tunnel
[t
].state
= TUNNELDIE
;
2288 // free control messages
2289 while ((c
= tunnel
[t
].controls
))
2291 controlt
* n
= c
->next
;
2292 tunnel
[t
].controls
= n
;
2293 tunnel
[t
].controlc
--;
2294 c
->next
= controlfree
;
2298 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2299 if (session
[s
].tunnel
== t
)
2300 sessionkill(s
, reason
);
2304 LOG(1, 0, t
, "Kill tunnel %u: %s\n", t
, reason
);
2305 cli_tunnel_actions
[t
].action
= 0;
2306 cluster_send_tunnel(t
);
2309 // shut down a tunnel cleanly
2310 static void tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
2314 CSTAT(tunnelshutdown
);
2316 if (!tunnel
[t
].last
|| !tunnel
[t
].far
|| tunnel
[t
].state
== TUNNELFREE
)
2318 // never set up, can immediately kill
2319 tunnelkill(t
, reason
);
2322 LOG(1, 0, t
, "Shutting down tunnel %u (%s)\n", t
, reason
);
2325 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
2326 if (session
[s
].tunnel
== t
)
2327 sessionshutdown(s
, reason
, CDN_NONE
, TERM_ADMIN_RESET
);
2329 tunnel
[t
].state
= TUNNELDIE
;
2330 tunnel
[t
].die
= TIME
+ 700; // Clean up in 70 seconds
2331 cluster_send_tunnel(t
);
2332 // TBA - should we wait for sessions to stop?
2335 controlt
*c
= controlnew(4); // sending StopCCN
2340 buf
[0] = htons(result
);
2341 buf
[1] = htons(error
);
2344 int m
= strlen(msg
);
2345 if (m
+ 4 > sizeof(buf
))
2346 m
= sizeof(buf
) - 4;
2348 memcpy(buf
+2, msg
, m
);
2352 controlb(c
, 1, (uint8_t *)buf
, l
, 1);
2355 control16(c
, 1, result
, 1);
2357 control16(c
, 9, t
, 1); // assigned tunnel (our end)
2358 controladd(c
, 0, t
); // send the message
2362 // read and process packet on tunnel (UDP)
2363 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
)
2365 uint8_t *chapresponse
= NULL
;
2366 uint16_t l
= len
, t
= 0, s
= 0, ns
= 0, nr
= 0;
2367 uint8_t *p
= buf
+ 2;
2374 LOG_HEX(5, "UDP Data", buf
, len
);
2375 STAT(tunnel_rx_packets
);
2376 INC_STAT(tunnel_rx_bytes
, len
);
2379 LOG(1, 0, 0, "Short UDP, %d bytes\n", len
);
2380 STAT(tunnel_rx_errors
);
2383 if ((buf
[1] & 0x0F) != 2)
2385 LOG(1, 0, 0, "Bad L2TP ver %d\n", buf
[1] & 0x0F);
2386 STAT(tunnel_rx_errors
);
2391 l
= ntohs(*(uint16_t *) p
);
2394 t
= ntohs(*(uint16_t *) p
);
2396 s
= ntohs(*(uint16_t *) p
);
2398 if (s
>= MAXSESSION
)
2400 LOG(1, s
, t
, "Received UDP packet with invalid session ID\n");
2401 STAT(tunnel_rx_errors
);
2406 LOG(1, s
, t
, "Received UDP packet with invalid tunnel ID\n");
2407 STAT(tunnel_rx_errors
);
2412 ns
= ntohs(*(uint16_t *) p
);
2414 nr
= ntohs(*(uint16_t *) p
);
2419 uint16_t o
= ntohs(*(uint16_t *) p
);
2424 LOG(1, s
, t
, "Bad length %d>%d\n", (int) (p
- buf
), l
);
2425 STAT(tunnel_rx_errors
);
2430 // used to time out old tunnels
2431 if (t
&& tunnel
[t
].state
== TUNNELOPEN
)
2432 tunnel
[t
].lastrec
= time_now
;
2436 uint16_t message
= 0xFFFF; // message type
2438 uint8_t mandatory
= 0;
2439 uint16_t asession
= 0; // assigned session
2440 uint32_t amagic
= 0; // magic number
2441 uint8_t aflags
= 0; // flags from last LCF
2442 uint16_t version
= 0x0100; // protocol version (we handle 0.0 as well and send that back just in case)
2443 char called
[MAXTEL
] = ""; // called number
2444 char calling
[MAXTEL
] = ""; // calling number
2446 if (!config
->cluster_iam_master
)
2448 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
2452 // control messages must have bits 0x80|0x40|0x08
2453 // (type, length and sequence) set, and bits 0x02|0x01
2454 // (offset and priority) clear
2455 if ((*buf
& 0xCB) != 0xC8)
2457 LOG(1, s
, t
, "Bad control header %02X\n", *buf
);
2458 STAT(tunnel_rx_errors
);
2462 // check for duplicate tunnel open message
2468 // Is this a duplicate of the first packet? (SCCRQ)
2470 for (i
= 1; i
<= config
->cluster_highest_tunnelid
; ++i
)
2472 if (tunnel
[i
].state
!= TUNNELOPENING
||
2473 tunnel
[i
].ip
!= ntohl(*(in_addr_t
*) & addr
->sin_addr
) ||
2474 tunnel
[i
].port
!= ntohs(addr
->sin_port
) )
2477 LOG(3, s
, t
, "Duplicate SCCRQ?\n");
2482 LOG(3, s
, t
, "Control message (%d bytes): (unacked %d) l-ns %u l-nr %u r-ns %u r-nr %u\n",
2483 l
, tunnel
[t
].controlc
, tunnel
[t
].ns
, tunnel
[t
].nr
, ns
, nr
);
2485 // if no tunnel specified, assign one
2488 if (!(t
= new_tunnel()))
2490 LOG(1, 0, 0, "No more tunnels\n");
2491 STAT(tunnel_overflow
);
2495 tunnel
[t
].ip
= ntohl(*(in_addr_t
*) & addr
->sin_addr
);
2496 tunnel
[t
].port
= ntohs(addr
->sin_port
);
2497 tunnel
[t
].window
= 4; // default window
2498 STAT(tunnel_created
);
2499 LOG(1, 0, t
, " New tunnel from %s:%u ID %u\n",
2500 fmtaddr(htonl(tunnel
[t
].ip
), 0), tunnel
[t
].port
, t
);
2503 // If the 'ns' just received is not the 'nr' we're
2504 // expecting, just send an ack and drop it.
2506 // if 'ns' is less, then we got a retransmitted packet.
2507 // if 'ns' is greater than missed a packet. Either way
2508 // we should ignore it.
2509 if (ns
!= tunnel
[t
].nr
)
2511 // is this the sequence we were expecting?
2512 STAT(tunnel_rx_errors
);
2513 LOG(1, 0, t
, " Out of sequence tunnel %u, (%u is not the expected %u)\n",
2514 t
, ns
, tunnel
[t
].nr
);
2516 if (l
) // Is this not a ZLB?
2521 // check sequence of this message
2523 int skip
= tunnel
[t
].window
; // track how many in-window packets are still in queue
2524 // some to clear maybe?
2525 while (tunnel
[t
].controlc
> 0 && (((tunnel
[t
].ns
- tunnel
[t
].controlc
) - nr
) & 0x8000))
2527 controlt
*c
= tunnel
[t
].controls
;
2528 tunnel
[t
].controls
= c
->next
;
2529 tunnel
[t
].controlc
--;
2530 c
->next
= controlfree
;
2533 tunnel
[t
].try = 0; // we have progress
2536 // receiver advance (do here so quoted correctly in any sends below)
2537 if (l
) tunnel
[t
].nr
= (ns
+ 1);
2538 if (skip
< 0) skip
= 0;
2539 if (skip
< tunnel
[t
].controlc
)
2541 // some control packets can now be sent that were previous stuck out of window
2542 int tosend
= tunnel
[t
].window
- skip
;
2543 controlt
*c
= tunnel
[t
].controls
;
2551 tunnel
[t
].try = 0; // first send
2552 tunnelsend(c
->buf
, c
->length
, t
);
2557 if (!tunnel
[t
].controlc
)
2558 tunnel
[t
].retry
= 0; // caught up
2561 { // if not a null message
2566 // Default disconnect cause/message on receipt of CDN. Set to
2567 // more specific value from attribute 1 (result code) or 46
2568 // (disconnect cause) if present below.
2569 int disc_cause_set
= 0;
2570 int disc_cause
= TERM_NAS_REQUEST
;
2571 char const *disc_reason
= "Closed (Received CDN).";
2574 while (l
&& !(fatal
& 0x80)) // 0x80 = mandatory AVP
2576 uint16_t n
= (ntohs(*(uint16_t *) p
) & 0x3FF);
2583 LOG(1, s
, t
, "Invalid length in AVP\n");
2584 STAT(tunnel_rx_errors
);
2589 if (flags
& 0x3C) // reserved bits, should be clear
2591 LOG(1, s
, t
, "Unrecognised AVP flags %02X\n", *b
);
2593 result
= 2; // general error
2594 error
= 3; // reserved field non-zero
2599 if (*(uint16_t *) (b
))
2601 LOG(2, s
, t
, "Unknown AVP vendor %u\n", ntohs(*(uint16_t *) (b
)));
2603 result
= 2; // general error
2604 error
= 6; // generic vendor-specific error
2605 msg
= "unsupported vendor-specific";
2609 mtype
= ntohs(*(uint16_t *) (b
));
2617 // handle hidden AVPs
2618 if (!*config
->l2tp_secret
)
2620 LOG(1, s
, t
, "Hidden AVP requested, but no L2TP secret.\n");
2622 result
= 2; // general error
2623 error
= 6; // generic vendor-specific error
2624 msg
= "secret not specified";
2627 if (!session
[s
].random_vector_length
)
2629 LOG(1, s
, t
, "Hidden AVP requested, but no random vector.\n");
2631 result
= 2; // general error
2632 error
= 6; // generic
2633 msg
= "no random vector";
2638 LOG(2, s
, t
, "Short hidden AVP.\n");
2640 result
= 2; // general error
2641 error
= 2; // length is wrong
2647 unhide_value(b
, n
, mtype
, session
[s
].random_vector
, session
[s
].random_vector_length
);
2649 orig_len
= ntohs(*(uint16_t *) b
);
2650 if (orig_len
> n
+ 2)
2652 LOG(1, s
, t
, "Original length %d too long in hidden AVP of length %d; wrong secret?\n",
2656 result
= 2; // general error
2657 error
= 2; // length is wrong
2666 LOG(4, s
, t
, " AVP %u (%s) len %d%s%s\n", mtype
, l2tp_avp_name(mtype
), n
,
2667 flags
& 0x40 ? ", hidden" : "", flags
& 0x80 ? ", mandatory" : "");
2671 case 0: // message type
2672 message
= ntohs(*(uint16_t *) b
);
2673 mandatory
= flags
& 0x80;
2674 LOG(4, s
, t
, " Message type = %u (%s)\n", message
, l2tp_code(message
));
2676 case 1: // result code
2678 uint16_t rescode
= ntohs(*(uint16_t *) b
);
2679 char const *resdesc
= "(unknown)";
2680 char const *errdesc
= NULL
;
2685 resdesc
= l2tp_stopccn_result_code(rescode
);
2686 cause
= TERM_LOST_SERVICE
;
2688 else if (message
== 14)
2690 resdesc
= l2tp_cdn_result_code(rescode
);
2692 cause
= TERM_LOST_CARRIER
;
2694 cause
= TERM_ADMIN_RESET
;
2697 LOG(4, s
, t
, " Result Code %u: %s\n", rescode
, resdesc
);
2700 uint16_t errcode
= ntohs(*(uint16_t *)(b
+ 2));
2701 errdesc
= l2tp_error_code(errcode
);
2702 LOG(4, s
, t
, " Error Code %u: %s\n", errcode
, errdesc
);
2705 LOG(4, s
, t
, " Error String: %.*s\n", n
-4, b
+4);
2707 if (cause
&& disc_cause_set
< mtype
) // take cause from attrib 46 in preference
2709 disc_cause_set
= mtype
;
2710 disc_reason
= errdesc
? errdesc
: resdesc
;
2717 case 2: // protocol version
2719 version
= ntohs(*(uint16_t *) (b
));
2720 LOG(4, s
, t
, " Protocol version = %u\n", version
);
2721 if (version
&& version
!= 0x0100)
2722 { // allow 0.0 and 1.0
2723 LOG(1, s
, t
, " Bad protocol version %04X\n", version
);
2725 result
= 5; // unspported protocol version
2726 error
= 0x0100; // supported version
2732 case 3: // framing capabilities
2734 case 4: // bearer capabilities
2736 case 5: // tie breaker
2737 // We never open tunnels, so we don't care about tie breakers
2739 case 6: // firmware revision
2741 case 7: // host name
2742 memset(tunnel
[t
].hostname
, 0, sizeof(tunnel
[t
].hostname
));
2743 memcpy(tunnel
[t
].hostname
, b
, (n
< sizeof(tunnel
[t
].hostname
)) ? n
: sizeof(tunnel
[t
].hostname
) - 1);
2744 LOG(4, s
, t
, " Tunnel hostname = \"%s\"\n", tunnel
[t
].hostname
);
2745 // TBA - to send to RADIUS
2747 case 8: // vendor name
2748 memset(tunnel
[t
].vendor
, 0, sizeof(tunnel
[t
].vendor
));
2749 memcpy(tunnel
[t
].vendor
, b
, (n
< sizeof(tunnel
[t
].vendor
)) ? n
: sizeof(tunnel
[t
].vendor
) - 1);
2750 LOG(4, s
, t
, " Vendor name = \"%s\"\n", tunnel
[t
].vendor
);
2752 case 9: // assigned tunnel
2753 tunnel
[t
].far
= ntohs(*(uint16_t *) (b
));
2754 LOG(4, s
, t
, " Remote tunnel id = %u\n", tunnel
[t
].far
);
2756 case 10: // rx window
2757 tunnel
[t
].window
= ntohs(*(uint16_t *) (b
));
2758 if (!tunnel
[t
].window
)
2759 tunnel
[t
].window
= 1; // window of 0 is silly
2760 LOG(4, s
, t
, " rx window = %u\n", tunnel
[t
].window
);
2762 case 11: // Challenge
2764 LOG(4, s
, t
, " LAC requested CHAP authentication for tunnel\n");
2765 build_chap_response(b
, 2, n
, &chapresponse
);
2768 case 13: // Response
2770 if (tunnel
[t
].isremotelns
)
2772 chapresponse
= calloc(17, 1);
2773 memcpy(chapresponse
, b
, (n
< 17) ? n
: 16);
2774 LOG(3, s
, t
, "received challenge response from REMOTE LNS\n");
2778 // Why did they send a response? We never challenge.
2779 LOG(2, s
, t
, " received unexpected challenge response\n");
2782 case 14: // assigned session
2783 asession
= session
[s
].far
= ntohs(*(uint16_t *) (b
));
2784 LOG(4, s
, t
, " assigned session = %u\n", asession
);
2786 case 15: // call serial number
2787 LOG(4, s
, t
, " call serial number = %u\n", ntohl(*(uint32_t *)b
));
2789 case 18: // bearer type
2790 LOG(4, s
, t
, " bearer type = %u\n", ntohl(*(uint32_t *)b
));
2793 case 19: // framing type
2794 LOG(4, s
, t
, " framing type = %u\n", ntohl(*(uint32_t *)b
));
2797 case 21: // called number
2798 memset(called
, 0, sizeof(called
));
2799 memcpy(called
, b
, (n
< sizeof(called
)) ? n
: sizeof(called
) - 1);
2800 LOG(4, s
, t
, " Called <%s>\n", called
);
2802 case 22: // calling number
2803 memset(calling
, 0, sizeof(calling
));
2804 memcpy(calling
, b
, (n
< sizeof(calling
)) ? n
: sizeof(calling
) - 1);
2805 LOG(4, s
, t
, " Calling <%s>\n", calling
);
2809 case 24: // tx connect speed
2812 session
[s
].tx_connect_speed
= ntohl(*(uint32_t *)b
);
2816 // AS5300s send connect speed as a string
2818 memset(tmp
, 0, sizeof(tmp
));
2819 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2820 session
[s
].tx_connect_speed
= atol(tmp
);
2822 LOG(4, s
, t
, " TX connect speed <%u>\n", session
[s
].tx_connect_speed
);
2824 case 38: // rx connect speed
2827 session
[s
].rx_connect_speed
= ntohl(*(uint32_t *)b
);
2831 // AS5300s send connect speed as a string
2833 memset(tmp
, 0, sizeof(tmp
));
2834 memcpy(tmp
, b
, (n
< sizeof(tmp
)) ? n
: sizeof(tmp
) - 1);
2835 session
[s
].rx_connect_speed
= atol(tmp
);
2837 LOG(4, s
, t
, " RX connect speed <%u>\n", session
[s
].rx_connect_speed
);
2839 case 25: // Physical Channel ID
2841 uint32_t tmp
= ntohl(*(uint32_t *) b
);
2842 LOG(4, s
, t
, " Physical Channel ID <%X>\n", tmp
);
2845 case 29: // Proxy Authentication Type
2847 uint16_t atype
= ntohs(*(uint16_t *)b
);
2848 LOG(4, s
, t
, " Proxy Auth Type %u (%s)\n", atype
, ppp_auth_type(atype
));
2851 case 30: // Proxy Authentication Name
2854 memset(authname
, 0, sizeof(authname
));
2855 memcpy(authname
, b
, (n
< sizeof(authname
)) ? n
: sizeof(authname
) - 1);
2856 LOG(4, s
, t
, " Proxy Auth Name (%s)\n",
2860 case 31: // Proxy Authentication Challenge
2862 LOG(4, s
, t
, " Proxy Auth Challenge\n");
2865 case 32: // Proxy Authentication ID
2867 uint16_t authid
= ntohs(*(uint16_t *)(b
));
2868 LOG(4, s
, t
, " Proxy Auth ID (%u)\n", authid
);
2871 case 33: // Proxy Authentication Response
2872 LOG(4, s
, t
, " Proxy Auth Response\n");
2874 case 27: // last sent lcp
2875 { // find magic number
2876 uint8_t *p
= b
, *e
= p
+ n
;
2877 while (p
+ 1 < e
&& p
[1] && p
+ p
[1] <= e
)
2879 if (*p
== 5 && p
[1] == 6) // Magic-Number
2880 amagic
= ntohl(*(uint32_t *) (p
+ 2));
2881 else if (*p
== 7) // Protocol-Field-Compression
2882 aflags
|= SESSION_PFC
;
2883 else if (*p
== 8) // Address-and-Control-Field-Compression
2884 aflags
|= SESSION_ACFC
;
2889 case 28: // last recv lcp confreq
2891 case 26: // Initial Received LCP CONFREQ
2893 case 39: // seq required - we control it as an LNS anyway...
2895 case 36: // Random Vector
2896 LOG(4, s
, t
, " Random Vector received. Enabled AVP Hiding.\n");
2897 memset(session
[s
].random_vector
, 0, sizeof(session
[s
].random_vector
));
2898 if (n
> sizeof(session
[s
].random_vector
))
2899 n
= sizeof(session
[s
].random_vector
);
2900 memcpy(session
[s
].random_vector
, b
, n
);
2901 session
[s
].random_vector_length
= n
;
2903 case 46: // ppp disconnect cause
2906 uint16_t code
= ntohs(*(uint16_t *) b
);
2907 uint16_t proto
= ntohs(*(uint16_t *) (b
+ 2));
2908 uint8_t dir
= *(b
+ 4);
2910 LOG(4, s
, t
, " PPP disconnect cause "
2911 "(code=%u, proto=%04X, dir=%u, msg=\"%.*s\")\n",
2912 code
, proto
, dir
, n
- 5, b
+ 5);
2914 disc_cause_set
= mtype
;
2918 case 1: // admin disconnect
2919 disc_cause
= TERM_ADMIN_RESET
;
2920 disc_reason
= "Administrative disconnect";
2922 case 3: // lcp terminate
2923 if (dir
!= 2) break; // 1=peer (LNS), 2=local (LAC)
2924 disc_cause
= TERM_USER_REQUEST
;
2925 disc_reason
= "Normal disconnection";
2927 case 4: // compulsory encryption unavailable
2928 if (dir
!= 1) break; // 1=refused by peer, 2=local
2929 disc_cause
= TERM_USER_ERROR
;
2930 disc_reason
= "Compulsory encryption refused";
2932 case 5: // lcp: fsm timeout
2933 disc_cause
= TERM_PORT_ERROR
;
2934 disc_reason
= "LCP: FSM timeout";
2936 case 6: // lcp: no recognisable lcp packets received
2937 disc_cause
= TERM_PORT_ERROR
;
2938 disc_reason
= "LCP: no recognisable LCP packets";
2940 case 7: // lcp: magic-no error (possibly looped back)
2941 disc_cause
= TERM_PORT_ERROR
;
2942 disc_reason
= "LCP: magic-no error (possible loop)";
2944 case 8: // lcp: echo request timeout
2945 disc_cause
= TERM_PORT_ERROR
;
2946 disc_reason
= "LCP: echo request timeout";
2948 case 13: // auth: fsm timeout
2949 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2950 disc_reason
= "Authentication: FSM timeout";
2952 case 15: // auth: unacceptable auth protocol
2953 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2954 disc_reason
= "Unacceptable authentication protocol";
2956 case 16: // auth: authentication failed
2957 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2958 disc_reason
= "Authentication failed";
2960 case 17: // ncp: fsm timeout
2961 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2962 disc_reason
= "NCP: FSM timeout";
2964 case 18: // ncp: no ncps available
2965 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2966 disc_reason
= "NCP: no NCPs available";
2968 case 19: // ncp: failure to converge on acceptable address
2969 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2970 disc_reason
= (dir
== 1)
2971 ? "NCP: too many Configure-Naks received from peer"
2972 : "NCP: too many Configure-Naks sent to peer";
2974 case 20: // ncp: user not permitted to use any address
2975 disc_cause
= TERM_SERVICE_UNAVAILABLE
;
2976 disc_reason
= (dir
== 1)
2977 ? "NCP: local link address not acceptable to peer"
2978 : "NCP: remote link address not acceptable";
2985 static char e
[] = "unknown AVP 0xXXXX";
2986 LOG(2, s
, t
, " Unknown AVP type %u\n", mtype
);
2988 result
= 2; // general error
2989 error
= 8; // unknown mandatory AVP
2990 sprintf((msg
= e
) + 14, "%04x", mtype
);
2997 tunnelshutdown(t
, "Invalid mandatory AVP", result
, error
, msg
);
3001 case 1: // SCCRQ - Start Control Connection Request
3002 tunnel
[t
].state
= TUNNELOPENING
;
3003 LOG(3, s
, t
, "Received SCCRQ\n");
3004 if (main_quit
!= QUIT_SHUTDOWN
)
3006 LOG(3, s
, t
, "sending SCCRP\n");
3007 controlt
*c
= controlnew(2); // sending SCCRP
3008 control16(c
, 2, version
, 1); // protocol version
3009 control32(c
, 3, 3, 1); // framing
3010 controls(c
, 7, hostname
, 1); // host name
3011 if (chapresponse
) controlb(c
, 13, chapresponse
, 16, 1); // Challenge response
3012 control16(c
, 9, t
, 1); // assigned tunnel
3013 controladd(c
, 0, t
); // send the resply
3017 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3021 tunnel
[t
].state
= TUNNELOPEN
;
3022 tunnel
[t
].lastrec
= time_now
;
3024 LOG(3, s
, t
, "Received SCCRP\n");
3025 if (main_quit
!= QUIT_SHUTDOWN
)
3027 if (tunnel
[t
].isremotelns
&& chapresponse
)
3031 lac_calc_rlns_auth(t
, 2, hash
); // id = 2 (SCCRP)
3032 // check authenticator
3033 if (memcmp(hash
, chapresponse
, 16) == 0)
3035 LOG(3, s
, t
, "sending SCCCN to REMOTE LNS\n");
3036 controlt
*c
= controlnew(3); // sending SCCCN
3037 controls(c
, 7, hostname
, 1); // host name
3038 controls(c
, 8, Vendor_name
, 1); // Vendor name
3039 control16(c
, 2, version
, 1); // protocol version
3040 control32(c
, 3, 3, 1); // framing Capabilities
3041 control16(c
, 9, t
, 1); // assigned tunnel
3042 controladd(c
, 0, t
); // send
3046 tunnelshutdown(t
, "Bad chap response from REMOTE LNS", 4, 0, 0);
3052 tunnelshutdown(t
, "Shutting down", 6, 0, 0);
3057 LOG(3, s
, t
, "Received SCCN\n");
3058 tunnel
[t
].state
= TUNNELOPEN
;
3059 tunnel
[t
].lastrec
= time_now
;
3060 controlnull(t
); // ack
3063 LOG(3, s
, t
, "Received StopCCN\n");
3064 controlnull(t
); // ack
3065 tunnelshutdown(t
, "Stopped", 0, 0, 0); // Shut down cleanly
3068 LOG(3, s
, t
, "Received HELLO\n");
3069 controlnull(t
); // simply ACK
3073 LOG(3, s
, t
, "Received OCRQ\n");
3077 LOG(3, s
, t
, "Received OCRO\n");
3081 LOG(3, s
, t
, "Received OCCN\n");
3084 LOG(3, s
, t
, "Received ICRQ\n");
3085 if (sessionfree
&& main_quit
!= QUIT_SHUTDOWN
)
3087 controlt
*c
= controlnew(11); // ICRP
3089 LOG(3, s
, t
, "Sending ICRP\n");
3092 sessionfree
= session
[s
].next
;
3093 memset(&session
[s
], 0, sizeof(session
[s
]));
3095 if (s
> config
->cluster_highest_sessionid
)
3096 config
->cluster_highest_sessionid
= s
;
3098 session
[s
].opened
= time_now
;
3099 session
[s
].tunnel
= t
;
3100 session
[s
].far
= asession
;
3101 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3102 LOG(3, s
, t
, "New session (%u/%u)\n", tunnel
[t
].far
, session
[s
].far
);
3103 control16(c
, 14, s
, 1); // assigned session
3104 controladd(c
, asession
, t
); // send the reply
3106 strncpy(session
[s
].called
, called
, sizeof(session
[s
].called
) - 1);
3107 strncpy(session
[s
].calling
, calling
, sizeof(session
[s
].calling
) - 1);
3109 session
[s
].ppp
.phase
= Establish
;
3110 session
[s
].ppp
.lcp
= Starting
;
3112 STAT(session_created
);
3117 controlt
*c
= controlnew(14); // CDN
3118 LOG(3, s
, t
, "Sending CDN\n");
3121 STAT(session_overflow
);
3122 LOG(1, 0, t
, "No free sessions\n");
3123 control16(c
, 1, 4, 0); // temporary lack of resources
3126 control16(c
, 1, 2, 7); // shutting down, try another
3128 controladd(c
, asession
, t
); // send the message
3133 LOG(3, s
, t
, "Received ICRP\n");
3134 if (session
[s
].forwardtosession
)
3136 controlt
*c
= controlnew(12); // ICCN
3138 session
[s
].opened
= time_now
;
3139 session
[s
].tunnel
= t
;
3140 session
[s
].far
= asession
;
3141 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3143 control32(c
, 19, 1, 1); // Framing Type
3144 control32(c
, 24, 10000000, 1); // Tx Connect Speed
3145 controladd(c
, asession
, t
); // send the message
3146 LOG(3, s
, t
, "Sending ICCN\n");
3151 LOG(3, s
, t
, "Received ICCN\n");
3152 if (amagic
== 0) amagic
= time_now
;
3153 session
[s
].magic
= amagic
; // set magic number
3154 session
[s
].flags
= aflags
; // set flags received
3155 session
[s
].mru
= PPPoE_MRU
; // default
3156 controlnull(t
); // ack
3159 sess_local
[s
].lcp_authtype
= config
->radius_authprefer
;
3160 sess_local
[s
].ppp_mru
= MRU
;
3162 // Set multilink options before sending initial LCP packet
3163 sess_local
[s
].mp_mrru
= 1614;
3164 sess_local
[s
].mp_epdis
= ntohl(config
->iftun_address
? config
->iftun_address
: my_address
);
3167 change_state(s
, lcp
, RequestSent
);
3171 LOG(3, s
, t
, "Received CDN\n");
3172 controlnull(t
); // ack
3173 sessionshutdown(s
, disc_reason
, CDN_NONE
, disc_cause
);
3176 LOG(1, s
, t
, "Missing message type\n");
3179 STAT(tunnel_rx_errors
);
3181 tunnelshutdown(t
, "Unknown message type", 2, 6, "unknown message type");
3183 LOG(1, s
, t
, "Unknown message type %u\n", message
);
3186 if (chapresponse
) free(chapresponse
);
3187 cluster_send_tunnel(t
);
3191 LOG(4, s
, t
, " Got a ZLB ack\n");
3198 LOG_HEX(5, "Receive Tunnel Data", p
, l
);
3199 if (l
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
3200 { // HDLC address header, discard
3206 LOG(1, s
, t
, "Short ppp length %d\n", l
);
3207 STAT(tunnel_rx_errors
);
3217 proto
= ntohs(*(uint16_t *) p
);
3223 if (session
[s
].forwardtosession
)
3225 LOG(5, s
, t
, "Forwarding data session to session %u\n", session
[s
].forwardtosession
);
3226 // Forward to LAC or Remote LNS session
3227 lac_session_forward(buf
, len
, s
, proto
);
3232 if (s
&& !session
[s
].opened
) // Is something wrong??
3234 if (!config
->cluster_iam_master
)
3236 // Pass it off to the master to deal with..
3237 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3241 LOG(1, s
, t
, "UDP packet contains session which is not opened. Dropping packet.\n");
3242 STAT(tunnel_rx_errors
);
3246 if (proto
== PPPPAP
)
3248 session
[s
].last_packet
= time_now
;
3249 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3250 processpap(s
, t
, p
, l
);
3252 else if (proto
== PPPCHAP
)
3254 session
[s
].last_packet
= time_now
;
3255 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3256 processchap(s
, t
, p
, l
);
3258 else if (proto
== PPPLCP
)
3260 session
[s
].last_packet
= time_now
;
3261 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3262 processlcp(s
, t
, p
, l
);
3264 else if (proto
== PPPIPCP
)
3266 session
[s
].last_packet
= time_now
;
3267 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3268 processipcp(s
, t
, p
, l
);
3270 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
3272 session
[s
].last_packet
= time_now
;
3273 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3274 processipv6cp(s
, t
, p
, l
);
3276 else if (proto
== PPPCCP
)
3278 session
[s
].last_packet
= time_now
;
3279 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3280 processccp(s
, t
, p
, l
);
3282 else if (proto
== PPPIP
)
3286 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3287 return; // closing session, PPP not processed
3290 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3291 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3293 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3297 processipin(s
, t
, p
, l
);
3299 else if (proto
== PPPMP
)
3303 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3304 return; // closing session, PPP not processed
3307 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3308 if (!config
->cluster_iam_master
)
3310 // The fragments reconstruction is managed by the Master.
3311 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3315 processmpin(s
, t
, p
, l
);
3317 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
3321 LOG(4, s
, t
, "Session %u is closing. Don't process PPP packets\n", s
);
3322 return; // closing session, PPP not processed
3325 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
3326 if (session
[s
].walled_garden
&& !config
->cluster_iam_master
)
3328 master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
);
3332 processipv6in(s
, t
, p
, l
);
3334 else if (session
[s
].ppp
.lcp
== Opened
)
3336 session
[s
].last_packet
= time_now
;
3337 if (!config
->cluster_iam_master
) { master_forward_packet(buf
, len
, addr
->sin_addr
.s_addr
, addr
->sin_port
); return; }
3338 protoreject(s
, t
, p
, l
, proto
);
3342 LOG(2, s
, t
, "Unknown PPP protocol 0x%04X received in LCP %s state\n",
3343 proto
, ppp_state(session
[s
].ppp
.lcp
));
3348 // read and process packet on tun
3349 // (i.e. this routine writes to buf[-8]).
3350 static void processtun(uint8_t * buf
, int len
)
3352 LOG_HEX(5, "Receive TUN Data", buf
, len
);
3353 STAT(tun_rx_packets
);
3354 INC_STAT(tun_rx_bytes
, len
);
3362 LOG(1, 0, 0, "Short tun packet %d bytes\n", len
);
3363 STAT(tun_rx_errors
);
3367 if (*(uint16_t *) (buf
+ 2) == htons(PKTIP
)) // IPv4
3368 processipout(buf
, len
);
3369 else if (*(uint16_t *) (buf
+ 2) == htons(PKTIPV6
) // IPV6
3370 && config
->ipv6_prefix
.s6_addr
[0])
3371 processipv6out(buf
, len
);
3376 // Handle retries, timeouts. Runs every 1/10th sec, want to ensure
3377 // that we look at the whole of the tunnel, radius and session tables
3379 static void regular_cleanups(double period
)
3381 // Next tunnel, radius and session to check for actions on.
3382 static tunnelidt t
= 0;
3384 static sessionidt s
= 0;
3397 // divide up tables into slices based on the last run
3398 t_slice
= config
->cluster_highest_tunnelid
* period
;
3399 r_slice
= (MAXRADIUS
- 1) * period
;
3400 s_slice
= config
->cluster_highest_sessionid
* period
;
3404 else if (t_slice
> config
->cluster_highest_tunnelid
)
3405 t_slice
= config
->cluster_highest_tunnelid
;
3409 else if (r_slice
> (MAXRADIUS
- 1))
3410 r_slice
= MAXRADIUS
- 1;
3414 else if (s_slice
> config
->cluster_highest_sessionid
)
3415 s_slice
= config
->cluster_highest_sessionid
;
3417 LOG(4, 0, 0, "Begin regular cleanup (last %f seconds ago)\n", period
);
3419 for (i
= 0; i
< t_slice
; i
++)
3422 if (t
> config
->cluster_highest_tunnelid
)
3425 // check for expired tunnels
3426 if (tunnel
[t
].die
&& tunnel
[t
].die
<= TIME
)
3428 STAT(tunnel_timeout
);
3429 tunnelkill(t
, "Expired");
3433 // check for message resend
3434 if (tunnel
[t
].retry
&& tunnel
[t
].controlc
)
3436 // resend pending messages as timeout on reply
3437 if (tunnel
[t
].retry
<= TIME
)
3439 controlt
*c
= tunnel
[t
].controls
;
3440 uint16_t w
= tunnel
[t
].window
;
3441 tunnel
[t
].try++; // another try
3442 if (tunnel
[t
].try > 5)
3443 tunnelkill(t
, "Timeout on control message"); // game over
3447 tunnelsend(c
->buf
, c
->length
, t
);
3455 if (tunnel
[t
].state
== TUNNELOPEN
&& !tunnel
[t
].controlc
&& (time_now
- tunnel
[t
].lastrec
) > 60)
3457 controlt
*c
= controlnew(6); // sending HELLO
3458 controladd(c
, 0, t
); // send the message
3459 LOG(3, 0, t
, "Sending HELLO message\n");
3463 // Check for tunnel changes requested from the CLI
3464 if ((a
= cli_tunnel_actions
[t
].action
))
3466 cli_tunnel_actions
[t
].action
= 0;
3467 if (a
& CLI_TUN_KILL
)
3469 LOG(2, 0, t
, "Dropping tunnel by CLI\n");
3470 tunnelshutdown(t
, "Requested by administrator", 1, 0, 0);
3476 for (i
= 0; i
< r_slice
; i
++)
3482 if (!radius
[r
].state
)
3485 if (radius
[r
].retry
<= TIME
)
3492 for (i
= 0; i
< s_slice
; i
++)
3495 if (s
> config
->cluster_highest_sessionid
)
3498 if (!session
[s
].opened
) // Session isn't in use
3501 // check for expired sessions
3504 if (session
[s
].die
<= TIME
)
3506 sessionkill(s
, "Expired");
3513 if (sess_local
[s
].lcp
.restart
<= time_now
)
3515 int next_state
= session
[s
].ppp
.lcp
;
3516 switch (session
[s
].ppp
.lcp
)
3520 next_state
= RequestSent
;
3523 if (sess_local
[s
].lcp
.conf_sent
< config
->ppp_max_configure
)
3525 LOG(3, s
, session
[s
].tunnel
, "No ACK for LCP ConfigReq... resending\n");
3526 sendlcp(s
, session
[s
].tunnel
);
3527 change_state(s
, lcp
, next_state
);
3531 sessionshutdown(s
, "No response to LCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3532 STAT(session_timeout
);
3542 if (sess_local
[s
].ipcp
.restart
<= time_now
)
3544 int next_state
= session
[s
].ppp
.ipcp
;
3545 switch (session
[s
].ppp
.ipcp
)
3549 next_state
= RequestSent
;
3552 if (sess_local
[s
].ipcp
.conf_sent
< config
->ppp_max_configure
)
3554 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPCP ConfigReq... resending\n");
3555 sendipcp(s
, session
[s
].tunnel
);
3556 change_state(s
, ipcp
, next_state
);
3560 sessionshutdown(s
, "No response to IPCP ConfigReq.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3561 STAT(session_timeout
);
3571 if (sess_local
[s
].ipv6cp
.restart
<= time_now
)
3573 int next_state
= session
[s
].ppp
.ipv6cp
;
3574 switch (session
[s
].ppp
.ipv6cp
)
3578 next_state
= RequestSent
;
3581 if (sess_local
[s
].ipv6cp
.conf_sent
< config
->ppp_max_configure
)
3583 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq... resending\n");
3584 sendipv6cp(s
, session
[s
].tunnel
);
3585 change_state(s
, ipv6cp
, next_state
);
3589 LOG(3, s
, session
[s
].tunnel
, "No ACK for IPV6CP ConfigReq\n");
3590 change_state(s
, ipv6cp
, Stopped
);
3597 if (sess_local
[s
].ccp
.restart
<= time_now
)
3599 int next_state
= session
[s
].ppp
.ccp
;
3600 switch (session
[s
].ppp
.ccp
)
3604 next_state
= RequestSent
;
3607 if (sess_local
[s
].ccp
.conf_sent
< config
->ppp_max_configure
)
3609 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq... resending\n");
3610 sendccp(s
, session
[s
].tunnel
);
3611 change_state(s
, ccp
, next_state
);
3615 LOG(3, s
, session
[s
].tunnel
, "No ACK for CCP ConfigReq\n");
3616 change_state(s
, ccp
, Stopped
);
3623 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
3624 if (session
[s
].last_packet
&& (time_now
- session
[s
].last_packet
>= config
->idle_echo_timeout
))
3626 sessionshutdown(s
, "No response to LCP ECHO requests.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
3627 STAT(session_timeout
);
3632 // No data in ECHO_TIMEOUT seconds, send LCP ECHO
3633 if (session
[s
].ppp
.phase
>= Establish
&& (time_now
- session
[s
].last_packet
>= config
->echo_timeout
) &&
3634 (time_now
- sess_local
[s
].last_echo
>= ECHO_TIMEOUT
))
3636 uint8_t b
[MAXETHER
];
3638 uint8_t *q
= makeppp(b
, sizeof(b
), 0, 0, s
, session
[s
].tunnel
, PPPLCP
, 1, 0, 0);
3642 *(uint8_t *)(q
+ 1) = (time_now
% 255); // ID
3643 *(uint16_t *)(q
+ 2) = htons(8); // Length
3644 *(uint32_t *)(q
+ 4) = session
[s
].ppp
.lcp
== Opened
? htonl(session
[s
].magic
) : 0; // Magic Number
3646 LOG(4, s
, session
[s
].tunnel
, "No data in %d seconds, sending LCP ECHO\n",
3647 (int)(time_now
- session
[s
].last_packet
));
3648 tunnelsend(b
, 24, session
[s
].tunnel
); // send it
3649 sess_local
[s
].last_echo
= time_now
;
3653 // Drop sessions who have reached session_timeout seconds
3654 if (session
[s
].session_timeout
)
3656 bundleidt bid
= session
[s
].bundle
;
3659 if (time_now
- bundle
[bid
].last_check
>= 1)
3661 bundle
[bid
].online_time
+= (time_now
- bundle
[bid
].last_check
) * bundle
[bid
].num_of_links
;
3662 bundle
[bid
].last_check
= time_now
;
3663 if (bundle
[bid
].online_time
>= session
[s
].session_timeout
)
3666 for (ses
= bundle
[bid
].num_of_links
- 1; ses
>= 0; ses
--)
3668 sessionshutdown(bundle
[bid
].members
[ses
], "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3675 else if (time_now
- session
[s
].opened
>= session
[s
].session_timeout
)
3677 sessionshutdown(s
, "Session timeout", CDN_ADMIN_DISC
, TERM_SESSION_TIMEOUT
);
3683 // Drop sessions who have reached idle_timeout seconds
3684 if (session
[s
].last_data
&& session
[s
].idle_timeout
&& (time_now
- session
[s
].last_data
>= session
[s
].idle_timeout
))
3686 sessionshutdown(s
, "Idle Timeout Reached", CDN_ADMIN_DISC
, TERM_IDLE_TIMEOUT
);
3687 STAT(session_timeout
);
3692 // Check for actions requested from the CLI
3693 if ((a
= cli_session_actions
[s
].action
))
3697 cli_session_actions
[s
].action
= 0;
3698 if (a
& CLI_SESS_KILL
)
3700 LOG(2, s
, session
[s
].tunnel
, "Dropping session by CLI\n");
3701 sessionshutdown(s
, "Requested by administrator.", CDN_ADMIN_DISC
, TERM_ADMIN_RESET
);
3702 a
= 0; // dead, no need to check for other actions
3706 if (a
& CLI_SESS_NOSNOOP
)
3708 LOG(2, s
, session
[s
].tunnel
, "Unsnooping session by CLI\n");
3709 session
[s
].snoop_ip
= 0;
3710 session
[s
].snoop_port
= 0;
3714 else if (a
& CLI_SESS_SNOOP
)
3716 LOG(2, s
, session
[s
].tunnel
, "Snooping session by CLI (to %s:%u)\n",
3717 fmtaddr(cli_session_actions
[s
].snoop_ip
, 0),
3718 cli_session_actions
[s
].snoop_port
);
3720 session
[s
].snoop_ip
= cli_session_actions
[s
].snoop_ip
;
3721 session
[s
].snoop_port
= cli_session_actions
[s
].snoop_port
;
3726 if (a
& CLI_SESS_NOTHROTTLE
)
3728 LOG(2, s
, session
[s
].tunnel
, "Un-throttling session by CLI\n");
3729 throttle_session(s
, 0, 0);
3733 else if (a
& CLI_SESS_THROTTLE
)
3735 LOG(2, s
, session
[s
].tunnel
, "Throttling session by CLI (to %dkb/s up and %dkb/s down)\n",
3736 cli_session_actions
[s
].throttle_in
,
3737 cli_session_actions
[s
].throttle_out
);
3739 throttle_session(s
, cli_session_actions
[s
].throttle_in
, cli_session_actions
[s
].throttle_out
);
3744 if (a
& CLI_SESS_NOFILTER
)
3746 LOG(2, s
, session
[s
].tunnel
, "Un-filtering session by CLI\n");
3747 filter_session(s
, 0, 0);
3751 else if (a
& CLI_SESS_FILTER
)
3753 LOG(2, s
, session
[s
].tunnel
, "Filtering session by CLI (in=%d, out=%d)\n",
3754 cli_session_actions
[s
].filter_in
,
3755 cli_session_actions
[s
].filter_out
);
3757 filter_session(s
, cli_session_actions
[s
].filter_in
, cli_session_actions
[s
].filter_out
);
3763 cluster_send_session(s
);
3766 // RADIUS interim accounting
3767 if (config
->radius_accounting
&& config
->radius_interim
> 0
3768 && session
[s
].ip
&& !session
[s
].walled_garden
3769 && !sess_local
[s
].radius
// RADIUS already in progress
3770 && time_now
- sess_local
[s
].last_interim
>= config
->radius_interim
3771 && session
[s
].flags
& SESSION_STARTED
)
3773 int rad
= radiusnew(s
);
3776 LOG(1, s
, session
[s
].tunnel
, "No free RADIUS sessions for Interim message\n");
3777 STAT(radius_overflow
);
3781 LOG(3, s
, session
[s
].tunnel
, "Sending RADIUS Interim for %s (%u)\n",
3782 session
[s
].user
, session
[s
].unique_id
);
3784 radiussend(rad
, RADIUSINTERIM
);
3785 sess_local
[s
].last_interim
= time_now
;
3790 LOG(4, 0, 0, "End regular cleanup: checked %d/%d/%d tunnels/radius/sessions; %d/%d/%d actions\n",
3791 t_slice
, r_slice
, s_slice
, t_actions
, r_actions
, s_actions
);
3795 // Are we in the middle of a tunnel update, or radius
3798 static int still_busy(void)
3801 static clockt last_talked
= 0;
3802 static clockt start_busy_wait
= 0;
3805 static time_t stopped_bgp
= 0;
3810 LOG(1, 0, 0, "Shutting down in %d seconds, stopping BGP...\n", QUIT_DELAY
);
3812 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3813 if (bgp_peers
[i
].state
== Established
)
3814 bgp_stop(&bgp_peers
[i
]);
3816 stopped_bgp
= time_now
;
3818 if (!config
->cluster_iam_master
)
3820 // we don't want to become master
3821 cluster_send_ping(0);
3827 if (!config
->cluster_iam_master
&& time_now
< (stopped_bgp
+ QUIT_DELAY
))
3832 if (!config
->cluster_iam_master
)
3835 if (main_quit
== QUIT_SHUTDOWN
)
3837 static int dropped
= 0;
3842 LOG(1, 0, 0, "Dropping sessions and tunnels\n");
3843 for (i
= 1; i
< MAXTUNNEL
; i
++)
3844 if (tunnel
[i
].ip
|| tunnel
[i
].state
)
3845 tunnelshutdown(i
, "L2TPNS Closing", 6, 0, 0);
3851 if (start_busy_wait
== 0)
3852 start_busy_wait
= TIME
;
3854 for (i
= config
->cluster_highest_tunnelid
; i
> 0 ; --i
)
3856 if (!tunnel
[i
].controlc
)
3859 if (last_talked
!= TIME
)
3861 LOG(2, 0, 0, "Tunnel %u still has un-acked control messages.\n", i
);
3867 // We stop waiting for radius after BUSY_WAIT_TIME 1/10th seconds
3868 if (abs(TIME
- start_busy_wait
) > BUSY_WAIT_TIME
)
3870 LOG(1, 0, 0, "Giving up waiting for RADIUS to be empty. Shutting down anyway.\n");
3874 for (i
= 1; i
< MAXRADIUS
; i
++)
3876 if (radius
[i
].state
== RADIUSNULL
)
3878 if (radius
[i
].state
== RADIUSWAIT
)
3881 if (last_talked
!= TIME
)
3883 LOG(2, 0, 0, "Radius session %u is still busy (sid %u)\n", i
, radius
[i
].session
);
3893 # include <sys/epoll.h>
3895 # define FAKE_EPOLL_IMPLEMENTATION /* include the functions */
3896 # include "fake_epoll.h"
3900 // the base set of fds polled: cli, cluster, tun, udp, control, dae, netlink, udplac
3903 // the base set of fds polled: cli, cluster, tun, udp, control, dae, netlink
3907 // additional polled fds
3909 # define EXTRA_FDS BGP_NUM_PEERS
3911 # define EXTRA_FDS 0
3914 // main loop - gets packets on tun or udp and processes them
3915 static void mainloop(void)
3919 uint8_t *p
= buf
+ 8; // for the hearder of the forwarded MPPP packet (see C_MPPP_FORWARD)
3920 int size_bufp
= sizeof(buf
) - 8;
3921 clockt next_cluster_ping
= 0; // send initial ping immediately
3922 struct epoll_event events
[BASE_FDS
+ RADIUS_FDS
+ EXTRA_FDS
];
3923 int maxevent
= sizeof(events
)/sizeof(*events
);
3925 if ((epollfd
= epoll_create(maxevent
)) < 0)
3927 LOG(0, 0, 0, "epoll_create failed: %s\n", strerror(errno
));
3932 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d, nlfd=%d , udplacfd=%d\n",
3933 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
, nlfd
, udplacfd
);
3935 LOG(4, 0, 0, "Beginning of main loop. clifd=%d, cluster_sockfd=%d, tunfd=%d, udpfd=%d, controlfd=%d, daefd=%d, nlfd=%d\n",
3936 clifd
, cluster_sockfd
, tunfd
, udpfd
, controlfd
, daefd
, nlfd
);
3939 /* setup our fds to poll for input */
3941 static struct event_data d
[BASE_FDS
];
3942 struct epoll_event e
;
3949 d
[i
].type
= FD_TYPE_CLI
;
3950 e
.data
.ptr
= &d
[i
++];
3951 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, clifd
, &e
);
3954 d
[i
].type
= FD_TYPE_CLUSTER
;
3955 e
.data
.ptr
= &d
[i
++];
3956 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, cluster_sockfd
, &e
);
3958 d
[i
].type
= FD_TYPE_TUN
;
3959 e
.data
.ptr
= &d
[i
++];
3960 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, tunfd
, &e
);
3962 d
[i
].type
= FD_TYPE_UDP
;
3963 e
.data
.ptr
= &d
[i
++];
3964 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udpfd
, &e
);
3966 d
[i
].type
= FD_TYPE_CONTROL
;
3967 e
.data
.ptr
= &d
[i
++];
3968 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, controlfd
, &e
);
3970 d
[i
].type
= FD_TYPE_DAE
;
3971 e
.data
.ptr
= &d
[i
++];
3972 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, daefd
, &e
);
3974 d
[i
].type
= FD_TYPE_NETLINK
;
3975 e
.data
.ptr
= &d
[i
++];
3976 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, nlfd
, &e
);
3979 d
[i
].type
= FD_TYPE_UDPLAC
;
3980 e
.data
.ptr
= &d
[i
++];
3981 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, udplacfd
, &e
);
3986 signal(SIGPIPE
, SIG_IGN
);
3987 bgp_setup(config
->as_number
);
3988 if (config
->bind_address
)
3989 bgp_add_route(config
->bind_address
, 0xffffffff);
3991 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
3993 if (config
->neighbour
[i
].name
[0])
3994 bgp_start(&bgp_peers
[i
], config
->neighbour
[i
].name
,
3995 config
->neighbour
[i
].as
, config
->neighbour
[i
].keepalive
,
3996 config
->neighbour
[i
].hold
, config
->neighbour
[i
].update_source
,
3997 0); /* 0 = routing disabled */
4001 while (!main_quit
|| still_busy())
4011 config
->reload_config
++;
4014 if (config
->reload_config
)
4016 config
->reload_config
= 0;
4024 n
= epoll_wait(epollfd
, events
, maxevent
, 100); // timeout 100ms (1/10th sec)
4025 STAT(select_called
);
4030 if (errno
== EINTR
||
4031 errno
== ECHILD
) // EINTR was clobbered by sigchild_handler()
4034 LOG(0, 0, 0, "Error returned from select(): %s\n", strerror(errno
));
4040 struct sockaddr_in addr
;
4041 struct in_addr local
;
4046 int udplac_ready
= 0;
4047 int udplac_pkts
= 0;
4050 int cluster_ready
= 0;
4053 int cluster_pkts
= 0;
4055 uint32_t bgp_events
[BGP_NUM_PEERS
];
4056 memset(bgp_events
, 0, sizeof(bgp_events
));
4059 for (c
= n
, i
= 0; i
< c
; i
++)
4061 struct event_data
*d
= events
[i
].data
.ptr
;
4065 case FD_TYPE_CLI
: // CLI connections
4069 alen
= sizeof(addr
);
4070 if ((cli
= accept(clifd
, (struct sockaddr
*)&addr
, &alen
)) >= 0)
4076 LOG(0, 0, 0, "accept error: %s\n", strerror(errno
));
4082 // these are handled below, with multiple interleaved reads
4083 case FD_TYPE_CLUSTER
: cluster_ready
++; break;
4084 case FD_TYPE_TUN
: tun_ready
++; break;
4085 case FD_TYPE_UDP
: udp_ready
++; break;
4087 case FD_TYPE_UDPLAC
: udplac_ready
++; break;
4089 case FD_TYPE_CONTROL
: // nsctl commands
4090 alen
= sizeof(addr
);
4091 s
= recvfromto(controlfd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4092 if (s
> 0) processcontrol(buf
, s
, &addr
, alen
, &local
);
4096 case FD_TYPE_DAE
: // DAE requests
4097 alen
= sizeof(addr
);
4098 s
= recvfromto(daefd
, buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
, &local
);
4099 if (s
> 0) processdae(buf
, s
, &addr
, alen
, &local
);
4103 case FD_TYPE_RADIUS
: // RADIUS response
4104 alen
= sizeof(addr
);
4105 s
= recvfrom(radfds
[d
->index
], buf
, sizeof(buf
), MSG_WAITALL
, (struct sockaddr
*) &addr
, &alen
);
4106 if (s
>= 0 && config
->cluster_iam_master
)
4108 if (addr
.sin_addr
.s_addr
== config
->radiusserver
[0] ||
4109 addr
.sin_addr
.s_addr
== config
->radiusserver
[1])
4110 processrad(buf
, s
, d
->index
);
4112 LOG(3, 0, 0, "Dropping RADIUS packet from unknown source %s\n",
4113 fmtaddr(addr
.sin_addr
.s_addr
, 0));
4121 bgp_events
[d
->index
] = events
[i
].events
;
4126 case FD_TYPE_NETLINK
:
4128 struct nlmsghdr
*nh
= (struct nlmsghdr
*)buf
;
4129 s
= netlink_recv(buf
, sizeof(buf
));
4130 if (nh
->nlmsg_type
== NLMSG_ERROR
)
4132 struct nlmsgerr
*errmsg
= NLMSG_DATA(nh
);
4135 if (errmsg
->msg
.nlmsg_seq
< min_initok_nlseqnum
)
4137 LOG(0, 0, 0, "Got a fatal netlink error (while %s): %s\n", tun_nl_phase_msg
[nh
->nlmsg_seq
], strerror(-errmsg
->error
));
4142 LOG(0, 0, 0, "Got a netlink error: %s\n", strerror(-errmsg
->error
));
4147 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
);
4153 LOG(0, 0, 0, "Unexpected fd type returned from epoll_wait: %d\n", d
->type
);
4158 bgp_process(bgp_events
);
4161 for (c
= 0; n
&& c
< config
->multi_read_count
; c
++)
4166 alen
= sizeof(addr
);
4167 if ((s
= recvfrom(udpfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
4169 processudp(buf
, s
, &addr
);
4182 alen
= sizeof(addr
);
4183 if ((s
= recvfrom(udplacfd
, buf
, sizeof(buf
), 0, (void *) &addr
, &alen
)) > 0)
4185 if (!config
->disable_lac_func
)
4186 processudp(buf
, s
, &addr
);
4200 if ((s
= read(tunfd
, p
, size_bufp
)) > 0)
4215 alen
= sizeof(addr
);
4216 if ((s
= recvfrom(cluster_sockfd
, buf
, sizeof(buf
), MSG_WAITALL
, (void *) &addr
, &alen
)) > 0)
4218 processcluster(buf
, s
, addr
.sin_addr
.s_addr
);
4229 if (udp_pkts
> 1 || tun_pkts
> 1 || cluster_pkts
> 1)
4230 STAT(multi_read_used
);
4232 if (c
>= config
->multi_read_count
)
4235 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun %d cluster and %d rmlns packets\n",
4236 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
, udplac_pkts
);
4238 LOG(3, 0, 0, "Reached multi_read_count (%d); processed %d udp, %d tun and %d cluster packets\n",
4239 config
->multi_read_count
, udp_pkts
, tun_pkts
, cluster_pkts
);
4241 STAT(multi_read_exceeded
);
4247 /* no event received, but timers could still have expired */
4248 bgp_process_peers_timers();
4253 double Mbps
= 1024.0 * 1024.0 / 8 * time_changed
;
4255 // Log current traffic stats
4256 snprintf(config
->bandwidth
, sizeof(config
->bandwidth
),
4257 "UDP-ETH:%1.0f/%1.0f ETH-UDP:%1.0f/%1.0f TOTAL:%0.1f IN:%u OUT:%u",
4258 (udp_rx
/ Mbps
), (eth_tx
/ Mbps
), (eth_rx
/ Mbps
), (udp_tx
/ Mbps
),
4259 ((udp_tx
+ udp_rx
+ eth_tx
+ eth_rx
) / Mbps
),
4260 udp_rx_pkt
/ time_changed
, eth_rx_pkt
/ time_changed
);
4262 udp_tx
= udp_rx
= 0;
4263 udp_rx_pkt
= eth_rx_pkt
= 0;
4264 eth_tx
= eth_rx
= 0;
4267 if (config
->dump_speed
)
4268 printf("%s\n", config
->bandwidth
);
4270 // Update the internal time counter
4271 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4275 struct param_timer p
= { time_now
};
4276 run_plugins(PLUGIN_TIMER
, &p
);
4280 // Runs on every machine (master and slaves).
4281 if (next_cluster_ping
<= TIME
)
4283 // Check to see which of the cluster is still alive..
4285 cluster_send_ping(basetime
); // Only does anything if we're a slave
4286 cluster_check_master(); // ditto.
4288 cluster_heartbeat(); // Only does anything if we're a master.
4289 cluster_check_slaves(); // ditto.
4291 master_update_counts(); // If we're a slave, send our byte counters to our master.
4293 if (config
->cluster_iam_master
&& !config
->cluster_iam_uptodate
)
4294 next_cluster_ping
= TIME
+ 1; // out-of-date slaves, do fast updates
4296 next_cluster_ping
= TIME
+ config
->cluster_hb_interval
;
4299 if (!config
->cluster_iam_master
)
4302 // Run token bucket filtering queue..
4303 // Only run it every 1/10th of a second.
4305 static clockt last_run
= 0;
4306 if (last_run
!= TIME
)
4313 // Handle timeouts, retries etc.
4315 static double last_clean
= 0;
4319 TIME
= now(&this_clean
);
4320 diff
= this_clean
- last_clean
;
4322 // Run during idle time (after we've handled
4323 // all incoming packets) or every 1/10th sec
4324 if (!more
|| diff
> 0.1)
4326 regular_cleanups(diff
);
4327 last_clean
= this_clean
;
4331 if (*config
->accounting_dir
)
4333 static clockt next_acct
= 0;
4334 static clockt next_shut_acct
= 0;
4336 if (next_acct
<= TIME
)
4338 // Dump accounting data
4339 next_acct
= TIME
+ ACCT_TIME
;
4340 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4343 else if (next_shut_acct
<= TIME
)
4345 // Dump accounting data for shutdown sessions
4346 next_shut_acct
= TIME
+ ACCT_SHUT_TIME
;
4353 // Are we the master and shutting down??
4354 if (config
->cluster_iam_master
)
4355 cluster_heartbeat(); // Flush any queued changes..
4357 // Ok. Notify everyone we're shutting down. If we're
4358 // the master, this will force an election.
4359 cluster_send_ping(0);
4362 // Important!!! We MUST not process any packets past this point!
4363 LOG(1, 0, 0, "Shutdown complete\n");
4366 static void stripdomain(char *host
)
4370 if ((p
= strchr(host
, '.')))
4376 FILE *resolv
= fopen("/etc/resolv.conf", "r");
4382 while (fgets(buf
, sizeof(buf
), resolv
))
4384 if (strncmp(buf
, "domain", 6) && strncmp(buf
, "search", 6))
4387 if (!isspace(buf
[6]))
4391 while (isspace(*b
)) b
++;
4396 while (*b
&& !isspace(*b
)) b
++;
4398 if (buf
[0] == 'd') // domain is canonical
4404 // first search line
4407 // hold, may be subsequent domain line
4408 strncpy(_domain
, d
, sizeof(_domain
))[sizeof(_domain
)-1] = 0;
4419 int hl
= strlen(host
);
4420 int dl
= strlen(domain
);
4421 if (dl
< hl
&& host
[hl
- dl
- 1] == '.' && !strcmp(host
+ hl
- dl
, domain
))
4422 host
[hl
-dl
- 1] = 0;
4426 *p
= 0; // everything after first dot
4431 // Init data structures
4432 static void initdata(int optdebug
, char *optconfig
)
4436 if (!(config
= shared_malloc(sizeof(configt
))))
4438 fprintf(stderr
, "Error doing malloc for configuration: %s\n", strerror(errno
));
4442 memset(config
, 0, sizeof(configt
));
4443 time(&config
->start_time
);
4444 strncpy(config
->config_file
, optconfig
, strlen(optconfig
));
4445 config
->debug
= optdebug
;
4446 config
->num_tbfs
= MAXTBFS
;
4447 config
->rl_rate
= 28; // 28kbps
4448 config
->cluster_mcast_ttl
= 1;
4449 config
->cluster_master_min_adv
= 1;
4450 config
->ppp_restart_time
= 3;
4451 config
->ppp_max_configure
= 10;
4452 config
->ppp_max_failure
= 5;
4453 config
->kill_timedout_sessions
= 1;
4454 strcpy(config
->random_device
, RANDOMDEVICE
);
4455 // Set default value echo_timeout and idle_echo_timeout
4456 config
->echo_timeout
= ECHO_TIMEOUT
;
4457 config
->idle_echo_timeout
= IDLE_ECHO_TIMEOUT
;
4459 log_stream
= stderr
;
4462 if (!(ringbuffer
= shared_malloc(sizeof(struct Tringbuffer
))))
4464 LOG(0, 0, 0, "Error doing malloc for ringbuffer: %s\n", strerror(errno
));
4467 memset(ringbuffer
, 0, sizeof(struct Tringbuffer
));
4470 if (!(_statistics
= shared_malloc(sizeof(struct Tstats
))))
4472 LOG(0, 0, 0, "Error doing malloc for _statistics: %s\n", strerror(errno
));
4475 if (!(tunnel
= shared_malloc(sizeof(tunnelt
) * MAXTUNNEL
)))
4477 LOG(0, 0, 0, "Error doing malloc for tunnels: %s\n", strerror(errno
));
4480 if (!(bundle
= shared_malloc(sizeof(bundlet
) * MAXBUNDLE
)))
4482 LOG(0, 0, 0, "Error doing malloc for bundles: %s\n", strerror(errno
));
4485 if (!(frag
= shared_malloc(sizeof(fragmentationt
) * MAXBUNDLE
)))
4487 LOG(0, 0, 0, "Error doing malloc for fragmentations: %s\n", strerror(errno
));
4490 if (!(session
= shared_malloc(sizeof(sessiont
) * MAXSESSION
)))
4492 LOG(0, 0, 0, "Error doing malloc for sessions: %s\n", strerror(errno
));
4496 if (!(sess_local
= shared_malloc(sizeof(sessionlocalt
) * MAXSESSION
)))
4498 LOG(0, 0, 0, "Error doing malloc for sess_local: %s\n", strerror(errno
));
4502 if (!(radius
= shared_malloc(sizeof(radiust
) * MAXRADIUS
)))
4504 LOG(0, 0, 0, "Error doing malloc for radius: %s\n", strerror(errno
));
4508 if (!(ip_address_pool
= shared_malloc(sizeof(ippoolt
) * MAXIPPOOL
)))
4510 LOG(0, 0, 0, "Error doing malloc for ip_address_pool: %s\n", strerror(errno
));
4514 if (!(ip_filters
= shared_malloc(sizeof(ip_filtert
) * MAXFILTER
)))
4516 LOG(0, 0, 0, "Error doing malloc for ip_filters: %s\n", strerror(errno
));
4519 memset(ip_filters
, 0, sizeof(ip_filtert
) * MAXFILTER
);
4521 if (!(cli_session_actions
= shared_malloc(sizeof(struct cli_session_actions
) * MAXSESSION
)))
4523 LOG(0, 0, 0, "Error doing malloc for cli session actions: %s\n", strerror(errno
));
4526 memset(cli_session_actions
, 0, sizeof(struct cli_session_actions
) * MAXSESSION
);
4528 if (!(cli_tunnel_actions
= shared_malloc(sizeof(struct cli_tunnel_actions
) * MAXSESSION
)))
4530 LOG(0, 0, 0, "Error doing malloc for cli tunnel actions: %s\n", strerror(errno
));
4533 memset(cli_tunnel_actions
, 0, sizeof(struct cli_tunnel_actions
) * MAXSESSION
);
4535 memset(tunnel
, 0, sizeof(tunnelt
) * MAXTUNNEL
);
4536 memset(bundle
, 0, sizeof(bundlet
) * MAXBUNDLE
);
4537 memset(session
, 0, sizeof(sessiont
) * MAXSESSION
);
4538 memset(radius
, 0, sizeof(radiust
) * MAXRADIUS
);
4539 memset(ip_address_pool
, 0, sizeof(ippoolt
) * MAXIPPOOL
);
4541 // Put all the sessions on the free list marked as undefined.
4542 for (i
= 1; i
< MAXSESSION
; i
++)
4544 session
[i
].next
= i
+ 1;
4545 session
[i
].tunnel
= T_UNDEF
; // mark it as not filled in.
4547 session
[MAXSESSION
- 1].next
= 0;
4550 // Mark all the tunnels as undefined (waiting to be filled in by a download).
4551 for (i
= 1; i
< MAXTUNNEL
; i
++)
4552 tunnel
[i
].state
= TUNNELUNDEF
; // mark it as not filled in.
4554 for (i
= 1; i
< MAXBUNDLE
; i
++) {
4555 bundle
[i
].state
= BUNDLEUNDEF
;
4560 // Grab my hostname unless it's been specified
4561 gethostname(hostname
, sizeof(hostname
));
4562 stripdomain(hostname
);
4565 _statistics
->start_time
= _statistics
->last_reset
= time(NULL
);
4568 if (!(bgp_peers
= shared_malloc(sizeof(struct bgp_peer
) * BGP_NUM_PEERS
)))
4570 LOG(0, 0, 0, "Error doing malloc for bgp: %s\n", strerror(errno
));
4576 lac_initremotelnsdata();
4580 static int assign_ip_address(sessionidt s
)
4584 time_t best_time
= time_now
;
4585 char *u
= session
[s
].user
;
4589 CSTAT(assign_ip_address
);
4591 for (i
= 1; i
< ip_pool_size
; i
++)
4593 if (!ip_address_pool
[i
].address
|| ip_address_pool
[i
].assigned
)
4596 if (!session
[s
].walled_garden
&& ip_address_pool
[i
].user
[0] && !strcmp(u
, ip_address_pool
[i
].user
))
4603 if (ip_address_pool
[i
].last
< best_time
)
4606 if (!(best_time
= ip_address_pool
[i
].last
))
4607 break; // never used, grab this one
4613 LOG(0, s
, session
[s
].tunnel
, "assign_ip_address(): out of addresses\n");
4617 session
[s
].ip
= ip_address_pool
[best
].address
;
4618 session
[s
].ip_pool_index
= best
;
4619 ip_address_pool
[best
].assigned
= 1;
4620 ip_address_pool
[best
].last
= time_now
;
4621 ip_address_pool
[best
].session
= s
;
4622 if (session
[s
].walled_garden
)
4623 /* Don't track addresses of users in walled garden (note: this
4624 means that their address isn't "sticky" even if they get
4626 ip_address_pool
[best
].user
[0] = 0;
4628 strncpy(ip_address_pool
[best
].user
, u
, sizeof(ip_address_pool
[best
].user
) - 1);
4631 LOG(4, s
, session
[s
].tunnel
, "assign_ip_address(): %s ip address %d from pool\n",
4632 reuse
? "Reusing" : "Allocating", best
);
4637 static void free_ip_address(sessionidt s
)
4639 int i
= session
[s
].ip_pool_index
;
4642 CSTAT(free_ip_address
);
4645 return; // what the?
4647 if (i
< 0) // Is this actually part of the ip pool?
4651 cache_ipmap(session
[s
].ip
, -i
); // Change the mapping to point back to the ip pool index.
4653 ip_address_pool
[i
].assigned
= 0;
4654 ip_address_pool
[i
].session
= 0;
4655 ip_address_pool
[i
].last
= time_now
;
4659 // Fsck the address pool against the session table.
4660 // Normally only called when we become a master.
4662 // This isn't perfect: We aren't keep tracking of which
4663 // users used to have an IP address.
4665 void rebuild_address_pool(void)
4670 // Zero the IP pool allocation, and build
4671 // a map from IP address to pool index.
4672 for (i
= 1; i
< MAXIPPOOL
; ++i
)
4674 ip_address_pool
[i
].assigned
= 0;
4675 ip_address_pool
[i
].session
= 0;
4676 if (!ip_address_pool
[i
].address
)
4679 cache_ipmap(ip_address_pool
[i
].address
, -i
); // Map pool IP to pool index.
4682 for (i
= 0; i
< MAXSESSION
; ++i
)
4685 if (!(session
[i
].opened
&& session
[i
].ip
))
4688 ipid
= - lookup_ipmap(htonl(session
[i
].ip
));
4690 if (session
[i
].ip_pool_index
< 0)
4692 // Not allocated out of the pool.
4693 if (ipid
< 1) // Not found in the pool either? good.
4696 LOG(0, i
, 0, "Session %u has an IP address (%s) that was marked static, but is in the pool (%d)!\n",
4697 i
, fmtaddr(session
[i
].ip
, 0), ipid
);
4699 // Fall through and process it as part of the pool.
4703 if (ipid
> MAXIPPOOL
|| ipid
< 0)
4705 LOG(0, i
, 0, "Session %u has a pool IP that's not found in the pool! (%d)\n", i
, ipid
);
4707 session
[i
].ip_pool_index
= ipid
;
4711 ip_address_pool
[ipid
].assigned
= 1;
4712 ip_address_pool
[ipid
].session
= i
;
4713 ip_address_pool
[ipid
].last
= time_now
;
4714 strncpy(ip_address_pool
[ipid
].user
, session
[i
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4715 session
[i
].ip_pool_index
= ipid
;
4716 cache_ipmap(session
[i
].ip
, i
); // Fix the ip map.
4721 // Fix the address pool to match a changed session.
4722 // (usually when the master sends us an update).
4723 static void fix_address_pool(int sid
)
4727 ipid
= session
[sid
].ip_pool_index
;
4729 if (ipid
> ip_pool_size
)
4730 return; // Ignore it. rebuild_address_pool will fix it up.
4732 if (ip_address_pool
[ipid
].address
!= session
[sid
].ip
)
4733 return; // Just ignore it. rebuild_address_pool will take care of it.
4735 ip_address_pool
[ipid
].assigned
= 1;
4736 ip_address_pool
[ipid
].session
= sid
;
4737 ip_address_pool
[ipid
].last
= time_now
;
4738 strncpy(ip_address_pool
[ipid
].user
, session
[sid
].user
, sizeof(ip_address_pool
[ipid
].user
) - 1);
4742 // Add a block of addresses to the IP pool to hand out.
4744 static void add_to_ip_pool(in_addr_t addr
, int prefixlen
)
4748 prefixlen
= 32; // Host route only.
4750 addr
&= 0xffffffff << (32 - prefixlen
);
4752 if (ip_pool_size
>= MAXIPPOOL
) // Pool is full!
4755 for (i
= addr
; i
< addr
+(1<<(32-prefixlen
)); ++i
)
4757 if ((i
& 0xff) == 0 || (i
&0xff) == 255)
4758 continue; // Skip 0 and broadcast addresses.
4760 ip_address_pool
[ip_pool_size
].address
= i
;
4761 ip_address_pool
[ip_pool_size
].assigned
= 0;
4763 if (ip_pool_size
>= MAXIPPOOL
)
4765 LOG(0, 0, 0, "Overflowed IP pool adding %s\n", fmtaddr(htonl(addr
), 0));
4771 // Initialize the IP address pool
4772 static void initippool()
4777 memset(ip_address_pool
, 0, sizeof(ip_address_pool
));
4779 if (!(f
= fopen(IPPOOLFILE
, "r")))
4781 LOG(0, 0, 0, "Can't load pool file " IPPOOLFILE
": %s\n", strerror(errno
));
4785 while (ip_pool_size
< MAXIPPOOL
&& fgets(buf
, 4096, f
))
4788 buf
[4095] = 0; // Force it to be zero terminated/
4790 if (*buf
== '#' || *buf
== '\n')
4791 continue; // Skip comments / blank lines
4792 if ((p
= (char *)strrchr(buf
, '\n'))) *p
= 0;
4793 if ((p
= (char *)strchr(buf
, ':')))
4797 src
= inet_addr(buf
);
4798 if (src
== INADDR_NONE
)
4800 LOG(0, 0, 0, "Invalid address pool IP %s\n", buf
);
4803 // This entry is for a specific IP only
4804 if (src
!= config
->bind_address
)
4809 if ((p
= (char *)strchr(pool
, '/')))
4813 in_addr_t start
= 0;
4815 LOG(2, 0, 0, "Adding IP address range %s\n", buf
);
4817 if (!*p
|| !(numbits
= atoi(p
)))
4819 LOG(0, 0, 0, "Invalid pool range %s\n", buf
);
4822 start
= ntohl(inet_addr(pool
));
4824 // Add a static route for this pool
4825 LOG(5, 0, 0, "Adding route for address pool %s/%d\n",
4826 fmtaddr(htonl(start
), 0), numbits
);
4828 routeset(0, start
, numbits
, 0, 1);
4830 add_to_ip_pool(start
, numbits
);
4834 // It's a single ip address
4835 add_to_ip_pool(ntohl(inet_addr(pool
)), 0);
4839 LOG(1, 0, 0, "IP address pool is %d addresses\n", ip_pool_size
- 1);
4842 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
)
4844 struct sockaddr_in snoop_addr
= {0};
4845 if (!destination
|| !port
|| snoopfd
<= 0 || size
<= 0 || !packet
)
4848 snoop_addr
.sin_family
= AF_INET
;
4849 snoop_addr
.sin_addr
.s_addr
= destination
;
4850 snoop_addr
.sin_port
= ntohs(port
);
4852 LOG(5, 0, 0, "Snooping %d byte packet to %s:%u\n", size
,
4853 fmtaddr(snoop_addr
.sin_addr
.s_addr
, 0),
4854 htons(snoop_addr
.sin_port
));
4856 if (sendto(snoopfd
, packet
, size
, MSG_DONTWAIT
| MSG_NOSIGNAL
, (void *) &snoop_addr
, sizeof(snoop_addr
)) < 0)
4857 LOG(0, 0, 0, "Error sending intercept packet: %s\n", strerror(errno
));
4859 STAT(packets_snooped
);
4862 static int dump_session(FILE **f
, sessiont
*s
)
4865 if (!s
->opened
|| (!s
->ip
&& !s
->forwardtosession
) || !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4867 if (!s
->opened
|| !s
->ip
|| !(s
->cin_delta
|| s
->cout_delta
) || !*s
->user
|| s
->walled_garden
)
4873 char filename
[1024];
4875 time_t now
= time(NULL
);
4877 strftime(timestr
, sizeof(timestr
), "%Y%m%d%H%M%S", localtime(&now
));
4878 snprintf(filename
, sizeof(filename
), "%s/%s", config
->accounting_dir
, timestr
);
4880 if (!(*f
= fopen(filename
, "w")))
4882 LOG(0, 0, 0, "Can't write accounting info to %s: %s\n", filename
, strerror(errno
));
4886 LOG(3, 0, 0, "Dumping accounting information to %s\n", filename
);
4887 fprintf(*f
, "# dslwatch.pl dump file V1.01\n"
4892 "# format: username ip qos uptxoctets downrxoctets\n",
4894 fmtaddr(config
->iftun_address
? config
->iftun_address
: my_address
, 0),
4899 LOG(4, 0, 0, "Dumping accounting information for %s\n", s
->user
);
4900 fprintf(*f
, "%s %s %d %u %u\n",
4901 s
->user
, // username
4902 fmtaddr(htonl(s
->ip
), 0), // ip
4903 (s
->throttle_in
|| s
->throttle_out
) ? 2 : 1, // qos
4904 (uint32_t) s
->cin_delta
, // uptxoctets
4905 (uint32_t) s
->cout_delta
); // downrxoctets
4907 s
->cin_delta
= s
->cout_delta
= 0;
4912 static void dump_acct_info(int all
)
4918 CSTAT(dump_acct_info
);
4922 for (i
= 0; i
< shut_acct_n
; i
++)
4923 dump_session(&f
, &shut_acct
[i
]);
4929 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
4930 dump_session(&f
, &session
[i
]);
4937 int main(int argc
, char *argv
[])
4941 char *optconfig
= CONFIGFILE
;
4943 time(&basetime
); // start clock
4946 while ((i
= getopt(argc
, argv
, "dvc:h:")) >= 0)
4951 if (fork()) exit(0);
4953 freopen("/dev/null", "r", stdin
);
4954 freopen("/dev/null", "w", stdout
);
4955 freopen("/dev/null", "w", stderr
);
4964 snprintf(hostname
, sizeof(hostname
), "%s", optarg
);
4967 printf("Args are:\n"
4968 "\t-d\t\tDetach from terminal\n"
4969 "\t-c <file>\tConfig file\n"
4970 "\t-h <hostname>\tForce hostname\n"
4978 // Start the timer routine off
4980 strftime(time_now_string
, sizeof(time_now_string
), "%Y-%m-%d %H:%M:%S", localtime(&time_now
));
4983 initdata(optdebug
, optconfig
);
4987 /* set hostname /after/ having read the config file */
4988 if (*config
->hostname
)
4989 strcpy(hostname
, config
->hostname
);
4990 cli_init_complete(hostname
);
4992 init_tbf(config
->num_tbfs
);
4994 LOG(0, 0, 0, "L2TPNS version " VERSION
"\n");
4995 LOG(0, 0, 0, "Copyright (c) 2003, 2004, 2005, 2006 Optus Internet Engineering\n");
4996 LOG(0, 0, 0, "Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced\n");
4999 rlim
.rlim_cur
= RLIM_INFINITY
;
5000 rlim
.rlim_max
= RLIM_INFINITY
;
5001 // Remove the maximum core size
5002 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
5003 LOG(0, 0, 0, "Can't set ulimit: %s\n", strerror(errno
));
5005 // Make core dumps go to /tmp
5009 if (config
->scheduler_fifo
)
5012 struct sched_param params
= {0};
5013 params
.sched_priority
= 1;
5015 if (get_nprocs() < 2)
5017 LOG(0, 0, 0, "Not using FIFO scheduler, there is only 1 processor in the system.\n");
5018 config
->scheduler_fifo
= 0;
5022 if ((ret
= sched_setscheduler(0, SCHED_FIFO
, ¶ms
)) == 0)
5024 LOG(1, 0, 0, "Using FIFO scheduler. Say goodbye to any other processes running\n");
5028 LOG(0, 0, 0, "Error setting scheduler to FIFO: %s\n", strerror(errno
));
5029 config
->scheduler_fifo
= 0;
5036 /* Set up the cluster communications port. */
5037 if (cluster_init() < 0)
5041 LOG(1, 0, 0, "Set up on interface %s\n", config
->tundevice
);
5049 unsigned seed
= time_now
^ getpid();
5050 LOG(4, 0, 0, "Seeding the pseudo random generator: %u\n", seed
);
5054 signal(SIGHUP
, sighup_handler
);
5055 signal(SIGCHLD
, sigchild_handler
);
5056 signal(SIGTERM
, shutdown_handler
);
5057 signal(SIGINT
, shutdown_handler
);
5058 signal(SIGQUIT
, shutdown_handler
);
5060 // Prevent us from getting paged out
5061 if (config
->lock_pages
)
5063 if (!mlockall(MCL_CURRENT
))
5064 LOG(1, 0, 0, "Locking pages into memory\n");
5066 LOG(0, 0, 0, "Can't lock pages: %s\n", strerror(errno
));
5071 /* remove plugins (so cleanup code gets run) */
5074 // Remove the PID file if we wrote it
5075 if (config
->wrote_pid
&& *config
->pid_file
== '/')
5076 unlink(config
->pid_file
);
5078 /* kill CLI children */
5079 signal(SIGTERM
, SIG_IGN
);
5084 static void sighup_handler(int sig
)
5089 static void shutdown_handler(int sig
)
5091 main_quit
= (sig
== SIGQUIT
) ? QUIT_SHUTDOWN
: QUIT_FAILOVER
;
5094 static void sigchild_handler(int sig
)
5096 while (waitpid(-1, NULL
, WNOHANG
) > 0)
5100 static void build_chap_response(uint8_t *challenge
, uint8_t id
, uint16_t challenge_length
, uint8_t **challenge_response
)
5103 *challenge_response
= NULL
;
5105 if (!*config
->l2tp_secret
)
5107 LOG(0, 0, 0, "LNS requested CHAP authentication, but no l2tp secret is defined\n");
5111 LOG(4, 0, 0, " Building challenge response for CHAP request\n");
5113 *challenge_response
= calloc(17, 1);
5116 MD5_Update(&ctx
, &id
, 1);
5117 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
5118 MD5_Update(&ctx
, challenge
, challenge_length
);
5119 MD5_Final(*challenge_response
, &ctx
);
5124 static int facility_value(char *name
)
5127 for (i
= 0; facilitynames
[i
].c_name
; i
++)
5129 if (strcmp(facilitynames
[i
].c_name
, name
) == 0)
5130 return facilitynames
[i
].c_val
;
5135 static void update_config()
5139 static int timeout
= 0;
5140 static int interval
= 0;
5147 if (log_stream
!= stderr
)
5153 if (*config
->log_filename
)
5155 if (strstr(config
->log_filename
, "syslog:") == config
->log_filename
)
5157 char *p
= config
->log_filename
+ 7;
5160 openlog("l2tpns", LOG_PID
, facility_value(p
));
5164 else if (strchr(config
->log_filename
, '/') == config
->log_filename
)
5166 if ((log_stream
= fopen((char *)(config
->log_filename
), "a")))
5168 fseek(log_stream
, 0, SEEK_END
);
5169 setbuf(log_stream
, NULL
);
5173 log_stream
= stderr
;
5174 setbuf(log_stream
, NULL
);
5180 log_stream
= stderr
;
5181 setbuf(log_stream
, NULL
);
5184 #define L2TP_HDRS (20+8+6+4) // L2TP data encaptulation: ip + udp + l2tp (data) + ppp (inc hdlc)
5185 #define TCP_HDRS (20+20) // TCP encapsulation: ip + tcp
5187 if (config
->l2tp_mtu
<= 0) config
->l2tp_mtu
= 1500; // ethernet default
5188 else if (config
->l2tp_mtu
< MINMTU
) config
->l2tp_mtu
= MINMTU
;
5189 else if (config
->l2tp_mtu
> MAXMTU
) config
->l2tp_mtu
= MAXMTU
;
5191 // reset MRU/MSS globals
5192 MRU
= config
->l2tp_mtu
- L2TP_HDRS
;
5193 if (MRU
> PPPoE_MRU
)
5196 MSS
= MRU
- TCP_HDRS
;
5199 config
->numradiusservers
= 0;
5200 for (i
= 0; i
< MAXRADSERVER
; i
++)
5201 if (config
->radiusserver
[i
])
5203 config
->numradiusservers
++;
5204 // Set radius port: if not set, take the port from the
5205 // first radius server. For the first radius server,
5206 // take the #defined default value from l2tpns.h
5208 // test twice, In case someone works with
5209 // a secondary radius server without defining
5210 // a primary one, this will work even then.
5211 if (i
> 0 && !config
->radiusport
[i
])
5212 config
->radiusport
[i
] = config
->radiusport
[i
-1];
5213 if (!config
->radiusport
[i
])
5214 config
->radiusport
[i
] = RADPORT
;
5217 if (!config
->numradiusservers
)
5218 LOG(0, 0, 0, "No RADIUS servers defined!\n");
5220 // parse radius_authtypes_s
5221 config
->radius_authtypes
= config
->radius_authprefer
= 0;
5222 p
= config
->radius_authtypes_s
;
5225 char *s
= strpbrk(p
, " \t,");
5231 while (*s
== ' ' || *s
== '\t')
5238 if (!strncasecmp("chap", p
, strlen(p
)))
5240 else if (!strncasecmp("pap", p
, strlen(p
)))
5243 LOG(0, 0, 0, "Invalid RADIUS authentication type \"%s\"\n", p
);
5245 config
->radius_authtypes
|= type
;
5246 if (!config
->radius_authprefer
)
5247 config
->radius_authprefer
= type
;
5252 if (!config
->radius_authtypes
)
5254 LOG(0, 0, 0, "Defaulting to PAP authentication\n");
5255 config
->radius_authtypes
= config
->radius_authprefer
= AUTHPAP
;
5258 // normalise radius_authtypes_s
5259 if (config
->radius_authprefer
== AUTHPAP
)
5261 strcpy(config
->radius_authtypes_s
, "pap");
5262 if (config
->radius_authtypes
& AUTHCHAP
)
5263 strcat(config
->radius_authtypes_s
, ", chap");
5267 strcpy(config
->radius_authtypes_s
, "chap");
5268 if (config
->radius_authtypes
& AUTHPAP
)
5269 strcat(config
->radius_authtypes_s
, ", pap");
5272 if (!config
->radius_dae_port
)
5273 config
->radius_dae_port
= DAEPORT
;
5276 if(!config
->bind_portremotelns
)
5277 config
->bind_portremotelns
= L2TPLACPORT
;
5278 if(!config
->bind_address_remotelns
)
5279 config
->bind_address_remotelns
= INADDR_ANY
;
5281 if(!config
->iftun_address
)
5282 config
->iftun_address
= config
->bind_address
;
5284 // re-initialise the random number source
5285 initrandom(config
->random_device
);
5288 for (i
= 0; i
< MAXPLUGINS
; i
++)
5290 if (strcmp(config
->plugins
[i
], config
->old_plugins
[i
]) == 0)
5293 if (*config
->plugins
[i
])
5296 add_plugin(config
->plugins
[i
]);
5298 else if (*config
->old_plugins
[i
])
5301 remove_plugin(config
->old_plugins
[i
]);
5306 guest_accounts_num
= 0;
5307 char *p2
= config
->guest_user
;
5310 char *s
= strpbrk(p2
, " \t,");
5314 while (*s
== ' ' || *s
== '\t')
5321 strcpy(guest_users
[guest_accounts_num
], p2
);
5322 LOG(1, 0, 0, "Guest account[%d]: %s\n", guest_accounts_num
, guest_users
[guest_accounts_num
]);
5323 guest_accounts_num
++;
5326 // Rebuild the guest_user array
5327 strcpy(config
->guest_user
, "");
5329 for (ui
=0; ui
<guest_accounts_num
; ui
++)
5331 strcat(config
->guest_user
, guest_users
[ui
]);
5332 if (ui
<guest_accounts_num
-1)
5334 strcat(config
->guest_user
, ",");
5339 memcpy(config
->old_plugins
, config
->plugins
, sizeof(config
->plugins
));
5340 if (!config
->multi_read_count
) config
->multi_read_count
= 10;
5341 if (!config
->cluster_address
) config
->cluster_address
= inet_addr(DEFAULT_MCAST_ADDR
);
5342 if (!*config
->cluster_interface
)
5343 strncpy(config
->cluster_interface
, DEFAULT_MCAST_INTERFACE
, sizeof(config
->cluster_interface
) - 1);
5345 if (!config
->cluster_hb_interval
)
5346 config
->cluster_hb_interval
= PING_INTERVAL
; // Heartbeat every 0.5 seconds.
5348 if (!config
->cluster_hb_timeout
)
5349 config
->cluster_hb_timeout
= HB_TIMEOUT
; // 10 missed heartbeat triggers an election.
5351 if (interval
!= config
->cluster_hb_interval
|| timeout
!= config
->cluster_hb_timeout
)
5353 // Paranoia: cluster_check_master() treats 2 x interval + 1 sec as
5354 // late, ensure we're sufficiently larger than that
5355 int t
= 4 * config
->cluster_hb_interval
+ 11;
5357 if (config
->cluster_hb_timeout
< t
)
5359 LOG(0, 0, 0, "Heartbeat timeout %d too low, adjusting to %d\n", config
->cluster_hb_timeout
, t
);
5360 config
->cluster_hb_timeout
= t
;
5363 // Push timing changes to the slaves immediately if we're the master
5364 if (config
->cluster_iam_master
)
5365 cluster_heartbeat();
5367 interval
= config
->cluster_hb_interval
;
5368 timeout
= config
->cluster_hb_timeout
;
5372 if (*config
->pid_file
== '/' && !config
->wrote_pid
)
5375 if ((f
= fopen(config
->pid_file
, "w")))
5377 fprintf(f
, "%d\n", getpid());
5379 config
->wrote_pid
= 1;
5383 LOG(0, 0, 0, "Can't write to PID file %s: %s\n", config
->pid_file
, strerror(errno
));
5388 static void read_config_file()
5392 if (!config
->config_file
) return;
5393 if (!(f
= fopen(config
->config_file
, "r")))
5395 fprintf(stderr
, "Can't open config file %s: %s\n", config
->config_file
, strerror(errno
));
5399 LOG(3, 0, 0, "Reading config file %s\n", config
->config_file
);
5401 LOG(3, 0, 0, "Done reading config file\n");
5405 int sessionsetup(sessionidt s
, tunnelidt t
)
5407 // A session now exists, set it up
5413 CSTAT(sessionsetup
);
5415 LOG(3, s
, t
, "Doing session setup for session\n");
5417 // Join a bundle if the MRRU option is accepted
5418 if(session
[s
].mrru
> 0 && session
[s
].bundle
== 0)
5420 LOG(3, s
, t
, "This session can be part of multilink bundle\n");
5421 if (join_bundle(s
) > 0)
5422 cluster_send_bundle(session
[s
].bundle
);
5425 LOG(0, s
, t
, "MPPP: Mismaching mssf option with other sessions in bundle\n");
5426 sessionshutdown(s
, "Mismaching mssf option.", CDN_NONE
, TERM_SERVICE_UNAVAILABLE
);
5433 assign_ip_address(s
);
5436 LOG(0, s
, t
, " No IP allocated. The IP address pool is FULL!\n");
5437 sessionshutdown(s
, "No IP addresses available.", CDN_TRY_ANOTHER
, TERM_SERVICE_UNAVAILABLE
);
5440 LOG(3, s
, t
, " No IP allocated. Assigned %s from pool\n",
5441 fmtaddr(htonl(session
[s
].ip
), 0));
5444 // Make sure this is right
5445 session
[s
].tunnel
= t
;
5447 // zap old sessions with same IP and/or username
5448 // Don't kill gardened sessions - doing so leads to a DoS
5449 // from someone who doesn't need to know the password
5452 user
= session
[s
].user
;
5453 for (i
= 1; i
<= config
->cluster_highest_sessionid
; i
++)
5455 if (i
== s
) continue;
5456 if (!session
[s
].opened
) break;
5457 // Allow duplicate sessions for multilink ones of the same bundle.
5458 if (session
[s
].bundle
&& session
[i
].bundle
&& session
[s
].bundle
== session
[i
].bundle
) continue;
5460 if (ip
== session
[i
].ip
)
5462 sessionkill(i
, "Duplicate IP address");
5463 cluster_listinvert_session(s
, i
);
5467 if (config
->allow_duplicate_users
) continue;
5468 if (session
[s
].walled_garden
|| session
[i
].walled_garden
) continue;
5472 for (gu
= 0; gu
< guest_accounts_num
; gu
++)
5474 if (!strcasecmp(user
, guest_users
[gu
]))
5480 if (found
) continue;
5482 // Drop the new session in case of duplicate sessionss, not the old one.
5483 if (!strcasecmp(user
, session
[i
].user
))
5484 sessionkill(i
, "Duplicate session for users");
5488 // no need to set a route for the same IP address of the bundle
5489 if (!session
[s
].bundle
|| (bundle
[session
[s
].bundle
].num_of_links
== 1))
5493 // Add the route for this session.
5494 for (r
= 0; r
< MAXROUTE
&& session
[s
].route
[r
].ip
; r
++)
5496 if ((session
[s
].ip
>> (32-session
[s
].route
[r
].prefixlen
)) ==
5497 (session
[s
].route
[r
].ip
>> (32-session
[s
].route
[r
].prefixlen
)))
5500 routeset(s
, session
[s
].route
[r
].ip
, session
[s
].route
[r
].prefixlen
, 0, 1);
5503 // Static IPs need to be routed if not already
5504 // convered by a Framed-Route. Anything else is part
5505 // of the IP address pool and is already routed, it
5506 // just needs to be added to the IP cache.
5507 // IPv6 route setup is done in ppp.c, when IPV6CP is acked.
5508 if (session
[s
].ip_pool_index
== -1) // static ip
5510 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 1);
5513 cache_ipmap(session
[s
].ip
, s
);
5516 sess_local
[s
].lcp_authtype
= 0; // RADIUS authentication complete
5517 lcp_open(s
, t
); // transition to Network phase and send initial IPCP
5519 // Run the plugin's against this new session.
5521 struct param_new_session data
= { &tunnel
[t
], &session
[s
] };
5522 run_plugins(PLUGIN_NEW_SESSION
, &data
);
5525 // Allocate TBFs if throttled
5526 if (session
[s
].throttle_in
|| session
[s
].throttle_out
)
5527 throttle_session(s
, session
[s
].throttle_in
, session
[s
].throttle_out
);
5529 session
[s
].last_packet
= session
[s
].last_data
= time_now
;
5531 LOG(2, s
, t
, "Login by %s at %s from %s (%s)\n", session
[s
].user
,
5532 fmtaddr(htonl(session
[s
].ip
), 0),
5533 fmtaddr(htonl(tunnel
[t
].ip
), 1), tunnel
[t
].hostname
);
5535 cluster_send_session(s
); // Mark it as dirty, and needing to the flooded to the cluster.
5537 return 1; // RADIUS OK and IP allocated, done...
5541 // This session just got dropped on us by the master or something.
5542 // Make sure our tables up up to date...
5544 int load_session(sessionidt s
, sessiont
*new)
5550 if (new->ip_pool_index
>= MAXIPPOOL
||
5551 new->tunnel
>= MAXTUNNEL
)
5553 LOG(0, s
, 0, "Strange session update received!\n");
5554 // FIXME! What to do here?
5559 // Ok. All sanity checks passed. Now we're committed to
5560 // loading the new session.
5563 session
[s
].tunnel
= new->tunnel
; // For logging in cache_ipmap
5565 // See if routes/ip cache need updating
5566 if (new->ip
!= session
[s
].ip
)
5569 for (i
= 0; !newip
&& i
< MAXROUTE
&& (session
[s
].route
[i
].ip
|| new->route
[i
].ip
); i
++)
5570 if (new->route
[i
].ip
!= session
[s
].route
[i
].ip
||
5571 new->route
[i
].prefixlen
!= session
[s
].route
[i
].prefixlen
)
5579 // remove old routes...
5580 for (i
= 0; i
< MAXROUTE
&& session
[s
].route
[i
].ip
; i
++)
5582 if ((session
[s
].ip
>> (32-session
[s
].route
[i
].prefixlen
)) ==
5583 (session
[s
].route
[i
].ip
>> (32-session
[s
].route
[i
].prefixlen
)))
5586 routeset(s
, session
[s
].route
[i
].ip
, session
[s
].route
[i
].prefixlen
, 0, 0);
5592 if (session
[s
].ip_pool_index
== -1) // static IP
5594 if (!routed
) routeset(s
, session
[s
].ip
, 0, 0, 0);
5596 else // It's part of the IP pool, remove it manually.
5597 uncache_ipmap(session
[s
].ip
);
5602 // add new routes...
5603 for (i
= 0; i
< MAXROUTE
&& new->route
[i
].ip
; i
++)
5605 if ((new->ip
>> (32-new->route
[i
].prefixlen
)) ==
5606 (new->route
[i
].ip
>> (32-new->route
[i
].prefixlen
)))
5609 routeset(s
, new->route
[i
].ip
, new->route
[i
].prefixlen
, 0, 1);
5615 // If there's a new one, add it.
5616 if (new->ip_pool_index
== -1)
5618 if (!routed
) routeset(s
, new->ip
, 0, 0, 1);
5621 cache_ipmap(new->ip
, s
);
5626 if (new->ipv6prefixlen
&& new->ppp
.ipv6cp
== Opened
&& session
[s
].ppp
.ipv6cp
!= Opened
)
5627 route6set(s
, new->ipv6route
, new->ipv6prefixlen
, 1);
5630 if (new->filter_in
&& (new->filter_in
> MAXFILTER
|| !ip_filters
[new->filter_in
- 1].name
[0]))
5632 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid input filter %u\n", (int) new->filter_in
);
5636 if (new->filter_out
&& (new->filter_out
> MAXFILTER
|| !ip_filters
[new->filter_out
- 1].name
[0]))
5638 LOG(2, s
, session
[s
].tunnel
, "Dropping invalid output filter %u\n", (int) new->filter_out
);
5639 new->filter_out
= 0;
5642 if (new->filter_in
!= session
[s
].filter_in
)
5644 if (session
[s
].filter_in
) ip_filters
[session
[s
].filter_in
- 1].used
--;
5645 if (new->filter_in
) ip_filters
[new->filter_in
- 1].used
++;
5648 if (new->filter_out
!= session
[s
].filter_out
)
5650 if (session
[s
].filter_out
) ip_filters
[session
[s
].filter_out
- 1].used
--;
5651 if (new->filter_out
) ip_filters
[new->filter_out
- 1].used
++;
5654 if (new->tunnel
&& s
> config
->cluster_highest_sessionid
) // Maintain this in the slave. It's used
5655 // for walking the sessions to forward byte counts to the master.
5656 config
->cluster_highest_sessionid
= s
;
5658 memcpy(&session
[s
], new, sizeof(session
[s
])); // Copy over..
5660 // Do fixups into address pool.
5661 if (new->ip_pool_index
!= -1)
5662 fix_address_pool(s
);
5667 static void initplugins()
5671 loaded_plugins
= ll_init();
5672 // Initialize the plugins to nothing
5673 for (i
= 0; i
< MAX_PLUGIN_TYPES
; i
++)
5674 plugins
[i
] = ll_init();
5677 static void *open_plugin(char *plugin_name
, int load
)
5679 char path
[256] = "";
5681 snprintf(path
, 256, PLUGINDIR
"/%s.so", plugin_name
);
5682 LOG(2, 0, 0, "%soading plugin from %s\n", load
? "L" : "Un-l", path
);
5683 return dlopen(path
, RTLD_NOW
);
5686 // plugin callback to get a config value
5687 static void *getconfig(char *key
, enum config_typet type
)
5691 for (i
= 0; config_values
[i
].key
; i
++)
5693 if (!strcmp(config_values
[i
].key
, key
))
5695 if (config_values
[i
].type
== type
)
5696 return ((void *) config
) + config_values
[i
].offset
;
5698 LOG(1, 0, 0, "plugin requested config item \"%s\" expecting type %d, have type %d\n",
5699 key
, type
, config_values
[i
].type
);
5705 LOG(1, 0, 0, "plugin requested unknown config item \"%s\"\n", key
);
5709 static int add_plugin(char *plugin_name
)
5711 static struct pluginfuncs funcs
= {
5716 sessiontbysessionidt
,
5717 sessionidtbysessiont
,
5724 cluster_send_session
,
5727 void *p
= open_plugin(plugin_name
, 1);
5728 int (*initfunc
)(struct pluginfuncs
*);
5733 LOG(1, 0, 0, " Plugin load failed: %s\n", dlerror());
5737 if (ll_contains(loaded_plugins
, p
))
5740 return 0; // already loaded
5744 int *v
= dlsym(p
, "plugin_api_version");
5745 if (!v
|| *v
!= PLUGIN_API_VERSION
)
5747 LOG(1, 0, 0, " Plugin load failed: API version mismatch: %s\n", dlerror());
5753 if ((initfunc
= dlsym(p
, "plugin_init")))
5755 if (!initfunc(&funcs
))
5757 LOG(1, 0, 0, " Plugin load failed: plugin_init() returned FALSE: %s\n", dlerror());
5763 ll_push(loaded_plugins
, p
);
5765 for (i
= 0; i
< max_plugin_functions
; i
++)
5768 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5770 LOG(3, 0, 0, " Supports function \"%s\"\n", plugin_functions
[i
]);
5771 ll_push(plugins
[i
], x
);
5775 LOG(2, 0, 0, " Loaded plugin %s\n", plugin_name
);
5779 static void run_plugin_done(void *plugin
)
5781 int (*donefunc
)(void) = dlsym(plugin
, "plugin_done");
5787 static int remove_plugin(char *plugin_name
)
5789 void *p
= open_plugin(plugin_name
, 0);
5795 if (ll_contains(loaded_plugins
, p
))
5798 for (i
= 0; i
< max_plugin_functions
; i
++)
5801 if (plugin_functions
[i
] && (x
= dlsym(p
, plugin_functions
[i
])))
5802 ll_delete(plugins
[i
], x
);
5805 ll_delete(loaded_plugins
, p
);
5811 LOG(2, 0, 0, "Removed plugin %s\n", plugin_name
);
5815 int run_plugins(int plugin_type
, void *data
)
5817 int (*func
)(void *data
);
5819 if (!plugins
[plugin_type
] || plugin_type
> max_plugin_functions
)
5820 return PLUGIN_RET_ERROR
;
5822 ll_reset(plugins
[plugin_type
]);
5823 while ((func
= ll_next(plugins
[plugin_type
])))
5827 if (r
!= PLUGIN_RET_OK
)
5828 return r
; // stop here
5831 return PLUGIN_RET_OK
;
5834 static void plugins_done()
5838 ll_reset(loaded_plugins
);
5839 while ((p
= ll_next(loaded_plugins
)))
5843 static void processcontrol(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
)
5845 struct nsctl request
;
5846 struct nsctl response
;
5847 int type
= unpack_control(&request
, buf
, len
);
5851 if (log_stream
&& config
->debug
>= 4)
5855 LOG(4, 0, 0, "Bogus control message from %s (%d)\n",
5856 fmtaddr(addr
->sin_addr
.s_addr
, 0), type
);
5860 LOG(4, 0, 0, "Received [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
5861 dump_control(&request
, log_stream
);
5867 case NSCTL_REQ_LOAD
:
5868 if (request
.argc
!= 1)
5870 response
.type
= NSCTL_RES_ERR
;
5872 response
.argv
[0] = "name of plugin required";
5874 else if ((r
= add_plugin(request
.argv
[0])) < 1)
5876 response
.type
= NSCTL_RES_ERR
;
5878 response
.argv
[0] = !r
5879 ? "plugin already loaded"
5880 : "error loading plugin";
5884 response
.type
= NSCTL_RES_OK
;
5890 case NSCTL_REQ_UNLOAD
:
5891 if (request
.argc
!= 1)
5893 response
.type
= NSCTL_RES_ERR
;
5895 response
.argv
[0] = "name of plugin required";
5897 else if ((r
= remove_plugin(request
.argv
[0])) < 1)
5899 response
.type
= NSCTL_RES_ERR
;
5901 response
.argv
[0] = !r
5902 ? "plugin not loaded"
5903 : "plugin not found";
5907 response
.type
= NSCTL_RES_OK
;
5913 case NSCTL_REQ_HELP
:
5914 response
.type
= NSCTL_RES_OK
;
5917 ll_reset(loaded_plugins
);
5918 while ((p
= ll_next(loaded_plugins
)))
5920 char **help
= dlsym(p
, "plugin_control_help");
5921 while (response
.argc
< 0xff && help
&& *help
)
5922 response
.argv
[response
.argc
++] = *help
++;
5927 case NSCTL_REQ_CONTROL
:
5929 struct param_control param
= {
5930 config
->cluster_iam_master
,
5937 int r
= run_plugins(PLUGIN_CONTROL
, ¶m
);
5939 if (r
== PLUGIN_RET_ERROR
)
5941 response
.type
= NSCTL_RES_ERR
;
5943 response
.argv
[0] = param
.additional
5945 : "error returned by plugin";
5947 else if (r
== PLUGIN_RET_NOTMASTER
)
5949 static char msg
[] = "must be run on master: 000.000.000.000";
5951 response
.type
= NSCTL_RES_ERR
;
5953 if (config
->cluster_master_address
)
5955 strcpy(msg
+ 23, fmtaddr(config
->cluster_master_address
, 0));
5956 response
.argv
[0] = msg
;
5960 response
.argv
[0] = "must be run on master: none elected";
5963 else if (!(param
.response
& NSCTL_RESPONSE
))
5965 response
.type
= NSCTL_RES_ERR
;
5967 response
.argv
[0] = param
.response
5968 ? "unrecognised response value from plugin"
5969 : "unhandled action";
5973 response
.type
= param
.response
;
5975 if (param
.additional
)
5978 response
.argv
[0] = param
.additional
;
5986 response
.type
= NSCTL_RES_ERR
;
5988 response
.argv
[0] = "error unpacking control packet";
5991 buf
= calloc(NSCTL_MAX_PKT_SZ
, 1);
5994 LOG(2, 0, 0, "Failed to allocate nsctl response\n");
5998 r
= pack_control(buf
, NSCTL_MAX_PKT_SZ
, response
.type
, response
.argc
, response
.argv
);
6001 sendtofrom(controlfd
, buf
, r
, 0, (const struct sockaddr
*) addr
, alen
, local
);
6002 if (log_stream
&& config
->debug
>= 4)
6004 LOG(4, 0, 0, "Sent [%s] ", fmtaddr(addr
->sin_addr
.s_addr
, 0));
6005 dump_control(&response
, log_stream
);
6009 LOG(2, 0, 0, "Failed to pack nsctl response for %s (%d)\n",
6010 fmtaddr(addr
->sin_addr
.s_addr
, 0), r
);
6015 static tunnelidt
new_tunnel()
6018 for (i
= 1; i
< MAXTUNNEL
; i
++)
6020 if (tunnel
[i
].state
== TUNNELFREE
)
6022 LOG(4, 0, i
, "Assigning tunnel ID %u\n", i
);
6023 if (i
> config
->cluster_highest_tunnelid
)
6024 config
->cluster_highest_tunnelid
= i
;
6028 LOG(0, 0, 0, "Can't find a free tunnel! There shouldn't be this many in use!\n");
6033 // We're becoming the master. Do any required setup..
6035 // This is principally telling all the plugins that we're
6036 // now a master, and telling them about all the sessions
6037 // that are active too..
6039 void become_master(void)
6042 static struct event_data d
[RADIUS_FDS
];
6043 struct epoll_event e
;
6045 run_plugins(PLUGIN_BECOME_MASTER
, NULL
);
6047 // running a bunch of iptables commands is slow and can cause
6048 // the master to drop tunnels on takeover--kludge around the
6049 // problem by forking for the moment (note: race)
6050 if (!fork_and_close())
6052 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6054 if (!session
[s
].opened
) // Not an in-use session.
6057 run_plugins(PLUGIN_NEW_SESSION_MASTER
, &session
[s
]);
6064 for (i
= 0; i
< RADIUS_FDS
; i
++)
6066 d
[i
].type
= FD_TYPE_RADIUS
;
6070 epoll_ctl(epollfd
, EPOLL_CTL_ADD
, radfds
[i
], &e
);
6074 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
6080 if (CLI_HELP_REQUESTED
)
6081 return CLI_HELP_NO_ARGS
;
6084 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6086 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6089 if (!session
[s
].opened
)
6092 idle
= time_now
- session
[s
].last_data
;
6093 idle
/= 5 ; // In multiples of 5 seconds.
6103 for (i
= 0; i
< 63; ++i
)
6105 cli_print(cli
, "%3d seconds : %7.2f%% (%6d)", i
* 5, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6107 cli_print(cli
, "lots of secs : %7.2f%% (%6d)", (double) buckets
[63] * 100.0 / count
, buckets
[i
]);
6108 cli_print(cli
, "%d total sessions open.", count
);
6112 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
6118 if (CLI_HELP_REQUESTED
)
6119 return CLI_HELP_NO_ARGS
;
6122 for (i
= 0; i
< 64;++i
) buckets
[i
] = 0;
6124 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
6127 if (!session
[s
].opened
)
6130 d
= time_now
- session
[s
].opened
;
6133 while (d
> 1 && open
< 32)
6143 for (i
= 0; i
< 30; ++i
)
6145 cli_print(cli
, " < %8d seconds : %7.2f%% (%6d)", s
, (double) buckets
[i
] * 100.0 / count
, buckets
[i
]);
6148 cli_print(cli
, "%d total sessions open.", count
);
6154 * This unencodes the AVP using the L2TP secret and the previously
6155 * stored random vector. It overwrites the hidden data with the
6156 * unhidden AVP subformat.
6158 static void unhide_value(uint8_t *value
, size_t len
, uint16_t type
, uint8_t *vector
, size_t vec_len
)
6164 uint16_t m
= htons(type
);
6166 // Compute initial pad
6168 MD5_Update(&ctx
, (unsigned char *) &m
, 2);
6169 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6170 MD5_Update(&ctx
, vector
, vec_len
);
6171 MD5_Final(digest
, &ctx
);
6173 // pointer to last decoded 16 octets
6178 // calculate a new pad based on the last decoded block
6179 if (d
>= sizeof(digest
))
6182 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
6183 MD5_Update(&ctx
, last
, sizeof(digest
));
6184 MD5_Final(digest
, &ctx
);
6190 *value
++ ^= digest
[d
++];
6195 int find_filter(char const *name
, size_t len
)
6200 for (i
= 0; i
< MAXFILTER
; i
++)
6202 if (!*ip_filters
[i
].name
)
6210 if (strlen(ip_filters
[i
].name
) != len
)
6213 if (!strncmp(ip_filters
[i
].name
, name
, len
))
6220 static int ip_filter_port(ip_filter_portt
*p
, uint16_t port
)
6224 case FILTER_PORT_OP_EQ
: return port
== p
->port
;
6225 case FILTER_PORT_OP_NEQ
: return port
!= p
->port
;
6226 case FILTER_PORT_OP_GT
: return port
> p
->port
;
6227 case FILTER_PORT_OP_LT
: return port
< p
->port
;
6228 case FILTER_PORT_OP_RANGE
: return port
>= p
->port
&& port
<= p
->port2
;
6234 static int ip_filter_flag(uint8_t op
, uint8_t sflags
, uint8_t cflags
, uint8_t flags
)
6238 case FILTER_FLAG_OP_ANY
:
6239 return (flags
& sflags
) || (~flags
& cflags
);
6241 case FILTER_FLAG_OP_ALL
:
6242 return (flags
& sflags
) == sflags
&& (~flags
& cflags
) == cflags
;
6244 case FILTER_FLAG_OP_EST
:
6245 return (flags
& (TCP_FLAG_ACK
|TCP_FLAG_RST
)) && (~flags
& TCP_FLAG_SYN
);
6251 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
)
6253 uint16_t frag_offset
;
6257 uint16_t src_port
= 0;
6258 uint16_t dst_port
= 0;
6260 ip_filter_rulet
*rule
;
6262 if (len
< 20) // up to end of destination address
6265 if ((*buf
>> 4) != 4) // IPv4
6268 frag_offset
= ntohs(*(uint16_t *) (buf
+ 6)) & 0x1fff;
6270 src_ip
= *(in_addr_t
*) (buf
+ 12);
6271 dst_ip
= *(in_addr_t
*) (buf
+ 16);
6273 if (frag_offset
== 0 && (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
))
6275 int l
= (buf
[0] & 0xf) * 4; // length of IP header
6276 if (len
< l
+ 4) // ports
6279 src_port
= ntohs(*(uint16_t *) (buf
+ l
));
6280 dst_port
= ntohs(*(uint16_t *) (buf
+ l
+ 2));
6281 if (proto
== IPPROTO_TCP
)
6283 if (len
< l
+ 14) // flags
6286 flags
= buf
[l
+ 13] & 0x3f;
6290 for (rule
= ip_filters
[filter
].rules
; rule
->action
; rule
++)
6292 if (rule
->proto
!= IPPROTO_IP
&& proto
!= rule
->proto
)
6295 if (rule
->src_wild
!= INADDR_BROADCAST
&&
6296 (src_ip
& ~rule
->src_wild
) != (rule
->src_ip
& ~rule
->src_wild
))
6299 if (rule
->dst_wild
!= INADDR_BROADCAST
&&
6300 (dst_ip
& ~rule
->dst_wild
) != (rule
->dst_ip
& ~rule
->dst_wild
))
6305 // layer 4 deny rules are skipped
6306 if (rule
->action
== FILTER_ACTION_DENY
&&
6307 (rule
->src_ports
.op
|| rule
->dst_ports
.op
|| rule
->tcp_flag_op
))
6315 if (proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
)
6317 if (rule
->src_ports
.op
&& !ip_filter_port(&rule
->src_ports
, src_port
))
6320 if (rule
->dst_ports
.op
&& !ip_filter_port(&rule
->dst_ports
, dst_port
))
6323 if (proto
== IPPROTO_TCP
&& rule
->tcp_flag_op
&&
6324 !ip_filter_flag(rule
->tcp_flag_op
, rule
->tcp_sflags
, rule
->tcp_cflags
, flags
))
6331 return rule
->action
== FILTER_ACTION_PERMIT
;
6340 tunnelidt
lac_new_tunnel()
6342 return new_tunnel();
6345 void lac_tunnelclear(tunnelidt t
)
6350 void lac_send_SCCRQ(tunnelidt t
, uint8_t * auth
, unsigned int auth_len
)
6352 uint16_t version
= 0x0100; // protocol version
6354 tunnel
[t
].state
= TUNNELOPENING
;
6356 // Sent SCCRQ - Start Control Connection Request
6357 controlt
*c
= controlnew(1); // sending SCCRQ
6358 controls(c
, 7, hostname
, 1); // host name
6359 controls(c
, 8, Vendor_name
, 1); // Vendor name
6360 control16(c
, 2, version
, 1); // protocol version
6361 control32(c
, 3, 3, 1); // framing Capabilities
6362 control16(c
, 9, t
, 1); // assigned tunnel
6363 controlb(c
, 11, (uint8_t *) auth
, auth_len
, 1); // CHAP Challenge
6364 LOG(3, 0, t
, "Sent SCCRQ to REMOTE LNS\n");
6365 controladd(c
, 0, t
); // send
6368 void lac_send_ICRQ(tunnelidt t
, sessionidt s
)
6370 // Sent ICRQ Incoming-call-request
6371 controlt
*c
= controlnew(10); // ICRQ
6373 control16(c
, 14, s
, 1); // assigned sesion
6374 call_serial_number
++;
6375 control32(c
, 15, call_serial_number
, 1); // call serial number
6376 LOG(3, s
, t
, "Sent ICRQ to REMOTE LNS (far ID %u)\n", tunnel
[t
].far
);
6377 controladd(c
, 0, t
); // send
6380 void lac_tunnelshutdown(tunnelidt t
, char *reason
, int result
, int error
, char *msg
)
6382 tunnelshutdown(t
, reason
, result
, error
, msg
);