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