80dce17494b179cb679de355bbcaef449ba3fd05
3 char const *cvs_id_ppp
= "$Id: ppp.c,v 1.56 2005/05/10 09:47:23 bodea Exp $";
11 #include "constants.h"
17 extern tunnelt
*tunnel
;
18 extern sessiont
*session
;
19 extern radiust
*radius
;
21 extern char hostname
[];
22 extern uint32_t eth_tx
;
23 extern time_t time_now
;
24 extern configt
*config
;
26 static void initccp(tunnelidt t
, sessionidt s
);
27 static uint8_t *add_lcp_auth(uint8_t *b
, int size
, int authtype
);
29 // Process PAP messages
30 void processpap(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
38 LOG_HEX(5, "PAP", p
, l
);
41 LOG(1, s
, t
, "Short PAP %u bytes\n", l
);
42 STAT(tunnel_rx_errors
);
43 sessionshutdown(s
, "Short PAP packet.", 3, 0);
47 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
49 LOG(1, s
, t
, "Length mismatch PAP %u/%u\n", hl
, l
);
50 STAT(tunnel_rx_errors
);
51 sessionshutdown(s
, "PAP length mismatch.", 3, 0);
58 LOG(1, s
, t
, "Unexpected PAP code %d\n", *p
);
59 STAT(tunnel_rx_errors
);
60 sessionshutdown(s
, "Unexpected PAP code.", 3, 0);
67 user
[0] = pass
[0] = 0;
68 if (*b
&& *b
< sizeof(user
))
70 memcpy(user
, b
+ 1, *b
);
73 if (*b
&& *b
< sizeof(pass
))
75 memcpy(pass
, b
+ 1, *b
);
79 LOG(3, s
, t
, "PAP login %s/%s\n", user
, pass
);
81 if (session
[s
].ip
|| !sess_local
[s
].radius
)
83 // respond now, either no RADIUS available or already authenticated
84 uint8_t b
[MAXCONTROL
];
86 uint8_t *p
= makeppp(b
, sizeof(b
), 0, 0, t
, s
, PPPPAP
);
92 *p
= 3; // cant authorise
94 *(uint16_t *) (p
+ 2) = htons(5); // length
95 p
[4] = 0; // no message
98 LOG(3, s
, t
, "Already an IP allocated: %s (%d)\n",
99 fmtaddr(htonl(session
[s
].ip
), 0), session
[s
].ip_pool_index
);
101 session
[s
].flags
&= ~SF_IPCP_ACKED
;
105 LOG(1, s
, t
, "No radius session available to authenticate session...\n");
107 LOG(3, s
, t
, "Fallback response to PAP (%s)\n", (session
[s
].ip
) ? "ACK" : "NAK");
108 tunnelsend(b
, 5 + (p
- b
), t
); // send it
109 sessionshutdown(s
, "PAP authentication failed.", 3, 0);
113 // set up RADIUS request
114 uint16_t r
= sess_local
[s
].radius
;
116 // Run PRE_AUTH plugins
117 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], strdup(user
), strdup(pass
), PPPPAP
, 1 };
118 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
119 if (!packet
.continue_auth
)
121 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
122 if (packet
.username
) free(packet
.username
);
123 if (packet
.password
) free(packet
.password
);
127 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
128 strncpy(radius
[r
].pass
, packet
.password
, sizeof(radius
[r
].pass
) - 1);
130 free(packet
.username
);
131 free(packet
.password
);
134 LOG(3, s
, t
, "Sending login for %s/%s to radius\n", user
, pass
);
135 radiussend(r
, RADIUSAUTH
);
139 // Process CHAP messages
140 void processchap(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
147 LOG_HEX(5, "CHAP", p
, l
);
148 r
= sess_local
[s
].radius
;
151 LOG(1, s
, t
, "Unexpected CHAP message\n");
152 STAT(tunnel_rx_errors
);
153 sessionshutdown(s
, "Unexpected CHAP message.", 3, 0);
159 LOG(1, s
, t
, "Short CHAP %u bytes\n", l
);
160 STAT(tunnel_rx_errors
);
161 sessionshutdown(s
, "Short CHAP packet.", 3, 0);
165 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
167 LOG(1, s
, t
, "Length mismatch CHAP %u/%u\n", hl
, l
);
168 STAT(tunnel_rx_errors
);
169 sessionshutdown(s
, "CHAP length mismatch.", 3, 0);
176 LOG(1, s
, t
, "Unexpected CHAP response code %d\n", *p
);
177 STAT(tunnel_rx_errors
);
178 sessionshutdown(s
, "CHAP length mismatch.", 3, 0);
181 if (p
[1] != radius
[r
].id
)
183 LOG(1, s
, t
, "Wrong CHAP response ID %d (should be %d) (%d)\n", p
[1], radius
[r
].id
, r
);
184 STAT(tunnel_rx_errors
);
185 sessionshutdown(s
, "Unexpected CHAP response ID.", 3, 0);
189 if (l
< 5 || p
[4] != 16)
191 LOG(1, s
, t
, "Bad CHAP response length %d\n", l
< 5 ? -1 : p
[4]);
192 STAT(tunnel_rx_errors
);
193 sessionshutdown(s
, "Bad CHAP response length.", 3, 0);
199 if (l
< 16 || l
- 16 >= sizeof(session
[s
].user
))
201 LOG(1, s
, t
, "CHAP user too long %d\n", l
- 16);
202 STAT(tunnel_rx_errors
);
203 sessionshutdown(s
, "CHAP username too long.", 3, 0);
207 // Run PRE_AUTH plugins
209 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], NULL
, NULL
, PPPCHAP
, 1 };
211 packet
.password
= calloc(17, 1);
212 memcpy(packet
.password
, p
, 16);
217 packet
.username
= calloc(l
+ 1, 1);
218 memcpy(packet
.username
, p
, l
);
220 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
221 if (!packet
.continue_auth
)
223 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
224 if (packet
.username
) free(packet
.username
);
225 if (packet
.password
) free(packet
.password
);
229 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
230 memcpy(radius
[r
].pass
, packet
.password
, 16);
232 free(packet
.username
);
233 free(packet
.password
);
237 LOG(3, s
, t
, "CHAP login %s\n", session
[s
].user
);
238 radiussend(r
, RADIUSAUTH
);
241 static void dumplcp(uint8_t *p
, int l
)
244 uint8_t *o
= (p
+ 4);
246 LOG_HEX(5, "PPP LCP Packet", p
, l
);
247 LOG(4, 0, 0, "PPP LCP Packet type %d (%s len %d)\n", *p
, ppp_lcp_type((int)*p
), ntohs( ((uint16_t *) p
)[1]) );
248 LOG(4, 0, 0, "Length: %d\n", l
);
249 if (*p
!= ConfigReq
&& *p
!= ConfigRej
&& *p
!= ConfigAck
)
258 LOG(4, 0, 0, " Option length is %d...\n", length
);
263 LOG(4, 0, 0, " Option type is 0...\n");
270 case 1: // Maximum-Receive-Unit
272 LOG(4, 0, 0, " %s %d\n", lcp_type(type
), ntohs(*(uint16_t *)(o
+ 2)));
274 LOG(4, 0, 0, " %s odd length %d\n", lcp_type(type
), length
);
276 case 2: // Async-Control-Character-Map
279 uint32_t asyncmap
= ntohl(*(uint32_t *)(o
+ 2));
280 LOG(4, 0, 0, " %s %x\n", lcp_type(type
), asyncmap
);
283 LOG(4, 0, 0, " %s odd length %d\n", lcp_type(type
), length
);
285 case 3: // Authentication-Protocol
288 int proto
= ntohs(*(uint16_t *)(o
+ 2));
289 LOG(4, 0, 0, " %s 0x%x (%s)\n", lcp_type(type
), proto
,
290 proto
== PPPPAP
? "PAP" : "UNSUPPORTED");
292 else if (length
== 5)
294 int proto
= ntohs(*(uint16_t *)(o
+ 2));
295 int algo
= *(uint8_t *)(o
+ 4);
296 LOG(4, 0, 0, " %s 0x%x 0x%x (%s)\n", lcp_type(type
), proto
, algo
,
297 (proto
== PPPCHAP
&& algo
== 5) ? "CHAP MD5" : "UNSUPPORTED");
300 LOG(4, 0, 0, " %s odd length %d\n", lcp_type(type
), length
);
302 case 4: // Quality-Protocol
304 uint32_t qp
= ntohl(*(uint32_t *)(o
+ 2));
305 LOG(4, 0, 0, " %s %x\n", lcp_type(type
), qp
);
308 case 5: // Magic-Number
311 uint32_t magicno
= ntohl(*(uint32_t *)(o
+ 2));
312 LOG(4, 0, 0, " %s %x\n", lcp_type(type
), magicno
);
315 LOG(4, 0, 0, " %s odd length %d\n", lcp_type(type
), length
);
317 case 7: // Protocol-Field-Compression
318 case 8: // Address-And-Control-Field-Compression
319 LOG(4, 0, 0, " %s\n", lcp_type(type
));
322 LOG(2, 0, 0, " Unknown PPP LCP Option type %d\n", type
);
330 // Process LCP messages
331 void processlcp(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
333 uint8_t b
[MAXCONTROL
];
335 uint32_t magicno
= 0;
340 LOG_HEX(5, "LCP", p
, l
);
343 LOG(1, s
, t
, "Short LCP %d bytes\n", l
);
344 STAT(tunnel_rx_errors
);
348 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
350 LOG(1, s
, t
, "Length mismatch LCP %u/%u\n", hl
, l
);
351 STAT(tunnel_rx_errors
);
358 LOG(3, s
, t
, "LCP: Discarding ConfigAck\n");
359 session
[s
].flags
|= SF_LCP_ACKED
;
361 else if (*p
== ConfigReq
)
364 uint8_t *o
= (p
+ 4);
365 uint8_t *response
= 0;
367 LOG(3, s
, t
, "LCP: ConfigReq (%d bytes)...\n", l
);
368 if (config
->debug
> 3) dumplcp(p
, l
);
375 if (length
== 0 || type
== 0 || x
< length
) break;
378 case 1: // Maximum-Receive-Unit
379 session
[s
].mru
= ntohs(*(uint16_t *)(o
+ 2));
382 case 2: // Async-Control-Character-Map
383 if (!ntohl(*(uint32_t *)(o
+ 2))) // all bits zero is OK
386 if (response
&& *response
!= ConfigNak
) // rej already queued
389 LOG(2, s
, t
, " Remote requesting asyncmap. Rejecting.\n");
392 q
= response
= makeppp(b
, sizeof(b
), p
, 2, t
, s
, PPPLCP
);
398 if ((q
- b
+ 11) > sizeof(b
))
400 LOG(2, s
, t
, "LCP overflow for asyncmap ConfigNak.\n");
406 memset(q
, 0, 4); // asyncmap 0
410 case 3: // Authentication-Protocol
412 int proto
= ntohs(*(uint16_t *)(o
+ 2));
413 char proto_name
[] = "0x0000";
418 if (config
->radius_authtypes
& AUTHPAP
)
421 strcpy(proto_name
, "PAP");
423 else if (proto
== PPPCHAP
)
425 if (config
->radius_authtypes
& AUTHCHAP
426 && *(o
+ 4) == 5) // MD5
429 strcpy(proto_name
, "CHAP");
432 sprintf(proto_name
, "%#4.4x", proto
);
434 if (response
&& *response
!= ConfigNak
) // rej already queued
437 LOG(2, s
, t
, " Remote requesting %s authentication. Rejecting.\n", proto_name
);
441 q
= response
= makeppp(b
, sizeof(b
), p
, 2, t
, s
, PPPLCP
);
447 a
= add_lcp_auth(q
, sizeof(b
) - (q
- b
), config
->radius_authprefer
);
450 LOG(2, s
, t
, "LCP overflow for %s ConfigNak.\n", proto_name
);
456 if (config
->radius_authtypes
!= config
->radius_authprefer
)
458 a
= add_lcp_auth(q
, sizeof(b
) - (q
- b
), config
->radius_authtypes
& ~config
->radius_authprefer
);
461 LOG(2, s
, t
, "LCP overflow for %s ConfigNak.\n", proto_name
);
472 case 5: // Magic-Number
473 magicno
= ntohl(*(uint32_t *)(o
+ 2));
476 case 4: // Quality-Protocol
477 case 7: // Protocol-Field-Compression
478 case 8: // Address-And-Control-Field-Compression
481 default: // Reject any unknown options
482 LOG(2, s
, t
, " Rejecting PPP LCP Option type %d\n", type
);
483 if (!response
|| *response
!= ConfigRej
) // drop nak in favour of rej
485 q
= response
= makeppp(b
, sizeof(b
), p
, 2, t
, s
, PPPLCP
);
491 if ((q
- b
+ length
) > sizeof(b
))
493 LOG(2, s
, t
, "LCP overflow for ConfigRej (type=%d).\n", type
);
497 memcpy(q
, o
, length
);
506 l
= q
- response
; // LCP packet length
507 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
511 // Send packet back as ConfigAck
512 response
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPLCP
);
513 if (!response
) return;
514 *response
= ConfigAck
;
517 LOG(3, s
, t
, "Sending %s\n", ppp_lcp_type(*response
));
518 tunnelsend(b
, l
+ response
- b
, t
);
520 if (!(session
[s
].flags
& SF_LCP_ACKED
))
521 sendlcp(t
, s
, config
->radius_authprefer
);
523 else if (*p
== ConfigNak
)
526 uint8_t *o
= (p
+ 4);
529 LOG(3, s
, t
, "LCP: ConfigNak (%d bytes)...\n", l
);
530 if (config
->debug
> 3) dumplcp(p
, l
);
537 if (length
== 0 || type
== 0 || x
< length
) break;
540 case 1: // Maximum-Receive-Unit
541 session
[s
].mru
= ntohs(*(uint16_t *)(o
+ 2));
542 LOG(3, s
, t
, " Remote requested MRU of %u\n", session
[s
].mru
);
545 case 3: // Authentication-Protocol
550 int proto
= ntohs(*(uint16_t *)(o
+ 2));
553 authtype
= config
->radius_authtypes
& AUTHPAP
;
554 LOG(3, s
, t
, " Remote requested PAP authentication...%sing\n",
555 authtype
? "accept" : "reject");
557 else if (proto
== PPPCHAP
&& *(o
+ 4) == 5)
559 authtype
= config
->radius_authtypes
& AUTHCHAP
;
560 LOG(3, s
, t
, " Remote requested CHAP authentication...%sing\n",
561 authtype
? "accept" : "reject");
565 LOG(3, s
, t
, " Rejecting unsupported authentication %#4x\n",
572 sessionshutdown(s
, "Unsupported authentication.", 3, 0);
579 LOG(2, s
, t
, " Remote NAKed LCP type %u?\n", type
);
585 authtype
= config
->radius_authprefer
;
587 sendlcp(t
, s
, authtype
);
589 else if (*p
== TerminateReq
)
591 LOG(3, s
, t
, "LCP: Received TerminateReq. Sending TerminateAck\n");
592 *p
= TerminateAck
; // close
593 q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPLCP
);
595 tunnelsend(b
, l
+ (q
- b
), t
); // send it
596 sessionshutdown(s
, "Remote end closed connection.", 3, 0);
598 else if (*p
== TerminateAck
)
600 sessionshutdown(s
, "Connection closed.", 3, 0);
602 else if (*p
== ProtocolRej
)
604 if (*(uint16_t *) (p
+4) == htons(PPPIPV6CP
))
606 LOG(3, s
, t
, "IPv6 rejected\n");
607 session
[s
].flags
|= SF_IPV6_NACKED
;
611 LOG(1, s
, t
, "Unexpected LCP protocol reject 0x%X\n",
612 ntohs(*(uint16_t *) (p
+4)));
613 STAT(tunnel_rx_errors
);
616 else if (*p
== EchoReq
)
618 LOG(5, s
, t
, "LCP: Received EchoReq. Sending EchoReply\n");
619 *p
= EchoReply
; // reply
620 *(uint32_t *) (p
+ 4) = htonl(session
[s
].magic
); // our magic number
621 q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPLCP
);
623 tunnelsend(b
, l
+ (q
- b
), t
); // send it
625 else if (*p
== EchoReply
)
627 // Ignore it, last_packet time is set earlier than this.
629 else if (*p
== IdentRequest
)
634 LOG(1, s
, t
, "Truncated Ident Packet (length=%d) to 1400 bytes\n", l
);
637 q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPLCP
);
639 LOG_HEX(5, "LCPIdentRej", q
, l
+ 4);
640 tunnelsend(b
, 12 + 4 + l
, t
);
644 LOG(1, s
, t
, "Unexpected LCP code %d\n", *p
);
645 STAT(tunnel_rx_errors
);
649 // find a PPP option, returns point to option, or 0 if not found
650 static uint8_t *findppp(uint8_t *b
, uint8_t mtype
)
652 uint16_t l
= ntohs(*(uint16_t *) (b
+ 2));
659 if (l
< b
[1] || !b
[1])
669 // Process IPCP messages
670 void processipcp(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
676 LOG_HEX(5, "IPCP", p
, l
);
679 LOG(1, s
, t
, "Short IPCP %d bytes\n", l
);
680 STAT(tunnel_rx_errors
);
684 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
686 LOG(1, s
, t
, "Length mismatch IPCP %u/%u\n", hl
, l
);
687 STAT(tunnel_rx_errors
);
694 // happy with our IPCP
695 uint16_t r
= sess_local
[s
].radius
;
696 if ((!r
|| radius
[r
].state
== RADIUSIPCP
) && !session
[s
].walled_garden
)
701 radiussend(r
, RADIUSSTART
); // send radius start, having got IPCP at last
703 session
[s
].flags
|= SF_IPCP_ACKED
;
705 LOG(3, s
, t
, "IPCP Acked, session is now active\n");
707 // clear LCP_ACKED/CCP_ACKED flag for possible fast renegotiaion for routers
708 session
[s
].flags
&= ~(SF_LCP_ACKED
|SF_CCP_ACKED
);
714 LOG(1, s
, t
, "Unexpected IPCP code %d\n", *p
);
715 STAT(tunnel_rx_errors
);
718 LOG(4, s
, t
, "IPCP ConfigReq received\n");
722 LOG(3, s
, t
, "Waiting on radius reply\n");
723 return; // have to wait on RADIUS reply
725 // form a config reply quoting the IP in the session
727 uint8_t b
[MAXCONTROL
];
732 while (q
< i
&& q
[1])
734 if (*q
!= 0x81 && *q
!= 0x83 && *q
!= 3)
743 if (!(q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPIPCP
)))
748 while (p
< i
&& p
[1])
750 if (*p
!= 0x81 && *p
!= 0x83 && *p
!= 3)
752 LOG(2, s
, t
, "IPCP reject %d\n", *p
);
753 memcpy(q
+ n
, p
, p
[1]);
758 *(uint16_t *) (q
+ 2) = htons(n
);
759 LOG(4, s
, t
, "Sending ConfigRej\n");
760 tunnelsend(b
, n
+ (q
- b
), t
); // send it
764 LOG(4, s
, t
, "Sending ConfigAck\n");
766 if ((i
= findppp(p
, 0x81))) // Primary DNS address
768 if (*(uint32_t *) (i
+ 2) != htonl(session
[s
].dns1
))
770 *(uint32_t *) (i
+ 2) = htonl(session
[s
].dns1
);
772 LOG(5, s
, t
, " DNS1 = %s\n",
773 fmtaddr(htonl(session
[s
].dns1
), 0));
776 if ((i
= findppp(p
, 0x83))) // Secondary DNS address (TBA, is it)
778 if (*(uint32_t *) (i
+ 2) != htonl(session
[s
].dns2
))
780 *(uint32_t *) (i
+ 2) = htonl(session
[s
].dns2
);
782 LOG(5, s
, t
, " DNS2 = %s\n",
783 fmtaddr(htonl(session
[s
].dns2
), 0));
786 i
= findppp(p
, 3); // IP address
789 LOG(1, s
, t
, "No IP in IPCP request\n");
790 STAT(tunnel_rx_errors
);
793 if (*(uint32_t *) (i
+ 2) != htonl(session
[s
].ip
))
795 *(uint32_t *) (i
+ 2) = htonl(session
[s
].ip
);
797 LOG(4, s
, t
, " No, a ConfigNak, client is requesting IP - sending %s\n",
798 fmtaddr(htonl(session
[s
].ip
), 0));
800 if (!(q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPIPCP
)))
803 tunnelsend(b
, l
+ (q
- b
), t
); // send it
808 // Process IPV6CP messages
809 void processipv6cp(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
812 CSTAT(processipv6cp
);
814 LOG_HEX(5, "IPV6CP", p
, l
);
817 LOG(1, s
, t
, "Short IPV6CP %d bytes\n", l
);
818 STAT(tunnel_rx_errors
);
823 // happy with our IPV6CP
824 session
[s
].flags
|= SF_IPV6CP_ACKED
;
826 LOG(3, s
, t
, "IPV6CP Acked, IPv6 is now active\n");
827 // Add a routed block if configured.
828 if (session
[s
].ipv6prefixlen
)
830 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 1);
831 session
[s
].flags
|= SF_IPV6_ROUTED
;
834 // Send an initial RA (TODO: Should we send these regularly?)
835 send_ipv6_ra(t
, s
, NULL
);
840 LOG(1, s
, t
, "Unexpected IPV6CP code %d\n", *p
);
841 STAT(tunnel_rx_errors
);
845 LOG(4, s
, t
, "IPV6CP ConfigReq received\n");
846 if (ntohs(*(uint16_t *) (p
+ 2)) > l
)
848 LOG(1, s
, t
, "Length mismatch IPV6CP %d/%d\n", ntohs(*(uint16_t *) (p
+ 2)), l
);
849 STAT(tunnel_rx_errors
);
854 LOG(3, s
, t
, "Waiting on radius reply\n");
855 return; // have to wait on RADIUS reply
857 // form a config reply quoting the IP in the session
859 uint8_t b
[MAXCONTROL
];
863 l
= ntohs(*(uint16_t *) (p
+ 2)); // We must use length from IPV6CP len field
866 while (q
< i
&& q
[1])
877 if (!(q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPIPV6CP
)))
879 LOG(2, s
, t
, "Failed to send IPV6CP ConfigRej\n");
884 while (p
< i
&& p
[1])
888 LOG(2, s
, t
, "IPV6CP reject %d\n", *p
);
889 memcpy(q
+ n
, p
, p
[1]);
894 *(uint16_t *) (q
+ 2) = htons(n
);
895 LOG(4, s
, t
, "Sending ConfigRej\n");
896 tunnelsend(b
, n
+ (q
- b
), t
); // send it
900 LOG(4, s
, t
, "Sending ConfigAck\n");
902 i
= findppp(p
, 1); // IP address
903 if (!i
|| i
[1] != 10)
905 LOG(1, s
, t
, "No IP in IPV6CP request\n");
906 STAT(tunnel_rx_errors
);
909 if ((*(uint32_t *) (i
+ 2) != htonl(session
[s
].ip
)) ||
910 (*(uint32_t *) (i
+ 6) != 0))
912 *(uint32_t *) (i
+ 2) = htonl(session
[s
].ip
);
913 *(uint32_t *) (i
+ 6) = 0;
916 " No, a ConfigNak, client is "
917 "requesting IP - sending %s\n",
918 fmtaddr(htonl(session
[s
].ip
), 0));
920 if (!(q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPIPV6CP
)))
922 LOG(2, s
, t
, " Failed to send IPV6CP packet.\n");
925 tunnelsend(b
, l
+ (q
- b
), t
); // send it
930 // process IP packet received
932 // This MUST be called with at least 4 byte behind 'p'.
933 // (i.e. this routine writes to p[-4]).
934 void processipin(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
940 LOG_HEX(5, "IP", p
, l
);
942 ip
= ntohl(*(uint32_t *)(p
+ 12));
946 LOG(1, s
, t
, "IP packet too long %d\n", l
);
947 STAT(tunnel_rx_errors
);
951 // no spoof (do sessionbyip to handled statically routed subnets)
952 if (ip
!= session
[s
].ip
&& sessionbyip(htonl(ip
)) != s
)
954 LOG(5, s
, t
, "Dropping packet with spoofed IP %s\n", fmtaddr(htonl(ip
), 0));
958 // run access-list if any
959 if (session
[s
].filter_in
&& !ip_filter(p
, l
, session
[s
].filter_in
- 1))
962 // Add on the tun header
964 *(uint32_t *) p
= htonl(PKTIP
);
967 // Are we throttled and a slave?
968 if (session
[s
].tbf_in
&& !config
->cluster_iam_master
) {
969 // Pass it to the master for handling.
970 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
974 // Are we throttled and a master??
975 if (session
[s
].tbf_in
&& config
->cluster_iam_master
) {
976 // Actually handle the throttled packets.
977 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
982 if (tun_write(p
, l
) < 0)
985 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
986 l
, strerror(errno
), tunfd
, p
);
991 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
993 // Snooping this session
994 snoop_send_packet(p
+ 4, l
- 4, session
[s
].snoop_ip
, session
[s
].snoop_port
);
997 session
[s
].cin
+= l
- 4;
998 session
[s
].total_cin
+= l
- 4;
999 sess_local
[s
].cin
+= l
- 4;
1004 STAT(tun_tx_packets
);
1005 INC_STAT(tun_tx_bytes
, l
- 4);
1008 // process IPv6 packet received
1010 // This MUST be called with at least 4 byte behind 'p'.
1011 // (i.e. this routine writes to p[-4]).
1012 void processipv6in(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
1017 CSTAT(processipv6in
);
1019 LOG_HEX(5, "IPv6", p
, l
);
1021 ip
= *(struct in6_addr
*) (p
+ 8);
1022 ipv4
= ntohl(*(uint32_t *)(p
+ 16));
1026 LOG(1, s
, t
, "IP packet too long %d\n", l
);
1027 STAT(tunnel_rx_errors
);
1032 if (ipv4
!= session
[s
].ip
&& memcmp(&config
->ipv6_prefix
, &ip
, 8) && sessionbyipv6(ip
) != s
)
1034 char str
[INET6_ADDRSTRLEN
];
1035 LOG(5, s
, t
, "Dropping packet with spoofed IP %s\n",
1036 inet_ntop(AF_INET6
, &ip
, str
, INET6_ADDRSTRLEN
));
1040 // Check if it's a Router Solicition message.
1041 if (*(p
+ 6) == 58 && *(p
+ 7) == 255 && *(p
+ 24) == 0xFF && *(p
+ 25) == 2 &&
1042 *(uint32_t *)(p
+ 26) == 0 && *(uint32_t *)(p
+ 30) == 0 &&
1043 *(uint32_t *)(p
+ 34) == 0 &&
1044 *(p
+ 38) == 0 && *(p
+ 39) == 2 && *(p
+ 40) == 133) {
1045 LOG(3, s
, t
, "Got IPv6 RS\n");
1046 send_ipv6_ra(t
, s
, &ip
);
1050 // Add on the tun header
1052 *(uint32_t *) p
= htonl(PKTIPV6
);
1055 // Are we throttled and a slave?
1056 if (session
[s
].tbf_in
&& !config
->cluster_iam_master
) {
1057 // Pass it to the master for handling.
1058 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
1062 // Are we throttled and a master??
1063 if (session
[s
].tbf_in
&& config
->cluster_iam_master
) {
1064 // Actually handle the throttled packets.
1065 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
1070 if (tun_write(p
, l
) < 0)
1072 STAT(tun_tx_errors
);
1073 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1074 l
, strerror(errno
), tunfd
, p
);
1079 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1081 // Snooping this session
1082 snoop_send_packet(p
+ 4, l
- 4, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1085 session
[s
].cin
+= l
- 4;
1086 session
[s
].total_cin
+= l
- 4;
1087 sess_local
[s
].cin
+= l
- 4;
1092 STAT(tun_tx_packets
);
1093 INC_STAT(tun_tx_bytes
, l
- 4);
1097 // Helper routine for the TBF filters.
1098 // Used to send queued data in from the user.
1100 void send_ipin(sessionidt s
, uint8_t *buf
, int len
)
1102 LOG_HEX(5, "IP in throttled", buf
, len
);
1104 if (write(tunfd
, buf
, len
) < 0)
1106 STAT(tun_tx_errors
);
1107 LOG(0, 0, 0, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1108 len
, strerror(errno
), tunfd
, buf
);
1113 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1115 // Snooping this session
1116 snoop_send_packet(buf
+ 4, len
- 4, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1119 // Increment packet counters
1120 session
[s
].cin
+= len
- 4;
1121 session
[s
].total_cin
+= len
- 4;
1122 sess_local
[s
].cin
+= len
- 4;
1127 STAT(tun_tx_packets
);
1128 INC_STAT(tun_tx_bytes
, len
- 4);
1132 // Process CCP messages
1133 void processccp(tunnelidt t
, sessionidt s
, uint8_t *p
, uint16_t l
)
1135 uint8_t b
[MAXCONTROL
];
1140 LOG_HEX(5, "CCP", p
, l
);
1141 switch (l
> 1 ? *p
: 0)
1144 session
[s
].flags
|= SF_CCP_ACKED
;
1148 if (l
< 6) // accept no compression
1154 // compression requested--reject
1157 // send CCP request for no compression for our end if not negotiated
1158 if (!(session
[s
].flags
& SF_CCP_ACKED
))
1169 LOG(1, s
, t
, "Unexpected CCP request code %d\n", *p
);
1171 LOG(1, s
, t
, "Short CCP packet\n");
1173 STAT(tunnel_rx_errors
);
1177 if (!(q
= makeppp(b
, sizeof(b
), p
, l
, t
, s
, PPPCCP
)))
1180 tunnelsend(b
, l
+ (q
- b
), t
); // send it
1183 // send a CHAP challenge
1184 void sendchap(tunnelidt t
, sessionidt s
)
1186 uint8_t b
[MAXCONTROL
];
1187 uint16_t r
= sess_local
[s
].radius
;
1194 LOG(1, s
, t
, "No RADIUS to send challenge\n");
1195 STAT(tunnel_tx_errors
);
1199 LOG(1, s
, t
, "Send CHAP challenge\n");
1201 radius
[r
].chap
= 1; // CHAP not PAP
1203 if (radius
[r
].state
!= RADIUSCHAP
)
1206 radius
[r
].state
= RADIUSCHAP
;
1207 radius
[r
].retry
= backoff(radius
[r
].try++);
1208 if (radius
[r
].try > 5)
1210 sessionshutdown(s
, "CHAP timeout.", 3, 0);
1211 STAT(tunnel_tx_errors
);
1214 q
= makeppp(b
, sizeof(b
), 0, 0, t
, s
, PPPCHAP
);
1217 *q
= 1; // challenge
1218 q
[1] = radius
[r
].id
; // ID
1219 q
[4] = 16; // value size (size of challenge)
1220 memcpy(q
+ 5, radius
[r
].auth
, 16); // challenge
1221 strcpy(q
+ 21, hostname
); // our name
1222 *(uint16_t *) (q
+ 2) = htons(strlen(hostname
) + 21); // length
1223 tunnelsend(b
, strlen(hostname
) + 21 + (q
- b
), t
); // send it
1226 // fill in a L2TP message with a PPP frame,
1227 // copies existing PPP message and changes magic number if seen
1228 // returns start of PPP frame
1229 uint8_t *makeppp(uint8_t *b
, int size
, uint8_t *p
, int l
, tunnelidt t
, sessionidt s
, uint16_t mtype
)
1231 if (size
< 12) // Need more space than this!!
1233 static int backtrace_count
= 0;
1234 LOG(0, s
, t
, "makeppp buffer too small for L2TP header (size=%d)\n", size
);
1235 log_backtrace(backtrace_count
, 5)
1239 *(uint16_t *) (b
+ 0) = htons(0x0002); // L2TP with no options
1240 *(uint16_t *) (b
+ 2) = htons(tunnel
[t
].far
); // tunnel
1241 *(uint16_t *) (b
+ 4) = htons(session
[s
].far
); // session
1243 if (mtype
== PPPLCP
|| !(session
[s
].l2tp_flags
& SESSIONACFC
))
1245 *(uint16_t *) b
= htons(0xFF03); // HDLC header
1248 if (mtype
< 0x100 && session
[s
].l2tp_flags
& SESSIONPFC
)
1252 *(uint16_t *) b
= htons(mtype
);
1258 static int backtrace_count
= 0;
1259 LOG(2, s
, t
, "makeppp would overflow buffer (size=%d, header+payload=%d)\n", size
, l
+ 12);
1260 log_backtrace(backtrace_count
, 5)
1270 static uint8_t *add_lcp_auth(uint8_t *b
, int size
, int authtype
)
1272 if ((authtype
== AUTHCHAP
&& size
< 5) || size
< 4)
1275 *b
++ = 3; // Authentication-Protocol
1276 if (authtype
== AUTHCHAP
)
1279 *(uint16_t *) b
= htons(PPPCHAP
); b
+= 2;
1282 else if (authtype
== AUTHPAP
)
1285 *(uint16_t *) b
= htons(PPPPAP
); b
+= 2;
1289 LOG(0, 0, 0, "add_lcp_auth called with unsupported auth type %d\n", authtype
);
1295 // Send initial LCP ConfigReq for MRU, authentication type and magic no
1296 void sendlcp(tunnelidt t
, sessionidt s
, int authtype
)
1298 char b
[500], *q
, *l
;
1300 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, t
, s
, PPPLCP
)))
1303 LOG(4, s
, t
, "Sending LCP ConfigReq for %s\n",
1304 config
->radius_authprefer
== AUTHCHAP
? "CHAP" : "PAP");
1306 if (!session
[s
].mru
)
1307 session
[s
].mru
= DEFAULT_MRU
;
1311 *l
++ = (time_now
% 255) + 1; // ID
1313 l
+= 2; //Save space for length
1315 *l
++ = 1; *l
++ = 4; // Maximum-Receive-Unit (length 4)
1316 *(uint16_t *) l
= htons(session
[s
].mru
); l
+= 2;
1318 l
= add_lcp_auth(l
, sizeof(b
) - (l
- b
), authtype
);
1320 *l
++ = 5; *l
++ = 6; // Magic-Number (length 6)
1321 *(uint32_t *) l
= htonl(session
[s
].magic
);
1324 *(uint16_t *)(q
+ 2) = htons(l
- q
); // Length
1326 LOG_HEX(5, "PPPLCP", q
, l
- q
);
1327 tunnelsend(b
, (l
- b
), t
);
1330 // Send CCP request for no compression
1331 static void initccp(tunnelidt t
, sessionidt s
)
1335 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, t
, s
, PPPCCP
)))
1338 LOG(4, s
, t
, "Sending CCP ConfigReq for no compression\n");
1340 *(uint8_t *)(q
+ 1) = (time_now
% 255) + 1; // ID
1341 *(uint16_t *)(q
+ 2) = htons(4); // Length
1343 LOG_HEX(5, "PPPCCP", q
, 4);
1344 tunnelsend(b
, (q
- b
) + 4 , t
);