3 * Add functionality "LAC" to l2tpns.
4 * Used to forward a ppp session to another "LNS".
19 /* sequence diagram: Client <--> LAC <--> LNS1 <--> LNS2
22 * Client <-------------------> LAC
23 * Challenge (CHAP/PAP)
24 * Client <-------------------> LAC
26 * LAC --------------------> LNS1 (Tunnel Open)
28 * LAC <-------------------- LNS1 (Tunnel Open)
30 * LAC --------------------> LNS1 (Tunnel Open)
32 * LAC <-------------------- LNS1 (Tunnel Open)
34 * LAC --------------------> LNS1 (Session Open)
36 * LAC <-------------------- LNS1 (Session Open)
38 * LAC --------------------> LNS1 (Session Open)
40 * LAC <-------------------- LNS1 (Session Open)
42 * Client <---------------------------------------------> LNS1
43 * Challenge (CHAP/PAP)
44 * Client <---------------------------------------------> LNS1
46 * LNS1 --------------------> LNS2 (Tunnel Open)
48 * LNS1 <-------------------- LNS2 (Tunnel Open)
50 * LNS1 --------------------> LNS2 (Tunnel Open)
52 * LNS1 <-------------------- LNS2 (Tunnel Open)
54 * LNS1 --------------------> LNS2 (Session Open)
56 * LNS1 <-------------------- LNS2 (Session Open)
58 * LNS1 --------------------> LNS2 (Session Open)
60 * LNS1 <-------------------- LNS2 (Session Open)
62 * Client <------------------------------------------------------------------------> LNS2
63 * PAP/CHAP Authentification
64 * Client <------------------------------------------------------------------------> LNS2
66 * Client <------------------------------------------------------------------------> LNS2
72 uint32_t tunnel_medium_type
;
73 in_addr_t tunnel_server_endpoint
; /* IP remote LNS */
74 char tunnel_password
[64]; /* l2tpsecret remote LNS */
75 char tunnel_assignment_id
[256];
78 // Max Radius Tunnels by remote LNS
79 #define MAXTAGTUNNEL 0x20
80 static tunnelrlnst ptunnelrlns
[MAXTAGTUNNEL
];
83 * Possible configrlns states
84 * CONFRLNSFREE -> CONFRLNSSET -> CONFRLNSFREE
88 CONFRLNSFREE
= 0, // Not in use
89 CONFRLNSSET
, // Config Set
90 CONFRLNSSETBYRADIUS
// Config Set
96 int state
; // conf state (tunnelstate enum)
97 in_addr_t ip
; // Ip for far end
98 uint16_t port
; // port for far end
99 hasht auth
; // request authenticator
100 char strmaskuser
[MAXUSER
];
101 char l2tp_secret
[64]; // L2TP shared secret
102 char tunnel_assignment_id
[256];
106 configrlns
*pconfigrlns
= NULL
;
108 // Init data structures
109 void lac_initremotelnsdata()
113 if ( !(pconfigrlns
= shared_malloc(sizeof(pconfigrlns
[0]) * MAXRLNSTUNNEL
)) )
115 LOG(0, 0, 0, "Error doing malloc for tunnels lac: %s\n", strerror(errno
));
119 memset(pconfigrlns
, 0, sizeof(pconfigrlns
[0]) * MAXRLNSTUNNEL
);
121 // Mark all the conf as free.
122 for (i
= 1; i
< MAXRLNSTUNNEL
; i
++)
123 pconfigrlns
[i
].state
= CONFRLNSFREE
; // mark it as not filled in.
125 config
->highest_rlnsid
= 0;
127 lac_reset_rad_tag_tunnel_ctxt();
130 // Reset Radius TAG tunnel context
131 void lac_reset_rad_tag_tunnel_ctxt()
133 memset(ptunnelrlns
, 0, sizeof(ptunnelrlns
[0]) * MAXTAGTUNNEL
);
136 // Add tunnel_type radius TAG tunnel to context
137 void lac_set_rad_tag_tunnel_type(uint8_t tag
, uint32_t tunnel_type
)
139 if (tag
< MAXTAGTUNNEL
)
140 ptunnelrlns
[tag
].tunnel_type
= tunnel_type
;
143 // Add tunnel_medium_type Radius TAG tunnel to context
144 void lac_set_rad_tag_tunnel_medium_type(uint8_t tag
, uint32_t tunnel_medium_type
)
146 if (tag
< MAXTAGTUNNEL
)
147 ptunnelrlns
[tag
].tunnel_medium_type
= tunnel_medium_type
;
150 // Add tunnel_server_endpoint Radius TAG tunnel to context
151 void lac_set_rad_tag_tunnel_serv_endpt(uint8_t tag
, char *tunnel_server_endpoint
)
153 if (tag
< MAXTAGTUNNEL
)
155 ptunnelrlns
[tag
].tunnel_server_endpoint
= ntohl(inet_addr(tunnel_server_endpoint
));
159 // Add tunnel_password Radius TAG tunnel to context
160 void lac_set_rad_tag_tunnel_password(uint8_t tag
, char *tunnel_password
)
162 if ((tag
< MAXTAGTUNNEL
) && (strlen(tunnel_password
) < 64))
164 strcpy(ptunnelrlns
[tag
].tunnel_password
, tunnel_password
);
168 // Add tunnel_assignment_id Radius TAG tunnel to context
169 void lac_set_rad_tag_tunnel_assignment_id(uint8_t tag
, char *tunnel_assignment_id
)
171 if ((tag
< MAXTAGTUNNEL
) && (strlen(tunnel_assignment_id
) < 256))
173 strcpy(ptunnelrlns
[tag
].tunnel_assignment_id
, tunnel_assignment_id
);
177 // Select a tunnel_assignment_id
178 int lac_rad_select_assignment_id(sessionidt s
, char *assignment_id
)
182 int bufidtag
[MAXTAGTUNNEL
];
184 for (idtag
= 0; idtag
< MAXTAGTUNNEL
; ++idtag
)
186 if (ptunnelrlns
[idtag
].tunnel_type
== 0)
188 else if (ptunnelrlns
[idtag
].tunnel_type
!= 3) // 3 == L2TP tunnel type
189 LOG(1, s
, session
[s
].tunnel
, "Error, Only L2TP tunnel type supported\n");
190 else if (ptunnelrlns
[idtag
].tunnel_medium_type
!= 1)
191 LOG(1, s
, session
[s
].tunnel
, "Error, Only IP tunnel medium type supported\n");
192 else if (ptunnelrlns
[idtag
].tunnel_server_endpoint
== 0)
193 LOG(1, s
, session
[s
].tunnel
, "Error, Bad IP tunnel server endpoint \n");
194 else if (strlen(ptunnelrlns
[idtag
].tunnel_assignment_id
) > 0)
196 bufidtag
[nbtagfound
] = idtag
;
203 // random between 0 and nbtagfound-1
204 idtag
= (rand() % nbtagfound
);
206 if (idtag
>= nbtagfound
)
207 idtag
= 0; //Sanity checks.
209 strcpy(assignment_id
, ptunnelrlns
[bufidtag
[idtag
]].tunnel_assignment_id
);
213 // Error no tunnel_assignment_id found
217 // Save the 'radius tag tunnels' context on global configuration
218 void lac_save_rad_tag_tunnels(sessionidt s
)
223 for (idtag
= 0; idtag
< MAXTAGTUNNEL
; ++idtag
)
225 if (ptunnelrlns
[idtag
].tunnel_type
== 0)
227 else if (ptunnelrlns
[idtag
].tunnel_type
!= 3) // 3 == L2TP tunnel type
228 LOG(1, s
, session
[s
].tunnel
, "Error, Only L2TP tunnel type supported\n");
229 else if (ptunnelrlns
[idtag
].tunnel_medium_type
!= 1)
230 LOG(1, s
, session
[s
].tunnel
, "Error, Only IP tunnel medium type supported\n");
231 else if (ptunnelrlns
[idtag
].tunnel_server_endpoint
== 0)
232 LOG(1, s
, session
[s
].tunnel
, "Error, Bad IP tunnel server endpoint \n");
233 else if (strlen(ptunnelrlns
[idtag
].tunnel_assignment_id
) <= 0)
234 LOG(1, s
, session
[s
].tunnel
, "Error, No tunnel_assignment_id \n");
235 else if (ptunnelrlns
[idtag
].tunnel_server_endpoint
== ntohl(config
->bind_address
))
236 LOG(0, s
, session
[s
].tunnel
, "Error, IP Remote LNS == IP local bind address (%s) !!!\n", fmtaddr(config
->bind_address
, 0));
239 for (idrlns
= 1; idrlns
< MAXRLNSTUNNEL
; ++idrlns
)
241 if (pconfigrlns
[idrlns
].state
== CONFRLNSFREE
)
243 pconfigrlns
[idrlns
].ip
= ptunnelrlns
[idtag
].tunnel_server_endpoint
;
244 pconfigrlns
[idrlns
].port
= L2TPPORT
; //Default L2TP port
245 strcpy(pconfigrlns
[idrlns
].l2tp_secret
, ptunnelrlns
[idtag
].tunnel_password
);
246 strcpy(pconfigrlns
[idrlns
].tunnel_assignment_id
, ptunnelrlns
[idtag
].tunnel_assignment_id
);
248 config
->highest_rlnsid
= idrlns
;
250 pconfigrlns
[idrlns
].state
= CONFRLNSSETBYRADIUS
;
254 else if (pconfigrlns
[idrlns
].state
== CONFRLNSSETBYRADIUS
)
256 if ( (pconfigrlns
[idrlns
].ip
== ptunnelrlns
[idtag
].tunnel_server_endpoint
) &&
257 (strcmp(pconfigrlns
[idrlns
].tunnel_assignment_id
, ptunnelrlns
[idtag
].tunnel_assignment_id
) == 0) )
259 // l2tp_secret may be changed
260 strcpy(pconfigrlns
[idrlns
].l2tp_secret
, ptunnelrlns
[idtag
].tunnel_password
);
261 pconfigrlns
[idrlns
].port
= L2TPPORT
; //Default L2TP poart
263 if (config
->highest_rlnsid
< idrlns
) config
->highest_rlnsid
= idrlns
;
270 if (idrlns
>= MAXRLNSTUNNEL
)
272 LOG(0, s
, session
[s
].tunnel
, "No more Remote LNS Conf Free\n");
279 // Create Remote LNS a Tunnel or Session
280 static int lac_create_tunnelsession(tunnelidt t
, sessionidt s
, confrlnsidt i_conf
, char * puser
)
284 if (main_quit
== QUIT_SHUTDOWN
) return 0;
287 if (!(t
= lac_new_tunnel()))
289 LOG(1, 0, 0, "No more tunnels\n");
290 STAT(tunnel_overflow
);
294 tunnel
[t
].ip
= pconfigrlns
[i_conf
].ip
;
295 tunnel
[t
].port
= pconfigrlns
[i_conf
].port
;
296 tunnel
[t
].window
= 4; // default window
297 tunnel
[t
].isremotelns
= i_conf
;
298 STAT(tunnel_created
);
300 random_data(pconfigrlns
[i_conf
].auth
, sizeof(pconfigrlns
[i_conf
].auth
));
302 LOG(2, 0, t
, "Create New tunnel to REMOTE LNS %s for user %s\n", fmtaddr(htonl(tunnel
[t
].ip
), 0), puser
);
303 lac_send_SCCRQ(t
, pconfigrlns
[i_conf
].auth
, sizeof(pconfigrlns
[i_conf
].auth
));
305 else if (tunnel
[t
].state
== TUNNELOPEN
)
307 if (main_quit
!= QUIT_SHUTDOWN
)
310 /**********************/
311 /** Open New session **/
312 /**********************/
313 sessionidt new_sess
= sessionfree
;
315 sessionfree
= session
[new_sess
].next
;
316 memset(&session
[new_sess
], 0, sizeof(session
[new_sess
]));
318 if (new_sess
> config
->cluster_highest_sessionid
)
319 config
->cluster_highest_sessionid
= new_sess
;
321 session
[new_sess
].opened
= time_now
;
322 session
[new_sess
].tunnel
= t
;
323 session
[new_sess
].last_packet
= session
[s
].last_data
= time_now
;
325 session
[new_sess
].ppp
.phase
= Establish
;
326 session
[new_sess
].ppp
.lcp
= Starting
;
327 session
[s
].ppp
.phase
= Establish
;
329 LOG(2, 0, t
, "Open New session to REMOTE LNS %s for user: %s\n", fmtaddr(htonl(tunnel
[t
].ip
), 0), puser
);
330 // Sent ICRQ Incoming-call-request
331 lac_send_ICRQ(t
, new_sess
);
333 // Set session to forward to another LNS
334 session
[s
].forwardtosession
= new_sess
;
335 session
[new_sess
].forwardtosession
= s
;
336 strncpy(session
[s
].user
, puser
, sizeof(session
[s
].user
) - 1);
337 strncpy(session
[new_sess
].user
, puser
, sizeof(session
[new_sess
].user
) - 1);
339 STAT(session_created
);
343 lac_tunnelshutdown(t
, "Shutting down", 6, 0, 0);
349 LOG(1, 0, t
, "(REMOTE LNS) tunnel is not open\n");
354 // Check if session must be forwarded to another LNS
355 // return 1 if the session must be forwarded (and Creating a tunnel/session has been started)
357 // Note: check from the configuration read on the startup-config (see setforward)
358 int lac_conf_forwardtoremotelns(sessionidt s
, char * puser
)
363 for (i
= 1; i
<= config
->highest_rlnsid
; ++i
)
365 if ( (pconfigrlns
[i
].state
== CONFRLNSSET
) && (NULL
!= strstr(puser
, pconfigrlns
[i
].strmaskuser
)) )
368 for (j
= 0; j
<= config
->cluster_highest_tunnelid
; ++j
)
370 if ((tunnel
[j
].isremotelns
) &&
371 (tunnel
[j
].ip
== pconfigrlns
[i
].ip
) &&
372 (tunnel
[j
].port
== pconfigrlns
[i
].port
) &&
373 (tunnel
[j
].state
!= TUNNELDIE
))
376 if (tunnel
[t
].isremotelns
!= i
)
378 if ( (tunnel
[t
].state
== TUNNELOPEN
) || (tunnel
[t
].state
== TUNNELOPENING
) )
380 LOG(1, 0, t
, "Tunnel Remote LNS ID inconsistency (IP RLNS:%s)\n",
381 fmtaddr(htonl(pconfigrlns
[i
].ip
), 0));
383 tunnel
[t
].isremotelns
= i
;
391 return lac_create_tunnelsession(t
, s
, i
, puser
);
398 // return 1 if the session must be forwarded (and Creating a tunnel/session has been started)
400 // Note: Started from a radius response
401 int lac_rad_forwardtoremotelns(sessionidt s
, char *assignment_id
, char * puser
)
406 for (i
= 1; i
<= config
->highest_rlnsid
; ++i
)
408 if ((pconfigrlns
[i
].state
== CONFRLNSSETBYRADIUS
) &&
409 (strcmp(pconfigrlns
[i
].tunnel_assignment_id
, assignment_id
) == 0))
412 for (j
= 1; j
<= config
->cluster_highest_tunnelid
; ++j
)
414 if ((tunnel
[j
].isremotelns
== i
) &&
415 (tunnel
[j
].ip
== pconfigrlns
[i
].ip
) &&
416 (tunnel
[j
].port
== pconfigrlns
[i
].port
) &&
417 (tunnel
[j
].state
!= TUNNELDIE
))
419 if ( (tunnel
[j
].state
== TUNNELOPEN
) ||
420 (tunnel
[j
].state
== TUNNELOPENING
) )
423 LOG(3, 0, t
, "Tunnel Remote LNS already open(ing) (RLNS IP:%s)\n", fmtaddr(htonl(pconfigrlns
[i
].ip
), 0));
429 return lac_create_tunnelsession(t
, s
, i
, puser
);
436 // Calcul the remote LNS auth
437 void lac_calc_rlns_auth(tunnelidt t
, uint8_t id
, uint8_t *out
)
442 idrlns
= tunnel
[t
].isremotelns
;
445 MD5_Update(&ctx
, &id
, 1);
446 MD5_Update(&ctx
, pconfigrlns
[idrlns
].l2tp_secret
, strlen(pconfigrlns
[idrlns
].l2tp_secret
));
447 MD5_Update(&ctx
, pconfigrlns
[idrlns
].auth
, 16);
448 MD5_Final(out
, &ctx
);
451 // Forward session to LAC or Remote LNS
452 int lac_session_forward(uint8_t *buf
, int len
, sessionidt sess
, uint16_t proto
, in_addr_t s_addr
, int sin_port
)
454 uint16_t t
= 0, s
= 0;
455 uint8_t *p
= buf
+ 2; // First word L2TP options
457 s
= session
[sess
].forwardtosession
;
458 if (session
[s
].forwardtosession
!= sess
)
460 LOG(0, sess
, session
[sess
].tunnel
, "Link Session (%u) broken\n", s
);
464 t
= session
[s
].tunnel
;
467 LOG(1, s
, t
, "Session with invalid tunnel ID\n");
471 if ((!tunnel
[t
].isremotelns
) && (!tunnel
[session
[sess
].tunnel
].isremotelns
))
473 LOG(0, sess
, session
[sess
].tunnel
, "Link Tunnel Session (%u/%u) broken\n", s
, t
);
477 if (!config
->cluster_iam_master
)
479 if ( (proto
== PPPIPCP
) || (proto
== PPPLCP
) ||
480 (proto
== PPPPAP
) || (proto
== PPPCHAP
) ||
481 (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0]) ||
484 session
[sess
].last_packet
= time_now
;
485 master_forward_packet(buf
, len
, s_addr
, sin_port
);
490 if (t
== TUNNEL_ID_PPPOE
)
492 pppoe_forwardto_session_pppoe(buf
, len
, sess
, proto
);
501 *(uint16_t *) p
= htons(tunnel
[t
].far
); // tunnel
503 *(uint16_t *) p
= htons(session
[s
].far
); // session
508 *(uint16_t *) p
= htons(tunnel
[t
].ns
); // sequence
510 *(uint16_t *) p
= htons(tunnel
[t
].nr
); // sequence
514 if ((proto
== PPPIP
) || (proto
== PPPMP
) ||(proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0]))
516 session
[sess
].last_packet
= session
[sess
].last_data
= time_now
;
518 increment_counter(&session
[sess
].cin
, &session
[sess
].cin_wrap
, len
);
519 session
[sess
].cin_delta
+= len
;
521 sess_local
[sess
].cin
+= len
;
522 sess_local
[sess
].pin
++;
524 session
[s
].last_data
= time_now
;
526 increment_counter(&session
[s
].cout
, &session
[s
].cout_wrap
, len
); // byte count
527 session
[s
].cout_delta
+= len
;
529 sess_local
[s
].cout
+= len
;
530 sess_local
[s
].pout
++;
533 session
[sess
].last_packet
= time_now
;
535 tunnelsend(buf
, len
, t
); // send it...
540 // Add new Remote LNS from CLI
543 // 1 = New Remote LNS conf ADD
544 // 2 = Remote LNS Conf Updated
545 int lac_addremotelns(char *mask
, char *IP_RemoteLNS
, char *Port_RemoteLNS
, char *SecretRemoteLNS
)
549 for (idrlns
= 1; idrlns
< MAXRLNSTUNNEL
; ++idrlns
)
551 if (pconfigrlns
[idrlns
].state
== CONFRLNSFREE
)
553 snprintf((char *) pconfigrlns
[idrlns
].strmaskuser
, sizeof(pconfigrlns
[idrlns
].strmaskuser
), "%s", mask
);
554 pconfigrlns
[idrlns
].ip
= ntohl(inet_addr(IP_RemoteLNS
));
555 pconfigrlns
[idrlns
].port
= atoi(Port_RemoteLNS
);
556 snprintf((char *) pconfigrlns
[idrlns
].l2tp_secret
, sizeof(pconfigrlns
[idrlns
].l2tp_secret
), "%s", SecretRemoteLNS
);
558 config
->highest_rlnsid
= idrlns
;
560 pconfigrlns
[idrlns
].state
= CONFRLNSSET
;
564 else if ((pconfigrlns
[idrlns
].state
== CONFRLNSSET
) && (strcmp(pconfigrlns
[idrlns
].strmaskuser
, mask
) == 0))
566 if ( (pconfigrlns
[idrlns
].ip
!= ntohl(inet_addr(IP_RemoteLNS
))) ||
567 (pconfigrlns
[idrlns
].port
!= atoi(Port_RemoteLNS
)) ||
568 (strcmp(pconfigrlns
[idrlns
].l2tp_secret
, SecretRemoteLNS
) != 0) )
570 memset(&pconfigrlns
[idrlns
], 0, sizeof(pconfigrlns
[idrlns
]));
571 snprintf((char *) pconfigrlns
[idrlns
].strmaskuser
, sizeof(pconfigrlns
[idrlns
].strmaskuser
), "%s", mask
);
572 pconfigrlns
[idrlns
].ip
= ntohl(inet_addr(IP_RemoteLNS
));
573 pconfigrlns
[idrlns
].port
= atoi(Port_RemoteLNS
);
574 snprintf((char *) pconfigrlns
[idrlns
].l2tp_secret
, sizeof(pconfigrlns
[idrlns
].l2tp_secret
), "%s", SecretRemoteLNS
);
576 if (config
->highest_rlnsid
< idrlns
) config
->highest_rlnsid
= idrlns
;
578 pconfigrlns
[idrlns
].state
= CONFRLNSSET
;
579 // Conf Updated, the tunnel must be dropped
587 LOG(0, 0, 0, "No more Remote LNS Conf Free\n");
592 // Cli Show remote LNS defined
593 int lac_cli_show_remotelns(confrlnsidt idrlns
, char *strout
)
595 if (idrlns
> config
->highest_rlnsid
)
600 sprintf(strout
, "%15s %3s %-32s %-32s %11s %7s %10s",
610 tunnelidt t
, tfound
= 0;
615 strcpy(state
, "Close");
616 for (t
= 0; t
<= config
->cluster_highest_tunnelid
; ++t
)
618 if ((tunnel
[t
].isremotelns
== idrlns
) &&
619 (tunnel
[t
].ip
== pconfigrlns
[idrlns
].ip
) &&
620 (tunnel
[t
].port
== pconfigrlns
[idrlns
].port
) &&
621 (tunnel
[t
].state
!= TUNNELDIE
))
623 if (tunnel
[t
].state
== TUNNELOPENING
)
624 strcpy(state
, "Opening");
625 else if (tunnel
[t
].state
== TUNNELOPEN
)
626 strcpy(state
, "Open");
628 for (s
= 1; s
<= config
->cluster_highest_sessionid
; ++s
)
629 if (session
[s
].tunnel
== t
)
636 sprintf(strout
, "%15s %3u %-32s %-32s %11s %7s %10u",
637 fmtaddr(htonl(pconfigrlns
[idrlns
].ip
), 0),
639 pconfigrlns
[idrlns
].l2tp_secret
,
640 pconfigrlns
[idrlns
].tunnel_assignment_id
,
641 (pconfigrlns
[idrlns
].state
== CONFRLNSSET
?"File":(pconfigrlns
[idrlns
].state
== CONFRLNSSETBYRADIUS
?"Radius":"Free")),