11 #include "constants.h"
21 extern tunnelt
*tunnel
;
22 extern bundlet
*bundle
;
23 extern fragmentationt
*frag
;
24 extern sessiont
*session
;
25 extern radiust
*radius
;
27 extern char hostname
[];
28 extern uint32_t eth_tx
;
29 extern time_t time_now
;
30 extern uint64_t time_now_ms
;
31 extern configt
*config
;
33 static int add_lcp_auth(uint8_t *b
, int size
, int authtype
);
34 static bundleidt
new_bundle(void);
35 static int epdiscmp(epdist
, epdist
);
36 static void setepdis(epdist
*, epdist
);
37 static void ipcp_open(sessionidt s
, tunnelidt t
);
39 static int first_session_in_bundle(sessionidt s
)
42 for (i
= 1; i
< MAXBUNDLE
; i
++)
43 if (bundle
[i
].state
!= BUNDLEFREE
)
44 if (epdiscmp(session
[s
].epdis
,bundle
[i
].epdis
) && !strcmp(session
[s
].user
, bundle
[i
].user
))
49 // Process PAP messages
50 void processpap(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
59 LOG_HEX(5, "PAP", p
, l
);
62 LOG(1, s
, t
, "Short PAP %u bytes\n", l
);
63 STAT(tunnel_rx_errors
);
64 sessionshutdown(s
, "Short PAP packet.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
68 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
70 LOG(1, s
, t
, "Length mismatch PAP %u/%u\n", hl
, l
);
71 STAT(tunnel_rx_errors
);
72 sessionshutdown(s
, "PAP length mismatch.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
79 LOG(1, s
, t
, "Unexpected PAP code %d\n", *p
);
80 STAT(tunnel_rx_errors
);
81 sessionshutdown(s
, "Unexpected PAP code.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
85 if (session
[s
].ppp
.phase
!= Authenticate
)
87 LOG(2, s
, t
, "PAP ignored in %s phase\n", ppp_phase(session
[s
].ppp
.phase
));
94 user
[0] = pass
[0] = 0;
95 if (*b
&& *b
< sizeof(user
))
97 memcpy(user
, b
+ 1, *b
);
100 if (*b
&& *b
< sizeof(pass
))
102 memcpy(pass
, b
+ 1, *b
);
106 LOG(3, s
, t
, "PAP login %s/%s\n", user
, pass
);
110 if (forwardtolns(s
, user
))
112 LOG(3, s
, t
, "Forwarding login for %s to other LNS\n", user
);
117 if (session
[s
].ip
|| !(r
= radiusnew(s
)))
119 // respond now, either no RADIUS available or already authenticated
122 uint8_t *p
= makeppp(b
, sizeof(b
), 0, 0, s
, t
, PPPPAP
, 0, 0, 0);
128 *p
= 3; // cant authorise
130 *(uint16_t *) (p
+ 2) = htons(5); // length
131 p
[4] = 0; // no message
132 tunnelsend(b
, 5 + (p
- b
), t
); // send it
136 LOG(3, s
, t
, "Already an IP allocated: %s (%d)\n",
137 fmtaddr(htonl(session
[s
].ip
), 0), session
[s
].ip_pool_index
);
141 LOG(1, s
, t
, "No RADIUS session available to authenticate session...\n");
142 sessionshutdown(s
, "No free RADIUS sessions.", CDN_UNAVAILABLE
, TERM_SERVICE_UNAVAILABLE
);
147 // Run PRE_AUTH plugins
148 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], strdup(user
), strdup(pass
), PPPPAP
, 1 };
149 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
150 if (!packet
.continue_auth
)
152 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
153 if (packet
.username
) free(packet
.username
);
154 if (packet
.password
) free(packet
.password
);
158 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
159 strncpy(radius
[r
].pass
, packet
.password
, sizeof(radius
[r
].pass
) - 1);
161 free(packet
.username
);
162 free(packet
.password
);
165 LOG(3, s
, t
, "Sending login for %s/%s to RADIUS\n", user
, pass
);
166 if ((session
[s
].mrru
) && (!first_session_in_bundle(s
)))
167 radiussend(r
, RADIUSJUSTAUTH
);
169 radiussend(r
, RADIUSAUTH
);
173 // Process CHAP messages
174 void processchap(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
181 LOG_HEX(5, "CHAP", p
, l
);
185 LOG(1, s
, t
, "Short CHAP %u bytes\n", l
);
186 STAT(tunnel_rx_errors
);
187 sessionshutdown(s
, "Short CHAP packet.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
191 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
193 LOG(1, s
, t
, "Length mismatch CHAP %u/%u\n", hl
, l
);
194 STAT(tunnel_rx_errors
);
195 sessionshutdown(s
, "CHAP length mismatch.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
202 LOG(1, s
, t
, "Unexpected CHAP response code %d\n", *p
);
203 STAT(tunnel_rx_errors
);
204 sessionshutdown(s
, "CHAP length mismatch.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
208 if (session
[s
].ppp
.phase
!= Authenticate
)
210 LOG(2, s
, t
, "CHAP ignored in %s phase\n", ppp_phase(session
[s
].ppp
.phase
));
214 r
= sess_local
[s
].radius
;
217 LOG(3, s
, t
, "Unexpected CHAP message\n");
219 // Some modems (Netgear DM602, possibly others) persist in using CHAP even
220 // after ACKing our ConfigReq for PAP.
221 if (sess_local
[s
].lcp_authtype
== AUTHPAP
&& config
->radius_authtypes
& AUTHCHAP
)
223 sess_local
[s
].lcp_authtype
= AUTHCHAP
;
229 if (p
[1] != radius
[r
].id
)
231 LOG(1, s
, t
, "Wrong CHAP response ID %d (should be %d) (%d)\n", p
[1], radius
[r
].id
, r
);
232 STAT(tunnel_rx_errors
);
233 sessionshutdown(s
, "Unexpected CHAP response ID.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
237 if (l
< 5 || p
[4] != 16)
239 LOG(1, s
, t
, "Bad CHAP response length %d\n", l
< 5 ? -1 : p
[4]);
240 STAT(tunnel_rx_errors
);
241 sessionshutdown(s
, "Bad CHAP response length.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
247 if (l
< 16 || l
- 16 >= sizeof(session
[s
].user
))
249 LOG(1, s
, t
, "CHAP user too long %d\n", l
- 16);
250 STAT(tunnel_rx_errors
);
251 sessionshutdown(s
, "CHAP username too long.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
255 // Run PRE_AUTH plugins
257 struct param_pre_auth packet
= { &tunnel
[t
], &session
[s
], NULL
, NULL
, PPPCHAP
, 1 };
259 packet
.password
= calloc(17, 1);
260 memcpy(packet
.password
, p
, 16);
265 packet
.username
= calloc(l
+ 1, 1);
266 memcpy(packet
.username
, p
, l
);
269 if (forwardtolns(s
, packet
.username
))
271 LOG(3, s
, t
, "Forwarding login for %s to other LNS\n", packet
.username
);
273 free(packet
.username
);
274 free(packet
.password
);
279 run_plugins(PLUGIN_PRE_AUTH
, &packet
);
280 if (!packet
.continue_auth
)
282 LOG(3, s
, t
, "A plugin rejected PRE_AUTH\n");
283 if (packet
.username
) free(packet
.username
);
284 if (packet
.password
) free(packet
.password
);
288 strncpy(session
[s
].user
, packet
.username
, sizeof(session
[s
].user
) - 1);
289 memcpy(radius
[r
].pass
, packet
.password
, 16);
291 free(packet
.username
);
292 free(packet
.password
);
296 LOG(3, s
, t
, "CHAP login %s\n", session
[s
].user
);
297 if ((session
[s
].mrru
) && (!first_session_in_bundle(s
)))
298 radiussend(r
, RADIUSJUSTAUTH
);
300 radiussend(r
, RADIUSAUTH
);
303 static void dumplcp(uint8_t *p
, int l
)
306 uint8_t *o
= (p
+ 4);
308 LOG_HEX(5, "PPP LCP Packet", p
, l
);
309 LOG(4, 0, 0, "PPP LCP Packet type %d (%s len %d)\n", *p
, ppp_code((int)*p
), ntohs( ((uint16_t *) p
)[1]) );
310 LOG(4, 0, 0, "Length: %d\n", l
);
311 if (*p
!= ConfigReq
&& *p
!= ConfigRej
&& *p
!= ConfigAck
)
320 LOG(4, 0, 0, " Option length is %d...\n", length
);
325 LOG(4, 0, 0, " Option type is 0...\n");
332 case 1: // Maximum-Receive-Unit
334 LOG(4, 0, 0, " %s %d\n", ppp_lcp_option(type
), ntohs(*(uint16_t *)(o
+ 2)));
336 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
338 case 2: // Async-Control-Character-Map
341 uint32_t asyncmap
= ntohl(*(uint32_t *)(o
+ 2));
342 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), asyncmap
);
345 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
347 case 3: // Authentication-Protocol
350 int proto
= ntohs(*(uint16_t *)(o
+ 2));
351 LOG(4, 0, 0, " %s 0x%x (%s)\n", ppp_lcp_option(type
), proto
,
352 proto
== PPPPAP
? "PAP" : "UNSUPPORTED");
354 else if (length
== 5)
356 int proto
= ntohs(*(uint16_t *)(o
+ 2));
358 LOG(4, 0, 0, " %s 0x%x 0x%x (%s)\n", ppp_lcp_option(type
), proto
, algo
,
359 (proto
== PPPCHAP
&& algo
== 5) ? "CHAP MD5" : "UNSUPPORTED");
362 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
364 case 4: // Quality-Protocol
366 uint32_t qp
= ntohl(*(uint32_t *)(o
+ 2));
367 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), qp
);
370 case 5: // Magic-Number
373 uint32_t magicno
= ntohl(*(uint32_t *)(o
+ 2));
374 LOG(4, 0, 0, " %s %x\n", ppp_lcp_option(type
), magicno
);
377 LOG(4, 0, 0, " %s odd length %d\n", ppp_lcp_option(type
), length
);
379 case 7: // Protocol-Field-Compression
380 case 8: // Address-And-Control-Field-Compression
381 LOG(4, 0, 0, " %s\n", ppp_lcp_option(type
));
384 LOG(2, 0, 0, " Unknown PPP LCP Option type %d\n", type
);
392 void lcp_open(sessionidt s
, tunnelidt t
)
394 // transition to Authentication or Network phase:
395 session
[s
].ppp
.phase
= sess_local
[s
].lcp_authtype
? Authenticate
: Network
;
397 LOG(3, s
, t
, "LCP: Opened, phase %s\n", ppp_phase(session
[s
].ppp
.phase
));
400 change_state(s
, lcp
, Opened
);
402 if (session
[s
].ppp
.phase
== Authenticate
)
404 if (sess_local
[s
].lcp_authtype
== AUTHCHAP
)
409 if(session
[s
].bundle
== 0 || bundle
[session
[s
].bundle
].num_of_links
== 1)
413 change_state(s
, ipcp
, RequestSent
);
414 // move to passive state for IPv6 (if configured), CCP
415 if (config
->ipv6_prefix
.s6_addr
[0])
416 change_state(s
, ipv6cp
, Stopped
);
418 change_state(s
, ipv6cp
, Closed
);
420 change_state(s
, ccp
, Stopped
);
424 sessionidt first_ses
= bundle
[session
[s
].bundle
].members
[0];
425 LOG(3, s
, t
, "MPPP: Skipping IPCP negotiation for session:%d, first session of bundle is:%d\n",s
,first_ses
);
431 static void lcp_restart(sessionidt s
)
433 session
[s
].ppp
.phase
= Establish
;
435 change_state(s
, ipcp
, Dead
);
436 change_state(s
, ipv6cp
, Dead
);
437 change_state(s
, ccp
, Dead
);
440 static uint8_t *ppp_conf_rej(sessionidt s
, uint8_t *buf
, size_t blen
, uint16_t mtype
,
441 uint8_t **response
, uint8_t *queued
, uint8_t *packet
, uint8_t *option
)
443 if (!*response
|| **response
!= ConfigRej
)
445 queued
= *response
= makeppp(buf
, blen
, packet
, 2, s
, session
[s
].tunnel
, mtype
, 0, 0, 0);
453 if ((queued
- buf
+ option
[1]) > blen
)
455 LOG(2, s
, session
[s
].tunnel
, "PPP overflow for ConfigRej (proto %u, option %u).\n", mtype
, *option
);
459 memcpy(queued
, option
, option
[1]);
460 return queued
+ option
[1];
463 static uint8_t *ppp_conf_nak(sessionidt s
, uint8_t *buf
, size_t blen
, uint16_t mtype
,
464 uint8_t **response
, uint8_t *queued
, uint8_t *packet
, uint8_t *option
,
465 uint8_t *value
, size_t vlen
)
470 case PPPLCP
: nak_sent
= &sess_local
[s
].lcp
.nak_sent
; break;
471 case PPPIPCP
: nak_sent
= &sess_local
[s
].ipcp
.nak_sent
; break;
472 case PPPIPV6CP
: nak_sent
= &sess_local
[s
].ipv6cp
.nak_sent
; break;
473 default: return 0; // ?
476 if (*response
&& **response
!= ConfigNak
)
478 if (*nak_sent
< config
->ppp_max_failure
) // reject queued
481 return ppp_conf_rej(s
, buf
, blen
, mtype
, response
, 0, packet
, option
);
486 if (*nak_sent
>= config
->ppp_max_failure
)
487 return ppp_conf_rej(s
, buf
, blen
, mtype
, response
, 0, packet
, option
);
489 queued
= *response
= makeppp(buf
, blen
, packet
, 2, s
, session
[s
].tunnel
, mtype
, 0, 0, 0);
498 if ((queued
- buf
+ vlen
+ 2) > blen
)
500 LOG(2, s
, session
[s
].tunnel
, "PPP overflow for ConfigNak (proto %u, option %u).\n", mtype
, *option
);
505 *queued
++ = vlen
+ 2;
506 memcpy(queued
, value
, vlen
);
507 return queued
+ vlen
;
510 static void ppp_code_rej(sessionidt s
, tunnelidt t
, uint16_t proto
,
511 char *pname
, uint8_t *p
, uint16_t l
, uint8_t *buf
, size_t size
)
514 int mru
= session
[s
].mru
;
515 if (mru
< MINMTU
) mru
= MINMTU
;
516 if (mru
> size
) mru
= size
;
519 if (l
> mru
) l
= mru
;
521 q
= makeppp(buf
, size
, 0, 0, s
, t
, proto
, 0, 0, 0);
525 *(q
+ 1) = ++sess_local
[s
].lcp_ident
;
526 *(uint16_t *)(q
+ 2) = htons(l
);
527 memcpy(q
+ 4, p
, l
- 4);
529 LOG(2, s
, t
, "Unexpected %s code %s\n", pname
, ppp_code(*p
));
530 LOG(3, s
, t
, "%s: send %s\n", pname
, ppp_code(*q
));
531 if (config
->debug
> 3) dumplcp(q
, l
);
533 tunnelsend(buf
, l
+ (q
- buf
), t
);
536 // Process LCP messages
537 void processlcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
545 LOG_HEX(5, "LCP", p
, l
);
548 LOG(1, s
, t
, "Short LCP %d bytes\n", l
);
549 STAT(tunnel_rx_errors
);
553 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
555 LOG(1, s
, t
, "Length mismatch LCP %u/%u\n", hl
, l
);
556 STAT(tunnel_rx_errors
);
561 if (session
[s
].die
) // going down...
564 LOG((*p
== EchoReq
|| *p
== EchoReply
) ? 4 : 3, s
, t
,
565 "LCP: recv %s\n", ppp_code(*p
));
567 if (config
->debug
> 3) dumplcp(p
, l
);
572 uint8_t *o
= (p
+ 4);
580 if (length
== 0 || type
== 0 || x
< length
) break;
583 case 3: // Authentication-Protocol
585 int proto
= ntohs(*(uint16_t *)(o
+ 2));
588 else if (proto
== PPPCHAP
&& *(o
+ 4) == 5)
598 if (!session
[s
].ip
&& authtype
)
599 sess_local
[s
].lcp_authtype
= authtype
;
601 switch (session
[s
].ppp
.lcp
)
604 initialise_restart_count(s
, lcp
);
605 change_state(s
, lcp
, AckReceived
);
610 LOG(2, s
, t
, "LCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.lcp
));
611 if (session
[s
].ppp
.lcp
== Opened
)
615 change_state(s
, lcp
, RequestSent
);
623 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
626 else if (*p
== ConfigReq
)
629 uint8_t *o
= (p
+ 4);
630 uint8_t *response
= 0;
631 static uint8_t asyncmap
[4] = { 0, 0, 0, 0 }; // all zero
632 static uint8_t authproto
[5];
640 if (length
== 0 || type
== 0 || x
< length
) break;
643 case 1: // Maximum-Receive-Unit
645 uint16_t mru
= ntohs(*(uint16_t *)(o
+ 2));
648 session
[s
].mru
= mru
;
653 LOG(3, s
, t
, " Remote requesting MRU of %u. Rejecting.\n", mru
);
655 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, (uint8_t *) &mru
, sizeof(mru
));
659 case 2: // Async-Control-Character-Map
660 if (!ntohl(*(uint32_t *)(o
+ 2))) // all bits zero is OK
663 LOG(3, s
, t
, " Remote requesting asyncmap. Rejecting.\n");
664 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, asyncmap
, sizeof(asyncmap
));
667 case 3: // Authentication-Protocol
669 int proto
= ntohs(*(uint16_t *)(o
+ 2));
670 char proto_name
[] = "0x0000";
675 if (config
->radius_authtypes
& AUTHPAP
)
677 sess_local
[s
].lcp_authtype
= AUTHPAP
;
681 strcpy(proto_name
, "PAP");
683 else if (proto
== PPPCHAP
)
685 if (config
->radius_authtypes
& AUTHCHAP
686 && *(o
+ 4) == 5) // MD5
688 sess_local
[s
].lcp_authtype
= AUTHCHAP
;
692 strcpy(proto_name
, "CHAP");
695 sprintf(proto_name
, "%#4.4x", proto
);
697 LOG(3, s
, t
, " Remote requesting %s authentication. Rejecting.\n", proto_name
);
699 alen
= add_lcp_auth(authproto
, sizeof(authproto
), config
->radius_authprefer
);
700 if (alen
< 2) break; // paranoia
702 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, authproto
+ 2, alen
- 2);
703 if (q
&& *response
== ConfigNak
&&
704 config
->radius_authtypes
!= config
->radius_authprefer
)
707 alen
= add_lcp_auth(authproto
, sizeof(authproto
), config
->radius_authtypes
& ~config
->radius_authprefer
);
709 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
, authproto
+ 2, alen
- 2);
716 case 4: // Quality-Protocol
717 case 5: // Magic-Number
718 case 7: // Protocol-Field-Compression
719 case 8: // Address-And-Control-Field-Compression
722 case 17: // Multilink Max-Receive-Reconstructed-Unit
724 uint16_t mrru
= ntohs(*(uint16_t *)(o
+ 2));
725 session
[s
].mrru
= mrru
;
727 LOG(3, s
, t
, " Received PPP LCP option MRRU: %d\n",mrru
);
731 case 18: // Multilink Short Sequence Number Header Format
735 LOG(3, s
, t
, " Received PPP LCP option MSSN format\n");
739 case 19: // Multilink Endpoint Discriminator
741 uint8_t epdis_class
= o
[2];
744 session
[s
].epdis
.addr_class
= epdis_class
;
745 session
[s
].epdis
.length
= length
- 3;
746 if (session
[s
].epdis
.length
> 20)
748 LOG(1, s
, t
, "Error: received EndDis Address Length more than 20: %d\n", session
[s
].epdis
.length
);
749 session
[s
].epdis
.length
= 20;
752 for (addr
= 0; addr
< session
[s
].epdis
.length
; addr
++)
753 session
[s
].epdis
.address
[addr
] = o
[3+addr
];
760 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis Local Address Class: %d\n",epdis_class
);
763 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis IP Address Class: %d\n",epdis_class
);
766 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis IEEE MAC Address Class: %d\n",epdis_class
);
769 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis PPP Magic No Class: %d\n",epdis_class
);
772 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis PSND No Class: %d\n",epdis_class
);
775 LOG(3, s
, t
, " Received PPP LCP option Multilink EndDis NULL Class %d\n",epdis_class
);
780 default: // Reject any unknown options
781 LOG(3, s
, t
, " Rejecting unknown PPP LCP option %d\n", type
);
782 q
= ppp_conf_rej(s
, b
, sizeof(b
), PPPLCP
, &response
, q
, p
, o
);
789 cluster_send_session(s
);
793 l
= q
- response
; // LCP packet length
794 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
798 // Send packet back as ConfigAck
799 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
, 0, 0, 0);
800 if (!response
) return;
801 *response
= ConfigAck
;
804 switch (session
[s
].ppp
.lcp
)
807 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPLCP
, 0, 0, 0);
808 if (!response
) return;
809 *response
= TerminateAck
;
810 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
814 initialise_restart_count(s
, lcp
);
816 if (*response
== ConfigAck
)
817 change_state(s
, lcp
, AckSent
);
819 change_state(s
, lcp
, RequestSent
);
824 if (*response
== ConfigAck
)
825 change_state(s
, lcp
, AckSent
);
830 if (*response
== ConfigAck
)
841 if (*response
== ConfigAck
)
842 change_state(s
, lcp
, AckSent
);
844 change_state(s
, lcp
, RequestSent
);
849 sessionshutdown(s
, "LCP: ConfigReq in state Closing. This should not happen. Killing session.", CDN_ADMIN_DISC
, TERM_LOST_SERVICE
);
853 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
857 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*response
));
858 if (config
->debug
> 3) dumplcp(response
, l
);
860 tunnelsend(b
, l
+ (response
- b
), t
);
862 else if (*p
== ConfigNak
|| *p
== ConfigRej
)
865 uint8_t *o
= (p
+ 4);
873 if (length
== 0 || type
== 0 || x
< length
) break;
876 case 1: // Maximum-Receive-Unit
879 if (length
< 4) break;
880 sess_local
[s
].ppp_mru
= ntohs(*(uint16_t *)(o
+ 2));
881 LOG(3, s
, t
, " Remote requested MRU of %u\n", sess_local
[s
].ppp_mru
);
885 sess_local
[s
].ppp_mru
= 0;
886 LOG(3, s
, t
, " Remote rejected MRU negotiation\n");
891 case 3: // Authentication-Protocol
899 if (length
< 4) break;
900 proto
= ntohs(*(uint16_t *)(o
+ 2));
904 authtype
= config
->radius_authtypes
& AUTHPAP
;
905 LOG(3, s
, t
, " Remote requested PAP authentication...%sing\n",
906 authtype
? "accept" : "reject");
908 else if (proto
== PPPCHAP
&& length
> 4 && *(o
+ 4) == 5)
910 authtype
= config
->radius_authtypes
& AUTHCHAP
;
911 LOG(3, s
, t
, " Remote requested CHAP authentication...%sing\n",
912 authtype
? "accept" : "reject");
916 LOG(3, s
, t
, " Rejecting unsupported authentication %#4x\n",
922 LOG(2, s
, t
, "LCP: remote rejected auth negotiation\n");
923 authtype
= 0; // shutdown
928 case 5: // Magic-Number
929 session
[s
].magic
= 0;
932 if (length
< 6) break;
933 session
[s
].magic
= ntohl(*(uint32_t *)(o
+ 2));
936 if (session
[s
].magic
)
937 LOG(3, s
, t
, " Remote requested magic-no %x\n", session
[s
].magic
);
939 LOG(3, s
, t
, " Remote rejected magic-no\n");
941 cluster_send_session(s
);
944 case 17: // Multilink Max-Receive-Reconstructed-Unit
948 sess_local
[s
].mp_mrru
= ntohs(*(uint16_t *)(o
+ 2));
949 LOG(3, s
, t
, " Remote requested MRRU of %u\n", sess_local
[s
].mp_mrru
);
953 sess_local
[s
].mp_mrru
= 0;
954 LOG(3, s
, t
, " Remote rejected MRRU negotiation\n");
959 case 18: // Multilink Short Sequence Number Header Format
963 sess_local
[s
].mp_mssf
= 0;
964 LOG(3, s
, t
, " Remote requested Naked mssf\n");
968 sess_local
[s
].mp_mssf
= 0;
969 LOG(3, s
, t
, " Remote rejected mssf\n");
974 case 19: // Multilink Endpoint Discriminator
978 LOG(2, s
, t
, " Remote should not configNak Endpoint Dis!\n");
982 sess_local
[s
].mp_epdis
= 0;
983 LOG(3, s
, t
, " Remote rejected Endpoint Discriminator\n");
989 LOG(2, s
, t
, "LCP: remote sent %s for type %u?\n", ppp_code(*p
), type
);
990 sessionshutdown(s
, "Unable to negotiate LCP.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
999 sessionshutdown(s
, "Unsupported authentication.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
1004 sess_local
[s
].lcp_authtype
= authtype
;
1006 switch (session
[s
].ppp
.lcp
)
1011 uint8_t *response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPLCP
, 0, 0, 0);
1012 if (!response
) return;
1013 *response
= TerminateAck
;
1014 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
1016 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*response
));
1017 if (config
->debug
> 3) dumplcp(response
, l
);
1019 tunnelsend(b
, l
+ (response
- b
), t
);
1025 initialise_restart_count(s
, lcp
);
1030 LOG(2, s
, t
, "LCP: ConfigNak in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.lcp
));
1040 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
1044 else if (*p
== TerminateReq
)
1046 switch (session
[s
].ppp
.lcp
)
1059 zero_restart_count(s
, lcp
);
1060 change_state(s
, lcp
, Closing
);
1064 LOG(2, s
, t
, "LCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.lcp
));
1068 *p
= TerminateAck
; // send ack
1069 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
, 0, 0, 0);
1072 LOG(3, s
, t
, "LCP: send %s\n", ppp_code(*q
));
1073 if (config
->debug
> 3) dumplcp(q
, l
);
1075 tunnelsend(b
, l
+ (q
- b
), t
); // send it
1077 else if (*p
== ProtocolRej
)
1084 if (l
> 5 && !(proto
& 1))
1091 if (proto
== PPPIPV6CP
)
1093 LOG(3, s
, t
, "IPv6 rejected\n");
1094 change_state(s
, ipv6cp
, Closed
);
1098 LOG(3, s
, t
, "LCP protocol reject: 0x%04X\n", proto
);
1101 else if (*p
== EchoReq
)
1103 *p
= EchoReply
; // reply
1104 *(uint32_t *) (p
+ 4) = htonl(session
[s
].magic
); // our magic number
1105 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPLCP
, 0, 0, 0);
1108 LOG(4, s
, t
, "LCP: send %s\n", ppp_code(*q
));
1109 if (config
->debug
> 3) dumplcp(q
, l
);
1111 tunnelsend(b
, l
+ (q
- b
), t
); // send it
1113 else if (*p
== EchoReply
)
1115 // Ignore it, last_packet time is set earlier than this.
1117 else if (*p
!= CodeRej
)
1119 ppp_code_rej(s
, t
, PPPLCP
, "LCP", p
, l
, b
, sizeof(b
));
1123 int join_bundle(sessionidt s
)
1125 // Search for a bundle to join
1128 for (i
= 1; i
< MAXBUNDLE
; i
++)
1130 if (bundle
[i
].state
!= BUNDLEFREE
)
1132 if (epdiscmp(session
[s
].epdis
,bundle
[i
].epdis
) && !strcmp(session
[s
].user
, bundle
[i
].user
))
1134 sessionidt first_ses
= bundle
[i
].members
[0];
1135 if (bundle
[i
].mssf
!= session
[s
].mssf
)
1137 // uniformity of sequence number format must be insured
1138 LOG(3, s
, session
[s
].tunnel
, "MPPP: unable to bundle session %d in bundle %d cause of different mssf\n", s
, i
);
1141 session
[s
].bundle
= i
;
1142 session
[s
].ip
= session
[first_ses
].ip
;
1143 session
[s
].dns1
= session
[first_ses
].dns1
;
1144 session
[s
].dns2
= session
[first_ses
].dns2
;
1145 session
[s
].timeout
= session
[first_ses
].timeout
;
1147 if(session
[s
].epdis
.length
> 0)
1148 setepdis(&bundle
[i
].epdis
, session
[s
].epdis
);
1150 strcpy(bundle
[i
].user
, session
[s
].user
);
1151 bundle
[i
].members
[bundle
[i
].num_of_links
] = s
;
1152 bundle
[i
].num_of_links
++;
1153 LOG(3, s
, session
[s
].tunnel
, "MPPP: Bundling additional line in bundle (%d), lines:%d\n",i
,bundle
[i
].num_of_links
);
1159 // No previously created bundle was found for this session, so create a new one
1160 if (!(b
= new_bundle())) return 0;
1162 session
[s
].bundle
= b
;
1163 bundle
[b
].mrru
= session
[s
].mrru
;
1164 bundle
[b
].mssf
= session
[s
].mssf
;
1165 // FIXME !!! to enable l2tpns reading mssf frames receiver_max_seq, sender_max_seq must be introduce
1166 // now session[s].mssf flag indecates that the receiver wish to receive frames in mssf, so max_seq (i.e. recv_max_seq) = 1<<24
1169 bundle[b].max_seq = 1 << 12;
1171 bundle
[b
].max_seq
= 1 << 24;
1172 if(session
[s
].epdis
.length
> 0)
1173 setepdis(&bundle
[b
].epdis
, session
[s
].epdis
);
1175 strcpy(bundle
[b
].user
, session
[s
].user
);
1176 bundle
[b
].members
[0] = s
;
1177 bundle
[b
].timeout
= session
[s
].timeout
;
1178 LOG(3, s
, session
[s
].tunnel
, "MPPP: Created a new bundle (%d)\n", b
);
1182 static int epdiscmp(epdist ep1
, epdist ep2
)
1185 if (ep1
.length
!= ep2
.length
)
1188 if (ep1
.addr_class
!= ep2
.addr_class
)
1191 for (ad
= 0; ad
< ep1
.length
; ad
++)
1192 if (ep1
.address
[ad
] != ep2
.address
[ad
])
1198 static void setepdis(epdist
*ep1
, epdist ep2
)
1201 ep1
->length
= ep2
.length
;
1202 ep1
->addr_class
= ep2
.addr_class
;
1203 for (ad
= 0; ad
< ep2
.length
; ad
++)
1204 ep1
->address
[ad
] = ep2
.address
[ad
];
1207 static bundleidt
new_bundle()
1210 for (i
= 1; i
< MAXBUNDLE
; i
++)
1212 if (bundle
[i
].state
== BUNDLEFREE
)
1214 LOG(4, 0, 0, "MPPP: Assigning bundle ID %d\n", i
);
1215 bundle
[i
].num_of_links
= 1;
1216 bundle
[i
].last_check
= time_now
; // Initialize last_check value
1217 bundle
[i
].state
= BUNDLEOPEN
;
1218 bundle
[i
].current_ses
= -1; // This is to enforce the first session 0 to be used at first
1219 memset(&frag
[i
], 0, sizeof(fragmentationt
));
1220 if (i
> config
->cluster_highest_bundleid
)
1221 config
->cluster_highest_bundleid
= i
;
1225 LOG(0, 0, 0, "MPPP: Can't find a free bundle! There shouldn't be this many in use!\n");
1229 static void ipcp_open(sessionidt s
, tunnelidt t
)
1231 LOG(3, s
, t
, "IPCP: Opened, session is now active\n");
1233 change_state(s
, ipcp
, Opened
);
1235 if (!(session
[s
].walled_garden
|| session
[s
].flags
& SESSION_STARTED
))
1237 uint16_t r
= radiusnew(s
);
1240 radiussend(r
, RADIUSSTART
); // send radius start
1242 // don't send further Start records if IPCP is restarted
1243 session
[s
].flags
|= SESSION_STARTED
;
1244 cluster_send_session(s
);
1248 // start IPv6 if configured and still in passive state
1249 if (session
[s
].ppp
.ipv6cp
== Stopped
)
1252 change_state(s
, ipv6cp
, RequestSent
);
1256 // Process IPCP messages
1257 void processipcp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1259 uint8_t b
[MAXETHER
];
1265 LOG_HEX(5, "IPCP", p
, l
);
1268 LOG(1, s
, t
, "Short IPCP %d bytes\n", l
);
1269 STAT(tunnel_rx_errors
);
1273 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
1275 LOG(1, s
, t
, "Length mismatch IPCP %u/%u\n", hl
, l
);
1276 STAT(tunnel_rx_errors
);
1281 if (session
[s
].ppp
.phase
< Network
)
1283 LOG(2, s
, t
, "IPCP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
1287 LOG(3, s
, t
, "IPCP: recv %s\n", ppp_code(*p
));
1289 if (*p
== ConfigAck
)
1291 switch (session
[s
].ppp
.ipcp
)
1294 initialise_restart_count(s
, ipcp
);
1295 change_state(s
, ipcp
, AckReceived
);
1300 LOG(2, s
, t
, "IPCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ipcp
));
1302 change_state(s
, ipcp
, RequestSent
);
1310 LOG(2, s
, t
, "IPCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipcp
));
1313 else if (*p
== ConfigReq
)
1315 uint8_t *response
= 0;
1323 if (!o
[1] || o
[1] > length
) return;
1327 case 3: // ip address
1328 gotip
++; // seen address
1329 if (o
[1] != 6) return;
1331 addr
= htonl(session
[s
].ip
);
1332 if (memcmp(o
+ 2, &addr
, (sizeof addr
)))
1335 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
1336 if (!q
|| (q
!= oq
&& *response
== ConfigRej
))
1338 sessionshutdown(s
, "Can't negotiate IPCP.", CDN_ADMIN_DISC
, TERM_USER_ERROR
);
1345 case 129: // primary DNS
1346 if (o
[1] != 6) return;
1348 addr
= htonl(session
[s
].dns1
);
1349 if (memcmp(o
+ 2, &addr
, (sizeof addr
)))
1351 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
1357 case 131: // secondary DNS
1358 if (o
[1] != 6) return;
1360 addr
= htonl(session
[s
].dns2
);
1361 if (memcmp(o
+ 2, &addr
, sizeof(addr
)))
1363 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
, (uint8_t *) &addr
, sizeof(addr
));
1370 LOG(2, s
, t
, " Rejecting PPP IPCP Option type %d\n", *o
);
1371 q
= ppp_conf_rej(s
, b
, sizeof(b
), PPPIPCP
, &response
, q
, p
, o
);
1381 l
= q
- response
; // IPCP packet length
1382 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
1386 // Send packet back as ConfigAck
1387 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPCP
, 0, 0, 0);
1388 if (!response
) return;
1389 *response
= ConfigAck
;
1393 LOG(1, s
, t
, "No IP in IPCP request\n");
1394 STAT(tunnel_rx_errors
);
1398 switch (session
[s
].ppp
.ipcp
)
1401 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPIPCP
, 0, 0, 0);
1402 if (!response
) return;
1403 *response
= TerminateAck
;
1404 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
1408 initialise_restart_count(s
, ipcp
);
1410 if (*response
== ConfigAck
)
1411 change_state(s
, ipcp
, AckSent
);
1413 change_state(s
, ipcp
, RequestSent
);
1418 if (*response
== ConfigAck
)
1419 change_state(s
, ipcp
, AckSent
);
1424 if (*response
== ConfigAck
)
1430 initialise_restart_count(s
, ipcp
);
1435 if (*response
== ConfigAck
)
1436 change_state(s
, ipcp
, AckSent
);
1438 change_state(s
, ipcp
, RequestSent
);
1443 LOG(2, s
, t
, "IPCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipcp
));
1447 LOG(3, s
, t
, "IPCP: send %s\n", ppp_code(*response
));
1448 tunnelsend(b
, l
+ (response
- b
), t
);
1450 else if (*p
== TerminateReq
)
1452 switch (session
[s
].ppp
.ipcp
)
1464 zero_restart_count(s
, ipcp
);
1465 change_state(s
, ipcp
, Closing
);
1469 LOG(2, s
, t
, "IPCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipcp
));
1473 *p
= TerminateAck
; // send ack
1474 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPCP
, 0, 0, 0);
1477 LOG(3, s
, t
, "IPCP: send %s\n", ppp_code(*q
));
1478 tunnelsend(b
, l
+ (q
- b
), t
); // send it
1480 else if (*p
!= CodeRej
)
1482 ppp_code_rej(s
, t
, PPPIPCP
, "IPCP", p
, l
, b
, sizeof(b
));
1486 static void ipv6cp_open(sessionidt s
, tunnelidt t
)
1488 LOG(3, s
, t
, "IPV6CP: Opened\n");
1490 change_state(s
, ipv6cp
, Opened
);
1491 if (session
[s
].ipv6prefixlen
)
1492 route6set(s
, session
[s
].ipv6route
, session
[s
].ipv6prefixlen
, 1);
1494 // Send an initial RA (TODO: Should we send these regularly?)
1495 send_ipv6_ra(s
, t
, NULL
);
1498 // Process IPV6CP messages
1499 void processipv6cp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1501 uint8_t b
[MAXETHER
];
1505 CSTAT(processipv6cp
);
1507 LOG_HEX(5, "IPV6CP", p
, l
);
1510 LOG(1, s
, t
, "Short IPV6CP %d bytes\n", l
);
1511 STAT(tunnel_rx_errors
);
1515 if ((hl
= ntohs(*(uint16_t *) (p
+ 2))) > l
)
1517 LOG(1, s
, t
, "Length mismatch IPV6CP %u/%u\n", hl
, l
);
1518 STAT(tunnel_rx_errors
);
1523 if (session
[s
].ppp
.phase
< Network
)
1525 LOG(2, s
, t
, "IPV6CP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
1529 LOG(3, s
, t
, "IPV6CP: recv %s\n", ppp_code(*p
));
1533 LOG(3, s
, t
, "IPV6CP: no IPv4 address (IPCP in state %s)\n", ppp_state(session
[s
].ppp
.ipcp
));
1534 return; // need IPCP to complete...
1537 if (*p
== ConfigAck
)
1539 switch (session
[s
].ppp
.ipv6cp
)
1542 initialise_restart_count(s
, ipv6cp
);
1543 change_state(s
, ipv6cp
, AckReceived
);
1548 LOG(2, s
, t
, "IPV6CP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ipv6cp
));
1550 change_state(s
, ipv6cp
, RequestSent
);
1558 LOG(2, s
, t
, "IPV6CP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipv6cp
));
1561 else if (*p
== ConfigReq
)
1563 uint8_t *response
= 0;
1571 if (!o
[1] || o
[1] > length
) return;
1575 case 1: // interface identifier
1576 gotip
++; // seen address
1577 if (o
[1] != 10) return;
1579 ident
[0] = htonl(session
[s
].ip
);
1582 if (memcmp(o
+ 2, ident
, sizeof(ident
)))
1584 q
= ppp_conf_nak(s
, b
, sizeof(b
), PPPIPV6CP
, &response
, q
, p
, o
, (uint8_t *)ident
, sizeof(ident
));
1591 LOG(2, s
, t
, " Rejecting PPP IPV6CP Option type %d\n", *o
);
1592 q
= ppp_conf_rej(s
, b
, sizeof(b
), PPPIPV6CP
, &response
, q
, p
, o
);
1602 l
= q
- response
; // IPV6CP packet length
1603 *((uint16_t *) (response
+ 2)) = htons(l
); // update header
1607 // Send packet back as ConfigAck
1608 response
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
, 0, 0, 0);
1609 if (!response
) return;
1610 *response
= ConfigAck
;
1614 LOG(1, s
, t
, "No interface identifier in IPV6CP request\n");
1615 STAT(tunnel_rx_errors
);
1619 switch (session
[s
].ppp
.ipv6cp
)
1622 response
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPIPV6CP
, 0, 0, 0);
1623 if (!response
) return;
1624 *response
= TerminateAck
;
1625 *((uint16_t *) (response
+ 2)) = htons(l
= 4);
1629 initialise_restart_count(s
, ipv6cp
);
1631 if (*response
== ConfigAck
)
1632 change_state(s
, ipv6cp
, AckSent
);
1634 change_state(s
, ipv6cp
, RequestSent
);
1639 if (*response
== ConfigAck
)
1640 change_state(s
, ipv6cp
, AckSent
);
1645 if (*response
== ConfigAck
)
1651 initialise_restart_count(s
, ipv6cp
);
1656 if (*response
== ConfigAck
)
1657 change_state(s
, ipv6cp
, AckSent
);
1659 change_state(s
, ipv6cp
, RequestSent
);
1664 LOG(2, s
, t
, "IPV6CP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipv6cp
));
1668 LOG(3, s
, t
, "IPV6CP: send %s\n", ppp_code(*response
));
1669 tunnelsend(b
, l
+ (response
- b
), t
);
1671 else if (*p
== TerminateReq
)
1673 switch (session
[s
].ppp
.ipv6cp
)
1685 zero_restart_count(s
, ipv6cp
);
1686 change_state(s
, ipv6cp
, Closing
);
1690 LOG(2, s
, t
, "IPV6CP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ipv6cp
));
1694 *p
= TerminateAck
; // send ack
1695 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPIPV6CP
, 0, 0, 0);
1698 LOG(3, s
, t
, "IPV6CP: send %s\n", ppp_code(*q
));
1699 tunnelsend(b
, l
+ (q
- b
), t
); // send it
1701 else if (*p
!= CodeRej
)
1703 ppp_code_rej(s
, t
, PPPIPV6CP
, "IPV6CP", p
, l
, b
, sizeof(b
));
1707 static void update_sessions_in_stat(sessionidt s
, uint16_t l
)
1709 bundleidt b
= session
[s
].bundle
;
1712 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, l
);
1713 session
[s
].cin_delta
+= l
;
1716 sess_local
[s
].cin
+= l
;
1717 sess_local
[s
].pin
++;
1721 int i
= frag
[b
].re_frame_begin_index
;
1722 int end
= frag
[b
].re_frame_end_index
;
1725 l
= frag
[b
].fragment
[i
].length
;
1726 s
= frag
[b
].fragment
[i
].sid
;
1727 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, l
);
1728 session
[s
].cin_delta
+= l
;
1731 sess_local
[s
].cin
+= l
;
1732 sess_local
[s
].pin
++;
1735 i
= (i
+ 1) & MAXFRAGNUM_MASK
;
1740 // process IP packet received
1742 // This MUST be called with at least 4 byte behind 'p'.
1743 // (i.e. this routine writes to p[-4]).
1744 void processipin(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1750 LOG_HEX(5, "IP", p
, l
);
1754 LOG(1, s
, t
, "IP packet too short %d\n", l
);
1755 STAT(tunnel_rx_errors
);
1759 ip
= ntohl(*(uint32_t *)(p
+ 12));
1763 LOG(1, s
, t
, "IP packet too long %d\n", l
);
1764 STAT(tunnel_rx_errors
);
1768 if (session
[s
].ppp
.phase
!= Network
|| session
[s
].ppp
.ipcp
!= Opened
)
1771 if (!session
[s
].bundle
|| bundle
[session
[s
].bundle
].num_of_links
< 2) // FIXME:
1773 // no spoof (do sessionbyip to handled statically routed subnets)
1774 if (ip
!= session
[s
].ip
&& sessionbyip(htonl(ip
)) != s
)
1776 LOG(4, s
, t
, "Dropping packet with spoofed IP %s\n", fmtaddr(htonl(ip
), 0));
1781 // run access-list if any
1782 if (session
[s
].filter_in
&& !ip_filter(p
, l
, session
[s
].filter_in
- 1))
1785 // adjust MSS on SYN and SYN,ACK packets with options
1786 if ((ntohs(*(uint16_t *) (p
+ 6)) & 0x1fff) == 0 && p
[9] == IPPROTO_TCP
) // first tcp fragment
1788 int ihl
= (p
[0] & 0xf) * 4; // length of IP header
1789 if (l
>= ihl
+ 20 && (p
[ihl
+ 13] & TCP_FLAG_SYN
) && ((p
[ihl
+ 12] >> 4) > 5))
1790 adjust_tcp_mss(s
, t
, p
, l
, p
+ ihl
);
1793 // Add on the tun header
1795 *(uint32_t *) p
= htonl(PKTIP
);
1798 if (session
[s
].tbf_in
)
1800 // Are we throttling this session?
1801 if (config
->cluster_iam_master
)
1802 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
1804 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
1809 if (tun_write(p
, l
) < 0)
1811 STAT(tun_tx_errors
);
1812 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
1813 l
, strerror(errno
), tunfd
, p
);
1821 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
1823 // Snooping this session
1824 snoop_send_packet(p
, l
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
1827 update_sessions_in_stat(s
, l
);
1831 STAT(tun_tx_packets
);
1832 INC_STAT(tun_tx_bytes
, l
);
1835 // process Multilink PPP packet received
1836 void processmpin(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
1838 bundleidt b
= session
[s
].bundle
;
1839 bundlet
* this_bundle
= &bundle
[b
];
1840 uint32_t maskSeq
, max_seq
;
1842 uint16_t frag_index
, frag_index_next
, frag_index_prev
;
1843 fragmentationt
*this_fragmentation
= &frag
[b
];
1844 uint8_t begin_frame
= (*p
& MP_BEGIN
);
1845 uint8_t end_frame
= (*p
& MP_END
);
1846 uint32_t seq_num
, seq_num_next
, seq_num_prev
;
1849 uint16_t begin_index
, end_index
;
1851 // Perform length checking
1854 LOG(2, s
, t
, "MPPP: discarding fragment larger than MAXFRAGLEN\n");
1860 LOG(2, s
, t
, "MPPP: Invalid bundle id: 0\n");
1863 // FIXME !! session[s].mssf means that the receiver wants to receive frames in mssf not means the receiver will send frames in mssf
1864 /* if(session[s].mssf)
1866 // Get 12 bit for seq number
1867 seq_num = ntohs((*(uint16_t *) p) & 0xFF0F);
1870 // After this point the pointer should be advanced 2 bytes
1871 LOG(3, s, t, "MPPP: 12 bits, sequence number: %d\n",seq_num);
1875 // Get 24 bit for seq number
1876 seq_num
= ntohl((*(uint32_t *) p
) & 0xFFFFFF00);
1879 // After this point the pointer should be advanced 4 bytes
1880 LOG(4, s
, t
, "MPPP: 24 bits sequence number:%d\n",seq_num
);
1883 max_seq
= this_bundle
->max_seq
;
1884 maskSeq
= max_seq
- 1;
1887 * Expand sequence number to 32 bits, making it as close
1888 * as possible to this_fragmentation->M.
1890 seq_num
|= this_fragmentation
->M
& ~maskSeq
;
1891 if ((int)(this_fragmentation
->M
- seq_num
) > (int)(maskSeq
>> 1))
1893 seq_num
+= maskSeq
+ 1;
1895 else if ((int)(seq_num
- this_fragmentation
->M
) > (int)(maskSeq
>> 1))
1897 seq_num
-= maskSeq
+ 1; /* should never happen */
1900 // calculate this fragment's offset from the begin seq in the bundle
1901 frag_offset
= (int) (seq_num
- this_fragmentation
->start_seq
);
1903 sess_local
[s
].last_seq
= seq_num
;
1905 // calculate the jitter average
1906 uint32_t ljitter
= time_now_ms
- sess_local
[s
].prev_time
;
1909 sess_local
[s
].jitteravg
= (sess_local
[s
].jitteravg
+ ljitter
)>>1;
1910 sess_local
[s
].prev_time
= time_now_ms
;
1915 if (seq_num
< this_fragmentation
->M
)
1918 this_fragmentation
->M
= seq_num
;
1922 Mmin
= sess_local
[(this_bundle
->members
[0])].last_seq
;
1923 for (i
= 1; i
< this_bundle
->num_of_links
; i
++)
1925 uint32_t s_seq
= sess_local
[(this_bundle
->members
[i
])].last_seq
;
1929 this_fragmentation
->M
= Mmin
;
1932 // calculate M offset of the M seq in the bundle
1933 int M_offset
= (int) (Mmin
- this_fragmentation
->start_seq
);
1935 if (M_offset
>= MAXFRAGNUM
)
1937 // There have a long break of the link !!!!!!!!
1938 // M_offset is bigger that the fragmentation buffer size
1939 LOG(3, s
, t
, "MPPP: M_offset out of range, min:%d, begin_seq:%d, jitteravg:%d\n", Mmin
, this_fragmentation
->start_seq
, sess_local
[s
].jitteravg
);
1941 // Calculate the new start index, the previous frag are lost
1942 begin_index
= (M_offset
+ this_fragmentation
->start_index
) & MAXFRAGNUM_MASK
;
1944 // Set new Start sequence
1945 this_fragmentation
->start_index
= begin_index
;
1946 this_fragmentation
->start_seq
= Mmin
;
1948 // recalculate the fragment offset from the new begin seq in the bundle
1949 frag_offset
= (int) (seq_num
- Mmin
);
1952 // discard this fragment if the packet comes before the start sequence
1953 if (frag_offset
< 0)
1955 // this packet comes before the next
1956 LOG(3, s
, t
, "MPPP: packet comes before the next, seq:%d, begin_seq:%d, size frag:%d\n", seq_num
, this_fragmentation
->start_seq
, l
);
1960 // discard if frag_offset is bigger that the fragmentation buffer size
1961 if (frag_offset
>= MAXFRAGNUM
)
1963 // frag_offset is bigger that the fragmentation buffer size
1964 LOG(3, s
, t
, "MPPP: Index out of range, seq:%d, begin_seq:%d, jitteravg:%d\n", seq_num
, this_fragmentation
->start_seq
, sess_local
[s
].jitteravg
);
1968 //caculate received fragment's index in the fragment array
1969 frag_index
= (frag_offset
+ this_fragmentation
->start_index
) & MAXFRAGNUM_MASK
;
1971 // insert the frame in it's place
1972 fragmentt
*this_frag
= &this_fragmentation
->fragment
[frag_index
];
1974 if (this_frag
->length
> 0)
1975 // This fragment is lost, It was around the buffer and it was never completed the packet.
1976 LOG(3, this_frag
->sid
, this_frag
->tid
, "MPPP: (INSERT) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
1977 this_frag
->seq
, frag_index
, this_frag
->flags
, this_frag
->jitteravg
);
1979 this_frag
->length
= l
;
1982 this_frag
->flags
= flags
;
1983 this_frag
->seq
= seq_num
;
1984 this_frag
->jitteravg
= sess_local
[s
].jitteravg
;
1985 memcpy(this_frag
->data
, p
, l
);
1987 LOG(4, s
, t
, "MPPP: seq_num:%d frag_index:%d INSERTED flags: %02X\n", seq_num
, frag_index
, flags
);
1990 frag_index_next
= (frag_index
+ 1) & MAXFRAGNUM_MASK
;
1991 //previous frag index
1992 frag_index_prev
= (frag_index
- 1) & MAXFRAGNUM_MASK
;
1994 seq_num_next
= seq_num
+ 1;
1996 seq_num_prev
= seq_num
- 1;
1998 // Clean the buffer and log the lost fragments
1999 if ((frag_index_next
!= this_fragmentation
->start_index
) && this_fragmentation
->fragment
[frag_index_next
].length
)
2001 // check if the next frag is a lost fragment
2002 if (this_fragmentation
->fragment
[frag_index_next
].seq
!= seq_num_next
)
2004 // This fragment is lost, It was around the buffer and it was never completed the packet.
2005 LOG(3, this_fragmentation
->fragment
[frag_index_next
].sid
, this_fragmentation
->fragment
[frag_index_next
].tid
,
2006 "MPPP: (NEXT) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
2007 this_fragmentation
->fragment
[frag_index_next
].seq
, frag_index_next
,
2008 this_fragmentation
->fragment
[frag_index_next
].flags
, this_fragmentation
->fragment
[frag_index_next
].jitteravg
);
2009 // this frag is lost
2010 this_fragmentation
->fragment
[frag_index_next
].length
= 0;
2011 this_fragmentation
->fragment
[frag_index_next
].flags
= 0;
2013 if (begin_frame
&& (!end_frame
)) return; // assembling frame failed
2017 // Clean the buffer and log the lost fragments
2018 if ((frag_index
!= this_fragmentation
->start_index
) && this_fragmentation
->fragment
[frag_index_prev
].length
)
2020 // check if the next frag is a lost fragment
2021 if (this_fragmentation
->fragment
[frag_index_prev
].seq
!= seq_num_prev
)
2023 // This fragment is lost, It was around the buffer and it was never completed the packet.
2024 LOG(3, this_fragmentation
->fragment
[frag_index_prev
].sid
, this_fragmentation
->fragment
[frag_index_prev
].tid
,
2025 "MPPP: (PREV) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
2026 this_fragmentation
->fragment
[frag_index_prev
].seq
, frag_index_prev
,
2027 this_fragmentation
->fragment
[frag_index_prev
].flags
, this_fragmentation
->fragment
[frag_index_prev
].jitteravg
);
2029 this_fragmentation
->fragment
[frag_index_prev
].length
= 0;
2030 this_fragmentation
->fragment
[frag_index_prev
].flags
= 0;
2032 if (end_frame
&& (!begin_frame
)) return; // assembling frame failed
2037 begin_index
= this_fragmentation
->start_index
;
2038 uint32_t b_seq
= this_fragmentation
->start_seq
;
2039 // Try to find a Begin sequence from the start_seq sequence to M sequence
2040 while (b_seq
< Mmin
)
2042 if (this_fragmentation
->fragment
[begin_index
].length
)
2044 if (b_seq
== this_fragmentation
->fragment
[begin_index
].seq
)
2046 if (this_fragmentation
->fragment
[begin_index
].flags
& MP_BEGIN
)
2049 // Adjust the new start sequence and start index
2050 this_fragmentation
->start_index
= begin_index
;
2051 this_fragmentation
->start_seq
= b_seq
;
2052 // Begin Sequence found, now try to found the End Sequence to complete the frame
2053 end_index
= begin_index
;
2054 while (b_seq
< Mmin
)
2056 if (this_fragmentation
->fragment
[end_index
].length
)
2058 if (b_seq
== this_fragmentation
->fragment
[end_index
].seq
)
2060 if (this_fragmentation
->fragment
[end_index
].flags
& MP_END
)
2062 // The End sequence was found and the frame is complete
2069 // This fragment is lost, it was never completed the packet.
2070 LOG(3, this_fragmentation
->fragment
[end_index
].sid
, this_fragmentation
->fragment
[end_index
].tid
,
2071 "MPPP: (FIND END) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
2072 this_fragmentation
->fragment
[end_index
].seq
, begin_index
,
2073 this_fragmentation
->fragment
[end_index
].flags
, this_fragmentation
->fragment
[end_index
].jitteravg
);
2074 // this frag is lost
2075 this_fragmentation
->fragment
[end_index
].length
= 0;
2076 this_fragmentation
->fragment
[end_index
].flags
= 0;
2077 // This frame is not complete find the next Begin
2083 // This frame is not complete find the next Begin if exist
2086 end_index
= (end_index
+1) & MAXFRAGNUM_MASK
;
2091 // The End sequence was found and the frame is complete
2094 // find the next Begin
2095 begin_index
= end_index
;
2100 // This fragment is lost, it was never completed the packet.
2101 LOG(3, this_fragmentation
->fragment
[begin_index
].sid
, this_fragmentation
->fragment
[begin_index
].tid
,
2102 "MPPP: (FIND BEGIN) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
2103 this_fragmentation
->fragment
[begin_index
].seq
, begin_index
,
2104 this_fragmentation
->fragment
[begin_index
].flags
, this_fragmentation
->fragment
[begin_index
].jitteravg
);
2105 // this frag is lost
2106 this_fragmentation
->fragment
[begin_index
].length
= 0;
2107 this_fragmentation
->fragment
[begin_index
].flags
= 0;
2110 begin_index
= (begin_index
+1) & MAXFRAGNUM_MASK
;
2115 // try to assemble the frame that has the received fragment as a member
2116 // get the beginning of this frame
2117 begin_index
= end_index
= this_fragmentation
->start_index
;
2118 if (this_fragmentation
->fragment
[begin_index
].length
)
2120 if (!(this_fragmentation
->fragment
[begin_index
].flags
& MP_BEGIN
))
2122 // should occur only after an "M_Offset out of range"
2123 // The start sequence must be a begin sequence
2124 this_fragmentation
->start_index
= (begin_index
+1) & MAXFRAGNUM_MASK
;
2125 this_fragmentation
->start_seq
++;
2126 return; // assembling frame failed
2130 return; // assembling frame failed
2132 // get the end of his frame
2133 while (this_fragmentation
->fragment
[end_index
].length
)
2135 if (this_fragmentation
->fragment
[end_index
].flags
& MP_END
)
2138 end_index
= (end_index
+1) & MAXFRAGNUM_MASK
;
2140 if (end_index
== this_fragmentation
->start_index
)
2141 return; // assembling frame failed
2144 // return if a lost fragment is found
2145 if (!(this_fragmentation
->fragment
[end_index
].length
))
2146 return; // assembling frame failed
2148 // assemble the packet
2149 //assemble frame, process it, reset fragmentation
2150 uint16_t cur_len
= 4; // This is set to 4 to leave 4 bytes for function processipin
2152 LOG(4, s
, t
, "MPPP: processing fragments from %d to %d\n", begin_index
, end_index
);
2153 // Push to the receive buffer
2155 for (i
= begin_index
;; i
= (i
+ 1) & MAXFRAGNUM_MASK
)
2157 this_frag
= &this_fragmentation
->fragment
[i
];
2158 if(cur_len
+ this_frag
->length
> MAXETHER
)
2160 LOG(2, s
, t
, "MPPP: discarding reassembled frames larger than MAXETHER\n");
2164 memcpy(this_fragmentation
->reassembled_frame
+cur_len
, this_frag
->data
, this_frag
->length
);
2165 LOG(5, s
, t
, "MPPP: processing frame at %d, with len %d\n", i
, this_frag
->length
);
2167 cur_len
+= this_frag
->length
;
2170 this_fragmentation
->re_frame_len
= cur_len
;
2171 this_fragmentation
->re_frame_begin_index
= begin_index
;
2172 this_fragmentation
->re_frame_end_index
= end_index
;
2173 // Process the resassembled frame
2174 LOG(5, s
, t
, "MPPP: Process the reassembled frame, len=%d\n",cur_len
);
2175 processmpframe(s
, t
, this_fragmentation
->reassembled_frame
, this_fragmentation
->re_frame_len
, 1);
2180 // Set reassembled frame length to zero after processing it
2181 this_fragmentation
->re_frame_len
= 0;
2182 for (i
= begin_index
;; i
= (i
+ 1) & MAXFRAGNUM_MASK
)
2184 this_fragmentation
->fragment
[i
].length
= 0; // Indicates that this fragment has been consumed
2185 this_fragmentation
->fragment
[i
].flags
= 0;
2190 // Set the new start_index and start_seq
2191 this_fragmentation
->start_index
= (end_index
+ 1) & MAXFRAGNUM_MASK
;
2192 this_fragmentation
->start_seq
= this_fragmentation
->fragment
[end_index
].seq
+ 1;
2193 LOG(4, s
, t
, "MPPP after assembling: start index is = %d, start seq=%d\n", this_fragmentation
->start_index
, this_fragmentation
->start_seq
);
2195 begin_index
= this_fragmentation
->start_index
;
2196 if ((this_fragmentation
->fragment
[begin_index
].length
) &&
2197 (this_fragmentation
->fragment
[begin_index
].seq
!= this_fragmentation
->start_seq
))
2199 LOG(3, this_fragmentation
->fragment
[begin_index
].sid
, this_fragmentation
->fragment
[begin_index
].tid
,
2200 "MPPP: (START) seq_num:%d frag_index:%d flags:%d jitteravg:%d is LOST\n",
2201 this_fragmentation
->fragment
[begin_index
].seq
, begin_index
,
2202 this_fragmentation
->fragment
[begin_index
].flags
, this_fragmentation
->fragment
[begin_index
].jitteravg
);
2203 this_fragmentation
->fragment
[begin_index
].length
= 0;
2204 this_fragmentation
->fragment
[begin_index
].flags
= 0;
2207 if (this_fragmentation
->start_seq
<= Mmin
)
2208 // It's possible to find other complete frame or lost frame.
2210 else if ((this_fragmentation
->fragment
[begin_index
].length
) &&
2211 (this_fragmentation
->fragment
[begin_index
].flags
& MP_BEGIN
))
2212 // may be that the next frame is completed
2213 goto assembling_frame
;
2218 // process IPv6 packet received
2220 // This MUST be called with at least 4 byte behind 'p'.
2221 // (i.e. this routine writes to p[-4]).
2222 void processipv6in(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
2227 CSTAT(processipv6in
);
2229 LOG_HEX(5, "IPv6", p
, l
);
2231 ip
= *(struct in6_addr
*) (p
+ 8);
2232 ipv4
= ntohl(*(uint32_t *)(p
+ 16));
2236 LOG(1, s
, t
, "IP packet too long %d\n", l
);
2237 STAT(tunnel_rx_errors
);
2241 if (session
[s
].ppp
.phase
!= Network
|| session
[s
].ppp
.ipv6cp
!= Opened
)
2245 if (ipv4
!= session
[s
].ip
&& memcmp(&config
->ipv6_prefix
, &ip
, 8) && sessionbyipv6(ip
) != s
)
2247 char str
[INET6_ADDRSTRLEN
];
2248 LOG(5, s
, t
, "Dropping packet with spoofed IP %s\n",
2249 inet_ntop(AF_INET6
, &ip
, str
, INET6_ADDRSTRLEN
));
2253 // Check if it's a Router Solicition message.
2254 if (*(p
+ 6) == 58 && *(p
+ 7) == 255 && *(p
+ 24) == 0xFF && *(p
+ 25) == 2 &&
2255 *(uint32_t *)(p
+ 26) == 0 && *(uint32_t *)(p
+ 30) == 0 &&
2256 *(uint32_t *)(p
+ 34) == 0 &&
2257 *(p
+ 38) == 0 && *(p
+ 39) == 2 && *(p
+ 40) == 133) {
2258 LOG(3, s
, t
, "Got IPv6 RS\n");
2259 send_ipv6_ra(s
, t
, &ip
);
2263 // Add on the tun header
2265 *(uint32_t *) p
= htonl(PKTIPV6
);
2268 // Are we throttled and a slave?
2269 if (session
[s
].tbf_in
&& !config
->cluster_iam_master
) {
2270 // Pass it to the master for handling.
2271 master_throttle_packet(session
[s
].tbf_in
, p
, l
);
2275 // Are we throttled and a master??
2276 if (session
[s
].tbf_in
&& config
->cluster_iam_master
) {
2277 // Actually handle the throttled packets.
2278 tbf_queue_packet(session
[s
].tbf_in
, p
, l
);
2283 if (tun_write(p
, l
) < 0)
2285 STAT(tun_tx_errors
);
2286 LOG(0, s
, t
, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
2287 l
, strerror(errno
), tunfd
, p
);
2295 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
2297 // Snooping this session
2298 snoop_send_packet(p
, l
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
2301 update_sessions_in_stat(s
, l
);
2305 STAT(tun_tx_packets
);
2306 INC_STAT(tun_tx_bytes
, l
);
2310 // Helper routine for the TBF filters.
2311 // Used to send queued data in from the user.
2313 void send_ipin(sessionidt s
, uint8_t *buf
, int len
)
2315 LOG_HEX(5, "IP in throttled", buf
, len
);
2317 if (write(tunfd
, buf
, len
) < 0)
2319 STAT(tun_tx_errors
);
2320 LOG(0, 0, 0, "Error writing %d bytes to TUN device: %s (tunfd=%d, p=%p)\n",
2321 len
, strerror(errno
), tunfd
, buf
);
2329 if (session
[s
].snoop_ip
&& session
[s
].snoop_port
)
2331 // Snooping this session
2332 snoop_send_packet(buf
, len
, session
[s
].snoop_ip
, session
[s
].snoop_port
);
2335 // Increment packet counters
2336 increment_counter(&session
[s
].cin
, &session
[s
].cin_wrap
, len
);
2337 session
[s
].cin_delta
+= len
;
2340 sess_local
[s
].cin
+= len
;
2341 sess_local
[s
].pin
++;
2345 STAT(tun_tx_packets
);
2346 INC_STAT(tun_tx_bytes
, len
- 4);
2350 // Process CCP messages
2351 void processccp(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
)
2353 uint8_t b
[MAXETHER
];
2358 LOG_HEX(5, "CCP", p
, l
);
2360 if (session
[s
].ppp
.phase
< Network
)
2362 LOG(2, s
, t
, "CCP %s ignored in %s phase\n", ppp_code(*p
), ppp_phase(session
[s
].ppp
.phase
));
2368 LOG(1, s
, t
, "Short CCP packet\n");
2369 STAT(tunnel_rx_errors
);
2372 LOG(4, s
, t
, "CCP: recv %s\n", ppp_code(*p
));
2373 if (*p
== ConfigAck
)
2375 switch (session
[s
].ppp
.ccp
)
2378 initialise_restart_count(s
, ccp
);
2379 change_state(s
, ccp
, AckReceived
);
2384 LOG(2, s
, t
, "CCP: ConfigAck in state %s? Sending ConfigReq\n", ppp_state(session
[s
].ppp
.ccp
));
2386 change_state(s
, ccp
, RequestSent
);
2390 LOG(3, s
, t
, "CCP: Opened\n");
2391 change_state(s
, ccp
, Opened
);
2395 LOG(2, s
, t
, "CCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ccp
));
2398 else if (*p
== ConfigReq
)
2400 if (l
< 6) // accept no compression
2402 else // compression requested--reject
2405 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPCCP
, 0, 0, 0);
2408 switch (session
[s
].ppp
.ccp
)
2411 q
= makeppp(b
, sizeof(b
), p
, 2, s
, t
, PPPCCP
, 0, 0, 0);
2414 *((uint16_t *) (q
+ 2)) = htons(l
= 4);
2418 initialise_restart_count(s
, ccp
);
2420 if (*q
== ConfigAck
)
2421 change_state(s
, ccp
, AckSent
);
2423 change_state(s
, ccp
, RequestSent
);
2428 if (*q
== ConfigAck
)
2429 change_state(s
, ccp
, AckSent
);
2434 if (*q
== ConfigAck
)
2435 change_state(s
, ccp
, Opened
);
2440 initialise_restart_count(s
, ccp
);
2445 if (*q
== ConfigAck
)
2446 change_state(s
, ccp
, AckSent
);
2448 change_state(s
, ccp
, RequestSent
);
2453 LOG(2, s
, t
, "CCP: ignoring %s in state %s\n", ppp_code(*p
), ppp_state(session
[s
].ppp
.ccp
));
2457 LOG(4, s
, t
, "CCP: send %s\n", ppp_code(*q
));
2458 tunnelsend(b
, l
+ (q
- b
), t
);
2460 else if (*p
== TerminateReq
)
2463 q
= makeppp(b
, sizeof(b
), p
, l
, s
, t
, PPPCCP
, 0, 0, 0);
2465 LOG(3, s
, t
, "CCP: send %s\n", ppp_code(*q
));
2466 tunnelsend(b
, l
+ (q
- b
), t
);
2467 change_state(s
, ccp
, Stopped
);
2469 else if (*p
!= CodeRej
)
2471 ppp_code_rej(s
, t
, PPPCCP
, "CCP", p
, l
, b
, sizeof(b
));
2475 // send a CHAP challenge
2476 void sendchap(sessionidt s
, tunnelidt t
)
2478 uint8_t b
[MAXETHER
];
2487 LOG(1, s
, t
, "No RADIUS to send challenge\n");
2488 STAT(tunnel_tx_errors
);
2492 LOG(1, s
, t
, "Send CHAP challenge\n");
2494 radius
[r
].chap
= 1; // CHAP not PAP
2496 if (radius
[r
].state
!= RADIUSCHAP
)
2499 radius
[r
].state
= RADIUSCHAP
;
2500 radius
[r
].retry
= backoff(radius
[r
].try++);
2501 if (radius
[r
].try > 5)
2503 sessionshutdown(s
, "CHAP timeout.", CDN_ADMIN_DISC
, TERM_REAUTHENTICATION_FAILURE
);
2504 STAT(tunnel_tx_errors
);
2507 q
= makeppp(b
, sizeof(b
), 0, 0, s
, t
, PPPCHAP
, 0, 0, 0);
2510 *q
= 1; // challenge
2511 q
[1] = radius
[r
].id
; // ID
2512 q
[4] = 16; // value size (size of challenge)
2513 memcpy(q
+ 5, radius
[r
].auth
, 16); // challenge
2514 strcpy((char *) q
+ 21, hostname
); // our name
2515 *(uint16_t *) (q
+ 2) = htons(strlen(hostname
) + 21); // length
2516 tunnelsend(b
, strlen(hostname
) + 21 + (q
- b
), t
); // send it
2519 // fill in a L2TP message with a PPP frame,
2520 // returns start of PPP frame
2521 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
)
2523 uint16_t hdr
= 0x0002; // L2TP with no options
2524 uint16_t type
= mtype
;
2527 if (size
< 16) // Need more space than this!!
2529 LOG(0, s
, t
, "makeppp buffer too small for L2TP header (size=%d)\n", size
);
2533 if (prio
) hdr
|= 0x0100; // set priority bit
2535 *(uint16_t *) (b
+ 0) = htons(hdr
);
2536 *(uint16_t *) (b
+ 2) = htons(tunnel
[t
].far
); // tunnel
2537 *(uint16_t *) (b
+ 4) = htons(session
[s
].far
); // session
2540 // Check whether this session is part of multilink
2543 if (bundle
[bid
].num_of_links
> 1)
2544 type
= PPPMP
; // Change PPP message type to the PPPMP
2549 if (type
== PPPLCP
|| !(session
[s
].flags
& SESSION_ACFC
))
2551 *(uint16_t *) b
= htons(0xFF03); // HDLC header
2555 if (type
< 0x100 && session
[s
].flags
& SESSION_PFC
)
2561 *(uint16_t *) b
= htons(type
);
2567 // Set the sequence number and (B)egin (E)nd flags
2568 if (session
[s
].mssf
)
2570 // Set the multilink bits
2571 uint16_t bits_send
= mp_bits
;
2572 *(uint16_t *) b
= htons((bundle
[bid
].seq_num_t
& 0x0FFF)|bits_send
);
2577 *(uint32_t *) b
= htonl(bundle
[bid
].seq_num_t
);
2578 // Set the multilink bits
2583 bundle
[bid
].seq_num_t
++;
2585 // Add the message type if this fragment has the begin bit set
2586 if (mp_bits
& MP_BEGIN
)
2588 //*b++ = mtype; // The next two lines are instead of this
2589 *(uint16_t *) b
= htons(mtype
); // Message type
2594 if ((b
- start
) + l
> size
)
2596 LOG(2, s
, t
, "makeppp would overflow buffer (size=%d, header+payload=%td)\n", size
, (b
- start
) + l
);
2607 static int add_lcp_auth(uint8_t *b
, int size
, int authtype
)
2610 if ((authtype
== AUTHCHAP
&& size
< 5) || size
< 4)
2613 *b
++ = 3; // Authentication-Protocol
2614 if (authtype
== AUTHCHAP
)
2616 len
= *b
++ = 5; // length
2617 *(uint16_t *) b
= htons(PPPCHAP
); b
+= 2;
2620 else if (authtype
== AUTHPAP
)
2622 len
= *b
++ = 4; // length
2623 *(uint16_t *) b
= htons(PPPPAP
); b
+= 2;
2627 LOG(0, 0, 0, "add_lcp_auth called with unsupported auth type %d\n", authtype
);
2633 // Send LCP ConfigReq for MRU, authentication type and magic no
2634 void sendlcp(sessionidt s
, tunnelidt t
)
2636 uint8_t b
[500], *q
, *l
;
2637 int authtype
= sess_local
[s
].lcp_authtype
;
2639 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, s
, t
, PPPLCP
, 0, 0, 0)))
2642 LOG(3, s
, t
, "LCP: send ConfigReq%s%s%s including MP options\n",
2643 authtype
? " (" : "",
2644 authtype
? (authtype
== AUTHCHAP
? "CHAP" : "PAP") : "",
2645 authtype
? ")" : "");
2649 *l
++ = ++sess_local
[s
].lcp_ident
; // ID
2651 l
+= 2; //Save space for length
2653 if (sess_local
[s
].ppp_mru
)
2655 *l
++ = 1; *l
++ = 4; // Maximum-Receive-Unit (length 4)
2656 *(uint16_t *) l
= htons(sess_local
[s
].ppp_mru
); l
+= 2;
2660 l
+= add_lcp_auth(l
, sizeof(b
) - (l
- b
), authtype
);
2662 if (session
[s
].magic
)
2664 *l
++ = 5; *l
++ = 6; // Magic-Number (length 6)
2665 *(uint32_t *) l
= htonl(session
[s
].magic
);
2669 if (sess_local
[s
].mp_mrru
)
2671 *l
++ = 17; *l
++ = 4; // Multilink Max-Receive-Reconstructed-Unit (length 4)
2672 *(uint16_t *) l
= htons(sess_local
[s
].mp_mrru
); l
+= 2;
2675 if (sess_local
[s
].mp_epdis
)
2677 *l
++ = 19; *l
++ = 7; // Multilink Endpoint Discriminator (length 7)
2678 *l
++ = IPADDR
; // Endpoint Discriminator class
2679 *(uint32_t *) l
= htonl(sess_local
[s
].mp_epdis
);
2683 *(uint16_t *)(q
+ 2) = htons(l
- q
); // Length
2685 LOG_HEX(5, "PPPLCP", q
, l
- q
);
2686 if (config
->debug
> 3) dumplcp(q
, l
- q
);
2688 tunnelsend(b
, (l
- b
), t
);
2689 restart_timer(s
, lcp
);
2692 // Send CCP request for no compression
2693 void sendccp(sessionidt s
, tunnelidt t
)
2697 if (!(q
= makeppp(b
, sizeof(b
), NULL
, 0, s
, t
, PPPCCP
, 0, 0, 0)))
2700 LOG(3, s
, t
, "CCP: send ConfigReq (no compression)\n");
2703 *(q
+ 1) = ++sess_local
[s
].lcp_ident
; // ID
2704 *(uint16_t *)(q
+ 2) = htons(4); // Length
2706 LOG_HEX(5, "PPPCCP", q
, 4);
2707 tunnelsend(b
, (q
- b
) + 4 , t
);
2708 restart_timer(s
, ccp
);
2711 // Reject unknown/unconfigured protocols
2712 void protoreject(sessionidt s
, tunnelidt t
, uint8_t *p
, uint16_t l
, uint16_t proto
)
2715 uint8_t buf
[MAXETHER
];
2717 int mru
= session
[s
].mru
;
2718 if (mru
< MINMTU
) mru
= MINMTU
;
2719 if (mru
> sizeof(buf
)) mru
= sizeof(buf
);
2722 if (l
> mru
) l
= mru
;
2724 q
= makeppp(buf
, sizeof(buf
), 0, 0, s
, t
, PPPLCP
, 0, 0, 0);
2728 *(q
+ 1) = ++sess_local
[s
].lcp_ident
;
2729 *(uint16_t *)(q
+ 2) = htons(l
);
2730 *(uint16_t *)(q
+ 4) = htons(proto
);
2731 memcpy(q
+ 6, p
, l
- 6);
2733 if (proto
== PPPIPV6CP
)
2734 LOG(3, s
, t
, "LCP: send ProtocolRej (IPV6CP: not configured)\n");
2736 LOG(2, s
, t
, "LCP: sent ProtocolRej (0x%04X: unsupported)\n", proto
);
2738 tunnelsend(buf
, l
+ (q
- buf
), t
);