if_pppoe.c revision 1.52 1 /* $NetBSD: if_pppoe.c,v 1.52 2004/03/30 06:00:13 oki Exp $ */
2
3 /*-
4 * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Martin Husemann <martin (at) NetBSD.org>.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 #include <sys/cdefs.h>
40 __KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.52 2004/03/30 06:00:13 oki Exp $");
41
42 #include "pppoe.h"
43 #include "bpfilter.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/callout.h>
49 #include <sys/malloc.h>
50 #include <sys/mbuf.h>
51 #include <sys/socket.h>
52 #include <sys/proc.h>
53 #include <sys/ioctl.h>
54 #include <net/if.h>
55 #include <net/if_types.h>
56 #include <net/if_ether.h>
57 #include <net/if_sppp.h>
58 #include <net/if_spppvar.h>
59 #include <net/if_pppoe.h>
60
61 #if NBPFILTER > 0
62 #include <net/bpf.h>
63 #endif
64
65 #include <machine/intr.h>
66
67 #undef PPPOE_DEBUG /* XXX - remove this or make it an option */
68 /* #define PPPOE_DEBUG 1 */
69
70 struct pppoehdr {
71 u_int8_t vertype;
72 u_int8_t code;
73 u_int16_t session;
74 u_int16_t plen;
75 } __attribute__((__packed__));
76
77 struct pppoetag {
78 u_int16_t tag;
79 u_int16_t len;
80 } __attribute__((__packed__));
81
82 #define PPPOE_HEADERLEN sizeof(struct pppoehdr)
83 #define PPPOE_VERTYPE 0x11 /* VER=1, TYPE = 1 */
84
85 #define PPPOE_TAG_EOL 0x0000 /* end of list */
86 #define PPPOE_TAG_SNAME 0x0101 /* service name */
87 #define PPPOE_TAG_ACNAME 0x0102 /* access concentrator name */
88 #define PPPOE_TAG_HUNIQUE 0x0103 /* host unique */
89 #define PPPOE_TAG_ACCOOKIE 0x0104 /* AC cookie */
90 #define PPPOE_TAG_VENDOR 0x0105 /* vendor specific */
91 #define PPPOE_TAG_RELAYSID 0x0110 /* relay session id */
92 #define PPPOE_TAG_SNAME_ERR 0x0201 /* service name error */
93 #define PPPOE_TAG_ACSYS_ERR 0x0202 /* AC system error */
94 #define PPPOE_TAG_GENERIC_ERR 0x0203 /* gerneric error */
95
96 #define PPPOE_CODE_PADI 0x09 /* Active Discovery Initiation */
97 #define PPPOE_CODE_PADO 0x07 /* Active Discovery Offer */
98 #define PPPOE_CODE_PADR 0x19 /* Active Discovery Request */
99 #define PPPOE_CODE_PADS 0x65 /* Active Discovery Session confirmation */
100 #define PPPOE_CODE_PADT 0xA7 /* Active Discovery Terminate */
101
102 /* two byte PPP protocol discriminator, then IP data */
103 #define PPPOE_MAXMTU (ETHERMTU-PPPOE_HEADERLEN-2)
104
105 /* Add a 16 bit unsigned value to a buffer pointed to by PTR */
106 #define PPPOE_ADD_16(PTR, VAL) \
107 *(PTR)++ = (VAL) / 256; \
108 *(PTR)++ = (VAL) % 256
109
110 /* Add a complete PPPoE header to the buffer pointed to by PTR */
111 #define PPPOE_ADD_HEADER(PTR, CODE, SESS, LEN) \
112 *(PTR)++ = PPPOE_VERTYPE; \
113 *(PTR)++ = (CODE); \
114 PPPOE_ADD_16(PTR, SESS); \
115 PPPOE_ADD_16(PTR, LEN)
116
117 #define PPPOE_DISC_TIMEOUT (hz*5) /* base for quick timeout calculation */
118 #define PPPOE_SLOW_RETRY (hz*60) /* persistent retry interval */
119 #define PPPOE_DISC_MAXPADI 4 /* retry PADI four times (quickly) */
120 #define PPPOE_DISC_MAXPADR 2 /* retry PADR twice */
121
122 #ifdef PPPOE_SERVER
123 /* from if_spppsubr.c */
124 #define IFF_PASSIVE IFF_LINK0 /* wait passively for connection */
125 #endif
126
127 struct pppoe_softc {
128 struct sppp sc_sppp; /* contains a struct ifnet as first element */
129 LIST_ENTRY(pppoe_softc) sc_list;
130 struct ifnet *sc_eth_if; /* ethernet interface we are using */
131
132 int sc_state; /* discovery phase or session connected */
133 struct ether_addr sc_dest; /* hardware address of concentrator */
134 u_int16_t sc_session; /* PPPoE session id */
135
136 char *sc_service_name; /* if != NULL: requested name of service */
137 char *sc_concentrator_name; /* if != NULL: requested concentrator id */
138 u_int8_t *sc_ac_cookie; /* content of AC cookie we must echo back */
139 size_t sc_ac_cookie_len; /* length of cookie data */
140 #ifdef PPPOE_SERVER
141 u_int8_t *sc_hunique; /* content of host unique we must echo back */
142 size_t sc_hunique_len; /* length of host unique */
143 #endif
144 struct callout sc_timeout; /* timeout while not in session state */
145 int sc_padi_retried; /* number of PADI retries already done */
146 int sc_padr_retried; /* number of PADR retries already done */
147 };
148
149 /* incoming traffic will be queued here */
150 struct ifqueue ppoediscinq = { NULL };
151 struct ifqueue ppoeinq = { NULL };
152
153 #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
154 void * pppoe_softintr = NULL;
155 static void pppoe_softintr_handler(void *);
156 #else
157 struct callout pppoe_softintr = CALLOUT_INITIALIZER;
158 void pppoe_softintr_handler(void *);
159 #endif
160
161 extern int sppp_ioctl(struct ifnet *, unsigned long, void *);
162
163 /* input routines */
164 static void pppoe_input(void);
165 static void pppoe_disc_input(struct mbuf *);
166 static void pppoe_dispatch_disc_pkt(struct mbuf *, int);
167 static void pppoe_data_input(struct mbuf *);
168
169 /* management routines */
170 void pppoeattach(int);
171 static int pppoe_connect(struct pppoe_softc *);
172 static int pppoe_disconnect(struct pppoe_softc *);
173 static void pppoe_abort_connect(struct pppoe_softc *);
174 static int pppoe_ioctl(struct ifnet *, unsigned long, caddr_t);
175 static void pppoe_tls(struct sppp *);
176 static void pppoe_tlf(struct sppp *);
177 static void pppoe_start(struct ifnet *);
178
179 /* internal timeout handling */
180 static void pppoe_timeout(void *);
181
182 /* sending actual protocol controll packets */
183 static int pppoe_send_padi(struct pppoe_softc *);
184 static int pppoe_send_padr(struct pppoe_softc *);
185 #ifdef PPPOE_SERVER
186 static int pppoe_send_pado(struct pppoe_softc *);
187 static int pppoe_send_pads(struct pppoe_softc *);
188 #endif
189 static int pppoe_send_padt(struct ifnet *, u_int, const u_int8_t *);
190
191 /* raw output */
192 static int pppoe_output(struct pppoe_softc *, struct mbuf *);
193
194 /* internal helper functions */
195 static struct pppoe_softc * pppoe_find_softc_by_session(u_int, struct ifnet *);
196 static struct pppoe_softc * pppoe_find_softc_by_hunique(u_int8_t *, size_t, struct ifnet *);
197 static struct mbuf *pppoe_get_mbuf(size_t len);
198
199 LIST_HEAD(pppoe_softc_head, pppoe_softc) pppoe_softc_list;
200
201 int pppoe_clone_create __P((struct if_clone *, int));
202 void pppoe_clone_destroy __P((struct ifnet *));
203
204 struct if_clone pppoe_cloner =
205 IF_CLONE_INITIALIZER("pppoe", pppoe_clone_create, pppoe_clone_destroy);
206
207 /* ARGSUSED */
208 void
209 pppoeattach(count)
210 int count;
211 {
212 LIST_INIT(&pppoe_softc_list);
213 if_clone_attach(&pppoe_cloner);
214
215 ppoediscinq.ifq_maxlen = IFQ_MAXLEN;
216 ppoeinq.ifq_maxlen = IFQ_MAXLEN;
217
218 #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
219 pppoe_softintr = softintr_establish(IPL_SOFTNET, pppoe_softintr_handler, NULL);
220 #endif
221 }
222
223 int
224 pppoe_clone_create(ifc, unit)
225 struct if_clone *ifc;
226 int unit;
227 {
228 struct pppoe_softc *sc;
229
230 sc = malloc(sizeof(struct pppoe_softc), M_DEVBUF, M_WAITOK);
231 memset(sc, 0, sizeof(struct pppoe_softc));
232
233 sprintf(sc->sc_sppp.pp_if.if_xname, "pppoe%d", unit);
234 sc->sc_sppp.pp_if.if_softc = sc;
235 sc->sc_sppp.pp_if.if_mtu = PPPOE_MAXMTU;
236 sc->sc_sppp.pp_if.if_flags = IFF_SIMPLEX|IFF_POINTOPOINT|IFF_MULTICAST;
237 sc->sc_sppp.pp_if.if_type = IFT_PPP;
238 sc->sc_sppp.pp_if.if_hdrlen = sizeof(struct ether_header) + PPPOE_HEADERLEN;
239 sc->sc_sppp.pp_if.if_dlt = DLT_PPP_ETHER;
240 sc->sc_sppp.pp_flags |= PP_KEEPALIVE | /* use LCP keepalive */
241 PP_NOFRAMING; /* no serial encapsulation */
242 sc->sc_sppp.pp_if.if_ioctl = pppoe_ioctl;
243 IFQ_SET_MAXLEN(&sc->sc_sppp.pp_if.if_snd, IFQ_MAXLEN);
244 IFQ_SET_READY(&sc->sc_sppp.pp_if.if_snd);
245
246 /* changed to real address later */
247 memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
248
249 callout_init(&sc->sc_timeout);
250
251 sc->sc_sppp.pp_if.if_start = pppoe_start;
252 sc->sc_sppp.pp_tls = pppoe_tls;
253 sc->sc_sppp.pp_tlf = pppoe_tlf;
254 sc->sc_sppp.pp_framebytes = PPPOE_HEADERLEN; /* framing added to ppp packets */
255
256 if_attach(&sc->sc_sppp.pp_if);
257 sppp_attach(&sc->sc_sppp.pp_if);
258
259 #if NBPFILTER > 0
260 bpfattach(&sc->sc_sppp.pp_if, DLT_PPP_ETHER, 0);
261 #endif
262 LIST_INSERT_HEAD(&pppoe_softc_list, sc, sc_list);
263 return 0;
264 }
265
266 void
267 pppoe_clone_destroy(ifp)
268 struct ifnet *ifp;
269 {
270 struct pppoe_softc * sc = ifp->if_softc;
271
272 LIST_REMOVE(sc, sc_list);
273 #if NBPFILTER > 0
274 bpfdetach(ifp);
275 #endif
276 sppp_detach(&sc->sc_sppp.pp_if);
277 if_detach(ifp);
278 if (sc->sc_concentrator_name)
279 free(sc->sc_concentrator_name, M_DEVBUF);
280 if (sc->sc_service_name)
281 free(sc->sc_service_name, M_DEVBUF);
282 if (sc->sc_ac_cookie)
283 free(sc->sc_ac_cookie, M_DEVBUF);
284 free(sc, M_DEVBUF);
285 }
286
287 /*
288 * Find the interface handling the specified session.
289 * Note: O(number of sessions open), this is a client-side only, mean
290 * and lean implementation, so number of open sessions typically should
291 * be 1.
292 */
293 static struct pppoe_softc *
294 pppoe_find_softc_by_session(u_int session, struct ifnet *rcvif)
295 {
296 struct pppoe_softc *sc;
297
298 if (session == 0)
299 return NULL;
300
301 LIST_FOREACH(sc, &pppoe_softc_list, sc_list) {
302 if (sc->sc_state == PPPOE_STATE_SESSION
303 && sc->sc_session == session) {
304 if (sc->sc_eth_if == rcvif)
305 return sc;
306 else
307 return NULL;
308 }
309 }
310 return NULL;
311 }
312
313 /* Check host unique token passed and return appropriate softc pointer,
314 * or NULL if token is bogus. */
315 static struct pppoe_softc *
316 pppoe_find_softc_by_hunique(u_int8_t *token, size_t len, struct ifnet *rcvif)
317 {
318 struct pppoe_softc *sc, *t;
319
320 if (LIST_EMPTY(&pppoe_softc_list))
321 return NULL;
322
323 if (len != sizeof sc)
324 return NULL;
325 memcpy(&t, token, len);
326
327 LIST_FOREACH(sc, &pppoe_softc_list, sc_list)
328 if (sc == t) break;
329
330 if (sc == NULL) {
331 #ifdef PPPOE_DEBUG
332 printf("pppoe: alien host unique tag, no session found\n");
333 #endif
334 return NULL;
335 }
336
337 /* should be safe to access *sc now */
338 if (sc->sc_state < PPPOE_STATE_PADI_SENT || sc->sc_state >= PPPOE_STATE_SESSION) {
339 printf("%s: host unique tag found, but it belongs to a connection in state %d\n",
340 sc->sc_sppp.pp_if.if_xname, sc->sc_state);
341 return NULL;
342 }
343 if (sc->sc_eth_if != rcvif) {
344 printf("%s: wrong interface, not accepting host unique\n",
345 sc->sc_sppp.pp_if.if_xname);
346 return NULL;
347 }
348 return sc;
349 }
350
351 #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
352 static void pppoe_softintr_handler(void *dummy)
353 {
354 /* called at splsoftnet() */
355 pppoe_input();
356 }
357 #else
358 void pppoe_softintr_handler(void *dummy)
359 {
360 int s = splnet();
361 pppoe_input();
362 splx(s);
363 }
364 #endif
365
366 /* called at appropriate protection level */
367 static void
368 pppoe_input()
369 {
370 struct mbuf *m;
371 int s, disc_done, data_done;
372
373 do {
374 disc_done = 0;
375 data_done = 0;
376 for (;;) {
377 s = splnet();
378 IF_DEQUEUE(&ppoediscinq, m);
379 splx(s);
380 if (m == NULL) break;
381 disc_done = 1;
382 pppoe_disc_input(m);
383 }
384
385 for (;;) {
386 s = splnet();
387 IF_DEQUEUE(&ppoeinq, m);
388 splx(s);
389 if (m == NULL) break;
390 data_done = 1;
391 pppoe_data_input(m);
392 }
393 } while (disc_done || data_done);
394 }
395
396 /* analyze and handle a single received packet while not in session state */
397 static void pppoe_dispatch_disc_pkt(struct mbuf *m, int off)
398 {
399 u_int16_t tag, len;
400 u_int16_t session, plen;
401 struct pppoe_softc *sc;
402 const char *err_msg, *err_txt;
403 u_int8_t *ac_cookie;
404 size_t ac_cookie_len;
405 #ifdef PPPOE_SERVER
406 u_int8_t *hunique;
407 size_t hunique_len;
408 #endif
409 struct pppoehdr *ph;
410 struct pppoetag *pt;
411 struct mbuf *n;
412 int noff, err, errortag;
413 struct ether_header *eh;
414
415 err_msg = err_txt = NULL;
416 errortag = 0;
417 if (m->m_len < sizeof(*eh)) {
418 m = m_pullup(m, sizeof(*eh));
419 if (!m)
420 goto done;
421 }
422 eh = mtod(m, struct ether_header *);
423 off += sizeof(*eh);
424
425 ac_cookie = NULL;
426 ac_cookie_len = 0;
427 #ifdef PPPOE_SERVER
428 hunique = NULL;
429 hunique_len = 0;
430 #endif
431 session = 0;
432 if (m->m_pkthdr.len - off <= PPPOE_HEADERLEN) {
433 printf("pppoe: packet too short: %d\n", m->m_pkthdr.len);
434 goto done;
435 }
436
437 n = m_pulldown(m, off, sizeof(*ph), &noff);
438 if (!n) {
439 printf("pppoe: could not get PPPoE header\n");
440 m = NULL;
441 goto done;
442 }
443 ph = (struct pppoehdr *)(mtod(n, caddr_t) + noff);
444 if (ph->vertype != PPPOE_VERTYPE) {
445 printf("pppoe: unknown version/type packet: 0x%x\n",
446 ph->vertype);
447 goto done;
448 }
449 session = ntohs(ph->session);
450 plen = ntohs(ph->plen);
451 off += sizeof(*ph);
452
453 if (plen + off > m->m_pkthdr.len) {
454 printf("pppoe: packet content does not fit: data available = %d, packet size = %u\n",
455 m->m_pkthdr.len - off, plen);
456 goto done;
457 }
458 m_adj(m, off + plen - m->m_pkthdr.len); /* ignore trailing garbage */
459 tag = 0;
460 len = 0;
461 sc = NULL;
462 while (off + sizeof(*pt) <= m->m_pkthdr.len) {
463 n = m_pulldown(m, off, sizeof(*pt), &noff);
464 if (!n) {
465 printf("%s: parse error\n",
466 sc ? sc->sc_sppp.pp_if.if_xname : "pppoe");
467 m = NULL;
468 goto done;
469 }
470 pt = (struct pppoetag *)(mtod(n, caddr_t) + noff);
471 tag = ntohs(pt->tag);
472 len = ntohs(pt->len);
473 if (off + len > m->m_pkthdr.len) {
474 printf("pppoe: tag 0x%x len 0x%x is too long\n",
475 tag, len);
476 goto done;
477 }
478 switch (tag) {
479 case PPPOE_TAG_EOL:
480 goto breakbreak;
481 case PPPOE_TAG_SNAME:
482 break; /* ignored */
483 case PPPOE_TAG_ACNAME:
484 break; /* ignored */
485 case PPPOE_TAG_HUNIQUE:
486 if (sc != NULL)
487 break;
488 n = m_pulldown(m, off + sizeof(*pt), len, &noff);
489 if (!n) {
490 m = NULL;
491 err_msg = "TAG HUNIQUE ERROR";
492 break;
493 }
494 #ifdef PPPOE_SERVER
495 hunique = mtod(n, caddr_t) + noff;
496 hunique_len = len;
497 #endif
498 sc = pppoe_find_softc_by_hunique(mtod(n, caddr_t) + noff,
499 len, m->m_pkthdr.rcvif);
500 break;
501 case PPPOE_TAG_ACCOOKIE:
502 if (ac_cookie == NULL) {
503 n = m_pulldown(m, off + sizeof(*pt), len,
504 &noff);
505 if (!n) {
506 err_msg = "TAG ACCOOKIE ERROR";
507 m = NULL;
508 break;
509 }
510 ac_cookie = mtod(n, caddr_t) + noff;
511 ac_cookie_len = len;
512 }
513 break;
514 case PPPOE_TAG_SNAME_ERR:
515 err_msg = "SERVICE NAME ERROR";
516 errortag = 1;
517 break;
518 case PPPOE_TAG_ACSYS_ERR:
519 err_msg = "AC SYSTEM ERROR";
520 errortag = 1;
521 break;
522 case PPPOE_TAG_GENERIC_ERR:
523 err_msg = "GENERIC ERROR";
524 errortag = 1;
525 break;
526 }
527 if (err_msg) {
528 err_txt = "";
529 if (errortag && len) {
530 n = m_pulldown(m, off + sizeof(*pt), len,
531 &noff);
532 if (n)
533 err_txt = mtod(n, caddr_t) + noff;
534 }
535 printf("%s: %s: %*s\n",
536 sc ? sc->sc_sppp.pp_if.if_xname : "pppoe*",
537 err_msg, len, err_txt);
538 if (errortag)
539 goto done;
540 }
541 off += sizeof(*pt) + len;
542 }
543 breakbreak:;
544 switch (ph->code) {
545 case PPPOE_CODE_PADI:
546 #ifdef PPPOE_SERVER
547 /*
548 * got service name, concentrator name, and/or host unique.
549 * ignore if we have no interfaces with IFF_PASSIVE|IFF_UP.
550 */
551 if (LIST_EMPTY(&pppoe_softc_list))
552 goto done;
553 LIST_FOREACH(sc, &pppoe_softc_list, sc_list) {
554 if (!(sc->sc_sppp.pp_if.if_flags & IFF_UP))
555 continue;
556 if (!(sc->sc_sppp.pp_if.if_flags & IFF_PASSIVE))
557 continue;
558 if (sc->sc_state == PPPOE_STATE_INITIAL)
559 break;
560 }
561 if (sc == NULL) {
562 /* printf("pppoe: free passive interface is not found\n");*/
563 goto done;
564 }
565 if (hunique) {
566 if (sc->sc_hunique)
567 free(sc->sc_hunique, M_DEVBUF);
568 sc->sc_hunique = malloc(hunique_len, M_DEVBUF,
569 M_DONTWAIT);
570 if (sc->sc_hunique == NULL)
571 goto done;
572 sc->sc_hunique_len = hunique_len;
573 memcpy(sc->sc_hunique, hunique, hunique_len);
574 }
575 memcpy(&sc->sc_dest, eh->ether_shost, sizeof sc->sc_dest);
576 sc->sc_state = PPPOE_STATE_PADO_SENT;
577 pppoe_send_pado(sc);
578 break;
579 #endif /* PPPOE_SERVER */
580 case PPPOE_CODE_PADR:
581 #ifdef PPPOE_SERVER
582 /*
583 * get sc from ac_cookie if IFF_PASSIVE
584 */
585 if (ac_cookie == NULL) {
586 /* be quiet if there is not a single pppoe instance */
587 printf("pppoe: received PADR but not includes ac_cookie\n");
588 goto done;
589 }
590 sc = pppoe_find_softc_by_hunique(ac_cookie,
591 ac_cookie_len,
592 m->m_pkthdr.rcvif);
593 if (sc == NULL) {
594 /* be quiet if there is not a single pppoe instance */
595 if (!LIST_EMPTY(&pppoe_softc_list))
596 printf("pppoe: received PADR but could not find request for it\n");
597 goto done;
598 }
599 if (sc->sc_state != PPPOE_STATE_PADO_SENT) {
600 printf("%s: received unexpected PADR\n",
601 sc->sc_sppp.pp_if.if_xname);
602 goto done;
603 }
604 if (hunique) {
605 if (sc->sc_hunique)
606 free(sc->sc_hunique, M_DEVBUF);
607 sc->sc_hunique = malloc(hunique_len, M_DEVBUF,
608 M_DONTWAIT);
609 if (sc->sc_hunique == NULL)
610 goto done;
611 sc->sc_hunique_len = hunique_len;
612 memcpy(sc->sc_hunique, hunique, hunique_len);
613 }
614 pppoe_send_pads(sc);
615 sc->sc_state = PPPOE_STATE_SESSION;
616 sc->sc_sppp.pp_up(&sc->sc_sppp);
617 break;
618 #else
619 /* ignore, we are no access concentrator */
620 goto done;
621 #endif /* PPPOE_SERVER */
622 case PPPOE_CODE_PADO:
623 if (sc == NULL) {
624 /* be quiet if there is not a single pppoe instance */
625 if (!LIST_EMPTY(&pppoe_softc_list))
626 printf("pppoe: received PADO but could not find request for it\n");
627 goto done;
628 }
629 if (sc->sc_state != PPPOE_STATE_PADI_SENT) {
630 printf("%s: received unexpected PADO\n",
631 sc->sc_sppp.pp_if.if_xname);
632 goto done;
633 }
634 if (ac_cookie) {
635 if (sc->sc_ac_cookie)
636 free(sc->sc_ac_cookie, M_DEVBUF);
637 sc->sc_ac_cookie = malloc(ac_cookie_len, M_DEVBUF,
638 M_DONTWAIT);
639 if (sc->sc_ac_cookie == NULL)
640 goto done;
641 sc->sc_ac_cookie_len = ac_cookie_len;
642 memcpy(sc->sc_ac_cookie, ac_cookie, ac_cookie_len);
643 }
644 memcpy(&sc->sc_dest, eh->ether_shost, sizeof sc->sc_dest);
645 callout_stop(&sc->sc_timeout);
646 sc->sc_padr_retried = 0;
647 sc->sc_state = PPPOE_STATE_PADR_SENT;
648 if ((err = pppoe_send_padr(sc)) != 0) {
649 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
650 printf("%s: failed to send PADR, "
651 "error=%d\n", sc->sc_sppp.pp_if.if_xname,
652 err);
653 }
654 callout_reset(&sc->sc_timeout,
655 PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried),
656 pppoe_timeout, sc);
657 break;
658 case PPPOE_CODE_PADS:
659 if (sc == NULL)
660 goto done;
661 sc->sc_session = session;
662 callout_stop(&sc->sc_timeout);
663 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
664 printf("%s: session 0x%x connected\n",
665 sc->sc_sppp.pp_if.if_xname, session);
666 sc->sc_state = PPPOE_STATE_SESSION;
667 sc->sc_sppp.pp_up(&sc->sc_sppp); /* notify upper layers */
668 break;
669 case PPPOE_CODE_PADT:
670 if (sc == NULL)
671 goto done;
672 /* stop timer (we might be about to transmit a PADT ourself) */
673 callout_stop(&sc->sc_timeout);
674 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
675 printf("%s: session 0x%x terminated, received PADT\n",
676 sc->sc_sppp.pp_if.if_xname, session);
677 /* clean up softc */
678 sc->sc_state = PPPOE_STATE_INITIAL;
679 memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
680 if (sc->sc_ac_cookie) {
681 free(sc->sc_ac_cookie, M_DEVBUF);
682 sc->sc_ac_cookie = NULL;
683 }
684 sc->sc_ac_cookie_len = 0;
685 sc->sc_session = 0;
686 /* signal upper layer */
687 sc->sc_sppp.pp_down(&sc->sc_sppp);
688 break;
689 default:
690 printf("%s: unknown code (0x%04x) session = 0x%04x\n",
691 sc? sc->sc_sppp.pp_if.if_xname : "pppoe",
692 ph->code, session);
693 break;
694 }
695
696 done:
697 m_freem(m);
698 return;
699 }
700
701 static void
702 pppoe_disc_input(struct mbuf *m)
703 {
704
705 /* avoid error messages if there is not a single pppoe instance */
706 if (!LIST_EMPTY(&pppoe_softc_list)) {
707 KASSERT(m->m_flags & M_PKTHDR);
708 pppoe_dispatch_disc_pkt(m, 0);
709 } else
710 m_freem(m);
711 }
712
713 static void
714 pppoe_data_input(struct mbuf *m)
715 {
716 u_int16_t session, plen;
717 struct pppoe_softc *sc;
718 struct pppoehdr *ph;
719 #ifdef PPPOE_TERM_UNKNOWN_SESSIONS
720 u_int8_t shost[ETHER_ADDR_LEN];
721 #endif
722
723 KASSERT(m->m_flags & M_PKTHDR);
724
725 #ifdef PPPOE_TERM_UNKNOWN_SESSIONS
726 memcpy(shost, mtod(m, struct ether_header*)->ether_shost, ETHER_ADDR_LEN);
727 #endif
728 m_adj(m, sizeof(struct ether_header));
729 if (m->m_pkthdr.len <= PPPOE_HEADERLEN) {
730 printf("pppoe (data): dropping too short packet: %d bytes\n",
731 m->m_pkthdr.len);
732 goto drop;
733 }
734
735 if (m->m_len < sizeof(*ph)) {
736 m = m_pullup(m, sizeof(*ph));
737 if (!m) {
738 printf("pppoe: could not get PPPoE header\n");
739 return;
740 }
741 }
742 ph = mtod(m, struct pppoehdr *);
743
744 if (ph->vertype != PPPOE_VERTYPE) {
745 printf("pppoe (data): unknown version/type packet: 0x%x\n",
746 ph->vertype);
747 goto drop;
748 }
749 if (ph->code != 0)
750 goto drop;
751
752 session = ntohs(ph->session);
753 sc = pppoe_find_softc_by_session(session, m->m_pkthdr.rcvif);
754 if (sc == NULL) {
755 #ifdef PPPOE_TERM_UNKNOWN_SESSIONS
756 printf("pppoe: input for unknown session 0x%x, sending PADT\n",
757 session);
758 pppoe_send_padt(m->m_pkthdr.rcvif, session, shost);
759 #endif
760 goto drop;
761 }
762
763 plen = ntohs(ph->plen);
764
765 #if NBPFILTER > 0
766 if(sc->sc_sppp.pp_if.if_bpf)
767 bpf_mtap(sc->sc_sppp.pp_if.if_bpf, m);
768 #endif
769
770 m_adj(m, PPPOE_HEADERLEN);
771
772 #ifdef PPPOE_DEBUG
773 {
774 struct mbuf *p;
775
776 printf("%s: pkthdr.len=%d, pppoe.len=%d",
777 sc->sc_sppp.pp_if.if_xname,
778 m->m_pkthdr.len, plen);
779 p = m;
780 while (p) {
781 printf(" l=%d", p->m_len);
782 p = p->m_next;
783 }
784 printf("\n");
785 }
786 #endif
787
788 if (m->m_pkthdr.len < plen)
789 goto drop;
790
791 /* fix incoming interface pointer (not the raw ethernet interface anymore) */
792 m->m_pkthdr.rcvif = &sc->sc_sppp.pp_if;
793
794 /* pass packet up and account for it */
795 sc->sc_sppp.pp_if.if_ipackets++;
796 sppp_input(&sc->sc_sppp.pp_if, m);
797 return;
798
799 drop:
800 m_freem(m);
801 }
802
803 static int
804 pppoe_output(struct pppoe_softc *sc, struct mbuf *m)
805 {
806 struct sockaddr dst;
807 struct ether_header *eh;
808 u_int16_t etype;
809
810 if (sc->sc_eth_if == NULL) {
811 m_freem(m);
812 return EIO;
813 }
814
815 memset(&dst, 0, sizeof dst);
816 dst.sa_family = AF_UNSPEC;
817 eh = (struct ether_header*)&dst.sa_data;
818 etype = sc->sc_state == PPPOE_STATE_SESSION ? ETHERTYPE_PPPOE : ETHERTYPE_PPPOEDISC;
819 eh->ether_type = htons(etype);
820 memcpy(&eh->ether_dhost, &sc->sc_dest, sizeof sc->sc_dest);
821
822 #ifdef PPPOE_DEBUG
823 printf("%s (%x) state=%d, session=0x%x output -> %s, len=%d\n",
824 sc->sc_sppp.pp_if.if_xname, etype,
825 sc->sc_state, sc->sc_session,
826 ether_sprintf((const unsigned char *)&sc->sc_dest), m->m_pkthdr.len);
827 #endif
828
829 m->m_flags &= ~(M_BCAST|M_MCAST);
830 sc->sc_sppp.pp_if.if_opackets++;
831 return sc->sc_eth_if->if_output(sc->sc_eth_if, m, &dst, NULL);
832 }
833
834 static int
835 pppoe_ioctl(struct ifnet *ifp, unsigned long cmd, caddr_t data)
836 {
837 struct proc *p = curproc; /* XXX */
838 struct pppoe_softc *sc = (struct pppoe_softc*)ifp;
839 int error = 0;
840
841 switch (cmd) {
842 case PPPOESETPARMS:
843 {
844 struct pppoediscparms *parms = (struct pppoediscparms*)data;
845 if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
846 return error;
847 if (parms->eth_ifname[0] != 0) {
848 sc->sc_eth_if = ifunit(parms->eth_ifname);
849 if (sc->sc_eth_if == NULL)
850 return ENXIO;
851 }
852 if (parms->ac_name) {
853 size_t s;
854 char * p = malloc(parms->ac_name_len + 1, M_DEVBUF,
855 M_WAITOK);
856 if (p == NULL)
857 return ENOMEM;
858 error = copyinstr(parms->ac_name, p,
859 parms->ac_name_len+1, &s);
860 if (error != 0) {
861 free(p, M_DEVBUF);
862 return error;
863 }
864 if (s != parms->ac_name_len+1) {
865 free(p, M_DEVBUF);
866 return EINVAL;
867 }
868 if (sc->sc_concentrator_name)
869 free(sc->sc_concentrator_name, M_DEVBUF);
870 sc->sc_concentrator_name = p;
871 }
872 if (parms->service_name) {
873 size_t s;
874 char * p = malloc(parms->service_name_len + 1, M_DEVBUF,
875 M_WAITOK);
876 if (p == NULL)
877 return ENOMEM;
878 error = copyinstr(parms->service_name, p,
879 parms->service_name_len+1, &s);
880 if (error != 0) {
881 free(p, M_DEVBUF);
882 return error;
883 }
884 if (s != parms->service_name_len+1) {
885 free(p, M_DEVBUF);
886 return EINVAL;
887 }
888 if (sc->sc_service_name)
889 free(sc->sc_service_name, M_DEVBUF);
890 sc->sc_service_name = p;
891 }
892 return 0;
893 }
894 break;
895 case PPPOEGETPARMS:
896 {
897 struct pppoediscparms *parms = (struct pppoediscparms*)data;
898 memset(parms, 0, sizeof *parms);
899 if (sc->sc_eth_if)
900 strncpy(parms->ifname, sc->sc_eth_if->if_xname, IFNAMSIZ);
901 return 0;
902 }
903 break;
904 case PPPOEGETSESSION:
905 {
906 struct pppoeconnectionstate *state = (struct pppoeconnectionstate*)data;
907 state->state = sc->sc_state;
908 state->session_id = sc->sc_session;
909 state->padi_retry_no = sc->sc_padi_retried;
910 state->padr_retry_no = sc->sc_padr_retried;
911 return 0;
912 }
913 break;
914 case SIOCSIFFLAGS:
915 {
916 struct ifreq *ifr = (struct ifreq*) data;
917 /*
918 * Prevent running re-establishment timers overriding
919 * administrators choice.
920 */
921 if ((ifr->ifr_flags & IFF_UP) == 0
922 && sc->sc_state >= PPPOE_STATE_PADI_SENT
923 && sc->sc_state < PPPOE_STATE_SESSION) {
924 callout_stop(&sc->sc_timeout);
925 sc->sc_state = PPPOE_STATE_INITIAL;
926 sc->sc_padi_retried = 0;
927 sc->sc_padr_retried = 0;
928 memcpy(&sc->sc_dest, etherbroadcastaddr,
929 sizeof(sc->sc_dest));
930 }
931 return sppp_ioctl(ifp, cmd, data);
932 }
933 case SIOCSIFMTU:
934 {
935 struct ifreq *ifr = (struct ifreq*) data;
936
937 if (ifr->ifr_mtu > PPPOE_MAXMTU)
938 return EINVAL;
939 return sppp_ioctl(ifp, cmd, data);
940 }
941 default:
942 return sppp_ioctl(ifp, cmd, data);
943 }
944 return 0;
945 }
946
947 /*
948 * Allocate a mbuf/cluster with space to store the given data length
949 * of payload, leaving space for prepending an ethernet header
950 * in front.
951 */
952 static struct mbuf *
953 pppoe_get_mbuf(size_t len)
954 {
955 struct mbuf *m;
956
957 MGETHDR(m, M_DONTWAIT, MT_DATA);
958 if (m == NULL)
959 return NULL;
960 if (len + sizeof(struct ether_header) > MHLEN) {
961 MCLGET(m, M_DONTWAIT);
962 if ((m->m_flags & M_EXT) == 0) {
963 struct mbuf *n;
964 MFREE(m, n);
965 return 0;
966 }
967 }
968 m->m_data += sizeof(struct ether_header);
969 m->m_len = len;
970 m->m_pkthdr.len = len;
971 m->m_pkthdr.rcvif = NULL;
972
973 return m;
974 }
975
976 static int
977 pppoe_send_padi(struct pppoe_softc *sc)
978 {
979 struct mbuf *m0;
980 int len, l1 = 0, l2 = 0; /* XXX: gcc */
981 u_int8_t *p;
982
983 if (sc->sc_state >PPPOE_STATE_PADI_SENT)
984 panic("pppoe_send_padi in state %d", sc->sc_state);
985
986 /* calculate length of frame (excluding ethernet header + pppoe header) */
987 len = 2 + 2 + 2 + 2 + sizeof sc; /* service name tag is required, host unique is send too */
988 if (sc->sc_service_name != NULL) {
989 l1 = strlen(sc->sc_service_name);
990 len += l1;
991 }
992 if (sc->sc_concentrator_name != NULL) {
993 l2 = strlen(sc->sc_concentrator_name);
994 len += 2 + 2 + l2;
995 }
996
997 /* allocate a buffer */
998 m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN); /* header len + payload len */
999 if (!m0)
1000 return ENOBUFS;
1001
1002 /* fill in pkt */
1003 p = mtod(m0, u_int8_t *);
1004 PPPOE_ADD_HEADER(p, PPPOE_CODE_PADI, 0, len);
1005 PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
1006 if (sc->sc_service_name != NULL) {
1007 PPPOE_ADD_16(p, l1);
1008 memcpy(p, sc->sc_service_name, l1);
1009 p += l1;
1010 } else {
1011 PPPOE_ADD_16(p, 0);
1012 }
1013 if (sc->sc_concentrator_name != NULL) {
1014 PPPOE_ADD_16(p, PPPOE_TAG_ACNAME);
1015 PPPOE_ADD_16(p, l2);
1016 memcpy(p, sc->sc_concentrator_name, l2);
1017 p += l2;
1018 }
1019 PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
1020 PPPOE_ADD_16(p, sizeof(sc));
1021 memcpy(p, &sc, sizeof sc);
1022
1023 #ifdef PPPOE_DEBUG
1024 p += sizeof sc;
1025 if (p - mtod(m0, u_int8_t *) != len + PPPOE_HEADERLEN)
1026 panic("pppoe_send_padi: garbled output len, should be %ld, is %ld",
1027 (long)(len + PPPOE_HEADERLEN), (long)(p - mtod(m0, u_int8_t *)));
1028 #endif
1029
1030 /* send pkt */
1031 return pppoe_output(sc, m0);
1032 }
1033
1034 static void
1035 pppoe_timeout(void *arg)
1036 {
1037 int x, retry_wait, err;
1038 struct pppoe_softc *sc = (struct pppoe_softc*)arg;
1039
1040 #ifdef PPPOE_DEBUG
1041 printf("%s: timeout\n", sc->sc_sppp.pp_if.if_xname);
1042 #endif
1043
1044 switch (sc->sc_state) {
1045 case PPPOE_STATE_PADI_SENT:
1046 /*
1047 * We have two basic ways of retrying:
1048 * - Quick retry mode: try a few times in short sequence
1049 * - Slow retry mode: we already had a connection successfully
1050 * established and will try infinitely (without user
1051 * intervention)
1052 * We only enter slow retry mode if IFF_LINK1 (aka autodial)
1053 * is not set.
1054 */
1055
1056 /* initialize for quick retry mode */
1057 retry_wait = PPPOE_DISC_TIMEOUT * (1 + sc->sc_padi_retried);
1058
1059 x = splnet();
1060 sc->sc_padi_retried++;
1061 if (sc->sc_padi_retried >= PPPOE_DISC_MAXPADI) {
1062 if ((sc->sc_sppp.pp_if.if_flags & IFF_LINK1) == 0) {
1063 /* slow retry mode */
1064 retry_wait = PPPOE_SLOW_RETRY;
1065 } else {
1066 pppoe_abort_connect(sc);
1067 splx(x);
1068 return;
1069 }
1070 }
1071 if ((err = pppoe_send_padi(sc)) != 0) {
1072 sc->sc_padi_retried--;
1073 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
1074 printf("%s: failed to transmit PADI, "
1075 "error=%d\n",
1076 sc->sc_sppp.pp_if.if_xname, err);
1077 }
1078 callout_reset(&sc->sc_timeout, retry_wait,
1079 pppoe_timeout, sc);
1080 splx(x);
1081 break;
1082
1083 case PPPOE_STATE_PADR_SENT:
1084 x = splnet();
1085 sc->sc_padr_retried++;
1086 if (sc->sc_padr_retried >= PPPOE_DISC_MAXPADR) {
1087 memcpy(&sc->sc_dest, etherbroadcastaddr,
1088 sizeof(sc->sc_dest));
1089 sc->sc_state = PPPOE_STATE_PADI_SENT;
1090 sc->sc_padr_retried = 0;
1091 if ((err = pppoe_send_padi(sc)) != 0) {
1092 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
1093 printf("%s: failed to send PADI"
1094 ", error=%d\n",
1095 sc->sc_sppp.pp_if.if_xname,
1096 err);
1097 }
1098 callout_reset(&sc->sc_timeout,
1099 PPPOE_DISC_TIMEOUT * (1 + sc->sc_padi_retried),
1100 pppoe_timeout, sc);
1101 splx(x);
1102 return;
1103 }
1104 if ((err = pppoe_send_padr(sc)) != 0) {
1105 sc->sc_padr_retried--;
1106 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
1107 printf("%s: failed to send PADR, "
1108 "error=%d\n", sc->sc_sppp.pp_if.if_xname,
1109 err);
1110 }
1111 callout_reset(&sc->sc_timeout,
1112 PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried),
1113 pppoe_timeout, sc);
1114 splx(x);
1115 break;
1116 case PPPOE_STATE_CLOSING:
1117 pppoe_disconnect(sc);
1118 break;
1119 default:
1120 return; /* all done, work in peace */
1121 }
1122 }
1123
1124 /* Start a connection (i.e. initiate discovery phase) */
1125 static int
1126 pppoe_connect(struct pppoe_softc *sc)
1127 {
1128 int x, err;
1129
1130 if (sc->sc_state != PPPOE_STATE_INITIAL)
1131 return EBUSY;
1132
1133 #ifdef PPPOE_SERVER
1134 /* wait PADI if IFF_PASSIVE */
1135 if ((sc->sc_sppp.pp_if.if_flags & IFF_PASSIVE))
1136 return 0;
1137 #endif
1138 x = splnet();
1139 /* save state, in case we fail to send PADI */
1140 sc->sc_state = PPPOE_STATE_PADI_SENT;
1141 sc->sc_padr_retried = 0;
1142 err = pppoe_send_padi(sc);
1143 if (err != 0 && sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
1144 printf("%s: failed to send PADI, error=%d\n",
1145 sc->sc_sppp.pp_if.if_xname, err);
1146 callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT, pppoe_timeout, sc);
1147 splx(x);
1148 return err;
1149 }
1150
1151 /* disconnect */
1152 static int
1153 pppoe_disconnect(struct pppoe_softc *sc)
1154 {
1155 int err, x;
1156
1157 x = splnet();
1158
1159 if (sc->sc_state < PPPOE_STATE_SESSION)
1160 err = EBUSY;
1161 else {
1162 if (sc->sc_sppp.pp_if.if_flags & IFF_DEBUG)
1163 printf("%s: disconnecting\n",
1164 sc->sc_sppp.pp_if.if_xname);
1165 err = pppoe_send_padt(sc->sc_eth_if, sc->sc_session, (const u_int8_t *)&sc->sc_dest);
1166 }
1167
1168 /* cleanup softc */
1169 sc->sc_state = PPPOE_STATE_INITIAL;
1170 memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
1171 if (sc->sc_ac_cookie) {
1172 free(sc->sc_ac_cookie, M_DEVBUF);
1173 sc->sc_ac_cookie = NULL;
1174 }
1175 sc->sc_ac_cookie_len = 0;
1176 #ifdef PPPOE_SERVER
1177 if (sc->sc_hunique) {
1178 free(sc->sc_hunique, M_DEVBUF);
1179 sc->sc_hunique = NULL;
1180 }
1181 sc->sc_hunique_len = 0;
1182 #endif
1183 sc->sc_session = 0;
1184
1185 /* notify upper layer */
1186 sc->sc_sppp.pp_down(&sc->sc_sppp);
1187
1188 splx(x);
1189
1190 return err;
1191 }
1192
1193 /* Connection attempt aborted */
1194 static void
1195 pppoe_abort_connect(struct pppoe_softc *sc)
1196 {
1197 printf("%s: could not establish connection\n",
1198 sc->sc_sppp.pp_if.if_xname);
1199 sc->sc_state = PPPOE_STATE_CLOSING;
1200
1201 /* notify upper layer */
1202 sc->sc_sppp.pp_down(&sc->sc_sppp);
1203
1204 /* clear connection state */
1205 memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
1206 sc->sc_state = PPPOE_STATE_INITIAL;
1207 }
1208
1209 /* Send a PADR packet */
1210 static int
1211 pppoe_send_padr(struct pppoe_softc *sc)
1212 {
1213 struct mbuf *m0;
1214 u_int8_t *p;
1215 size_t len, l1 = 0; /* XXX: gcc */
1216
1217 if (sc->sc_state != PPPOE_STATE_PADR_SENT)
1218 return EIO;
1219
1220 len = 2 + 2 + 2 + 2 + sizeof(sc); /* service name, host unique */
1221 if (sc->sc_service_name != NULL) { /* service name tag maybe empty */
1222 l1 = strlen(sc->sc_service_name);
1223 len += l1;
1224 }
1225 if (sc->sc_ac_cookie_len > 0)
1226 len += 2 + 2 + sc->sc_ac_cookie_len; /* AC cookie */
1227 m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN);
1228 if (!m0)
1229 return ENOBUFS;
1230 p = mtod(m0, u_int8_t *);
1231 PPPOE_ADD_HEADER(p, PPPOE_CODE_PADR, 0, len);
1232 PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
1233 if (sc->sc_service_name != NULL) {
1234 PPPOE_ADD_16(p, l1);
1235 memcpy(p, sc->sc_service_name, l1);
1236 p += l1;
1237 } else {
1238 PPPOE_ADD_16(p, 0);
1239 }
1240 if (sc->sc_ac_cookie_len > 0) {
1241 PPPOE_ADD_16(p, PPPOE_TAG_ACCOOKIE);
1242 PPPOE_ADD_16(p, sc->sc_ac_cookie_len);
1243 memcpy(p, sc->sc_ac_cookie, sc->sc_ac_cookie_len);
1244 p += sc->sc_ac_cookie_len;
1245 }
1246 PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
1247 PPPOE_ADD_16(p, sizeof(sc));
1248 memcpy(p, &sc, sizeof sc);
1249
1250 #ifdef PPPOE_DEBUG
1251 p += sizeof sc;
1252 if (p - mtod(m0, u_int8_t *) != len + PPPOE_HEADERLEN)
1253 panic("pppoe_send_padr: garbled output len, should be %ld, is %ld",
1254 (long)(len + PPPOE_HEADERLEN), (long)(p - mtod(m0, u_int8_t *)));
1255 #endif
1256
1257 return pppoe_output(sc, m0);
1258 }
1259
1260 /* send a PADT packet */
1261 static int
1262 pppoe_send_padt(struct ifnet *outgoing_if, u_int session, const u_int8_t *dest)
1263 {
1264 struct ether_header *eh;
1265 struct sockaddr dst;
1266 struct mbuf *m0;
1267 u_int8_t *p;
1268
1269 m0 = pppoe_get_mbuf(PPPOE_HEADERLEN);
1270 if (!m0)
1271 return EIO;
1272 p = mtod(m0, u_int8_t *);
1273 PPPOE_ADD_HEADER(p, PPPOE_CODE_PADT, session, 0);
1274
1275 memset(&dst, 0, sizeof dst);
1276 dst.sa_family = AF_UNSPEC;
1277 eh = (struct ether_header*)&dst.sa_data;
1278 eh->ether_type = htons(ETHERTYPE_PPPOEDISC);
1279 memcpy(&eh->ether_dhost, dest, ETHER_ADDR_LEN);
1280
1281 m0->m_flags &= ~(M_BCAST|M_MCAST);
1282 return outgoing_if->if_output(outgoing_if, m0, &dst, NULL);
1283 }
1284
1285 #ifdef PPPOE_SERVER
1286 static int
1287 pppoe_send_pado(struct pppoe_softc *sc)
1288 {
1289 struct mbuf *m0;
1290 u_int8_t *p;
1291 size_t len;
1292
1293 if (sc->sc_state != PPPOE_STATE_PADO_SENT)
1294 return EIO;
1295
1296 /* calc length */
1297 len = 0;
1298 /* include ac_cookie */
1299 len += 2 + 2 + sizeof(sc);
1300 /* include hunique */
1301 len += 2 + 2 + sc->sc_hunique_len;
1302 m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN);
1303 if (!m0)
1304 return EIO;
1305 p = mtod(m0, u_int8_t *);
1306 PPPOE_ADD_HEADER(p, PPPOE_CODE_PADO, 0, len);
1307 PPPOE_ADD_16(p, PPPOE_TAG_ACCOOKIE);
1308 PPPOE_ADD_16(p, sizeof(sc));
1309 memcpy(p, &sc, sizeof(sc));
1310 p += sizeof(sc);
1311 PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
1312 PPPOE_ADD_16(p, sc->sc_hunique_len);
1313 memcpy(p, sc->sc_hunique, sc->sc_hunique_len);
1314 return pppoe_output(sc, m0);
1315 }
1316
1317 static int
1318 pppoe_send_pads(struct pppoe_softc *sc)
1319 {
1320 struct mbuf *m0;
1321 u_int8_t *p;
1322 size_t len, l1;
1323
1324 if (sc->sc_state != PPPOE_STATE_PADO_SENT)
1325 return EIO;
1326
1327 sc->sc_session = mono_time.tv_sec % 0xff + 1;
1328 /* calc length */
1329 len = 0;
1330 /* include hunique */
1331 len += 2 + 2 + 2 + 2 + sc->sc_hunique_len; /* service name, host unique*/
1332 if (sc->sc_service_name != NULL) { /* service name tag maybe empty */
1333 l1 = strlen(sc->sc_service_name);
1334 len += l1;
1335 }
1336 m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN);
1337 if (!m0)
1338 return ENOBUFS;
1339 p = mtod(m0, u_int8_t *);
1340 PPPOE_ADD_HEADER(p, PPPOE_CODE_PADS, sc->sc_session, len);
1341 PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
1342 if (sc->sc_service_name != NULL) {
1343 PPPOE_ADD_16(p, l1);
1344 memcpy(p, sc->sc_service_name, l1);
1345 p += l1;
1346 } else {
1347 PPPOE_ADD_16(p, 0);
1348 }
1349 PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
1350 PPPOE_ADD_16(p, sc->sc_hunique_len);
1351 memcpy(p, sc->sc_hunique, sc->sc_hunique_len);
1352 return pppoe_output(sc, m0);
1353 }
1354 #endif
1355
1356 static void
1357 pppoe_tls(struct sppp *sp)
1358 {
1359 struct pppoe_softc *sc = (void *)sp;
1360 if (sc->sc_state != PPPOE_STATE_INITIAL)
1361 return;
1362 pppoe_connect(sc);
1363 }
1364
1365 static void
1366 pppoe_tlf(struct sppp *sp)
1367 {
1368 struct pppoe_softc *sc = (void *)sp;
1369 if (sc->sc_state < PPPOE_STATE_SESSION)
1370 return;
1371 /*
1372 * Do not call pppoe_disconnect here, the upper layer state
1373 * machine gets confused by this. We must return from this
1374 * function and defer disconnecting to the timeout handler.
1375 */
1376 sc->sc_state = PPPOE_STATE_CLOSING;
1377 callout_reset(&sc->sc_timeout, hz/50, pppoe_timeout, sc);
1378 }
1379
1380 static void
1381 pppoe_start(struct ifnet *ifp)
1382 {
1383 struct pppoe_softc *sc = (void *)ifp;
1384 struct mbuf *m;
1385 u_int8_t *p;
1386 size_t len;
1387
1388 if (sppp_isempty(ifp))
1389 return;
1390
1391 /* are we ready to process data yet? */
1392 if (sc->sc_state < PPPOE_STATE_SESSION) {
1393 sppp_flush(&sc->sc_sppp.pp_if);
1394 return;
1395 }
1396
1397 while ((m = sppp_dequeue(ifp)) != NULL) {
1398 len = m->m_pkthdr.len;
1399 M_PREPEND(m, PPPOE_HEADERLEN, M_DONTWAIT);
1400 if (m == NULL) {
1401 ifp->if_oerrors++;
1402 continue;
1403 }
1404 p = mtod(m, u_int8_t *);
1405 PPPOE_ADD_HEADER(p, 0, sc->sc_session, len);
1406
1407 #if NBPFILTER > 0
1408 if(sc->sc_sppp.pp_if.if_bpf)
1409 bpf_mtap(sc->sc_sppp.pp_if.if_bpf, m);
1410 #endif
1411
1412 pppoe_output(sc, m);
1413 }
1414 }
1415