2 // $Id: l2tpns.h,v 1.121 2009-12-08 14:49:28 bodea Exp $
7 #include <netinet/in.h>
11 #include <netinet/in.h>
12 #include <sys/socket.h>
13 #include <arpa/inet.h>
14 #include <sys/types.h>
17 #define VERSION "2.2.1"
20 #define MAXTUNNEL 500 // could be up to 65535
21 #define MAXBUNDLE 300 // could be up to 65535
22 #define MAXBUNDLESES 12 // Maximum number of member links in bundle
23 #define MAXADDRESS 20 // Maximum length for the Endpoint Discrminiator address
24 #define MAXSESSION 60000 // could be up to 65535
25 #define MAXTBFS 6000 // Maximum token bucket filters. Might need up to 2 * session.
27 #define RADIUS_SHIFT 6
28 #define RADIUS_FDS (1 << RADIUS_SHIFT)
29 #define RADIUS_MASK ((1 << RADIUS_SHIFT) - 1)
30 #define MAXRADIUS (1 << (8 + RADIUS_SHIFT))
32 #define T_UNDEF (0xffff) // A tunnel ID that won't ever be used. Mark session as undefined.
33 #define T_FREE (0) // A tunnel ID that won't ever be used. Mark session as free.
35 #define MAXCONTROL 1000 // max length control message we ever send...
36 #define MINMTU 576 // minimum recommended MTU (rfc1063)
37 #define MAXMTU 2600 // arbitrary maximum MTU
38 #define PPPoE_MRU 1492 // maximum PPPoE MRU (rfc2516: 1500 less PPPoE header (6) and PPP protocol ID (2))
39 #define MAXETHER (MAXMTU+18) // max packet we try sending to tun
40 #define MAXTEL 96 // telephone number
41 #define MAXHOSTNAME 256 // hostname
42 #define MAXUSER 128 // username
43 #define MAXPASS 128 // password
44 #define MAXCLASS 128 // radius class attribute size
45 #define MAXPLUGINS 20 // maximum number of plugins to load
46 #define MAXRADSERVER 10 // max radius servers
47 #define MAXROUTE 10 // max static routes per session
48 #define MAXIPPOOL 131072 // max number of ip addresses in pool
49 #define RINGBUFFER_SIZE 10000 // Number of ringbuffer entries to allocate
50 #define MAX_LOG_LENGTH 512 // Maximum size of log message
51 #define ECHO_TIMEOUT 10 // Time between last packet sent and LCP ECHO generation
52 #define IDLE_TIMEOUT 240 // Time between last packet seen and session shutdown
53 #define BUSY_WAIT_TIME 3000 // 5 minutes in 1/10th seconds to wait for radius to cleanup on shutdown
55 #define MP_BEGIN 0x80 // This value is used when (b)egin bit is set in MP header
56 #define MP_END 0x40 // This value is used when (e)nd bit is set in MP header
57 #define MP_BOTH_BITS 0xC0 // This value is used when both bits (begin and end) are set in MP header
59 #define MINFRAGLEN 64 // Minumum fragment length
60 #define MAXFRAGLEN 750 // Maximum length for Multilink fragment (MTU / 2 sessions)
61 #define MAXFRAGNUM 128 // Maximum number of Multilink fragment in a bundle (must be in the form of 2^X)
62 // it's not expected to have a space for more than 10 unassembled packets = 10 * MAXBUNDLESES
63 #define MAXFRAGNUM_MASK 127 // Must be equal to MAXFRAGNUM-1
67 #define ETCDIR "/etc/l2tpns"
71 #define LIBDIR "/usr/lib/l2tpns"
75 #define PLUGINDIR LIBDIR // Plugins
79 #define PLUGINCONF ETCDIR // Plugin config dir
83 #define FLASHDIR ETCDIR
86 #define TUNDEVICE "/dev/net/tun"
87 #define RANDOMDEVICE "/dev/urandom" // default, not as secure as /dev/random but non-blocking
88 #define CONFIGFILE FLASHDIR "/startup-config" // Configuration file
89 #define CLIUSERS FLASHDIR "/users" // CLI Users file
90 #define IPPOOLFILE FLASHDIR "/ip_pool" // Address pool configuration
91 #define ACCT_TIME 3000 // 5 minute accounting interval
92 #define ACCT_SHUT_TIME 600 // 1 minute for counters of shutdown sessions
93 #define L2TPPORT 1701 // L2TP port
94 #define RADPORT 1645 // old radius port...
95 #define DAEPORT 3799 // DAE port
96 #define PKTARP 0x0806 // ARP packet type
97 #define PKTIP 0x0800 // IPv4 packet type
98 #define PKTIPV6 0x86DD // IPv6 packet type
100 #define PPPCHAP 0xC223
101 #define PPPLCP 0xC021
102 #define PPPIPCP 0x8021
103 #define PPPIPV6CP 0x8057
104 #define PPPCCP 0x80FD
106 #define PPPIPV6 0x0057
108 #define MIN_IP_SIZE 0x19
131 AccessChallenge
= 11,
132 DisconnectRequest
= 40,
163 // reset state machine counters
164 #define initialise_restart_count(_s, _fsm) \
165 sess_local[_s]._fsm.conf_sent = \
166 sess_local[_s]._fsm.nak_sent = 0
169 #define zero_restart_count(_s, _fsm) ({ \
170 sess_local[_s]._fsm.conf_sent = \
171 config->ppp_max_configure; \
172 sess_local[_s]._fsm.restart = \
173 time_now + config->ppp_restart_time; \
176 // increment ConfReq counter and reset timer
177 #define restart_timer(_s, _fsm) ({ \
178 sess_local[_s]._fsm.conf_sent++; \
179 sess_local[_s]._fsm.restart = \
180 time_now + config->ppp_restart_time; \
183 // stop timer on change to state where timer does not run
184 #define change_state(_s, _fsm, _new) ({ \
185 if (_new != session[_s].ppp._fsm) \
194 sess_local[_s]._fsm.restart = 0; \
195 initialise_restart_count(_s, _fsm); \
197 session[_s].ppp._fsm = _new; \
198 cluster_send_session(_s); \
203 typedef uint16_t sessionidt
;
204 typedef uint16_t bundleidt
;
205 typedef uint16_t tunnelidt
;
206 typedef uint32_t clockt
;
207 typedef uint8_t hasht
[16];
210 struct cli_session_actions
{
220 #define CLI_SESS_KILL 0x01
221 #define CLI_SESS_SNOOP 0x02
222 #define CLI_SESS_NOSNOOP 0x04
223 #define CLI_SESS_THROTTLE 0x08
224 #define CLI_SESS_NOTHROTTLE 0x10
225 #define CLI_SESS_FILTER 0x20
226 #define CLI_SESS_NOFILTER 0x40
228 struct cli_tunnel_actions
{
232 #define CLI_TUN_KILL 0x01
235 typedef struct // route
242 typedef struct controls
// control message
244 struct controls
*next
; // next in queue
245 uint16_t length
; // length
247 uint8_t buf
[MAXCONTROL
];
248 uint16_t buf16
[MAXCONTROL
/2];
249 } __attribute__ ((__transparent_union__
));
254 uint8_t length
; // Endpoint Discriminator length
255 uint8_t addr_class
; // Endpoint Discriminator class
256 uint8_t address
[MAXADDRESS
]; // Endpoint Discriminator address
260 sessionidt sid
; // Fragment originating session
261 uint8_t flags
; // MP frame flags
262 uint32_t seq
; // fragment seq num
263 uint16_t length
; // Fragment length
264 uint8_t data
[MAXFRAGLEN
]; // Fragment data
269 sessionidt next
; // next session in linked list
270 sessionidt far
; // far end session ID
271 tunnelidt tunnel
; // near end tunnel ID
272 uint8_t flags
; // session flags: see SESSION_*
274 uint8_t phase
; // PPP phase
275 uint8_t lcp
:4; // LCP state
276 uint8_t ipcp
:4; // IPCP state
277 uint8_t ipv6cp
:4; // IPV6CP state
278 uint8_t ccp
:4; // CCP state
280 uint16_t mru
; // maximum receive unit
281 in_addr_t ip
; // IP of session set by RADIUS response (host byte order).
282 int ip_pool_index
; // index to IP pool
283 uint32_t unique_id
; // unique session id
284 uint32_t magic
; // ppp magic number
285 uint32_t pin
, pout
; // packet counts
286 uint32_t cin
, cout
; // byte counts
287 uint32_t cin_wrap
, cout_wrap
; // byte counter wrap count (RADIUS accounting giagawords)
288 uint32_t cin_delta
, cout_delta
; // byte count changes (for dump_session())
289 uint16_t throttle_in
; // upstream throttle rate (kbps)
290 uint16_t throttle_out
; // downstream throttle rate
291 uint8_t filter_in
; // input filter index (to ip_filters[N-1]; 0 if none)
292 uint8_t filter_out
; // output filter index
293 uint16_t snoop_port
; // Interception destination port
294 in_addr_t snoop_ip
; // Interception destination IP
295 clockt opened
; // when started
296 clockt die
; // being closed, when to finally free
297 uint32_t session_timeout
; // Maximum session time in seconds
298 uint32_t idle_timeout
; // Maximum idle time in seconds
299 time_t last_packet
; // Last packet from the user (used for idle timeouts)
300 time_t last_data
; // Last data packet to/from the user (used for idle timeouts)
301 in_addr_t dns1
, dns2
; // DNS servers
302 routet route
[MAXROUTE
]; // static routes
303 uint16_t tbf_in
; // filter bucket for throttling in from the user.
304 uint16_t tbf_out
; // filter bucket for throttling out to the user.
305 int random_vector_length
;
306 uint8_t random_vector
[MAXTEL
];
307 char user
[MAXUSER
]; // user (needed in session for radius stop messages)
308 char called
[MAXTEL
]; // called number
309 char calling
[MAXTEL
]; // calling number
310 uint32_t tx_connect_speed
;
311 uint32_t rx_connect_speed
;
312 clockt timeout
; // Session timeout
313 uint32_t mrru
; // Multilink Max-Receive-Reconstructed-Unit
314 epdist epdis
; // Multilink Endpoint Discriminator
315 bundleidt bundle
; // Multilink Bundle Identifier
316 uint8_t mssf
; // Multilink Short Sequence Number Header Format
317 uint8_t walled_garden
; // is this session gardened?
318 uint8_t classlen
; // class (needed for radius accounting messages)
319 char class[MAXCLASS
];
320 uint8_t ipv6prefixlen
; // IPv6 route prefix length
321 struct in6_addr ipv6route
; // Static IPv6 route
322 char reserved
[12]; // Space to expand structure without changing HB_VERSION
328 int state
; // current state (bundlestate enum)
329 uint32_t seq_num_t
; // Sequence Number (transmission)
330 uint32_t timeout
; // Session-Timeout for bundle
331 uint32_t max_seq
; // Max value of sequence number field
332 uint8_t num_of_links
; // Number of links joint to this bundle
333 uint32_t online_time
; // The time this bundle is online
334 clockt last_check
; // Last time the timeout is checked
335 uint32_t mrru
; // Multilink Max-Receive-Reconstructed-Unit
336 uint8_t mssf
; // Multilink Short Sequence Number Header Format
337 epdist epdis
; // Multilink Endpoint Discriminator
338 char user
[MAXUSER
]; // Needed for matching member links
339 sessionidt current_ses
; // Current session to use for sending (used in RR load-balancing)
340 sessionidt members
[MAXBUNDLESES
]; // Array for member links sessions
346 fragmentt fragment
[MAXFRAGNUM
];
347 uint8_t reassembled_frame
[MAXETHER
]; // The reassembled frame
348 uint16_t re_frame_len
; // The reassembled frame length
349 uint16_t re_frame_begin_index
, re_frame_end_index
; // reassembled frame begin index, end index respectively
350 uint16_t start_index
, end_index
; // start and end sequence numbers available on the fragments array respectively
351 uint32_t M
; // Minumum frame sequence number received over all bundle members
352 uint32_t start_seq
; // Last received frame sequence number (bearing B bit)
356 #define AUTHPAP 1 // allow PAP
357 #define AUTHCHAP 2 // allow CHAP
369 // PPP restart timer/counters
374 } lcp
, ipcp
, ipv6cp
, ccp
;
376 // identifier for Protocol-Reject, Code-Reject
379 // authentication to use
391 // our Endpoint Discriminator
395 clockt last_packet_out
;
396 uint32_t packets_out
;
397 uint32_t packets_dropped
;
399 // RADIUS session in use
408 // Last Multilink frame sequence number received
413 #define SESSION_PFC (1 << 0) // use Protocol-Field-Compression
414 #define SESSION_ACFC (1 << 1) // use Address-and-Control-Field-Compression
415 #define SESSION_STARTED (1 << 2) // RADIUS Start record sent
417 // 168 bytes per tunnel
420 tunnelidt far
; // far end tunnel ID
421 in_addr_t ip
; // Ip for far end
422 uint16_t port
; // port for far end
423 uint16_t window
; // Rx window
424 uint16_t nr
; // next receive
425 uint16_t ns
; // next send
426 int state
; // current state (tunnelstate enum)
427 clockt last
; // when last control message sent (used for resend timeout)
428 clockt retry
; // when to try resending pending control
429 clockt die
; // being closed, when to finally free
430 clockt lastrec
; // when the last control message was received
431 char hostname
[128]; // tunnel hostname
432 char vendor
[128]; // LAC vendor
433 uint8_t try; // number of retrys on a control message
434 uint16_t controlc
; // outstaind messages in queue
435 controlt
*controls
; // oldest message
436 controlt
*controle
; // newest message
440 // 164 bytes per radius session
441 typedef struct // outstanding RADIUS requests
443 sessionidt session
; // which session this applies to
444 hasht auth
; // request authenticator
445 clockt retry
; // when to try next
446 char pass
[129]; // password
447 uint8_t id
; // ID for PPP response
448 uint8_t try; // which try we are on
449 uint8_t state
; // state of radius requests
450 uint8_t chap
; // set if CHAP used (is CHAP identifier)
451 uint8_t term_cause
; // Stop record: Acct-Terminate-Cause
452 char const *term_msg
; // terminate reason
458 in_addr_t address
; // Host byte order..
459 char assigned
; // 1 if assigned, 0 if free
461 clockt last
; // last used
462 char user
[129]; // user (try to have ip addresses persistent)
473 char message
[MAX_LOG_LENGTH
];
474 } buffer
[RINGBUFFER_SIZE
];
481 * Possible tunnel states
482 * TUNNELFREE -> TUNNELOPEN -> TUNNELDIE -> TUNNELFREE
486 TUNNELFREE
, // Not in use
487 TUNNELOPEN
, // Active tunnel
488 TUNNELDIE
, // Currently closing
489 TUNNELOPENING
, // Busy opening
490 TUNNELUNDEF
, // Undefined
495 BUNDLEFREE
, // Not in use
496 BUNDLEOPEN
, // Active bundle
497 BUNDLEUNDEF
, // Undefined
502 NULLCLASS
= 0, //End Point Discriminator classes
512 RADIUSNULL
, // Not in use
513 RADIUSCHAP
, // sending CHAP down PPP
514 RADIUSAUTH
, // sending auth to RADIUS server
515 RADIUSSTART
, // sending start accounting to RADIUS server
516 RADIUSSTOP
, // sending stop accounting to RADIUS server
517 RADIUSINTERIM
, // sending interim accounting to RADIUS server
518 RADIUSWAIT
, // waiting timeout before available, in case delayed replies
519 RADIUSJUSTAUTH
, // sending auth to RADIUS server, just authentication, no ip assigning
527 uint32_t tun_rx_packets
;
528 uint32_t tun_tx_packets
;
529 uint32_t tun_rx_bytes
;
530 uint32_t tun_tx_bytes
;
531 uint32_t tun_rx_errors
;
532 uint32_t tun_tx_errors
;
533 uint32_t tun_rx_dropped
;
535 uint32_t tunnel_rx_packets
;
536 uint32_t tunnel_tx_packets
;
537 uint32_t tunnel_rx_bytes
;
538 uint32_t tunnel_tx_bytes
;
539 uint32_t tunnel_rx_errors
;
540 uint32_t tunnel_tx_errors
;
542 uint32_t tunnel_retries
;
543 uint32_t radius_retries
;
547 uint32_t packets_snooped
;
549 uint32_t tunnel_created
;
550 uint32_t session_created
;
551 uint32_t tunnel_timeout
;
552 uint32_t session_timeout
;
553 uint32_t radius_timeout
;
554 uint32_t radius_overflow
;
555 uint32_t tunnel_overflow
;
556 uint32_t session_overflow
;
558 uint32_t ip_allocated
;
561 uint32_t c_forwarded
;
562 uint32_t recv_forward
;
564 uint32_t select_called
;
565 uint32_t multi_read_used
;
566 uint32_t multi_read_exceeded
;
569 uint32_t call_processtun
;
570 uint32_t call_processipout
;
571 uint32_t call_processipv6out
;
572 uint32_t call_processudp
;
573 uint32_t call_sessionbyip
;
574 uint32_t call_sessionbyipv6
;
575 uint32_t call_sessionbyuser
;
576 uint32_t call_sendarp
;
577 uint32_t call_sendipcp
;
578 uint32_t call_sendipv6cp
;
579 uint32_t call_processipv6cp
;
580 uint32_t call_tunnelsend
;
581 uint32_t call_sessionkill
;
582 uint32_t call_sessionshutdown
;
583 uint32_t call_tunnelkill
;
584 uint32_t call_tunnelshutdown
;
585 uint32_t call_assign_ip_address
;
586 uint32_t call_free_ip_address
;
587 uint32_t call_dump_acct_info
;
588 uint32_t call_sessionsetup
;
589 uint32_t call_processpap
;
590 uint32_t call_processchap
;
591 uint32_t call_processlcp
;
592 uint32_t call_processipcp
;
593 uint32_t call_processipin
;
594 uint32_t call_processipv6in
;
595 uint32_t call_processccp
;
596 uint32_t call_sendchap
;
597 uint32_t call_processrad
;
598 uint32_t call_radiussend
;
599 uint32_t call_radiusretry
;
600 uint32_t call_random_data
;
607 #define CSTAT(x) STAT(call_ ## x)
612 #define STAT(x) (_statistics->x++)
613 #define INC_STAT(x,y) (_statistics->x += (y))
614 #define GET_STAT(x) (_statistics->x)
615 #define SET_STAT(x, y) (_statistics->x = (y))
619 #define INC_STAT(x,y)
620 #define GET_STAT(x) 0
621 #define SET_STAT(x, y)
630 int debug
; // debugging level
631 time_t start_time
; // time when l2tpns was started
632 char bandwidth
[256]; // current bandwidth
633 char pid_file
[256]; // file to write PID to on startup
635 clockt current_time
; // 1/10ths of a second since the process started.
636 // means that we can only run a given process
637 // for 13 years without re-starting!
639 char config_file
[128];
640 int reload_config
; // flag to re-read config (set by cli)
641 int multi_read_count
; // amount of packets to read per fd in processing loop
643 char tundevice
[IFNAMSIZ
]; // tun device name
644 char log_filename
[128];
646 char l2tp_secret
[64]; // L2TP shared secret
647 int l2tp_mtu
; // MTU of interface used for L2TP
649 char random_device
[256]; // random device path, defaults to RANDOMDEVICE
651 int ppp_restart_time
; // timeout for PPP restart
652 int ppp_max_configure
; // max lcp configure requests to send
653 int ppp_max_failure
; // max lcp configure naks to send
655 char radiussecret
[64];
656 int radius_accounting
;
658 in_addr_t radiusserver
[MAXRADSERVER
]; // radius servers
659 uint16_t radiusport
[MAXRADSERVER
]; // radius base ports
660 uint8_t numradiusservers
; // radius server count
662 uint16_t radius_dae_port
; // port for radius DAE
663 uint16_t radius_bind_min
; // port range for udp sockets used to send/recv radius packets
664 uint16_t radius_bind_max
;
666 char radius_authtypes_s
[32]; // list of valid authentication types (chap, pap) in order of preference
667 int radius_authtypes
;
668 int radius_authprefer
;
670 int allow_duplicate_users
; // allow multiple logins with the same username
671 int kill_timedout_sessions
; // kill authenticated sessions with "session_timeout == 0"
673 in_addr_t default_dns1
, default_dns2
;
675 unsigned long rl_rate
; // default throttle rate
676 int num_tbfs
; // number of throttle buckets
678 char accounting_dir
[128];
679 in_addr_t bind_address
;
680 in_addr_t peer_address
;
681 int send_garp
; // Set to true to garp for vip address on startup
684 char plugins
[64][MAXPLUGINS
];
685 char old_plugins
[64][MAXPLUGINS
];
687 int next_tbf
; // Next HTB id available to use
688 int scheduler_fifo
; // If the system has multiple CPUs, use FIFO scheduling
689 // policy for this process.
690 int lock_pages
; // Lock pages into memory.
691 int icmp_rate
; // Max number of ICMP unreachable per second to send
692 int max_packets
; // DoS prevention: per session limit of packets/0.1s
693 char epdis_addr
[20]; // MP Endpoint Discriminator address
695 in_addr_t cluster_address
; // Multicast address of cluster.
696 // Send to this address to have everyone hear.
697 char cluster_interface
[64]; // Which interface to listen for multicast on.
698 int cluster_iam_master
; // Are we the cluster master???
699 int cluster_iam_uptodate
; // Set if we've got a full set of state from the master.
700 in_addr_t cluster_master_address
; // The network address of the cluster master.
701 // Zero if i am the cluster master.
702 int cluster_seq_number
; // Sequence number of the next heartbeat we'll send out
703 // (or the seq number we're next expecting if we're a slave).
704 int cluster_undefined_sessions
; // How many sessions we're yet to receive from the master.
705 int cluster_undefined_bundles
; // How many bundles we're yet to receive from the master.
706 int cluster_undefined_tunnels
; // How many tunnels we're yet to receive from the master.
707 int cluster_highest_sessionid
;
708 int cluster_highest_bundleid
;
709 int cluster_highest_tunnelid
;
710 clockt cluster_last_hb
; // Last time we saw a heartbeat from the master.
711 int cluster_last_hb_ver
; // Heartbeat version last seen from master
712 int cluster_num_changes
; // Number of changes queued.
714 int cluster_mcast_ttl
; // TTL for multicast packets
715 int cluster_hb_interval
; // How often to send a heartbeat.
716 int cluster_hb_timeout
; // How many missed heartbeats trigger an election.
717 uint64_t cluster_table_version
; // # state changes processed by cluster
719 struct in6_addr ipv6_prefix
; // Our IPv6 network pool.
722 int cluster_master_min_adv
; // Master advertises routes while the number of up to date
723 // slaves is less than this value.
724 in_addr_t cli_bind_address
; // bind address for CLI
725 char hostname
[MAXHOSTNAME
]; // hostname (overridden by -h on command line)
727 char guest_user
[MAXUSER
]; // Guest account username
730 #define BGP_NUM_PEERS 2
737 struct in_addr update_source
;
738 } neighbour
[BGP_NUM_PEERS
];
739 in_addr_t nexthop_address
;
740 struct in6_addr nexthop6_address
;
744 enum config_typet
{ INT
, STRING
, UNSIGNED_LONG
, SHORT
, BOOL
, IPv4
, IPv6
};
750 enum config_typet type
;
755 uint8_t op
; // operation
756 #define FILTER_PORT_OP_NONE 0 // all ports match
757 #define FILTER_PORT_OP_EQ 1
758 #define FILTER_PORT_OP_NEQ 2
759 #define FILTER_PORT_OP_GT 3
760 #define FILTER_PORT_OP_LT 4
761 #define FILTER_PORT_OP_RANGE 5
762 uint16_t port
; // port (host byte order)
763 uint16_t port2
; // range
768 int action
; // permit/deny
769 #define FILTER_ACTION_DENY 1
770 #define FILTER_ACTION_PERMIT 2
771 uint8_t proto
; // protocol: IPPROTO_* (netinet/in.h)
772 in_addr_t src_ip
; // source ip (network byte order)
774 ip_filter_portt src_ports
;
775 in_addr_t dst_ip
; // dest ip
777 ip_filter_portt dst_ports
;
778 uint8_t frag
; // apply to non-initial fragments
779 uint8_t tcp_flag_op
; // match type: any, all, established
780 #define FILTER_FLAG_OP_ANY 1
781 #define FILTER_FLAG_OP_ALL 2
782 #define FILTER_FLAG_OP_EST 3
783 uint8_t tcp_sflags
; // flags set
784 uint8_t tcp_cflags
; // flags clear
785 uint32_t counter
; // match count
788 #define TCP_FLAG_FIN 0x01
789 #define TCP_FLAG_SYN 0x02
790 #define TCP_FLAG_RST 0x04
791 #define TCP_FLAG_PSH 0x08
792 #define TCP_FLAG_ACK 0x10
793 #define TCP_FLAG_URG 0x20
796 #define MAXFILTER_RULES 32
799 char name
[32]; // ACL name
800 int extended
; // type: 0 = standard, 1 = extended
801 ip_filter_rulet rules
[MAXFILTER_RULES
];
802 int used
; // session ref count
805 // CDN result/error codes
806 #define CDN_NONE 0, 0
807 #define CDN_TRY_ANOTHER 2, 7
808 #define CDN_ADMIN_DISC 3, 0
809 #define CDN_UNAVAILABLE 4, 0
811 // RADIUS Acct-Terminate-Cause values
812 #define TERM_USER_REQUEST 1
813 #define TERM_LOST_CARRIER 2
814 #define TERM_LOST_SERVICE 3
815 #define TERM_IDLE_TIMEOUT 4
816 #define TERM_SESSION_TIMEOUT 5
817 #define TERM_ADMIN_RESET 6
818 #define TERM_ADMIN_REBOOT 7
819 #define TERM_PORT_ERROR 8
820 #define TERM_NAS_ERROR 9
821 #define TERM_NAS_REQUEST 10
822 #define TERM_NAS_REBOOT 11
823 #define TERM_PORT_UNNEEDED 12
824 #define TERM_PORT_PREEMPTED 13
825 #define TERM_PORT_SUSPENDED 14
826 #define TERM_SERVICE_UNAVAILABLE 15
827 #define TERM_CALLBACK 16
828 #define TERM_USER_ERROR 17
829 #define TERM_HOST_REQUEST 18
830 #define TERM_SUPPLICANT_RESTART 19
831 #define TERM_REAUTHENTICATION_FAILURE 20
832 #define TERM_PORT_REINIT 21
833 #define TERM_PORT_DISABLED 22
836 void sendarp(int ifr_idx
, const unsigned char* mac
, in_addr_t ip
);
840 void processpap(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
841 void processchap(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
842 void lcp_open(sessionidt s
, tunnelidt t
);
843 void processlcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
844 void processipcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
845 void processipv6cp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
846 void processipin(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
847 void processmpin(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
848 void processmpframe(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint8_t extra
);
849 void processipv6in(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
850 void processccp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
);
851 void sendchap(sessionidt s
, tunnelidt t
);
852 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
);
853 void sendlcp(sessionidt s
, tunnelidt t
);
854 void send_ipin(sessionidt s
, uint8_t *buf
, int len
);
855 void sendccp(sessionidt s
, tunnelidt t
);
856 void protoreject(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint16_t proto
);
857 int join_bundle(sessionidt s
);
862 void radiussend(uint16_t r
, uint8_t state
);
863 void processrad(uint8_t *buf
, int len
, char socket_index
);
864 void radiusretry(uint16_t r
);
865 uint16_t radiusnew(sessionidt s
);
866 void radiusclear(uint16_t r
, sessionidt s
);
867 void processdae(uint8_t *buf
, int len
, struct sockaddr_in
*addr
, int alen
, struct in_addr
*local
);
871 clockt
backoff(uint8_t try);
872 void send_ipv6_ra(sessionidt s
, tunnelidt t
, struct in6_addr
*ip
);
873 void route6set(sessionidt s
, struct in6_addr ip
, int prefixlen
, int add
);
874 sessionidt
sessionbyip(in_addr_t ip
);
875 sessionidt
sessionbyipv6(struct in6_addr ip
);
876 sessionidt
sessionbyuser(char *username
);
877 void increment_counter(uint32_t *counter
, uint32_t *wrap
, uint32_t delta
);
878 void random_data(uint8_t *buf
, int len
);
879 void sessionkill(sessionidt s
, char *reason
);
880 void sessionshutdown(sessionidt s
, char const *reason
, int cdn_result
, int cdn_error
, int term_cause
);
881 void filter_session(sessionidt s
, int filter_in
, int filter_out
);
882 void send_garp(in_addr_t ip
);
883 void tunnelsend(uint8_t *buf
, uint16_t l
, tunnelidt t
);
884 int tun_write(uint8_t *data
, int size
);
885 void adjust_tcp_mss(sessionidt s
, tunnelidt t
, uint8_t *buf
, int len
, uint8_t *tcp
);
886 void sendipcp(sessionidt s
, tunnelidt t
);
887 void sendipv6cp(sessionidt s
, tunnelidt t
);
888 void processudp(uint8_t *buf
, int len
, struct sockaddr_in
*addr
);
889 void snoop_send_packet(uint8_t *packet
, uint16_t size
, in_addr_t destination
, uint16_t port
);
890 int find_filter(char const *name
, size_t len
);
891 int ip_filter(uint8_t *buf
, int len
, uint8_t filter
);
892 int cmd_show_ipcache(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
893 int cmd_show_hist_idle(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
894 int cmd_show_hist_open(struct cli_def
*cli
, char *command
, char **argv
, int argc
);
898 #define LOG(D, s, t, f, ...) ({ if (D <= config->debug) _log(D, s, t, f, ## __VA_ARGS__); })
899 #define LOG_HEX(D, t, d, s) ({ if (D <= config->debug) _log_hex(D, t, d, s); })
901 void _log(int level
, sessionidt s
, tunnelidt t
, const char *format
, ...) __attribute__((format (printf
, 4, 5)));
902 void _log_hex(int level
, const char *title
, const uint8_t *data
, int maxsize
);
905 int sessionsetup(sessionidt s
, tunnelidt t
);
906 int run_plugins(int plugin_type
, void *data
);
907 void rebuild_address_pool(void);
908 void throttle_session(sessionidt s
, int rate_in
, int rate_out
);
909 int load_session(sessionidt
, sessiont
*);
910 void become_master(void); // We're the master; kick off any required master initializations.
915 void cli_init_complete(char *hostname
);
916 void cli_do_file(FILE *fh
);
917 void cli_do(int sockfd
);
918 int cli_arg_help(struct cli_def
*cli
, int cr_ok
, char *entry
, ...);
922 void host_unreachable(in_addr_t destination
, uint16_t id
, in_addr_t source
, uint8_t *packet
, int packet_len
);
925 extern tunnelt
*tunnel
;
926 extern bundlet
*bundle
;
927 extern sessiont
*session
;
928 extern sessionlocalt
*sess_local
;
929 extern ippoolt
*ip_address_pool
;
930 #define sessionfree (session[0].next)
933 extern configt
*config
;
934 extern time_t basetime
; // Time when this process started.
935 extern time_t time_now
; // Seconds since EPOCH.
936 extern char main_quit
;
937 extern uint32_t last_id
;
938 extern struct Tstats
*_statistics
;
939 extern in_addr_t my_address
;
955 int index
; // for RADIUS, BGP
958 #define TIME (config->current_time)
963 // macros for handling help in cli commands
964 #define CLI_HELP_REQUESTED (argc > 0 && argv[argc-1][strlen(argv[argc-1])-1] == '?')
965 #define CLI_HELP_NO_ARGS (argc > 1 || argv[0][1]) ? CLI_OK : cli_arg_help(cli, 1, NULL)
967 #endif /* __L2TPNS_H__ */