Session group update rate calculation
[l2tpns.git] / l2tpns.h
1 // L2TPNS Global Stuff
2 // $Id: l2tpns.h,v 1.121 2009-12-08 14:49:28 bodea Exp $
3
4 #ifndef __L2TPNS_H__
5 #define __L2TPNS_H__
6
7 #include <netinet/in.h>
8 #include <stdio.h>
9 #include <signal.h>
10 #include <stdlib.h>
11 #include <netinet/in.h>
12 #include <net/ethernet.h>
13 #include <sys/socket.h>
14 #include <arpa/inet.h>
15 #include <sys/types.h>
16 #include <libcli.h>
17
18 #define VERSION "2.2.1"
19
20 // Limits
21 #define MAXTUNNEL 500 // could be up to 65535
22 #define MAXBUNDLE 300 // could be up to 65535
23 #define MAXBUNDLESES 12 // Maximum number of member links in bundle
24 #define MAXADDRESS 20 // Maximum length for the Endpoint Discrminiator address
25 #define MAXSESSION 60000 // could be up to 65535
26 #define MAXTBFS 6000 // Maximum token bucket filters. Might need up to 2 * session.
27 #define MAXSESSINGRP 12 // Maximum number of member links in grouped session
28 #define MAXGRPINSESS 12 // Maximum number of member links in session group
29 #define MAXGROUPE 300 // could be up to 65535, Maximum number of grouped session
30 #define MAXROUTEINGRP 15 // max static routes per group
31
32 // Tunnel Id reserved for pppoe
33 #define TUNNEL_ID_PPPOE 1
34
35 #define RADIUS_SHIFT 6
36 #define RADIUS_FDS (1 << RADIUS_SHIFT)
37 #define RADIUS_MASK ((1 << RADIUS_SHIFT) - 1)
38 #define MAXRADIUS (1 << (8 + RADIUS_SHIFT))
39
40 #define T_UNDEF (0xffff) // A tunnel ID that won't ever be used. Mark session as undefined.
41 #define T_FREE (0) // A tunnel ID that won't ever be used. Mark session as free.
42
43 #define MAXCONTROL 1000 // max length control message we ever send...
44 #define MINMTU 576 // minimum recommended MTU (rfc1063)
45 #define MAXMTU 2600 // arbitrary maximum MTU
46 #define PPPoE_MRU 1492 // maximum PPPoE MRU (rfc2516: 1500 less PPPoE header (6) and PPP protocol ID (2))
47 #define MAXETHER (MAXMTU+18) // max packet we try sending to tun
48 #define MAXTEL 96 // telephone number
49 #define MAXHOSTNAME 256 // hostname
50 #define MAXUSER 128 // username
51 #define MAXPASS 128 // password
52 #define MAXCLASS 128 // radius class attribute size
53 #define MAXPLUGINS 20 // maximum number of plugins to load
54 #define MAXRADSERVER 10 // max radius servers
55 #define MAXROUTE 10 // max static routes per session
56 #define MAXIPPOOL 131072 // max number of ip addresses in pool
57 #define RINGBUFFER_SIZE 10000 // Number of ringbuffer entries to allocate
58 #define MAX_LOG_LENGTH 512 // Maximum size of log message
59 #define ECHO_TIMEOUT 10 // Time between last packet sent and LCP ECHO generation
60 #define IDLE_ECHO_TIMEOUT 240 // Time between last packet seen and session shutdown
61 #define BUSY_WAIT_TIME 3000 // 5 minutes in 1/10th seconds to wait for radius to cleanup on shutdown
62
63 #define MP_BEGIN 0x80 // This value is used when (b)egin bit is set in MP header
64 #define MP_END 0x40 // This value is used when (e)nd bit is set in MP header
65 #define MP_BOTH_BITS 0xC0 // This value is used when both bits (begin and end) are set in MP header
66
67 #define MINFRAGLEN 64 // Minumum fragment length
68 #define MAXFRAGLEN 1496 // Maximum length for Multilink fragment (The multilink may contain only one link)
69 #define MAXFRAGNUM 512 // Maximum number of Multilink fragment in a bundle (must be in the form of 2^X)
70 // it's not expected to have a space for more than 10 unassembled packets = 10 * MAXBUNDLESES
71 #define MAXFRAGNUM_MASK (MAXFRAGNUM - 1) // Must be equal to MAXFRAGNUM-1
72
73 // Constants
74 #ifndef ETCDIR
75 #define ETCDIR "/etc/l2tpns"
76 #endif
77
78 #ifndef LIBDIR
79 #define LIBDIR "/usr/lib/l2tpns"
80 #endif
81
82 #ifndef PLUGINDIR
83 #define PLUGINDIR LIBDIR // Plugins
84 #endif
85
86 #ifndef PLUGINCONF
87 #define PLUGINCONF ETCDIR // Plugin config dir
88 #endif
89
90 #ifndef FLASHDIR
91 #define FLASHDIR ETCDIR
92 #endif
93
94 #define TUNDEVICE "/dev/net/tun"
95 #define RANDOMDEVICE "/dev/urandom" // default, not as secure as /dev/random but non-blocking
96 #define CONFIGFILE FLASHDIR "/startup-config" // Configuration file
97 #define CLIUSERS FLASHDIR "/users" // CLI Users file
98 #define IPPOOLFILE FLASHDIR "/ip_pool" // Address pool configuration
99 #define ACCT_TIME 3000 // 5 minute accounting interval
100 #define ACCT_SHUT_TIME 600 // 1 minute for counters of shutdown sessions
101 #define L2TPPORT 1701 // L2TP port
102 #define RADPORT 1645 // old radius port...
103 #define DAEPORT 3799 // DAE port
104 #define PKTARP 0x0806 // ARP packet type
105 #define PKTIP 0x0800 // IPv4 packet type
106 #define PKTIPV6 0x86DD // IPv6 packet type
107 #define PPPPAP 0xC023
108 #define PPPCHAP 0xC223
109 #define PPPLCP 0xC021
110 #define PPPIPCP 0x8021
111 #define PPPIPV6CP 0x8057
112 #define PPPCCP 0x80FD
113 #define PPPIP 0x0021
114 #define PPPIPV6 0x0057
115 #define PPPMP 0x003D
116 #define MIN_IP_SIZE 0x19
117
118 enum {
119 ConfigReq = 1,
120 ConfigAck,
121 ConfigNak,
122 ConfigRej,
123 TerminateReq,
124 TerminateAck,
125 CodeRej,
126 ProtocolRej,
127 EchoReq,
128 EchoReply,
129 DiscardRequest,
130 IdentRequest
131 };
132
133 enum {
134 AccessRequest = 1,
135 AccessAccept,
136 AccessReject,
137 AccountingRequest,
138 AccountingResponse,
139 AccessChallenge = 11,
140 DisconnectRequest = 40,
141 DisconnectACK,
142 DisconnectNAK,
143 CoARequest,
144 CoAACK,
145 CoANAK
146 };
147
148 // PPP phases
149 enum {
150 Dead,
151 Establish,
152 Authenticate,
153 Network,
154 Terminate
155 };
156
157 // PPP states
158 enum {
159 Initial,
160 Starting,
161 Closed,
162 Stopped,
163 Closing,
164 Stopping,
165 RequestSent,
166 AckReceived,
167 AckSent,
168 Opened
169 };
170
171 // reset state machine counters
172 #define initialise_restart_count(_s, _fsm) \
173 sess_local[_s]._fsm.conf_sent = \
174 sess_local[_s]._fsm.nak_sent = 0
175
176 // no more attempts
177 #define zero_restart_count(_s, _fsm) ({ \
178 sess_local[_s]._fsm.conf_sent = \
179 config->ppp_max_configure; \
180 sess_local[_s]._fsm.restart = \
181 time_now + config->ppp_restart_time; \
182 })
183
184 // increment ConfReq counter and reset timer
185 #define restart_timer(_s, _fsm) ({ \
186 sess_local[_s]._fsm.conf_sent++; \
187 sess_local[_s]._fsm.restart = \
188 time_now + config->ppp_restart_time; \
189 })
190
191 // stop timer on change to state where timer does not run
192 #define change_state(_s, _fsm, _new) ({ \
193 if (_new != session[_s].ppp._fsm) \
194 { \
195 switch (_new) \
196 { \
197 case Initial: \
198 case Starting: \
199 case Closed: \
200 case Stopped: \
201 case Opened: \
202 sess_local[_s]._fsm.restart = 0; \
203 initialise_restart_count(_s, _fsm); \
204 } \
205 session[_s].ppp._fsm = _new; \
206 cluster_send_session(_s); \
207 } \
208 })
209
210 // Types
211 typedef uint16_t sessionidt;
212 typedef uint16_t bundleidt;
213 typedef uint16_t tunnelidt;
214 typedef uint16_t groupidt;
215 typedef uint32_t clockt;
216 typedef uint8_t hasht[16];
217
218 // CLI actions
219 struct cli_session_actions {
220 char action;
221 in_addr_t snoop_ip;
222 uint16_t snoop_port;
223 int throttle_in;
224 int throttle_out;
225 int filter_in;
226 int filter_out;
227 };
228
229 #define CLI_SESS_KILL 0x01
230 #define CLI_SESS_SNOOP 0x02
231 #define CLI_SESS_NOSNOOP 0x04
232 #define CLI_SESS_THROTTLE 0x08
233 #define CLI_SESS_NOTHROTTLE 0x10
234 #define CLI_SESS_FILTER 0x20
235 #define CLI_SESS_NOFILTER 0x40
236
237 struct cli_tunnel_actions {
238 char action;
239 };
240
241 #define CLI_TUN_KILL 0x01
242
243 // structures
244 typedef struct // route
245 {
246 in_addr_t ip;
247 int prefixlen;
248 }
249 routet;
250
251 typedef struct controls // control message
252 {
253 struct controls *next; // next in queue
254 uint16_t length; // length
255 union {
256 uint8_t buf[MAXCONTROL];
257 uint16_t buf16[MAXCONTROL/2];
258 } __attribute__ ((__transparent_union__));
259 }
260 controlt;
261
262 typedef struct {
263 uint8_t length; // Endpoint Discriminator length
264 uint8_t addr_class; // Endpoint Discriminator class
265 uint8_t address[MAXADDRESS]; // Endpoint Discriminator address
266 } epdist;
267
268 typedef struct {
269 sessionidt sid; // Fragment originating session
270 tunnelidt tid; // Fragment originating tunnel
271 uint8_t flags; // MP frame flags
272 uint32_t seq; // fragment seq num
273 uint32_t jitteravg;
274 uint16_t length; // Fragment length
275 uint8_t data[MAXFRAGLEN]; // Fragment data
276 } fragmentt;
277
278 typedef struct
279 {
280 sessionidt next; // next session in linked list
281 sessionidt far; // far end session ID
282 tunnelidt tunnel; // near end tunnel ID
283 uint8_t flags; // session flags: see SESSION_*
284 struct {
285 uint8_t phase; // PPP phase
286 uint8_t lcp:4; // LCP state
287 uint8_t ipcp:4; // IPCP state
288 uint8_t ipv6cp:4; // IPV6CP state
289 uint8_t ccp:4; // CCP state
290 } ppp;
291 uint16_t mru; // maximum receive unit
292 in_addr_t ip; // IP of session set by RADIUS response (host byte order).
293 int ip_pool_index; // index to IP pool
294 uint32_t unique_id; // unique session id
295 uint32_t magic; // ppp magic number
296 uint32_t pin, pout; // packet counts
297 uint32_t cin, cout; // byte counts
298 uint32_t cin_wrap, cout_wrap; // byte counter wrap count (RADIUS accounting giagawords)
299 uint32_t cin_delta, cout_delta; // byte count changes (for dump_session())
300 uint16_t throttle_in; // upstream throttle rate (kbps)
301 uint16_t throttle_out; // downstream throttle rate
302 uint8_t filter_in; // input filter index (to ip_filters[N-1]; 0 if none)
303 uint8_t filter_out; // output filter index
304 uint16_t snoop_port; // Interception destination port
305 in_addr_t snoop_ip; // Interception destination IP
306 clockt opened; // when started
307 clockt die; // being closed, when to finally free
308 uint32_t session_timeout; // Maximum session time in seconds
309 uint32_t idle_timeout; // Maximum idle time in seconds
310 time_t last_packet; // Last packet from the user (used for idle timeouts)
311 time_t last_data; // Last data packet to/from the user (used for idle timeouts)
312 in_addr_t dns1, dns2; // DNS servers
313 routet route[MAXROUTE]; // static routes
314 uint16_t tbf_in; // filter bucket for throttling in from the user.
315 uint16_t tbf_out; // filter bucket for throttling out to the user.
316 int random_vector_length;
317 uint8_t random_vector[MAXTEL];
318 char user[MAXUSER]; // user (needed in session for radius stop messages)
319 char called[MAXTEL]; // called number
320 char calling[MAXTEL]; // calling number
321 uint32_t tx_connect_speed;
322 uint32_t rx_connect_speed;
323 clockt timeout; // Session timeout
324 uint32_t mrru; // Multilink Max-Receive-Reconstructed-Unit
325 epdist epdis; // Multilink Endpoint Discriminator
326 bundleidt bundle; // Multilink Bundle Identifier
327 uint8_t mssf; // Multilink Short Sequence Number Header Format
328 uint8_t walled_garden; // is this session gardened?
329 uint8_t classlen; // class (needed for radius accounting messages)
330 char class[MAXCLASS];
331 uint8_t ipv6prefixlen; // IPv6 route prefix length
332 struct in6_addr ipv6route; // Static IPv6 route
333 #ifdef LAC
334 sessionidt forwardtosession; // LNS id_session to forward
335 uint8_t src_hwaddr[ETH_ALEN]; // MAC addr source (for pppoe sessions 6 bytes)
336 uint32_t coutgrp_delta;
337 #else
338 uint8_t src_hwaddr[ETH_ALEN]; // MAC addr source (for pppoe sessions 6 bytes)
339 uint32_t coutgrp_delta;
340 char reserved[2]; // Space to expand structure without changing HB_VERSION
341 #endif
342 }
343 sessiont;
344
345 typedef struct
346 {
347 uint32_t tx_rate;
348 sessionidt sid;
349 uint8_t weight;
350 }
351 groupsessionidt;
352
353 typedef struct
354 {
355 uint32_t time_changed;
356 groupidt prev;
357 groupsessionidt sesslist[MAXSESSINGRP];
358 routet route[MAXROUTEINGRP]; // static routes
359 uint8_t nbroutesgrp;
360 uint8_t nbsession;
361 }
362 groupsesst;
363
364 union iphash
365 {
366 sessionidt sess;
367 union iphash *idx;
368 }; // Mapping from IP address to session structures.
369
370 typedef struct
371 {
372 int state; // current state (bundlestate enum)
373 uint32_t seq_num_t; // Sequence Number (transmission)
374 uint32_t timeout; // Session-Timeout for bundle
375 uint32_t max_seq; // Max value of sequence number field
376 uint8_t num_of_links; // Number of links joint to this bundle
377 uint32_t online_time; // The time this bundle is online
378 clockt last_check; // Last time the timeout is checked
379 uint32_t mrru; // Multilink Max-Receive-Reconstructed-Unit
380 uint8_t mssf; // Multilink Short Sequence Number Header Format
381 epdist epdis; // Multilink Endpoint Discriminator
382 char user[MAXUSER]; // Needed for matching member links
383 sessionidt current_ses; // Current session to use for sending (used in RR load-balancing)
384 sessionidt members[MAXBUNDLESES]; // Array for member links sessions
385 }
386 bundlet;
387
388 typedef struct
389 {
390 fragmentt fragment[MAXFRAGNUM];
391 uint8_t reassembled_frame[MAXETHER]; // The reassembled frame
392 uint16_t re_frame_len; // The reassembled frame length
393 uint16_t re_frame_begin_index, re_frame_end_index; // reassembled frame begin index, end index respectively
394 uint16_t start_index, end_index; // start and end sequence numbers available on the fragments array respectively
395 uint32_t M; // Minumum frame sequence number received over all bundle members
396 uint32_t start_seq; // Last received frame sequence number (bearing B bit)
397 }
398 fragmentationt;
399
400 #define AUTHPAP 1 // allow PAP
401 #define AUTHCHAP 2 // allow CHAP
402
403 typedef struct
404 {
405 // packet counters
406 uint32_t pin;
407 uint32_t pout;
408
409 // byte counters
410 uint32_t cin;
411 uint32_t cout;
412
413 // PPP restart timer/counters
414 struct {
415 time_t restart;
416 int conf_sent;
417 int nak_sent;
418 } lcp, ipcp, ipv6cp, ccp;
419
420 // identifier for Protocol-Reject, Code-Reject
421 uint8_t lcp_ident;
422
423 // authentication to use
424 int lcp_authtype;
425
426 // our MRU
427 uint16_t ppp_mru;
428
429 // our MRRU
430 uint16_t mp_mrru;
431
432 // our mssf
433 uint16_t mp_mssf;
434
435 // our Endpoint Discriminator
436 in_addr_t mp_epdis;
437
438 // DoS prevention
439 clockt last_packet_out;
440 uint32_t packets_out;
441 uint32_t packets_dropped;
442
443 // RADIUS session in use
444 uint16_t radius;
445
446 // interim RADIUS
447 time_t last_interim;
448
449 // last LCP Echo
450 time_t last_echo;
451
452 // Last Multilink frame sequence number received
453 uint32_t last_seq;
454
455 // jitter average of the session
456 uint32_t jitteravg;
457 // time in milliseconds of the last fragment.
458 uint64_t prev_time;
459 } sessionlocalt;
460
461 // session flags
462 #define SESSION_PFC (1 << 0) // use Protocol-Field-Compression
463 #define SESSION_ACFC (1 << 1) // use Address-and-Control-Field-Compression
464 #define SESSION_STARTED (1 << 2) // RADIUS Start record sent
465
466 // 328 bytes per tunnel
467 typedef struct
468 {
469 tunnelidt far; // far end tunnel ID
470 in_addr_t ip; // Ip for far end
471 uint16_t port; // port for far end
472 uint16_t window; // Rx window
473 uint16_t nr; // next receive
474 uint16_t ns; // next send
475 int state; // current state (tunnelstate enum)
476 clockt last; // when last control message sent (used for resend timeout)
477 clockt retry; // when to try resending pending control
478 clockt die; // being closed, when to finally free
479 clockt lastrec; // when the last control message was received
480 char hostname[128]; // tunnel hostname
481 char vendor[128]; // LAC vendor
482 uint8_t try; // number of retrys on a control message
483 uint16_t controlc; // outstaind messages in queue
484 controlt *controls; // oldest message
485 controlt *controle; // newest message
486 #ifdef LAC
487 uint16_t isremotelns; // != 0 if the tunnel is to remote LNS (== index on the conf remote lns)
488 char reserved[14]; // Space to expand structure without changing HB_VERSION
489 #else
490 char reserved[16]; // Space to expand structure without changing HB_VERSION
491 #endif
492 }
493 tunnelt;
494
495 // 164 bytes per radius session
496 typedef struct // outstanding RADIUS requests
497 {
498 sessionidt session; // which session this applies to
499 hasht auth; // request authenticator
500 clockt retry; // when to try next
501 char pass[129]; // password
502 uint8_t id; // ID for PPP response
503 uint8_t try; // which try we are on
504 uint8_t state; // state of radius requests
505 uint8_t chap; // set if CHAP used (is CHAP identifier)
506 uint8_t term_cause; // Stop record: Acct-Terminate-Cause
507 char const *term_msg; // terminate reason
508 }
509 radiust;
510
511 typedef struct
512 {
513 in_addr_t address; // Host byte order..
514 char assigned; // 1 if assigned, 0 if free
515 sessionidt session;
516 clockt last; // last used
517 char user[129]; // user (try to have ip addresses persistent)
518 }
519 ippoolt;
520
521 #ifdef RINGBUFFER
522 struct Tringbuffer
523 {
524 struct {
525 char level;
526 sessionidt session;
527 tunnelidt tunnel;
528 char message[MAX_LOG_LENGTH];
529 } buffer[RINGBUFFER_SIZE];
530 int head;
531 int tail;
532 };
533 #endif
534
535 /*
536 * Possible tunnel states
537 * TUNNELFREE -> TUNNELOPEN -> TUNNELDIE -> TUNNELFREE
538 */
539 enum
540 {
541 TUNNELFREE, // Not in use
542 TUNNELOPEN, // Active tunnel
543 TUNNELDIE, // Currently closing
544 TUNNELOPENING, // Busy opening
545 TUNNELUNDEF, // Undefined
546 };
547
548 enum
549 {
550 BUNDLEFREE, // Not in use
551 BUNDLEOPEN, // Active bundle
552 BUNDLEUNDEF, // Undefined
553 };
554
555 enum
556 {
557 NULLCLASS = 0, //End Point Discriminator classes
558 LOCALADDR,
559 IPADDR,
560 IEEEMACADDR,
561 PPPMAGIC,
562 PSNDN,
563 };
564
565 enum
566 {
567 RADIUSNULL, // Not in use
568 RADIUSCHAP, // sending CHAP down PPP
569 RADIUSAUTH, // sending auth to RADIUS server
570 RADIUSSTART, // sending start accounting to RADIUS server
571 RADIUSSTOP, // sending stop accounting to RADIUS server
572 RADIUSINTERIM, // sending interim accounting to RADIUS server
573 RADIUSWAIT, // waiting timeout before available, in case delayed replies
574 RADIUSJUSTAUTH, // sending auth to RADIUS server, just authentication, no ip assigning
575 };
576
577 struct Tstats
578 {
579 time_t start_time;
580 time_t last_reset;
581
582 uint32_t tun_rx_packets;
583 uint32_t tun_tx_packets;
584 uint32_t tun_rx_bytes;
585 uint32_t tun_tx_bytes;
586 uint32_t tun_rx_errors;
587 uint32_t tun_tx_errors;
588 uint32_t tun_rx_dropped;
589
590 uint32_t tunnel_rx_packets;
591 uint32_t tunnel_tx_packets;
592 uint32_t tunnel_rx_bytes;
593 uint32_t tunnel_tx_bytes;
594 uint32_t tunnel_rx_errors;
595 uint32_t tunnel_tx_errors;
596
597 uint32_t tunnel_retries;
598 uint32_t radius_retries;
599
600 uint32_t arp_sent;
601
602 uint32_t packets_snooped;
603
604 uint32_t tunnel_created;
605 uint32_t session_created;
606 uint32_t tunnel_timeout;
607 uint32_t session_timeout;
608 uint32_t radius_timeout;
609 uint32_t radius_overflow;
610 uint32_t tunnel_overflow;
611 uint32_t session_overflow;
612
613 uint32_t ip_allocated;
614 uint32_t ip_freed;
615
616 uint32_t c_forwarded;
617 uint32_t recv_forward;
618
619 uint32_t select_called;
620 uint32_t multi_read_used;
621 uint32_t multi_read_exceeded;
622
623 #ifdef STATISTICS
624 uint32_t call_processtun;
625 uint32_t call_processipout;
626 uint32_t call_processipv6out;
627 uint32_t call_processudp;
628 uint32_t call_sessionbyip;
629 uint32_t call_sessionbyipv6;
630 uint32_t call_sessionbyuser;
631 uint32_t call_sendarp;
632 uint32_t call_sendipcp;
633 uint32_t call_sendipv6cp;
634 uint32_t call_processipv6cp;
635 uint32_t call_tunnelsend;
636 uint32_t call_sessionkill;
637 uint32_t call_sessionshutdown;
638 uint32_t call_tunnelkill;
639 uint32_t call_tunnelshutdown;
640 uint32_t call_assign_ip_address;
641 uint32_t call_free_ip_address;
642 uint32_t call_dump_acct_info;
643 uint32_t call_sessionsetup;
644 uint32_t call_processpap;
645 uint32_t call_processchap;
646 uint32_t call_processlcp;
647 uint32_t call_processipcp;
648 uint32_t call_processipin;
649 uint32_t call_processipv6in;
650 uint32_t call_processccp;
651 uint32_t call_sendchap;
652 uint32_t call_processrad;
653 uint32_t call_radiussend;
654 uint32_t call_radiusretry;
655 uint32_t call_random_data;
656 #endif
657 };
658
659 #ifdef STATISTICS
660
661 #ifdef STAT_CALLS
662 #define CSTAT(x) STAT(call_ ## x)
663 #else
664 #define CSTAT(x)
665 #endif
666
667 #define STAT(x) (_statistics->x++)
668 #define INC_STAT(x,y) (_statistics->x += (y))
669 #define GET_STAT(x) (_statistics->x)
670 #define SET_STAT(x, y) (_statistics->x = (y))
671 #else
672 #define CSTAT(x)
673 #define STAT(x)
674 #define INC_STAT(x,y)
675 #define GET_STAT(x) 0
676 #define SET_STAT(x, y)
677 #endif
678
679 #ifndef IFNAMSIZ
680 # define IFNAMSIZ 16
681 #endif
682
683 typedef struct
684 {
685 int debug; // debugging level
686 time_t start_time; // time when l2tpns was started
687 char bandwidth[256]; // current bandwidth
688 char pid_file[256]; // file to write PID to on startup
689 int wrote_pid;
690 clockt current_time; // 1/10ths of a second since the process started.
691 // means that we can only run a given process
692 // for 13 years without re-starting!
693
694 char config_file[128];
695 int reload_config; // flag to re-read config (set by cli)
696 int multi_read_count; // amount of packets to read per fd in processing loop
697
698 char tundevicename[IFNAMSIZ]; // tun device name
699 char log_filename[128];
700
701 char l2tp_secret[64]; // L2TP shared secret
702 int l2tp_mtu; // MTU of interface used for L2TP
703
704 char random_device[256]; // random device path, defaults to RANDOMDEVICE
705
706 int ppp_restart_time; // timeout for PPP restart
707 int ppp_max_configure; // max lcp configure requests to send
708 int ppp_max_failure; // max lcp configure naks to send
709
710 char radiussecret[64];
711 int radius_accounting;
712 int radius_interim;
713 in_addr_t radiusserver[MAXRADSERVER]; // radius servers
714 uint16_t radiusport[MAXRADSERVER]; // radius base ports
715 uint8_t numradiusservers; // radius server count
716
717 uint16_t radius_dae_port; // port for radius DAE
718 uint16_t radius_bind_min; // port range for udp sockets used to send/recv radius packets
719 uint16_t radius_bind_max;
720
721 char radius_authtypes_s[32]; // list of valid authentication types (chap, pap) in order of preference
722 int radius_authtypes;
723 int radius_authprefer;
724
725 int allow_duplicate_users; // allow multiple logins with the same username
726 int kill_timedout_sessions; // kill authenticated sessions with "session_timeout == 0"
727
728 in_addr_t default_dns1, default_dns2;
729
730 unsigned long rl_rate; // default throttle rate
731 int num_tbfs; // number of throttle buckets
732
733 char accounting_dir[128];
734 in_addr_t bind_address;
735 in_addr_t peer_address;
736 int send_garp; // Set to true to garp for vip address on startup
737
738 int dump_speed;
739 char plugins[64][MAXPLUGINS];
740 char old_plugins[64][MAXPLUGINS];
741
742 int next_tbf; // Next HTB id available to use
743 int scheduler_fifo; // If the system has multiple CPUs, use FIFO scheduling
744 // policy for this process.
745 int lock_pages; // Lock pages into memory.
746 int icmp_rate; // Max number of ICMP unreachable per second to send
747 int max_packets; // DoS prevention: per session limit of packets/0.1s
748 char epdis_addr[20]; // MP Endpoint Discriminator address
749
750 in_addr_t cluster_address; // Multicast address of cluster.
751 // Send to this address to have everyone hear.
752 char cluster_interface[64]; // Which interface to listen for multicast on.
753 int cluster_iam_master; // Are we the cluster master???
754 int cluster_iam_uptodate; // Set if we've got a full set of state from the master.
755 in_addr_t cluster_master_address; // The network address of the cluster master.
756 // Zero if i am the cluster master.
757 int cluster_seq_number; // Sequence number of the next heartbeat we'll send out
758 // (or the seq number we're next expecting if we're a slave).
759 int cluster_undefined_sessions; // How many sessions we're yet to receive from the master.
760 int cluster_undefined_bundles; // How many bundles we're yet to receive from the master.
761 int cluster_undefined_tunnels; // How many tunnels we're yet to receive from the master.
762 int cluster_highest_sessionid;
763 int cluster_highest_bundleid;
764 int cluster_highest_tunnelid;
765 clockt cluster_last_hb; // Last time we saw a heartbeat from the master.
766 int cluster_last_hb_ver; // Heartbeat version last seen from master
767 int cluster_num_changes; // Number of changes queued.
768
769 int cluster_mcast_ttl; // TTL for multicast packets
770 int cluster_hb_interval; // How often to send a heartbeat.
771 int cluster_hb_timeout; // How many missed heartbeats trigger an election.
772 uint64_t cluster_table_version; // # state changes processed by cluster
773
774 struct in6_addr ipv6_prefix; // Our IPv6 network pool.
775
776
777 int cluster_master_min_adv; // Master advertises routes while the number of up to date
778 // slaves is less than this value.
779 in_addr_t cli_bind_address; // bind address for CLI
780 char hostname[MAXHOSTNAME]; // hostname (overridden by -h on command line)
781 // Guest change
782 char guest_user[MAXUSER]; // Guest account username
783
784 #ifdef BGP
785 #define BGP_NUM_PEERS 2
786 uint16_t as_number;
787 struct {
788 char name[64];
789 uint16_t as;
790 int keepalive;
791 int hold;
792 struct in_addr update_source;
793 } neighbour[BGP_NUM_PEERS];
794 in_addr_t nexthop_address;
795 struct in6_addr nexthop6_address;
796 #endif
797
798 int echo_timeout; // Time between last packet sent and LCP ECHO generation
799 int idle_echo_timeout; // Time between last packet seen and
800 // Drop sessions who have not responded within IDLE_ECHO_TIMEOUT seconds
801 in_addr_t iftun_address;
802 #ifdef LAC
803 int disable_lac_func;
804 int auth_tunnel_change_addr_src;
805 int highest_rlnsid;
806 uint16_t bind_portremotelns;
807 in_addr_t bind_address_remotelns;
808 #endif
809 char pppoe_if_to_bind[IFNAMSIZ]; // Name pppoe interface to bind
810 char pppoe_service_name[64]; // pppoe service name
811 char pppoe_ac_name[64];
812 uint8_t pppoe_hwaddr[ETH_ALEN]; // MAC addr of interface pppoe to bind
813 int disable_sending_hello; // Disable l2tp sending HELLO message for Apple compatibility.
814 int disable_no_spoof; // Disable no spoof (permit load balancing client --> internet)
815 int grp_txrate_average_time; // caculation txrate average time (default 10s)
816 } configt;
817
818 enum config_typet { INT, STRING, UNSIGNED_LONG, SHORT, BOOL, IPv4, IPv6 };
819 typedef struct
820 {
821 char *key;
822 int offset;
823 int size;
824 enum config_typet type;
825 } config_descriptt;
826
827 typedef struct
828 {
829 uint8_t op; // operation
830 #define FILTER_PORT_OP_NONE 0 // all ports match
831 #define FILTER_PORT_OP_EQ 1
832 #define FILTER_PORT_OP_NEQ 2
833 #define FILTER_PORT_OP_GT 3
834 #define FILTER_PORT_OP_LT 4
835 #define FILTER_PORT_OP_RANGE 5
836 uint16_t port; // port (host byte order)
837 uint16_t port2; // range
838 } ip_filter_portt;
839
840 typedef struct
841 {
842 int action; // permit/deny
843 #define FILTER_ACTION_DENY 1
844 #define FILTER_ACTION_PERMIT 2
845 uint8_t proto; // protocol: IPPROTO_* (netinet/in.h)
846 in_addr_t src_ip; // source ip (network byte order)
847 in_addr_t src_wild;
848 ip_filter_portt src_ports;
849 in_addr_t dst_ip; // dest ip
850 in_addr_t dst_wild;
851 ip_filter_portt dst_ports;
852 uint8_t frag; // apply to non-initial fragments
853 uint8_t tcp_flag_op; // match type: any, all, established
854 #define FILTER_FLAG_OP_ANY 1
855 #define FILTER_FLAG_OP_ALL 2
856 #define FILTER_FLAG_OP_EST 3
857 uint8_t tcp_sflags; // flags set
858 uint8_t tcp_cflags; // flags clear
859 uint32_t counter; // match count
860 } ip_filter_rulet;
861
862 #define TCP_FLAG_FIN 0x01
863 #define TCP_FLAG_SYN 0x02
864 #define TCP_FLAG_RST 0x04
865 #define TCP_FLAG_PSH 0x08
866 #define TCP_FLAG_ACK 0x10
867 #define TCP_FLAG_URG 0x20
868
869 #define MAXFILTER 32
870 #define MAXFILTER_RULES 32
871 typedef struct
872 {
873 char name[32]; // ACL name
874 int extended; // type: 0 = standard, 1 = extended
875 ip_filter_rulet rules[MAXFILTER_RULES];
876 int used; // session ref count
877 } ip_filtert;
878
879 // CDN result/error codes
880 #define CDN_NONE 0, 0
881 #define CDN_TRY_ANOTHER 2, 7
882 #define CDN_ADMIN_DISC 3, 0
883 #define CDN_UNAVAILABLE 4, 0
884
885 // RADIUS Acct-Terminate-Cause values
886 #define TERM_USER_REQUEST 1
887 #define TERM_LOST_CARRIER 2
888 #define TERM_LOST_SERVICE 3
889 #define TERM_IDLE_TIMEOUT 4
890 #define TERM_SESSION_TIMEOUT 5
891 #define TERM_ADMIN_RESET 6
892 #define TERM_ADMIN_REBOOT 7
893 #define TERM_PORT_ERROR 8
894 #define TERM_NAS_ERROR 9
895 #define TERM_NAS_REQUEST 10
896 #define TERM_NAS_REBOOT 11
897 #define TERM_PORT_UNNEEDED 12
898 #define TERM_PORT_PREEMPTED 13
899 #define TERM_PORT_SUSPENDED 14
900 #define TERM_SERVICE_UNAVAILABLE 15
901 #define TERM_CALLBACK 16
902 #define TERM_USER_ERROR 17
903 #define TERM_HOST_REQUEST 18
904 #define TERM_SUPPLICANT_RESTART 19
905 #define TERM_REAUTHENTICATION_FAILURE 20
906 #define TERM_PORT_REINIT 21
907 #define TERM_PORT_DISABLED 22
908
909 // on slaves, alow BGP to withdraw cleanly before exiting
910 #define QUIT_DELAY 5
911
912 // quit actions (master)
913 #define QUIT_FAILOVER 1 // SIGTERM: exit when all control messages have been acked (for cluster failover)
914 #define QUIT_SHUTDOWN 2 // SIGQUIT: shutdown sessions/tunnels, reject new connections
915
916 // arp.c
917 void sendarp(int ifr_idx, const unsigned char* mac, in_addr_t ip);
918
919
920 // ppp.c
921 void processpap(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
922 void processchap(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
923 void lcp_open(sessionidt s, tunnelidt t);
924 void lcp_restart(sessionidt s);
925 void processlcp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
926 void processipcp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
927 void processipv6cp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
928 void processipin(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
929 void processmpin(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
930 void processmpframe(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l, uint8_t extra);
931 void processipv6in(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
932 void processccp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l);
933 void sendchap(sessionidt s, tunnelidt t);
934 uint8_t *makeppp(uint8_t *b, int size, uint8_t *p, int l, sessionidt s, tunnelidt t, uint16_t mtype, uint8_t prio, bundleidt bid, uint8_t mp_bits);
935 uint8_t *opt_makeppp(uint8_t *p, int l, sessionidt s, tunnelidt t, uint16_t mtype, uint8_t prio, bundleidt bid, uint8_t mp_bits);
936 void sendlcp(sessionidt s, tunnelidt t);
937 void send_ipin(sessionidt s, uint8_t *buf, int len);
938 void sendccp(sessionidt s, tunnelidt t);
939 void protoreject(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l, uint16_t proto);
940 int join_bundle(sessionidt s);
941
942
943 // radius.c
944 void initrad(void);
945 void radiussend(uint16_t r, uint8_t state);
946 void processrad(uint8_t *buf, int len, char socket_index);
947 void radiusretry(uint16_t r);
948 uint16_t radiusnew(sessionidt s);
949 void radiusclear(uint16_t r, sessionidt s);
950 void processdae(uint8_t *buf, int len, struct sockaddr_in *addr, int alen, struct in_addr *local);
951 #ifdef LAC
952 int rad_tunnel_pwdecode(uint8_t *pl2tpsecret, size_t *pl2tpsecretlen, const char *radiussecret, const uint8_t * auth);
953 #endif
954
955 // l2tpns.c
956 clockt backoff(uint8_t try);
957 void send_ipv6_ra(sessionidt s, tunnelidt t, struct in6_addr *ip);
958 void route6set(sessionidt s, struct in6_addr ip, int prefixlen, int add);
959 sessionidt sessionbyip(in_addr_t ip);
960 sessionidt sessionbyipv6(struct in6_addr ip);
961 sessionidt sessionbyuser(char *username);
962 void increment_counter(uint32_t *counter, uint32_t *wrap, uint32_t delta);
963 void random_data(uint8_t *buf, int len);
964 void sessionkill(sessionidt s, char *reason);
965 void sessionshutdown(sessionidt s, char const *reason, int cdn_result, int cdn_error, int term_cause);
966 void filter_session(sessionidt s, int filter_in, int filter_out);
967 void send_garp(in_addr_t ip);
968 void tunnelsend(uint8_t *buf, uint16_t l, tunnelidt t);
969 int tun_write(uint8_t *data, int size);
970 void adjust_tcp_mss(sessionidt s, tunnelidt t, uint8_t *buf, int len, uint8_t *tcp);
971 void sendipcp(sessionidt s, tunnelidt t);
972 void sendipv6cp(sessionidt s, tunnelidt t);
973 void processudp(uint8_t *buf, int len, struct sockaddr_in *addr);
974 void processipout(uint8_t *buf, int len);
975 void snoop_send_packet(uint8_t *packet, uint16_t size, in_addr_t destination, uint16_t port);
976 int find_filter(char const *name, size_t len);
977 int ip_filter(uint8_t *buf, int len, uint8_t filter);
978 int cmd_show_ipcache(struct cli_def *cli, char *command, char **argv, int argc);
979 int cmd_show_hist_idle(struct cli_def *cli, char *command, char **argv, int argc);
980 int cmd_show_hist_open(struct cli_def *cli, char *command, char **argv, int argc);
981 void netlink_addattr(struct nlmsghdr *nh, int type, const void *data, int alen);
982 ssize_t netlink_send(struct nlmsghdr *nh);
983 void cache_ipmap(in_addr_t ip, sessionidt s);
984
985 #ifdef LAC
986 tunnelidt lac_new_tunnel();
987 void lac_tunnelclear(tunnelidt t);
988 void lac_send_SCCRQ(tunnelidt t, uint8_t * auth, unsigned int auth_len);
989 void lac_send_ICRQ(tunnelidt t, sessionidt s);
990 void lac_tunnelshutdown(tunnelidt t, char *reason, int result, int error, char *msg);
991 #endif
992
993 // grpsess.c
994 sessionidt grp_getnextsession(groupidt g, in_addr_t ip);
995 void grp_initdata(void);
996 void grp_processvendorspecific(sessionidt s, uint8_t *pvs);
997 groupidt grp_groupbysession(sessionidt s);
998 groupidt grp_groupbyip(in_addr_t ip);
999 void grp_setgrouproute(groupidt g, int add);
1000 void grp_time_changed(void);
1001 void grp_removesession(groupidt g, sessionidt s);
1002
1003 #undef LOG
1004 #undef LOG_HEX
1005 #define LOG(D, s, t, f, ...) ({ if (D <= config->debug) _log(D, s, t, f, ## __VA_ARGS__); })
1006 #define LOG_HEX(D, t, d, s) ({ if (D <= config->debug) _log_hex(D, t, d, s); })
1007
1008 void _log(int level, sessionidt s, tunnelidt t, const char *format, ...) __attribute__((format (printf, 4, 5)));
1009 void _log_hex(int level, const char *title, const uint8_t *data, int maxsize);
1010
1011
1012 int sessionsetup(sessionidt s, tunnelidt t);
1013 int run_plugins(int plugin_type, void *data);
1014 void rebuild_address_pool(void);
1015 void throttle_session(sessionidt s, int rate_in, int rate_out);
1016 int load_session(sessionidt, sessiont *);
1017 void become_master(void); // We're the master; kick off any required master initializations.
1018
1019
1020 // cli.c
1021 void init_cli();
1022 void cli_init_complete(char *hostname);
1023 void cli_do_file(FILE *fh);
1024 void cli_do(int sockfd);
1025 int cli_arg_help(struct cli_def *cli, int cr_ok, char *entry, ...);
1026
1027
1028 // icmp.c
1029 void host_unreachable(in_addr_t destination, uint16_t id, in_addr_t source, uint8_t *packet, int packet_len);
1030
1031
1032 extern tunnelt *tunnel;
1033 extern bundlet *bundle;
1034 extern sessiont *session;
1035 extern sessionlocalt *sess_local;
1036 extern ippoolt *ip_address_pool;
1037 extern groupsesst *grpsession;
1038 #define sessionfree (session[0].next)
1039
1040
1041 extern configt *config;
1042 extern time_t basetime; // Time when this process started.
1043 extern time_t time_now; // Seconds since EPOCH.
1044 extern char main_quit;
1045 extern uint32_t last_id;
1046 extern struct Tstats *_statistics;
1047 extern in_addr_t my_address;
1048 extern int clifd;
1049 extern int epollfd;
1050 extern int tunidx; // ifr_ifindex of tun device
1051 extern union iphash ip_hash[256];
1052
1053 struct event_data {
1054 enum {
1055 FD_TYPE_CLI,
1056 FD_TYPE_CLUSTER,
1057 FD_TYPE_TUN,
1058 FD_TYPE_UDP,
1059 FD_TYPE_CONTROL,
1060 FD_TYPE_DAE,
1061 FD_TYPE_RADIUS,
1062 FD_TYPE_BGP,
1063 FD_TYPE_NETLINK,
1064 #ifdef LAC
1065 FD_TYPE_UDPLAC,
1066 #endif
1067 FD_TYPE_PPPOEDISC,
1068 FD_TYPE_PPPOESESS
1069 } type;
1070 int index; // for RADIUS, BGP
1071 };
1072
1073 #define TIME (config->current_time)
1074
1075 extern uint16_t MRU;
1076 extern uint16_t MSS;
1077
1078 // macros for handling help in cli commands
1079 #define CLI_HELP_REQUESTED (argc > 0 && argv[argc-1][strlen(argv[argc-1])-1] == '?')
1080 #define CLI_HELP_NO_ARGS (argc > 1 || argv[0][1]) ? CLI_OK : cli_arg_help(cli, 1, NULL)
1081
1082 #endif /* __L2TPNS_H__ */