3 * Add functionality "server pppoe" to l2tpns.
4 * inspiration pppoe.c of accel-ppp
17 #include <sys/socket.h>
18 #include <sys/ioctl.h>
20 #include <net/ethernet.h>
21 #include <netpacket/packet.h>
22 #include <arpa/inet.h>
23 #include <linux/if_pppox.h>
27 #include "constants.h"
34 static uint8_t bc_addr
[ETH_ALEN
] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
37 #define CODE_PADI 0x09
38 #define CODE_PADO 0x07
39 #define CODE_PADR 0x19
40 #define CODE_PADS 0x65
41 #define CODE_PADT 0xA7
42 #define CODE_SESS 0x00
45 #define TAG_END_OF_LIST 0x0000
46 #define TAG_SERVICE_NAME 0x0101
47 #define TAG_AC_NAME 0x0102
48 #define TAG_HOST_UNIQ 0x0103
49 #define TAG_AC_COOKIE 0x0104
50 #define TAG_VENDOR_SPECIFIC 0x0105
51 #define TAG_RELAY_SESSION_ID 0x0110
52 #define TAG_SERVICE_NAME_ERROR 0x0201
53 #define TAG_AC_SYSTEM_ERROR 0x0202
54 #define TAG_GENERIC_ERROR 0x0203
56 static char *code_pad
[] = {
76 // set up pppoe discovery socket
77 static void init_pppoe_disc(void)
81 struct sockaddr_ll sa
;
83 memset(&ifr
, 0, sizeof(ifr
));
84 memset(&sa
, 0, sizeof(sa
));
86 pppoediscfd
= socket(PF_PACKET
, SOCK_RAW
, htons(ETH_P_PPP_DISC
));
89 LOG(0, 0, 0, "Error pppoe: socket: %s\n", strerror(errno
));
93 fcntl(pppoediscfd
, F_SETFD
, fcntl(pppoediscfd
, F_GETFD
) | FD_CLOEXEC
);
95 if (setsockopt(pppoediscfd
, SOL_SOCKET
, SO_BROADCAST
, &on
, sizeof(on
)))
97 LOG(0, 0, 0, "Error pppoe: setsockopt(SO_BROADCAST): %s\n", strerror(errno
));
101 assert(strlen(ifr
.ifr_name
) < sizeof(config
->pppoe_if_to_bind
) - 1);
102 if (*config
->pppoe_if_to_bind
)
103 strncpy(ifr
.ifr_name
, config
->pppoe_if_to_bind
, IFNAMSIZ
);
105 if (ioctl(pppoediscfd
, SIOCGIFHWADDR
, &ifr
))
107 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFHWADDR): %s\n", strerror(errno
));
111 if ((ifr
.ifr_hwaddr
.sa_data
[0] & 1) != 0)
113 LOG(0, 0, 0, "Error pppoe: interface %s has not unicast address\n", config
->pppoe_if_to_bind
);
117 memcpy(config
->pppoe_hwaddr
, ifr
.ifr_hwaddr
.sa_data
, ETH_ALEN
);
119 if (ioctl(pppoediscfd
, SIOCGIFMTU
, &ifr
))
121 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFMTU): %s\n", strerror(errno
));
125 if (ifr
.ifr_mtu
< ETH_DATA_LEN
)
126 LOG(0, 0, 0, "Error pppoe: interface %s has MTU of %i, should be %i\n", config
->pppoe_if_to_bind
, ifr
.ifr_mtu
, ETH_DATA_LEN
);
128 if (ioctl(pppoediscfd
, SIOCGIFINDEX
, &ifr
))
130 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFINDEX): %s\n", strerror(errno
));
134 memset(&sa
, 0, sizeof(sa
));
135 sa
.sll_family
= AF_PACKET
;
136 sa
.sll_protocol
= htons(ETH_P_PPP_DISC
);
137 sa
.sll_ifindex
= ifr
.ifr_ifindex
;
139 if (bind(pppoediscfd
, (struct sockaddr
*)&sa
, sizeof(sa
)))
141 LOG(0, 0, 0, "Error pppoe: bind: %s\n", strerror(errno
));
145 if (fcntl(pppoediscfd
, F_SETFL
, O_NONBLOCK
))
147 LOG(0, 0, 0, "Error pppoe: failed to set nonblocking mode: %s\n", strerror(errno
));
153 // set up pppoe session socket
154 static void init_pppoe_sess(void)
158 struct sockaddr_ll sa
;
160 memset(&ifr
, 0, sizeof(ifr
));
161 memset(&sa
, 0, sizeof(sa
));
163 pppoesessfd
= socket(PF_PACKET
, SOCK_RAW
, htons(ETH_P_PPP_SES
));
166 LOG(0, 0, 0, "Error pppoe: socket: %s\n", strerror(errno
));
170 fcntl(pppoesessfd
, F_SETFD
, fcntl(pppoesessfd
, F_GETFD
) | FD_CLOEXEC
);
172 if (setsockopt(pppoesessfd
, SOL_SOCKET
, SO_BROADCAST
, &on
, sizeof(on
)))
174 LOG(0, 0, 0, "Error pppoe: setsockopt(SO_BROADCAST): %s\n", strerror(errno
));
178 assert(strlen(ifr
.ifr_name
) < sizeof(config
->pppoe_if_to_bind
) - 1);
179 if (*config
->pppoe_if_to_bind
)
180 strncpy(ifr
.ifr_name
, config
->pppoe_if_to_bind
, IFNAMSIZ
);
182 if (ioctl(pppoesessfd
, SIOCGIFHWADDR
, &ifr
))
184 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFHWADDR): %s\n", strerror(errno
));
188 if ((ifr
.ifr_hwaddr
.sa_data
[0] & 1) != 0)
190 LOG(0, 0, 0, "Error pppoe: interface %s has not unicast address\n", config
->pppoe_if_to_bind
);
194 memcpy(config
->pppoe_hwaddr
, ifr
.ifr_hwaddr
.sa_data
, ETH_ALEN
);
196 if (ioctl(pppoesessfd
, SIOCGIFMTU
, &ifr
))
198 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFMTU): %s\n", strerror(errno
));
202 if (ifr
.ifr_mtu
< ETH_DATA_LEN
)
203 LOG(0, 0, 0, "Error pppoe: interface %s has MTU of %i, should be %i\n", config
->pppoe_if_to_bind
, ifr
.ifr_mtu
, ETH_DATA_LEN
);
205 if (ioctl(pppoesessfd
, SIOCGIFINDEX
, &ifr
))
207 LOG(0, 0, 0, "Error pppoe: ioctl(SIOCGIFINDEX): %s\n", strerror(errno
));
211 memset(&sa
, 0, sizeof(sa
));
212 sa
.sll_family
= AF_PACKET
;
213 sa
.sll_protocol
= htons(ETH_P_PPP_SES
);
214 sa
.sll_ifindex
= ifr
.ifr_ifindex
;
216 if (bind(pppoesessfd
, (struct sockaddr
*)&sa
, sizeof(sa
)))
218 LOG(0, 0, 0, "Error pppoe: bind: %s\n", strerror(errno
));
222 if (fcntl(pppoesessfd
, F_SETFL
, O_NONBLOCK
))
224 LOG(0, 0, 0, "Error pppoe: failed to set nonblocking mode: %s\n", strerror(errno
));
229 // set up pppoe discovery/session socket
230 void init_pppoe(void)
232 tunnelidt t
= TUNNEL_ID_PPPOE
;
237 // Reserve the a pseudo tunnel for pppoe server
238 if (t
> config
->cluster_highest_tunnelid
)
239 config
->cluster_highest_tunnelid
= t
;
241 memset(&tunnel
[t
], 0, sizeof(tunnel
[t
]));
242 tunnel
[t
].state
= TUNNELOPEN
;
243 STAT(tunnel_created
);
246 char * get_string_codepad(uint8_t codepad
)
252 ptrch
= code_pad
[INDEX_PADI
];
256 ptrch
= code_pad
[INDEX_PADO
];
260 ptrch
= code_pad
[INDEX_PADR
];
264 ptrch
= code_pad
[INDEX_PADS
];
268 ptrch
= code_pad
[INDEX_PADT
];
272 ptrch
= code_pad
[INDEX_SESS
];
279 static uint8_t * setup_header(uint8_t *pack
, const uint8_t *src
, const uint8_t *dst
, int code
, uint16_t sid
, uint16_t h_proto
)
283 // 14 bytes ethernet Header + 6 bytes header pppoe
284 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
285 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
287 memcpy(ethhdr
->h_source
, src
, ETH_ALEN
);
288 memcpy(ethhdr
->h_dest
, dst
, ETH_ALEN
);
289 ethhdr
->h_proto
= htons(h_proto
);
294 hdr
->sid
= htons(sid
);
297 p
= (uint8_t *)(pack
+ ETH_HLEN
+ sizeof(*hdr
));
302 static void add_tag(uint8_t *pack
, int type
, const uint8_t *data
, int len
)
304 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
305 struct pppoe_tag
*tag
= (struct pppoe_tag
*)(pack
+ ETH_HLEN
+ sizeof(*hdr
) + ntohs(hdr
->length
));
307 tag
->tag_type
= htons(type
);
308 tag
->tag_len
= htons(len
);
309 memcpy(tag
->tag_data
, data
, len
);
311 hdr
->length
= htons(ntohs(hdr
->length
) + sizeof(*tag
) + len
);
314 static void add_tag2(uint8_t *pack
, const struct pppoe_tag
*t
)
316 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
317 struct pppoe_tag
*tag
= (struct pppoe_tag
*)(pack
+ ETH_HLEN
+ sizeof(*hdr
) + ntohs(hdr
->length
));
319 memcpy(tag
, t
, sizeof(*t
) + ntohs(t
->tag_len
));
321 hdr
->length
= htons(ntohs(hdr
->length
) + sizeof(*tag
) + ntohs(t
->tag_len
));
324 static void pppoe_disc_send(const uint8_t *pack
)
326 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
327 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
330 s
= ETH_HLEN
+ sizeof(*hdr
) + ntohs(hdr
->length
);
332 LOG(3, 0, 0, "SENT pppoe_disc: Code %s to %s\n", get_string_codepad(hdr
->code
), fmtMacAddr(ethhdr
->h_dest
));
333 LOG_HEX(5, "pppoe_disc_send", pack
, s
);
335 n
= write(pppoediscfd
, pack
, s
);
337 LOG(0, 0, 0, "pppoe: write: %s\n", strerror(errno
));
339 LOG(0, 0, 0, "pppoe: short write %i/%i\n", n
,s
);
343 void pppoe_sess_send(const uint8_t *pack
, uint16_t l
, tunnelidt t
)
345 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
350 if (t
!= TUNNEL_ID_PPPOE
)
352 LOG(3, 0, t
, "ERROR pppoe_sess_send: Tunnel %d is not a tunnel pppoe\n", t
);
357 if (session
[s
].tunnel
!= t
)
359 LOG(3, s
, t
, "ERROR pppoe_sess_send: Session is not a session pppoe\n");
363 if (l
< (ETH_HLEN
+ sizeof(*hdr
) + 3))
365 LOG(0, s
, t
, "ERROR pppoe_sess_send: packet too small for pppoe sent (size=%d)\n", l
);
369 // recalculate the ppp frame length
370 sizeppp
= l
- (ETH_HLEN
+ sizeof(*hdr
));
371 hdr
->length
= htons(sizeppp
);
373 LOG_HEX(5, "pppoe_sess_send", pack
, l
);
375 n
= write(pppoesessfd
, pack
, l
);
377 LOG(0, s
, t
, "pppoe_sess_send: write: %s\n", strerror(errno
));
379 LOG(0, s
, t
, "pppoe_sess_send: short write %i/%i\n", n
,l
);
382 static void pppoe_send_err(const uint8_t *addr
, const struct pppoe_tag
*host_uniq
, const struct pppoe_tag
*relay_sid
, int code
, int tag_type
)
384 uint8_t pack
[ETHER_MAX_LEN
];
386 setup_header(pack
, config
->pppoe_hwaddr
, addr
, code
, 0, ETH_P_PPP_DISC
);
388 add_tag(pack
, TAG_AC_NAME
, (uint8_t *)config
->pppoe_ac_name
, strlen(config
->pppoe_ac_name
));
389 add_tag(pack
, tag_type
, NULL
, 0);
392 add_tag2(pack
, host_uniq
);
395 add_tag2(pack
, relay_sid
);
397 pppoe_disc_send(pack
);
401 static void pppoe_gen_cookie(const uint8_t *serv_hwaddr
, const uint8_t *client_hwaddr
, uint8_t *out
)
406 MD5_Update(&ctx
, config
->l2tp_secret
, strlen(config
->l2tp_secret
));
407 MD5_Update(&ctx
, (void *) serv_hwaddr
, ETH_ALEN
);
408 MD5_Update(&ctx
, (void *) client_hwaddr
, ETH_ALEN
);
409 MD5_Final(out
, &ctx
);
413 static int pppoe_check_cookie(const uint8_t *serv_hwaddr
, const uint8_t *client_hwaddr
, uint8_t *cookie
)
417 pppoe_gen_cookie(serv_hwaddr
, client_hwaddr
, hash
);
419 return memcmp(hash
, cookie
, 16);
422 static void pppoe_send_PADO(const uint8_t *addr
, const struct pppoe_tag
*host_uniq
, const struct pppoe_tag
*relay_sid
, const struct pppoe_tag
*service_name
)
424 uint8_t pack
[ETHER_MAX_LEN
];
427 setup_header(pack
, config
->pppoe_hwaddr
, addr
, CODE_PADO
, 0, ETH_P_PPP_DISC
);
429 add_tag(pack
, TAG_AC_NAME
, (uint8_t *)config
->pppoe_ac_name
, strlen(config
->pppoe_ac_name
));
432 add_tag2(pack
, service_name
);
434 pppoe_gen_cookie(config
->pppoe_hwaddr
, addr
, hash
);
435 add_tag(pack
, TAG_AC_COOKIE
, hash
, 16);
438 add_tag2(pack
, host_uniq
);
441 add_tag2(pack
, relay_sid
);
443 pppoe_disc_send(pack
);
446 static void pppoe_send_PADS(uint16_t sid
, const uint8_t *addr
, const struct pppoe_tag
*host_uniq
, const struct pppoe_tag
*relay_sid
, const struct pppoe_tag
*service_name
)
448 uint8_t pack
[ETHER_MAX_LEN
];
450 setup_header(pack
, config
->pppoe_hwaddr
, addr
, CODE_PADS
, sid
, ETH_P_PPP_DISC
);
452 add_tag(pack
, TAG_AC_NAME
, (uint8_t *)config
->pppoe_ac_name
, strlen(config
->pppoe_ac_name
));
454 add_tag2(pack
, service_name
);
457 add_tag2(pack
, host_uniq
);
460 add_tag2(pack
, relay_sid
);
462 pppoe_disc_send(pack
);
465 static void pppoe_send_PADT(uint16_t sid
)
467 uint8_t pack
[ETHER_MAX_LEN
];
469 setup_header(pack
, config
->pppoe_hwaddr
, session
[sid
].src_hwaddr
, CODE_PADT
, sid
, ETH_P_PPP_DISC
);
471 add_tag(pack
, TAG_AC_NAME
, (uint8_t *)config
->pppoe_ac_name
, strlen(config
->pppoe_ac_name
));
473 LOG(3, sid
, session
[sid
].tunnel
, "pppoe: Sent PADT\n");
475 pppoe_disc_send(pack
);
478 void pppoe_shutdown_session(sessionidt s
)
481 if (session
[s
].tunnel
!= TUNNEL_ID_PPPOE
)
483 LOG(3, s
, session
[s
].tunnel
, "ERROR pppoe_shutdown_session: Session is not a session pppoe\n");
490 static void pppoe_recv_PADI(uint8_t *pack
, int size
)
492 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
493 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
494 struct pppoe_tag
*tag
;
495 struct pppoe_tag
*host_uniq_tag
= NULL
;
496 struct pppoe_tag
*relay_sid_tag
= NULL
;
497 struct pppoe_tag
*service_name_tag
= NULL
;
498 int n
, service_match
= 0;
504 len
= ntohs(hdr
->length
);
505 for (n
= 0; n
< len
; n
+= sizeof(*tag
) + ntohs(tag
->tag_len
)) {
506 tag
= (struct pppoe_tag
*)(pack
+ ETH_HLEN
+ sizeof(*hdr
) + n
);
507 if (n
+ sizeof(*tag
) + ntohs(tag
->tag_len
) > len
)
509 switch (ntohs(tag
->tag_type
)) {
510 case TAG_END_OF_LIST
:
512 case TAG_SERVICE_NAME
:
513 if (*config
->pppoe_service_name
&& tag
->tag_len
)
515 if (ntohs(tag
->tag_len
) != strlen(config
->pppoe_service_name
))
517 if (memcmp(tag
->tag_data
, config
->pppoe_service_name
, ntohs(tag
->tag_len
)))
523 service_name_tag
= tag
;
530 case TAG_RELAY_SESSION_ID
:
538 LOG(3, 0, 0, "pppoe: discarding PADI packet (Service-Name mismatch)\n");
542 pppoe_send_PADO(ethhdr
->h_source
, host_uniq_tag
, relay_sid_tag
, service_name_tag
);
545 static void pppoe_recv_PADR(uint8_t *pack
, int size
)
547 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
548 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
549 struct pppoe_tag
*tag
;
550 struct pppoe_tag
*host_uniq_tag
= NULL
;
551 struct pppoe_tag
*relay_sid_tag
= NULL
;
552 struct pppoe_tag
*ac_cookie_tag
= NULL
;
553 struct pppoe_tag
*service_name_tag
= NULL
;
554 int n
, service_match
= 0;
557 if (!memcmp(ethhdr
->h_dest
, bc_addr
, ETH_ALEN
))
559 LOG(1, 0, 0, "Rcv pppoe: discard PADR (destination address is broadcast)\n");
565 LOG(1, 0, 0, "Rcv pppoe: discarding PADR packet (sid is not zero)\n");
569 for (n
= 0; n
< ntohs(hdr
->length
); n
+= sizeof(*tag
) + ntohs(tag
->tag_len
))
571 tag
= (struct pppoe_tag
*)(pack
+ ETH_HLEN
+ sizeof(*hdr
) + n
);
572 switch (ntohs(tag
->tag_type
))
574 case TAG_END_OF_LIST
:
576 case TAG_SERVICE_NAME
:
577 service_name_tag
= tag
;
578 if (tag
->tag_len
== 0)
580 else if (*config
->pppoe_service_name
)
582 if (ntohs(tag
->tag_len
) != strlen(config
->pppoe_service_name
))
584 if (memcmp(tag
->tag_data
, config
->pppoe_service_name
, ntohs(tag
->tag_len
)))
599 case TAG_RELAY_SESSION_ID
:
607 LOG(3, 0, 0, "pppoe: Service-Name mismatch\n");
608 pppoe_send_err(ethhdr
->h_source
, host_uniq_tag
, relay_sid_tag
, CODE_PADS
, TAG_SERVICE_NAME_ERROR
);
614 LOG(3, 0, 0, "pppoe: discard PADR packet (no AC-Cookie tag present)\n");
618 if (ntohs(ac_cookie_tag
->tag_len
) != 16)
620 LOG(3, 0, 0, "pppoe: discard PADR packet (incorrect AC-Cookie tag length)\n");
624 if (pppoe_check_cookie(ethhdr
->h_dest
, ethhdr
->h_source
, (uint8_t *) ac_cookie_tag
->tag_data
))
626 LOG(3, 0, 0, "pppoe: discard PADR packet (incorrect AC-Cookie)\n");
631 sessionfree
= session
[sid
].next
;
632 memset(&session
[sid
], 0, sizeof(session
[0]));
634 if (sid
> config
->cluster_highest_sessionid
)
635 config
->cluster_highest_sessionid
= sid
;
637 session
[sid
].opened
= time_now
;
638 session
[sid
].tunnel
= TUNNEL_ID_PPPOE
;
639 session
[sid
].last_packet
= session
[sid
].last_data
= time_now
;
641 //strncpy(session[sid].called, called, sizeof(session[sid].called) - 1);
642 //strncpy(session[sid].calling, calling, sizeof(session[sid].calling) - 1);
644 session
[sid
].ppp
.phase
= Establish
;
645 session
[sid
].ppp
.lcp
= Starting
;
647 session
[sid
].magic
= time_now
; // set magic number
648 session
[sid
].mru
= PPPoE_MRU
; // default
651 sess_local
[sid
].lcp_authtype
= config
->radius_authprefer
;
652 sess_local
[sid
].ppp_mru
= MRU
;
654 // Set multilink options before sending initial LCP packet
655 sess_local
[sid
].mp_mrru
= 1614;
656 sess_local
[sid
].mp_epdis
= ntohl(config
->iftun_address
? config
->iftun_address
: my_address
);
658 memcpy(session
[sid
].src_hwaddr
, ethhdr
->h_source
, ETH_ALEN
);
659 pppoe_send_PADS(sid
, ethhdr
->h_source
, host_uniq_tag
, relay_sid_tag
, service_name_tag
);
661 sendlcp(sid
, session
[sid
].tunnel
);
662 change_state(sid
, lcp
, RequestSent
);
666 static void pppoe_recv_PADT(uint8_t *pack
)
668 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
669 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
671 if (!memcmp(ethhdr
->h_dest
, bc_addr
, ETH_ALEN
))
673 LOG(3, 0, 0, "pppoe: discard PADT (destination address is broadcast)\n");
679 if ((hdr
->sid
< MAXSESSION
) && (session
[hdr
->sid
].tunnel
== TUNNEL_ID_PPPOE
))
680 sessionshutdown(hdr
->sid
, "Client shutdown", CDN_ADMIN_DISC
, 0);
684 // fill in a PPPOE message with a PPP frame,
685 // returns start of PPP frame
686 uint8_t *pppoe_makeppp(uint8_t *b
, int size
, uint8_t *p
, int l
, sessionidt s
, tunnelidt t
,
687 uint16_t mtype
, uint8_t prio
, bundleidt bid
, uint8_t mp_bits
)
689 uint16_t type
= mtype
;
691 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(b
+ ETH_HLEN
);
693 if (t
!= TUNNEL_ID_PPPOE
)
696 if (size
< 28) // Need more space than this!!
698 LOG(0, s
, t
, "pppoe_makeppp buffer too small for pppoe header (size=%d)\n", size
);
702 // 14 bytes ethernet Header + 6 bytes header pppoe
703 b
= setup_header(b
, config
->pppoe_hwaddr
, session
[s
].src_hwaddr
, CODE_SESS
, s
, ETH_P_PPP_SES
);
705 // Check whether this session is part of multilink
708 if (bundle
[bid
].num_of_links
> 1)
709 type
= PPPMP
; // Change PPP message type to the PPPMP
714 *(uint16_t *) b
= htons(type
);
720 // Set the sequence number and (B)egin (E)nd flags
723 // Set the multilink bits
724 uint16_t bits_send
= mp_bits
;
725 *(uint16_t *) b
= htons((bundle
[bid
].seq_num_t
& 0x0FFF)|bits_send
);
731 *(uint32_t *) b
= htonl(bundle
[bid
].seq_num_t
);
732 // Set the multilink bits
738 bundle
[bid
].seq_num_t
++;
740 // Add the message type if this fragment has the begin bit set
741 if (mp_bits
& MP_BEGIN
)
743 //*b++ = mtype; // The next two lines are instead of this
744 *(uint16_t *) b
= htons(mtype
); // Message type
750 if ((b
- start
) + l
> size
)
752 LOG(0, s
, t
, "pppoe_makeppp would overflow buffer (size=%d, header+payload=%td)\n", size
, (b
- start
) + l
);
766 // fill in a PPPOE message with a PPP frame,
767 // returns start of PPP frame
768 //(note: THIS ROUTINE WRITES TO p[-28]).
769 uint8_t *opt_pppoe_makeppp(uint8_t *p
, int l
, sessionidt s
, tunnelidt t
, uint16_t mtype
, uint8_t prio
, bundleidt bid
, uint8_t mp_bits
)
771 uint16_t type
= mtype
;
774 struct pppoe_hdr
*hdr
;
776 if (t
!= TUNNEL_ID_PPPOE
)
779 // Check whether this session is part of multilink
782 if (bundle
[bid
].num_of_links
> 1)
783 type
= PPPMP
; // Change PPP message type to the PPPMP
790 // Add the message type if this fragment has the begin bit set
791 if (mp_bits
& MP_BEGIN
)
794 *(uint16_t *) b
= htons(mtype
); // Message type
797 // Set the sequence number and (B)egin (E)nd flags
800 // Set the multilink bits
801 uint16_t bits_send
= mp_bits
;
803 *(uint16_t *) b
= htons((bundle
[bid
].seq_num_t
& 0x0FFF)|bits_send
);
808 *(uint32_t *) b
= htonl(bundle
[bid
].seq_num_t
);
809 // Set the multilink bits
813 bundle
[bid
].seq_num_t
++;
817 *(uint16_t *) b
= htons(type
);
822 // 14 bytes ethernet Header + 6 bytes header pppoe
823 b
-= (ETH_HLEN
+ sizeof(*hdr
));
824 setup_header(b
, config
->pppoe_hwaddr
, session
[s
].src_hwaddr
, CODE_SESS
, s
, ETH_P_PPP_SES
);
825 hdr
= (struct pppoe_hdr
*)(b
+ ETH_HLEN
);
826 // Store length on header pppoe
827 hdr
->length
= hdrlen
;
832 // pppoe discovery recv data
833 void process_pppoe_disc(uint8_t *pack
, int size
)
835 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
836 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
838 LOG(3, 0, 0, "RCV pppoe_disc: Code %s from %s\n", get_string_codepad(hdr
->code
), fmtMacAddr(ethhdr
->h_source
));
839 LOG_HEX(5, "PPPOE Disc", pack
, size
);
841 if (!config
->cluster_iam_master
)
843 if (hdr
->code
== CODE_PADI
)
844 return; // Discard because the PADI is received by all (PADI is a broadcast diffusion)
846 master_forward_pppoe_packet(pack
, size
, hdr
->code
);
850 if (size
< (ETH_HLEN
+ sizeof(*hdr
)))
852 LOG(1, 0, 0, "Error pppoe_disc: short packet received (%i)\n", size
);
856 if (memcmp(ethhdr
->h_dest
, bc_addr
, ETH_ALEN
) && memcmp(ethhdr
->h_dest
, config
->pppoe_hwaddr
, ETH_ALEN
))
858 LOG(1, 0, 0, "Error pppoe_disc: h_dest != bc_addr and h_dest != config->pppoe_hwaddr\n");
862 if (!memcmp(ethhdr
->h_source
, bc_addr
, ETH_ALEN
))
864 LOG(1, 0, 0, "Error pppoe_disc: discarding packet (source address is broadcast)\n");
868 if ((ethhdr
->h_source
[0] & 1) != 0)
870 LOG(1, 0, 0, "Error pppoe_disc: discarding packet (host address is not unicast)\n");
874 if (size
< ETH_HLEN
+ sizeof(*hdr
) + ntohs(hdr
->length
))
876 LOG(1, 0, 0, "Error pppoe_disc: short packet received\n");
882 LOG(1, 0, 0, "Error pppoe_disc: discarding packet (unsupported version %i)\n", hdr
->ver
);
888 LOG(1, 0, 0, "Error pppoe_disc: discarding packet (unsupported type %i)\n", hdr
->type
);
894 pppoe_recv_PADI(pack
, size
);
897 pppoe_recv_PADR(pack
, size
);
900 pppoe_recv_PADT(pack
);
906 // Forward from pppoe to l2tp remote LNS
907 static void pppoe_forwardto_session_rmlns(uint8_t *pack
, int size
, sessionidt sess
, uint16_t proto
)
909 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
910 uint16_t lppp
= ntohs(hdr
->length
);
911 uint16_t ll2tp
= lppp
+ 6;
912 uint8_t *pppdata
= (uint8_t *) hdr
->tag
;
913 uint8_t *pl2tp
= pppdata
- 6;
915 uint16_t t
= 0, s
= 0;
917 s
= session
[sess
].forwardtosession
;
918 if (session
[s
].forwardtosession
!= sess
)
920 LOG(3, sess
, session
[sess
].tunnel
, "pppoe: Link Session (%u) broken\n", s
);
924 t
= session
[s
].tunnel
;
927 LOG(1, s
, t
, "pppoe: Session with invalid tunnel ID\n");
931 if (!tunnel
[t
].isremotelns
)
933 LOG(3, sess
, session
[sess
].tunnel
, "pppoe: Link Tunnel/Session (%u/%u) broken\n", s
, t
);
937 // First word L2TP options (with no options)
938 *(uint16_t *) p
= htons(0x0002);
940 *(uint16_t *) p
= htons(tunnel
[t
].far
); // tunnel
942 *(uint16_t *) p
= htons(session
[s
].far
); // session
945 if ((proto
== PPPIP
) || (proto
== PPPMP
) ||(proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0]))
947 session
[sess
].last_packet
= session
[sess
].last_data
= time_now
;
949 increment_counter(&session
[sess
].cin
, &session
[sess
].cin_wrap
, ll2tp
);
950 session
[sess
].cin_delta
+= ll2tp
;
952 sess_local
[sess
].cin
+= ll2tp
;
953 sess_local
[sess
].pin
++;
955 session
[s
].last_data
= time_now
;
957 increment_counter(&session
[s
].cout
, &session
[s
].cout_wrap
, ll2tp
); // byte count
958 session
[s
].cout_delta
+= ll2tp
;
960 sess_local
[s
].cout
+= ll2tp
;
961 sess_local
[s
].pout
++;
964 session
[sess
].last_packet
= time_now
;
966 tunnelsend(pl2tp
, ll2tp
, t
); // send it...
969 // Forward from l2tp to pppoe
970 // (note: THIS ROUTINE WRITES TO pack[-20]).
971 void pppoe_forwardto_session_pppoe(uint8_t *pack
, int size
, sessionidt sess
, uint16_t proto
)
973 uint16_t t
= 0, s
= 0;
974 uint16_t lpppoe
= size
- 2;
975 uint8_t *p
= pack
+ 2; // First word L2TP options
977 LOG(5, sess
, session
[sess
].tunnel
, "Forwarding data session to pppoe session %u\n", session
[sess
].forwardtosession
);
979 s
= session
[sess
].forwardtosession
;
980 t
= session
[s
].tunnel
;
988 *(uint16_t *) p
= htons(tunnel
[t
].far
); // tunnel
990 *(uint16_t *) p
= htons(session
[s
].far
); // session
996 *(uint16_t *) p
= htons(tunnel
[t
].ns
); // sequence
998 *(uint16_t *) p
= htons(tunnel
[t
].nr
); // sequence
1003 if (lpppoe
> 2 && p
[0] == 0xFF && p
[1] == 0x03)
1005 // HDLC address header, discard in pppoe
1010 lpppoe
+= (ETH_HLEN
+ sizeof(struct pppoe_hdr
));
1011 p
-= (ETH_HLEN
+ sizeof(struct pppoe_hdr
));
1013 // 14 bytes ethernet Header + 6 bytes header pppoe
1014 setup_header(p
, config
->pppoe_hwaddr
, session
[s
].src_hwaddr
, CODE_SESS
, s
, ETH_P_PPP_SES
);
1016 if ((proto
== PPPIP
) || (proto
== PPPMP
) ||(proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0]))
1018 session
[sess
].last_packet
= session
[sess
].last_data
= time_now
;
1020 increment_counter(&session
[sess
].cin
, &session
[sess
].cin_wrap
, lpppoe
);
1021 session
[sess
].cin_delta
+= lpppoe
;
1022 session
[sess
].pin
++;
1023 sess_local
[sess
].cin
+= lpppoe
;
1024 sess_local
[sess
].pin
++;
1026 session
[s
].last_data
= time_now
;
1028 increment_counter(&session
[s
].cout
, &session
[s
].cout_wrap
, lpppoe
); // byte count
1029 session
[s
].cout_delta
+= lpppoe
;
1031 sess_local
[s
].cout
+= lpppoe
;
1032 sess_local
[s
].pout
++;
1035 session
[sess
].last_packet
= time_now
;
1037 tunnelsend(p
, lpppoe
, t
); // send it....
1041 void process_pppoe_sess(uint8_t *pack
, int size
)
1043 //struct ethhdr *ethhdr = (struct ethhdr *)pack;
1044 struct pppoe_hdr
*hdr
= (struct pppoe_hdr
*)(pack
+ ETH_HLEN
);
1045 uint16_t lppp
= ntohs(hdr
->length
);
1046 uint8_t *pppdata
= (uint8_t *) hdr
->tag
;
1047 uint16_t proto
, sid
, t
;
1049 sid
= ntohs(hdr
->sid
);
1050 t
= TUNNEL_ID_PPPOE
;
1052 LOG_HEX(5, "RCV PPPOE Sess", pack
, size
);
1054 if (sid
>= MAXSESSION
)
1056 LOG(0, sid
, t
, "Received pppoe packet with invalid session ID\n");
1057 STAT(tunnel_rx_errors
);
1061 if (session
[sid
].tunnel
!= t
)
1063 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1065 LOG(1, sid
, t
, "ERROR process_pppoe_sess: Session is not a session pppoe\n");
1071 LOG(3, sid
, t
, "Error process_pppoe_sess: discarding packet (unsupported version %i)\n", hdr
->ver
);
1077 LOG(3, sid
, t
, "Error process_pppoe_sess: discarding packet (unsupported type %i)\n", hdr
->type
);
1081 if (lppp
> 2 && pppdata
[0] == 0xFF && pppdata
[1] == 0x03)
1082 { // HDLC address header, discard
1083 LOG(5, sid
, t
, "pppoe_sess: HDLC address header, discard\n");
1089 LOG(3, sid
, t
, "Error process_pppoe_sess: Short ppp length %d\n", lppp
);
1099 proto
= ntohs(*(uint16_t *) pppdata
);
1105 if (session
[sid
].forwardtosession
)
1106 { // Must be forwaded to a remote lns tunnel l2tp
1107 pppoe_forwardto_session_rmlns(pack
, size
, sid
, proto
);
1112 if (proto
== PPPPAP
)
1114 session
[sid
].last_packet
= time_now
;
1115 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1116 processpap(sid
, t
, pppdata
, lppp
);
1118 else if (proto
== PPPCHAP
)
1120 session
[sid
].last_packet
= time_now
;
1121 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1122 processchap(sid
, t
, pppdata
, lppp
);
1124 else if (proto
== PPPLCP
)
1126 session
[sid
].last_packet
= time_now
;
1127 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1128 processlcp(sid
, t
, pppdata
, lppp
);
1130 else if (proto
== PPPIPCP
)
1132 session
[sid
].last_packet
= time_now
;
1133 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1134 processipcp(sid
, t
, pppdata
, lppp
);
1136 else if (proto
== PPPIPV6CP
&& config
->ipv6_prefix
.s6_addr
[0])
1138 session
[sid
].last_packet
= time_now
;
1139 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1140 processipv6cp(sid
, t
, pppdata
, lppp
);
1142 else if (proto
== PPPCCP
)
1144 session
[sid
].last_packet
= time_now
;
1145 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1146 processccp(sid
, t
, pppdata
, lppp
);
1148 else if (proto
== PPPIP
)
1150 session
[sid
].last_packet
= session
[sid
].last_data
= time_now
;
1151 if (session
[sid
].walled_garden
&& !config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1152 processipin(sid
, t
, pppdata
, lppp
);
1154 else if (proto
== PPPMP
)
1156 session
[sid
].last_packet
= session
[sid
].last_data
= time_now
;
1157 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1158 processmpin(sid
, t
, pppdata
, lppp
);
1160 else if (proto
== PPPIPV6
&& config
->ipv6_prefix
.s6_addr
[0])
1162 session
[sid
].last_packet
= session
[sid
].last_data
= time_now
;
1163 if (session
[sid
].walled_garden
&& !config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1164 processipv6in(sid
, t
, pppdata
, lppp
);
1166 else if (session
[sid
].ppp
.lcp
== Opened
)
1168 session
[sid
].last_packet
= time_now
;
1169 if (!config
->cluster_iam_master
) { master_forward_pppoe_packet(pack
, size
, hdr
->code
); return; }
1170 protoreject(sid
, t
, pppdata
, lppp
, proto
);
1174 LOG(3, sid
, t
, "process_pppoe_sess: Unknown PPP protocol 0x%04X received in LCP %s state\n",
1175 proto
, ppp_state(session
[sid
].ppp
.lcp
));
1179 void pppoe_send_garp()
1185 if (!*config
->pppoe_if_to_bind
)
1188 s
= socket(PF_INET
, SOCK_DGRAM
, 0);
1191 LOG(0, 0, 0, "Error creating socket for GARP: %s\n", strerror(errno
));
1194 memset(&ifr
, 0, sizeof(ifr
));
1195 strncpy(ifr
.ifr_name
, config
->pppoe_if_to_bind
, sizeof(ifr
.ifr_name
) - 1);
1196 if (ioctl(s
, SIOCGIFHWADDR
, &ifr
) < 0)
1198 LOG(0, 0, 0, "Error getting eth0 hardware address for GARP: %s\n", strerror(errno
));
1202 memcpy(mac
, &ifr
.ifr_hwaddr
.sa_data
, 6*sizeof(char));
1203 if (ioctl(s
, SIOCGIFINDEX
, &ifr
) < 0)
1205 LOG(0, 0, 0, "Error getting eth0 interface index for GARP: %s\n", strerror(errno
));
1211 sendarp(ifr
.ifr_ifindex
, mac
, config
->iftun_address
);
1214 // rcv pppoe data from slave
1215 void pppoe_process_forward(uint8_t *pack
, int size
, in_addr_t addr
)
1217 struct ethhdr
*ethhdr
= (struct ethhdr
*)pack
;
1219 if (ethhdr
->h_proto
== htons(ETH_P_PPP_DISC
))
1220 process_pppoe_disc(pack
, size
);
1221 else if (ethhdr
->h_proto
== htons(ETH_P_PPP_SES
))
1222 process_pppoe_sess(pack
, size
);
1224 LOG(0, 0, 0, "pppoe_process_forward: I got a C_PPPOE_FORWARD from %s, but not a PPPOE data?\n", fmtaddr(addr
, 0));