abd5609c0bc8b2312e035217210d131194164fcc
3 char const *cvs_id_ppp
= "$Id: ppp.c,v 1.77 2005-08-29 06:17:53 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 int add_lcp_auth(uint8_t *b
, int size
, int authtype
);
28 // Process PAP messages
29 void processpap(sessionidt s
, tunnelidt t
, 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);
64 if (session
[s
].ppp
.phase
!= Authenticate
)
66 LOG(2, s
, t
, "PAP ignored in %s phase\n", ppp_phase(session
[s
].ppp
.phase
));
73 user
[0] = pass
[0] = 0;
74 if (*b
&& *b
< sizeof(user
))
76 memcpy(user
, b
+ 1, *b
);
79 if (*b
&& *b
< sizeof(pass
))
81 memcpy(pass
, b
+ 1, *b
);
85 LOG(3, s
, t
, "PAP login %s/%s\n", user
, pass
);
88 if (session
[s
].ip
|| !(r
= radiusnew(s
)))
90 // respond now, either no RADIUS available or already authenticated
91 uint8_t b
[MAXCONTROL
];
93 uint8_t *p
= makeppp(b
, sizeof(b
), 0, 0, s
, t
, PPPPAP
);
99 *p
= 3; // cant authorise
101 *(uint16_t *) (p
+ 2) = htons(5); // length
102 p
[4] = 0; // no message
103 tunnelsend(b
, 5 + (p
- b
), t
); // send it
107 LOG(3, s
, t
, "Already an IP allocated: %s (%d)\n",
108 fmtaddr(htonl(session
[s
].ip
), 0), session
[s
].ip_pool_index
);
112 LOG(1, s
, t
, "No RADIUS session available to authenticate session...\n");
113 sessionshutdown(s
, "No free RADIUS sessions.", 4, 0);
118 // Run PRE_AUTH plugins
119 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], strdup(user
), strdup(pass
), PPPPAP
, 1 };
120 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
121 if (!packet
.continue_auth
)
123 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
124 if (packet
.username
) free(packet
.username
);
125 if (packet
.password
) free(packet
.password
);
129 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
130 strncpy(radius
[r
].pass
, packet
.password
, sizeof(radius
[r
].pass
) - 1);
132 free(packet
.username
);
133 free(packet
.password
);
136 LOG(3, s
, t
, "Sending login for %s/%s to RADIUS\n", user
, pass
);
137 radiussend(r
, RADIUSAUTH
);
141 // Process CHAP messages
142 void processchap(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
149 LOG_HEX(5, "CHAP", p
, l
);
153 LOG(1, s
, t
, "Short CHAP %u bytes\n", l
);
154 STAT(tunnel_rx_errors
);
155 sessionshutdown(s
, "Short CHAP packet.", 3, 0);
159 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
161 LOG(1, s
, t
, "Length mismatch CHAP %u/%u\n", hl
, l
);
162 STAT(tunnel_rx_errors
);
163 sessionshutdown(s
, "CHAP length mismatch.", 3, 0);
170 LOG(1, s
, t
, "Unexpected CHAP response code %d\n", *p
);
171 STAT(tunnel_rx_errors
);
172 sessionshutdown(s
, "CHAP length mismatch.", 3, 0);
176 r
= sess_local
[s
].radius
;
179 LOG(3, s
, t
, "Unexpected CHAP message\n");
183 if (session
[s
].ppp
.phase
!= Authenticate
)
185 LOG(2, s
, t
, "CHAP ignored in %s phase\n", ppp_phase(session
[s
].ppp
.phase
));
189 if (p
[1] != radius
[r
].id
)
191 LOG(1, s
, t
, "Wrong CHAP response ID %d (should be %d) (%d)\n", p
[1], radius
[r
].id
, r
);
192 STAT(tunnel_rx_errors
);
193 sessionshutdown(s
, "Unexpected CHAP response ID.", 3, 0);
197 if (l
< 5 || p
[4] != 16)
199 LOG(1, s
, t
, "Bad CHAP response length %d\n", l
< 5 ? -1 : p
[4]);
200 STAT(tunnel_rx_errors
);
201 sessionshutdown(s
, "Bad CHAP response length.", 3, 0);
207 if (l
< 16 || l
- 16 >= sizeof(session
[s
].user
))
209 LOG(1, s
, t
, "CHAP user too long %d\n", l
- 16);
210 STAT(tunnel_rx_errors
);
211 sessionshutdown(s
, "CHAP username too long.", 3, 0);
215 // Run PRE_AUTH plugins
217 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], NULL
, NULL
, PPPCHAP
, 1 };
219 packet
.password
= calloc(17, 1);
220 memcpy(packet
.password
, p
, 16);
225 packet
.username
= calloc(l
+ 1, 1);
226 memcpy(packet
.username
, p
, l
);
228 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
229 if (!packet
.continue_auth
)
231 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
232 if (packet
.username
) free(packet
.username
);
233 if (packet
.password
) free(packet
.password
);
237 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
238 memcpy(radius
[r
].pass
, packet
.password
, 16);
240 free(packet
.username
);
241 free(packet
.password
);
245 LOG(3, s
, t
, "CHAP login %s\n", session
[s
].user
);
246 radiussend(r
, RADIUSAUTH
);
249 static void dumplcp(uint8_t *p
, int l
)
252 uint8_t *o
= (p
+ 4);
254 LOG_HEX(5, "PPP LCP Packet", p
, l
);
255 LOG(4, 0, 0, "PPP LCP Packet type %d (%s len %d)\n", *p
, ppp_code((int)*p
), ntohs( ((uint16_t *) p
)[1]) );
256 LOG(4, 0, 0, "Length: %d\n", l
);
257 if (*p
!= ConfigReq
&& *p
!= ConfigRej
&& *p
!= ConfigAck
)
266 LOG(4, 0, 0, " Option length is %d...\n", length
);
271 LOG(4, 0, 0, " Option type is 0...\n");
278 case 1: // Maximum-Receive-Unit
280 LOG(4, 0, 0, " %s %d\n", ppp_lcp_option(type
), ntohs(*(uint16_t *)(o
+ 2)));
282 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
284 case 2: // Async-Control-Character-Map
287 uint32_t asyncmap
= ntohl(*(uint32_t *)(o
+ 2));
288 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), asyncmap
);
291 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
293 case 3: // Authentication-Protocol
296 int proto
= ntohs(*(uint16_t *)(o
+ 2));
297 LOG(4, 0, 0, " %s 0x%x (%s)\n", ppp_lcp_option(type
), proto
,
298 proto
== PPPPAP
? "PAP" : "UNSUPPORTED");
300 else if (length
== 5)
302 int proto
= ntohs(*(uint16_t *)(o
+ 2));
303 int algo
= *(uint8_t *)(o
+ 4);
304 LOG(4, 0, 0, " %s 0x%x 0x%x (%s)\n", ppp_lcp_option(type
), proto
, algo
,
305 (proto
== PPPCHAP
&& algo
== 5) ? "CHAP MD5" : "UNSUPPORTED");
308 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
310 case 4: // Quality-Protocol
312 uint32_t qp
= ntohl(*(uint32_t *)(o
+ 2));
313 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), qp
);
316 case 5: // Magic-Number
319 uint32_t magicno
= ntohl(*(uint32_t *)(o
+ 2));
320 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), magicno
);
323 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
325 case 7: // Protocol-Field-Compression
326 case 8: // Address-And-Control-Field-Compression
327 LOG(4, 0, 0, " %s\n", ppp_lcp_option(type
));
330 LOG(2, 0, 0, " Unknown PPP LCP Option type %d\n", type
);
338 void lcp_open(sessionidt s
, tunnelidt t
)
340 // transition to Authentication or Network phase:
341 session
[s
].ppp
.phase
= sess_local
[s
].lcp_authtype
? Authenticate
: Network
;
343 LOG(3, s
, t
, "LCP: Opened, phase %s\n", ppp_phase(session
[s
].ppp
.phase
));
346 change_state(s
, lcp
, Opened
);
348 if (session
[s
].ppp
.phase
== Authenticate
)
350 if (sess_local
[s
].lcp_authtype
== AUTHCHAP
)
357 change_state(s
, ipcp
, RequestSent
);
358 // move to passive state for IPv6 (if configured), CCP
359 if (config
->ipv6_prefix
.s6_addr
[0])
360 change_state(s
, ipv6cp
, Stopped
);
362 change_state(s
, ipv6cp
, Closed
);
364 change_state(s
, ccp
, Stopped
);
368 static void lcp_restart(sessionidt s
)
370 session
[s
].ppp
.phase
= Establish
;
372 change_state(s
, ipcp
, Dead
);
373 change_state(s
, ipv6cp
, Dead
);
374 change_state(s
, ccp
, Dead
);
377 static uint8_t *ppp_rej(sessionidt s
, uint8_t *buf
, size_t blen
, uint16_t mtype
,
378 uint8_t **response
, uint8_t *queued
, uint8_t *packet
, uint8_t *option
)
380 if (!*response
|| **response
!= ConfigRej
)
382 queued
= *response
= makeppp(buf
, blen
, packet
, 2, s
, session
[s
].tunnel
, mtype
);
390 if ((queued
- buf
+ option
[1]) > blen
)
392 LOG(2, s
, session
[s
].tunnel
, "PPP overflow for ConfigRej (proto %u, option %u).\n", mtype
, *option
);
396 memcpy(queued
, option
, option
[1]);
397 return queued
+ option
[1];
400 static uint8_t *ppp_nak(sessionidt s
, uint8_t *buf
, size_t blen
, uint16_t mtype
,
401 uint8_t **response
, uint8_t *queued
, uint8_t *packet
, uint8_t *option
,
402 uint8_t *value
, size_t vlen
)
407 case PPPLCP
: nak_sent
= &sess_local
[s
].lcp
.nak_sent
; break;
408 case PPPIPCP
: nak_sent
= &sess_local
[s
].ipcp
.nak_sent
; break;
409 case PPPIPV6CP
: nak_sent
= &sess_local
[s
].ipv6cp
.nak_sent
; break;
410 default: return 0; // ?
413 if (*response
&& **response
!= ConfigNak
)
415 if (*nak_sent
< config
->ppp_max_failure
) // reject queued
418 return ppp_rej(s
, buf
, blen
, mtype
, response
, 0, packet
, option
);
423 if (*nak_sent
>= config
->ppp_max_failure
)
424 return ppp_rej(s
, buf
, blen
, mtype
, response
, 0, packet
, option
);
426 queued
= *response
= makeppp(buf
, blen
, packet
, 2, s
, session
[s
].tunnel
, mtype
);
435 if ((queued
- buf
+ vlen
+ 2) > blen
)
437 LOG(2, s
, session
[s
].tunnel
, "PPP overflow for ConfigNak (proto %u, option %u).\n", mtype
, *option
);
442 *queued
++ = vlen
+ 2;
443 memcpy(queued
, value
, vlen
);
444 return queued
+ vlen
;
447 // Process LCP messages
448 void processlcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
450 uint8_t b
[MAXCONTROL
];
452 uint32_t magicno
= 0;
457 LOG_HEX(5, "LCP", p
, l
);
460 LOG(1, s
, t
, "Short LCP %d bytes\n", l
);
461 STAT(tunnel_rx_errors
);
465 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
467 LOG(1, s
, t
, "Length mismatch LCP %u/%u\n", hl
, l
);
468 STAT(tunnel_rx_errors
);
473 if (session
[s
].die
) // going down...
476 LOG(*p
== EchoReq
? 4 : 3, s
, t
, "LCP: recv %s\n", ppp_code(*p
));
477 if (config
->debug
> 3) dumplcp(p
, l
);
482 uint8_t *o
= (p
+ 4);
490 if (length
== 0 || type
== 0 || x
< length
) break;
493 case 3: // Authentication-Protocol
495 int proto
= ntohs(*(uint16_t *)(o
+ 2));
498 else if (proto
== PPPCHAP
&& *(o
+ 4) == 5)
508 if (!session
[s
].ip
&& authtype
)
509 sess_local
[s
].lcp_authtype
= authtype
;
511 switch (session
[s
].ppp
.lcp
)
514 initialise_restart_count(s
, lcp
);
515 change_state(s
, lcp
, AckReceived
);
520 LOG(2, s
, t
, "LCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.lcp
));
521 if (session
[s
].ppp
.lcp
== Opened
)
525 change_state(s
, lcp
, RequestSent
);
533 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
536 else if (*p
== ConfigReq
)
539 uint8_t *o
= (p
+ 4);
540 uint8_t *response
= 0;
541 static uint8_t asyncmap
[4] = { 0, 0, 0, 0 }; // all zero
542 static uint8_t authproto
[5];
549 if (length
== 0 || type
== 0 || x
< length
) break;
552 case 1: // Maximum-Receive-Unit
553 session
[s
].mru
= ntohs(*(uint16_t *)(o
+ 2));
556 case 2: // Async-Control-Character-Map
557 if (!ntohl(*(uint32_t *)(o
+ 2))) // all bits zero is OK
560 LOG(3, s
, t
, " Remote requesting asyncmap. Rejecting.\n");
561 q
= ppp_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, asyncmap
, sizeof(asyncmap
));
564 case 3: // Authentication-Protocol
566 int proto
= ntohs(*(uint16_t *)(o
+ 2));
567 char proto_name
[] = "0x0000";
572 if (config
->radius_authtypes
& AUTHPAP
)
574 sess_local
[s
].lcp_authtype
= AUTHPAP
;
578 strcpy(proto_name
, "PAP");
580 else if (proto
== PPPCHAP
)
582 if (config
->radius_authtypes
& AUTHCHAP
583 && *(o
+ 4) == 5) // MD5
585 sess_local
[s
].lcp_authtype
= AUTHCHAP
;
589 strcpy(proto_name
, "CHAP");
592 sprintf(proto_name
, "%#4.4x", proto
);
594 LOG(3, s
, t
, " Remote requesting %s authentication. Rejecting.\n", proto_name
);
596 alen
= add_lcp_auth(authproto
, sizeof(authproto
), config
->radius_authprefer
);
597 if (alen
< 2) break; // paranoia
599 q
= ppp_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, authproto
+ 2, alen
- 2);
600 if (q
&& *response
== ConfigNak
&&
601 config
->radius_authtypes
!= config
->radius_authprefer
)
604 alen
= add_lcp_auth(authproto
, sizeof(authproto
), config
->radius_authtypes
& ~config
->radius_authprefer
);
606 q
= ppp_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, authproto
+ 2, alen
- 2);
613 case 5: // Magic-Number
614 magicno
= ntohl(*(uint32_t *)(o
+ 2));
617 case 4: // Quality-Protocol
618 case 7: // Protocol-Field-Compression
619 case 8: // Address-And-Control-Field-Compression
622 default: // Reject any unknown options
623 LOG(3, s
, t
, " Rejecting unknown PPP LCP option %d\n", type
);
624 q
= ppp_rej(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
);
632 l
= q
- response
; // LCP packet length
633 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
637 // Send packet back as ConfigAck
638 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
);
639 if (!response
) return;
640 *response
= ConfigAck
;
643 switch (session
[s
].ppp
.lcp
)
646 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPLCP
);
647 if (!response
) return;
648 *response
= TerminateAck
;
649 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
653 initialise_restart_count(s
, lcp
);
655 if (*response
== ConfigAck
)
656 change_state(s
, lcp
, AckSent
);
658 change_state(s
, lcp
, RequestSent
);
663 if (*response
== ConfigAck
)
664 change_state(s
, lcp
, AckSent
);
669 if (*response
== ConfigAck
)
680 if (*response
== ConfigAck
)
681 change_state(s
, lcp
, AckSent
);
683 change_state(s
, lcp
, RequestSent
);
688 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
692 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*response
));
693 if (config
->debug
> 3) dumplcp(response
, l
);
695 tunnelsend(b
, l
+ (response
- b
), t
);
697 else if (*p
== ConfigNak
|| *p
== ConfigRej
)
700 uint8_t *o
= (p
+ 4);
708 if (length
== 0 || type
== 0 || x
< length
) break;
711 case 1: // Maximum-Receive-Unit
714 session
[s
].mru
= ntohs(*(uint16_t *)(o
+ 2));
715 LOG(3, s
, t
, " Remote requested MRU of %u\n", session
[s
].mru
);
720 LOG(3, s
, t
, " Remote rejected MRU negotiation\n");
725 case 3: // Authentication-Protocol
731 int proto
= ntohs(*(uint16_t *)(o
+ 2));
734 authtype
= config
->radius_authtypes
& AUTHPAP
;
735 LOG(3, s
, t
, " Remote requested PAP authentication...%sing\n",
736 authtype
? "accept" : "reject");
738 else if (proto
== PPPCHAP
&& *(o
+ 4) == 5)
740 authtype
= config
->radius_authtypes
& AUTHCHAP
;
741 LOG(3, s
, t
, " Remote requested CHAP authentication...%sing\n",
742 authtype
? "accept" : "reject");
746 LOG(3, s
, t
, " Rejecting unsupported authentication %#4x\n",
752 LOG(2, s
, t
, "LCP: remote rejected auth negotiation\n");
753 authtype
= 0; // shutdown
759 LOG(2, s
, t
, "LCP: remote sent %s for type %u?\n", ppp_code(*p
), type
);
768 sessionshutdown(s
, "Unsupported authentication.", 3, 0);
773 sess_local
[s
].lcp_authtype
= authtype
;
775 switch (session
[s
].ppp
.lcp
)
780 uint8_t *response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPLCP
);
781 if (!response
) return;
782 *response
= TerminateAck
;
783 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
785 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*response
));
786 if (config
->debug
> 3) dumplcp(response
, l
);
788 tunnelsend(b
, l
+ (response
- b
), t
);
794 initialise_restart_count(s
, lcp
);
799 LOG(2, s
, t
, "LCP: ConfigNak in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.lcp
));
809 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
813 else if (*p
== TerminateReq
)
815 *p
= TerminateAck
; // close
816 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
);
819 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*q
));
820 if (config
->debug
> 3) dumplcp(q
, l
);
822 tunnelsend(b
, l
+ (q
- b
), t
); // send it
823 sessionshutdown(s
, "Remote end closed connection.", 3, 0);
825 else if (*p
== TerminateAck
)
827 sessionshutdown(s
, "Connection closed.", 3, 0);
829 else if (*p
== ProtocolRej
)
836 if (l
> 5 && !(proto
& 1))
843 if (proto
== PPPIPV6CP
)
845 LOG(3, s
, t
, "IPv6 rejected\n");
846 change_state(s
, ipv6cp
, Closed
);
850 LOG(3, s
, t
, "LCP protocol reject: 0x%04X\n", proto
);
853 else if (*p
== EchoReq
)
855 *p
= EchoReply
; // reply
856 *(uint32_t *) (p
+ 4) = htonl(session
[s
].magic
); // our magic number
857 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
);
860 LOG(4, s
, t
, "LCP: send %s\n", ppp_code(*q
));
861 if (config
->debug
> 3) dumplcp(q
, l
);
863 tunnelsend(b
, l
+ (q
- b
), t
); // send it
865 else if (*p
== EchoReply
)
867 // Ignore it, last_packet time is set earlier than this.
872 int mru
= session
[s
].mru
;
876 if (l
> mru
) l
= mru
;
879 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
);
882 LOG(2, s
, t
, "Unexpected LCP code %s\n", ppp_code(code
));
883 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*q
));
884 if (config
->debug
> 3) dumplcp(q
, l
);
886 tunnelsend(b
, l
+ (q
- b
), t
);
890 static void ipcp_open(sessionidt s
, tunnelidt t
)
892 LOG(3, s
, t
, "IPCP: Opened, session is now active\n");
894 change_state(s
, ipcp
, Opened
);
896 if (!session
[s
].walled_garden
)
898 uint16_t r
= radiusnew(s
);
900 radiussend(r
, RADIUSSTART
); // send radius start
903 // start IPv6 if configured and still in passive state
904 if (session
[s
].ppp
.ipv6cp
== Stopped
)
907 change_state(s
, ipv6cp
, RequestSent
);
911 // Process IPCP messages
912 void processipcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
914 uint8_t b
[MAXCONTROL
];
920 LOG_HEX(5, "IPCP", p
, l
);
923 LOG(1, s
, t
, "Short IPCP %d bytes\n", l
);
924 STAT(tunnel_rx_errors
);
928 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
930 LOG(1, s
, t
, "Length mismatch IPCP %u/%u\n", hl
, l
);
931 STAT(tunnel_rx_errors
);
936 if (session
[s
].ppp
.phase
< Network
)
938 LOG(2, s
, t
, "IPCP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
942 LOG(3, s
, t
, "IPCP: recv %s\n", ppp_code(*p
));
946 switch (session
[s
].ppp
.ipcp
)
949 initialise_restart_count(s
, ipcp
);
950 change_state(s
, ipcp
, AckReceived
);
955 LOG(2, s
, t
, "IPCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ipcp
));
957 change_state(s
, ipcp
, RequestSent
);
965 LOG(2, s
, t
, "IPCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipcp
));
968 else if (*p
== ConfigReq
)
970 uint8_t *response
= 0;
980 case 3: // ip address
981 gotip
++; // seen address
982 if (o
[1] != 6 || o
[1] > length
) return;
984 addr
= htonl(session
[s
].ip
);
985 if (memcmp(o
+ 2, &addr
, (sizeof addr
)))
988 q
= ppp_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
989 if (!q
|| (q
!= oq
&& *response
== ConfigRej
))
991 sessionshutdown(s
, "Can't negotiate IPCP.", 3, 0);
998 case 129: // primary DNS
999 if (o
[1] != 6 || o
[1] > length
) return;
1001 addr
= htonl(session
[s
].dns1
);
1002 if (memcmp(o
+ 2, &addr
, (sizeof addr
)))
1004 q
= ppp_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
1010 case 131: // secondary DNS
1011 if (o
[1] != 6 || o
[1] > length
) return;
1013 addr
= htonl(session
[s
].dns1
);
1014 if (memcmp(o
+ 2, &addr
, sizeof(addr
)))
1016 q
= ppp_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
1023 LOG(2, s
, t
, " Rejecting PPP IPCP Option type %d\n", *o
);
1024 q
= ppp_rej(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
);
1034 l
= q
- response
; // IPCP packet length
1035 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
1039 // Send packet back as ConfigAck
1040 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPCP
);
1041 if (!response
) return;
1042 *response
= ConfigAck
;
1046 LOG(1, s
, t
, "No IP in IPCP request\n");
1047 STAT(tunnel_rx_errors
);
1051 switch (session
[s
].ppp
.ipcp
)
1054 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPIPCP
);
1055 if (!response
) return;
1056 *response
= TerminateAck
;
1057 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
1061 initialise_restart_count(s
, ipcp
);
1063 if (*response
== ConfigAck
)
1064 change_state(s
, ipcp
, AckSent
);
1066 change_state(s
, ipcp
, RequestSent
);
1071 if (*response
== ConfigAck
)
1072 change_state(s
, ipcp
, AckSent
);
1077 if (*response
== ConfigAck
)
1083 initialise_restart_count(s
, ipcp
);
1088 if (*response
== ConfigAck
)
1089 change_state(s
, ipcp
, AckSent
);
1091 change_state(s
, ipcp
, RequestSent
);
1096 LOG(2, s
, t
, "IPCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipcp
));
1100 LOG(3, s
, t
, "IPCP: send %s\n", ppp_code(*response
));
1101 tunnelsend(b
, l
+ (response
- b
), t
);
1103 else if (*p
== TerminateReq
)
1106 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPCP
);
1108 LOG(3, s
, t
, "IPCP: send %s\n", ppp_code(*q
));
1109 tunnelsend(b
, l
+ (q
- b
), t
);
1110 change_state(s
, ipcp
, Stopped
);
1115 int mru
= session
[s
].mru
;
1119 if (l
> mru
) l
= mru
;
1122 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPCP
);
1125 LOG(2, s
, t
, "Unexpected IPCP code %s\n", ppp_code(code
));
1126 LOG(3, s
, t
, "IPCP: send %s\n", ppp_code(*q
));
1127 tunnelsend(b
, l
+ (q
- b
), t
);
1131 static void ipv6cp_open(sessionidt s
, tunnelidt t
)
1133 LOG(3, s
, t
, "IPV6CP: Opened\n");
1135 change_state(s
, ipv6cp
, Opened
);
1136 if (session
[s
].ipv6prefixlen
)
1137 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 1);
1139 // Send an initial RA (TODO: Should we send these regularly?)
1140 send_ipv6_ra(s
, t
, NULL
);
1143 // Process IPV6CP messages
1144 void processipv6cp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1146 uint8_t b
[MAXCONTROL
];
1150 CSTAT(processipv6cp
);
1152 LOG_HEX(5, "IPV6CP", p
, l
);
1155 LOG(1, s
, t
, "Short IPV6CP %d bytes\n", l
);
1156 STAT(tunnel_rx_errors
);
1160 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
1162 LOG(1, s
, t
, "Length mismatch IPV6CP %u/%u\n", hl
, l
);
1163 STAT(tunnel_rx_errors
);
1168 if (session
[s
].ppp
.phase
< Network
)
1170 LOG(2, s
, t
, "IPV6CP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
1174 LOG(3, s
, t
, "IPV6CP: recv %s\n", ppp_code(*p
));
1176 if (!config
->ipv6_prefix
.s6_addr
[0])
1178 LOG(2, s
, t
, "IPV6CP: %s rejected (not configured)\n", ppp_code(*p
));
1180 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
);
1182 tunnelsend(b
, l
+ (q
- b
), t
);
1188 LOG(3, s
, t
, "IPV6CP: no IPv4 address (IPCP in state %s)\n", ppp_state(session
[s
].ppp
.ipcp
));
1189 return; // need IPCP to complete...
1192 if (*p
== ConfigAck
)
1194 switch (session
[s
].ppp
.ipv6cp
)
1197 initialise_restart_count(s
, ipv6cp
);
1198 change_state(s
, ipv6cp
, AckReceived
);
1203 LOG(2, s
, t
, "IPV6CP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ipv6cp
));
1205 change_state(s
, ipv6cp
, RequestSent
);
1213 LOG(2, s
, t
, "IPV6CP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipv6cp
));
1216 else if (*p
== ConfigReq
)
1218 uint8_t *response
= 0;
1228 case 1: // interface identifier
1229 gotip
++; // seen address
1230 if (o
[1] != 10 || o
[1] > length
) return;
1232 *(uint32_t *) ident
= htonl(session
[s
].ip
);
1233 *(uint32_t *) (ident
+ 4) = 0;
1235 if (memcmp(o
+ 2, ident
, sizeof(ident
)))
1237 q
= ppp_nak(s
, b
, sizeof(b
), PPPIPV6CP
, &response
, q
, p
, o
, ident
, sizeof(ident
));
1244 LOG(2, s
, t
, " Rejecting PPP IPV6CP Option type %d\n", *o
);
1245 q
= ppp_rej(s
, b
, sizeof(b
), PPPIPV6CP
, &response
, q
, p
, o
);
1255 l
= q
- response
; // IPV6CP packet length
1256 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
1260 // Send packet back as ConfigAck
1261 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
);
1262 if (!response
) return;
1263 *response
= ConfigAck
;
1267 LOG(1, s
, t
, "No interface identifier in IPV6CP request\n");
1268 STAT(tunnel_rx_errors
);
1272 switch (session
[s
].ppp
.ipv6cp
)
1275 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPIPV6CP
);
1276 if (!response
) return;
1277 *response
= TerminateAck
;
1278 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
1282 initialise_restart_count(s
, ipv6cp
);
1284 if (*response
== ConfigAck
)
1285 change_state(s
, ipv6cp
, AckSent
);
1287 change_state(s
, ipv6cp
, RequestSent
);
1292 if (*response
== ConfigAck
)
1293 change_state(s
, ipv6cp
, AckSent
);
1298 if (*response
== ConfigAck
)
1304 initialise_restart_count(s
, ipv6cp
);
1309 if (*response
== ConfigAck
)
1310 change_state(s
, ipv6cp
, AckSent
);
1312 change_state(s
, ipv6cp
, RequestSent
);
1317 LOG(2, s
, t
, "IPV6CP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipv6cp
));
1321 LOG(3, s
, t
, "IPV6CP: send %s\n", ppp_code(*response
));
1322 tunnelsend(b
, l
+ (response
- b
), t
);
1324 else if (*p
== TerminateReq
)
1327 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
);
1329 LOG(3, s
, t
, "IPV6CP: send %s\n", ppp_code(*q
));
1330 tunnelsend(b
, l
+ (q
- b
), t
);
1331 change_state(s
, ipv6cp
, Stopped
);
1336 int mru
= session
[s
].mru
;
1340 if (l
> mru
) l
= mru
;
1343 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
);
1346 LOG(2, s
, t
, "Unexpected IPV6CP code %s\n", ppp_code(code
));
1347 LOG(3, s
, t
, "IPV6CP: send %s\n", ppp_code(*q
));
1348 tunnelsend(b
, l
+ (q
- b
), t
);
1352 // process IP packet received
1354 // This MUST be called with at least 4 byte behind 'p'.
1355 // (i.e. this routine writes to p[-4]).
1356 void processipin(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1362 LOG_HEX(5, "IP", p
, l
);
1364 ip
= ntohl(*(uint32_t *)(p
+ 12));
1368 LOG(1, s
, t
, "IP packet too long %d\n", l
);
1369 STAT(tunnel_rx_errors
);
1373 if (session
[s
].ppp
.phase
!= Network
|| session
[s
].ppp
.ipcp
!= Opened
)
1376 // no spoof (do sessionbyip to handled statically routed subnets)
1377 if (ip
!= session
[s
].ip
&& sessionbyip(htonl(ip
)) != s
)
1379 LOG(5, s
, t
, "Dropping packet with spoofed IP %s\n", fmtaddr(htonl(ip
), 0));
1383 // run access-list if any
1384 if (session
[s
].filter_in
&& !ip_filter(p
, l
, session
[s
].filter_in
- 1))
1387 // Add on the tun header
1389 *(uint32_t *) p
= htonl(PKTIP
);
1392 // Are we throttled and a slave?
1393 if (session
[s
].tbf_in
&& !config
->cluster_iam_master
) {
1394 // Pass it to the master for handling.
1395 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
1399 // Are we throttled and a master??
1400 if (session
[s
].tbf_in
&& config
->cluster_iam_master
) {
1401 // Actually handle the throttled packets.
1402 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
1407 if (tun_write(p
, l
) < 0)
1409 STAT(tun_tx_errors
);
1410 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1411 l
, strerror(errno
), tunfd
, p
);
1419 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1421 // Snooping this session
1422 snoop_send_packet(p
, l
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1425 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, l
);
1426 session
[s
].cin_delta
+= l
;
1429 sess_local
[s
].cin
+= l
;
1430 sess_local
[s
].pin
++;
1434 STAT(tun_tx_packets
);
1435 INC_STAT(tun_tx_bytes
, l
);
1438 // process IPv6 packet received
1440 // This MUST be called with at least 4 byte behind 'p'.
1441 // (i.e. this routine writes to p[-4]).
1442 void processipv6in(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1447 CSTAT(processipv6in
);
1449 LOG_HEX(5, "IPv6", p
, l
);
1451 ip
= *(struct in6_addr
*) (p
+ 8);
1452 ipv4
= ntohl(*(uint32_t *)(p
+ 16));
1456 LOG(1, s
, t
, "IP packet too long %d\n", l
);
1457 STAT(tunnel_rx_errors
);
1461 if (session
[s
].ppp
.phase
!= Network
|| session
[s
].ppp
.ipv6cp
!= Opened
)
1465 if (ipv4
!= session
[s
].ip
&& memcmp(&config
->ipv6_prefix
, &ip
, 8) && sessionbyipv6(ip
) != s
)
1467 char str
[INET6_ADDRSTRLEN
];
1468 LOG(5, s
, t
, "Dropping packet with spoofed IP %s\n",
1469 inet_ntop(AF_INET6
, &ip
, str
, INET6_ADDRSTRLEN
));
1473 // Check if it's a Router Solicition message.
1474 if (*(p
+ 6) == 58 && *(p
+ 7) == 255 && *(p
+ 24) == 0xFF && *(p
+ 25) == 2 &&
1475 *(uint32_t *)(p
+ 26) == 0 && *(uint32_t *)(p
+ 30) == 0 &&
1476 *(uint32_t *)(p
+ 34) == 0 &&
1477 *(p
+ 38) == 0 && *(p
+ 39) == 2 && *(p
+ 40) == 133) {
1478 LOG(3, s
, t
, "Got IPv6 RS\n");
1479 send_ipv6_ra(s
, t
, &ip
);
1483 // Add on the tun header
1485 *(uint32_t *) p
= htonl(PKTIPV6
);
1488 // Are we throttled and a slave?
1489 if (session
[s
].tbf_in
&& !config
->cluster_iam_master
) {
1490 // Pass it to the master for handling.
1491 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
1495 // Are we throttled and a master??
1496 if (session
[s
].tbf_in
&& config
->cluster_iam_master
) {
1497 // Actually handle the throttled packets.
1498 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
1503 if (tun_write(p
, l
) < 0)
1505 STAT(tun_tx_errors
);
1506 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1507 l
, strerror(errno
), tunfd
, p
);
1515 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1517 // Snooping this session
1518 snoop_send_packet(p
, l
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1521 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, l
);
1522 session
[s
].cin_delta
+= l
;
1525 sess_local
[s
].cin
+= l
;
1526 sess_local
[s
].pin
++;
1530 STAT(tun_tx_packets
);
1531 INC_STAT(tun_tx_bytes
, l
);
1535 // Helper routine for the TBF filters.
1536 // Used to send queued data in from the user.
1538 void send_ipin(sessionidt s
, uint8_t *buf
, int len
)
1540 LOG_HEX(5, "IP in throttled", buf
, len
);
1542 if (write(tunfd
, buf
, len
) < 0)
1544 STAT(tun_tx_errors
);
1545 LOG(0, 0, 0, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1546 len
, strerror(errno
), tunfd
, buf
);
1554 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1556 // Snooping this session
1557 snoop_send_packet(buf
, len
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1560 // Increment packet counters
1561 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, len
);
1562 session
[s
].cin_delta
+= len
;
1565 sess_local
[s
].cin
+= len
;
1566 sess_local
[s
].pin
++;
1570 STAT(tun_tx_packets
);
1571 INC_STAT(tun_tx_bytes
, len
- 4);
1575 // Process CCP messages
1576 void processccp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1578 uint8_t b
[MAXCONTROL
];
1583 LOG_HEX(5, "CCP", p
, l
);
1585 if (session
[s
].ppp
.phase
< Network
)
1587 LOG(2, s
, t
, "CCP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
1593 LOG(1, s
, t
, "Short CCP packet\n");
1594 STAT(tunnel_rx_errors
);
1597 LOG(3, s
, t
, "CCP: recv %s\n", ppp_code(*p
));
1598 if (*p
== ConfigAck
)
1600 switch (session
[s
].ppp
.ccp
)
1603 initialise_restart_count(s
, ccp
);
1604 change_state(s
, ccp
, AckReceived
);
1609 LOG(2, s
, t
, "CCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ccp
));
1611 change_state(s
, ccp
, RequestSent
);
1615 LOG(3, s
, t
, "CCP: Opened\n");
1616 change_state(s
, ccp
, Opened
);
1620 LOG(2, s
, t
, "CCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ccp
));
1623 else if (*p
== ConfigReq
)
1625 if (l
< 6) // accept no compression
1627 else // compression requested--reject
1630 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPCCP
);
1633 switch (session
[s
].ppp
.ccp
)
1636 q
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPCCP
);
1639 *((uint16_t *) (q
+ 2)) = htons(l
= 4);
1643 initialise_restart_count(s
, ccp
);
1645 if (*q
== ConfigAck
)
1646 change_state(s
, ccp
, AckSent
);
1648 change_state(s
, ccp
, RequestSent
);
1653 if (*q
== ConfigAck
)
1654 change_state(s
, ccp
, AckSent
);
1659 if (*q
== ConfigAck
)
1660 change_state(s
, ccp
, Opened
);
1665 initialise_restart_count(s
, ccp
);
1670 if (*q
== ConfigAck
)
1671 change_state(s
, ccp
, AckSent
);
1673 change_state(s
, ccp
, RequestSent
);
1678 LOG(2, s
, t
, "CCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ccp
));
1682 LOG(3, s
, t
, "CCP: send %s\n", ppp_code(*q
));
1683 tunnelsend(b
, l
+ (q
- b
), t
);
1685 else if (*p
== TerminateReq
)
1688 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPCCP
);
1690 LOG(3, s
, t
, "CCP: send %s\n", ppp_code(*q
));
1691 tunnelsend(b
, l
+ (q
- b
), t
);
1692 change_state(s
, ccp
, Stopped
);
1697 int mru
= session
[s
].mru
;
1701 if (l
> mru
) l
= mru
;
1704 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPCCP
);
1707 LOG(2, s
, t
, "Unexpected CCP code %s\n", ppp_code(code
));
1708 LOG(3, s
, t
, "CCP: send %s\n", ppp_code(*q
));
1709 tunnelsend(b
, l
+ (q
- b
), t
);
1713 // send a CHAP challenge
1714 void sendchap(sessionidt s
, tunnelidt t
)
1716 uint8_t b
[MAXCONTROL
];
1725 LOG(1, s
, t
, "No RADIUS to send challenge\n");
1726 STAT(tunnel_tx_errors
);
1730 LOG(1, s
, t
, "Send CHAP challenge\n");
1732 radius
[r
].chap
= 1; // CHAP not PAP
1734 if (radius
[r
].state
!= RADIUSCHAP
)
1737 radius
[r
].state
= RADIUSCHAP
;
1738 radius
[r
].retry
= backoff(radius
[r
].try++);
1739 if (radius
[r
].try > 5)
1741 sessionshutdown(s
, "CHAP timeout.", 3, 0);
1742 STAT(tunnel_tx_errors
);
1745 q
= makeppp(b
, sizeof(b
), 0, 0, s
, t
, PPPCHAP
);
1748 *q
= 1; // challenge
1749 q
[1] = radius
[r
].id
; // ID
1750 q
[4] = 16; // value size (size of challenge)
1751 memcpy(q
+ 5, radius
[r
].auth
, 16); // challenge
1752 strcpy((char *) q
+ 21, hostname
); // our name
1753 *(uint16_t *) (q
+ 2) = htons(strlen(hostname
) + 21); // length
1754 tunnelsend(b
, strlen(hostname
) + 21 + (q
- b
), t
); // send it
1757 // fill in a L2TP message with a PPP frame,
1758 // copies existing PPP message and changes magic number if seen
1759 // returns start of PPP frame
1760 uint8_t *makeppp(uint8_t *b
, int size
, uint8_t *p
, int l
, sessionidt s
, tunnelidt t
, uint16_t mtype
)
1762 if (size
< 12) // Need more space than this!!
1764 static int backtrace_count
= 0;
1765 LOG(0, s
, t
, "makeppp buffer too small for L2TP header (size=%d)\n", size
);
1766 log_backtrace(backtrace_count
, 5)
1770 *(uint16_t *) (b
+ 0) = htons(0x0002); // L2TP with no options
1771 *(uint16_t *) (b
+ 2) = htons(tunnel
[t
].far
); // tunnel
1772 *(uint16_t *) (b
+ 4) = htons(session
[s
].far
); // session
1774 if (mtype
== PPPLCP
|| !(session
[s
].l2tp_flags
& SESSIONACFC
))
1776 *(uint16_t *) b
= htons(0xFF03); // HDLC header
1779 if (mtype
< 0x100 && session
[s
].l2tp_flags
& SESSIONPFC
)
1783 *(uint16_t *) b
= htons(mtype
);
1789 static int backtrace_count
= 0;
1790 LOG(2, s
, t
, "makeppp would overflow buffer (size=%d, header+payload=%d)\n", size
, l
+ 12);
1791 log_backtrace(backtrace_count
, 5)
1801 static int add_lcp_auth(uint8_t *b
, int size
, int authtype
)
1804 if ((authtype
== AUTHCHAP
&& size
< 5) || size
< 4)
1807 *b
++ = 3; // Authentication-Protocol
1808 if (authtype
== AUTHCHAP
)
1810 len
= *b
++ = 5; // length
1811 *(uint16_t *) b
= htons(PPPCHAP
); b
+= 2;
1814 else if (authtype
== AUTHPAP
)
1816 len
= *b
++ = 4; // length
1817 *(uint16_t *) b
= htons(PPPPAP
); b
+= 2;
1821 LOG(0, 0, 0, "add_lcp_auth called with unsupported auth type %d\n", authtype
);
1827 // Send initial LCP ConfigReq for MRU, authentication type and magic no
1828 void sendlcp(sessionidt s
, tunnelidt t
)
1830 uint8_t b
[500], *q
, *l
;
1831 int authtype
= sess_local
[s
].lcp_authtype
;
1833 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, s
, t
, PPPLCP
)))
1836 LOG(3, s
, t
, "LCP: send ConfigReq%s%s%s\n",
1837 authtype
? " (" : "",
1838 authtype
? (authtype
== AUTHCHAP
? "CHAP" : "PAP") : "",
1839 authtype
? ")" : "");
1843 *l
++ = (time_now
% 255) + 1; // ID
1845 l
+= 2; //Save space for length
1849 *l
++ = 1; *l
++ = 4; // Maximum-Receive-Unit (length 4)
1850 *(uint16_t *) l
= htons(session
[s
].mru
); l
+= 2;
1854 l
+= add_lcp_auth(l
, sizeof(b
) - (l
- b
), authtype
);
1856 *l
++ = 5; *l
++ = 6; // Magic-Number (length 6)
1857 *(uint32_t *) l
= htonl(session
[s
].magic
);
1860 *(uint16_t *)(q
+ 2) = htons(l
- q
); // Length
1862 LOG_HEX(5, "PPPLCP", q
, l
- q
);
1863 if (config
->debug
> 3) dumplcp(q
, l
- q
);
1865 tunnelsend(b
, (l
- b
), t
);
1868 // Send CCP request for no compression
1869 void sendccp(sessionidt s
, tunnelidt t
)
1873 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, s
, t
, PPPCCP
)))
1876 LOG(3, s
, t
, "CCP: send ConfigReq (no compression)\n");
1879 *(uint8_t *)(q
+ 1) = (time_now
% 255) + 1; // ID
1880 *(uint16_t *)(q
+ 2) = htons(4); // Length
1882 LOG_HEX(5, "PPPCCP", q
, 4);
1883 tunnelsend(b
, (q
- b
) + 4 , t
);