if_pppoe.c revision 1.7 1 1.7 lukem /* $NetBSD: if_pppoe.c,v 1.7 2001/11/12 23:49:42 lukem Exp $ */
2 1.1 martin
3 1.1 martin /*
4 1.1 martin * Copyright (c) 2001 Martin Husemann. All rights reserved.
5 1.1 martin *
6 1.1 martin * Redistribution and use in source and binary forms, with or without
7 1.1 martin * modification, are permitted provided that the following conditions
8 1.1 martin * are met:
9 1.1 martin * 1. Redistributions of source code must retain the above copyright
10 1.1 martin * notice, this list of conditions and the following disclaimer.
11 1.1 martin * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 martin * notice, this list of conditions and the following disclaimer in the
13 1.1 martin * documentation and/or other materials provided with the distribution.
14 1.1 martin *
15 1.1 martin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 1.1 martin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 1.1 martin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 1.1 martin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 1.1 martin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 1.1 martin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 1.1 martin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 1.1 martin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 1.1 martin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 1.1 martin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 1.1 martin * SUCH DAMAGE.
26 1.1 martin *
27 1.1 martin */
28 1.7 lukem
29 1.7 lukem #include <sys/cdefs.h>
30 1.7 lukem __KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.7 2001/11/12 23:49:42 lukem Exp $");
31 1.1 martin
32 1.1 martin #include "pppoe.h"
33 1.1 martin #include "bpfilter.h"
34 1.1 martin
35 1.1 martin #include <sys/param.h>
36 1.1 martin #include <sys/systm.h>
37 1.1 martin #include <sys/kernel.h>
38 1.1 martin #include <sys/callout.h>
39 1.1 martin #include <sys/malloc.h>
40 1.1 martin #include <sys/mbuf.h>
41 1.1 martin #include <sys/socket.h>
42 1.1 martin #include <sys/proc.h>
43 1.1 martin #include <sys/ioctl.h>
44 1.1 martin #include <net/if.h>
45 1.1 martin #include <net/if_types.h>
46 1.1 martin #include <net/if_ether.h>
47 1.1 martin #include <net/if_sppp.h>
48 1.1 martin #include <net/if_pppoe.h>
49 1.1 martin
50 1.1 martin #if NBPFILTER > 0
51 1.1 martin #include <net/bpf.h>
52 1.1 martin #endif
53 1.1 martin
54 1.1 martin #if NPPPOE > 0
55 1.1 martin
56 1.1 martin #undef PPPOE_DEBUG /* XXX - remove this or make it an option */
57 1.1 martin /* #define PPPOE_DEBUG 1 */
58 1.1 martin
59 1.1 martin #define PPPOE_HEADERLEN 6
60 1.1 martin #define PPPOE_VERTYPE 0x11 /* VER=1, TYPE = 1 */
61 1.1 martin
62 1.1 martin #define PPPOE_TAG_EOL 0x0000 /* end of list */
63 1.1 martin #define PPPOE_TAG_SNAME 0x0101 /* service name */
64 1.1 martin #define PPPOE_TAG_ACNAME 0x0102 /* access concentrator name */
65 1.1 martin #define PPPOE_TAG_HUNIQUE 0x0103 /* host unique */
66 1.1 martin #define PPPOE_TAG_ACCOOKIE 0x0104 /* AC cookie */
67 1.1 martin #define PPPOE_TAG_VENDOR 0x0105 /* vendor specific */
68 1.1 martin #define PPPOE_TAG_RELAYSID 0x0110 /* relay session id */
69 1.1 martin #define PPPOE_TAG_SNAME_ERR 0x0201 /* service name error */
70 1.1 martin #define PPPOE_TAG_ACSYS_ERR 0x0202 /* AC system error */
71 1.1 martin #define PPPOE_TAG_GENERIC_ERR 0x0203 /* gerneric error */
72 1.1 martin
73 1.1 martin #define PPPOE_CODE_PADI 0x09 /* Active Discovery Initiation */
74 1.1 martin #define PPPOE_CODE_PADO 0x07 /* Active Discovery Offer */
75 1.1 martin #define PPPOE_CODE_PADR 0x19 /* Active Discovery Request */
76 1.1 martin #define PPPOE_CODE_PADS 0x65 /* Active Discovery Session confirmation */
77 1.1 martin #define PPPOE_CODE_PADT 0xA7 /* Active Discovery Terminate */
78 1.1 martin
79 1.1 martin /* Read a 16 bit unsigned value from a buffer */
80 1.1 martin #define PPPOE_READ_16(PTR, VAL) \
81 1.1 martin (VAL) = ((PTR)[0] << 8) | (PTR)[1]; \
82 1.1 martin (PTR)+=2
83 1.1 martin
84 1.1 martin /* Add a 16 bit unsigned value to a buffer pointed to by PTR */
85 1.1 martin #define PPPOE_ADD_16(PTR, VAL) \
86 1.1 martin *(PTR)++ = (VAL) / 256; \
87 1.1 martin *(PTR)++ = (VAL) % 256
88 1.1 martin
89 1.1 martin /* Add a complete PPPoE header to the buffer pointed to by PTR */
90 1.1 martin #define PPPOE_ADD_HEADER(PTR, CODE, SESS, LEN) \
91 1.1 martin *(PTR)++ = PPPOE_VERTYPE; \
92 1.1 martin *(PTR)++ = (CODE); \
93 1.1 martin PPPOE_ADD_16(PTR, SESS); \
94 1.1 martin PPPOE_ADD_16(PTR, LEN)
95 1.1 martin
96 1.1 martin struct pppoe_softc {
97 1.1 martin struct sppp sc_sppp; /* contains a struct ifnet as first element */
98 1.5 martin LIST_ENTRY(pppoe_softc) sc_list;
99 1.1 martin struct ifnet *sc_eth_if; /* ethernet interface we are using */
100 1.1 martin
101 1.1 martin #define PPPOE_DISC_TIMEOUT hz/5
102 1.1 martin #define PPPOE_DISC_MAXPADI 4 /* retry PADI four times */
103 1.1 martin #define PPPOE_DISC_MAXPADR 2 /* retry PADR twice */
104 1.1 martin
105 1.1 martin #define PPPOE_STATE_INITIAL 0
106 1.1 martin #define PPPOE_STATE_PADI_SENT 1
107 1.1 martin #define PPPOE_STATE_PADR_SENT 2
108 1.1 martin #define PPPOE_STATE_SESSION 3
109 1.1 martin #define PPPOE_STATE_CLOSING 4
110 1.1 martin int sc_state; /* discovery phase or session connected */
111 1.1 martin struct ether_addr sc_dest; /* hardware address of concentrator */
112 1.1 martin u_int16_t sc_session; /* PPPoE session id */
113 1.1 martin
114 1.1 martin char *sc_service_name; /* if != NULL: requested name of service */
115 1.1 martin char *sc_concentrator_name; /* if != NULL: requested concentrator id */
116 1.1 martin u_int8_t *sc_ac_cookie; /* content of AC cookie we must echo back */
117 1.1 martin size_t sc_ac_cookie_len; /* length of cookie data */
118 1.1 martin struct callout sc_timeout; /* timeout while not in session state */
119 1.1 martin int sc_padi_retried; /* number of PADI retries already done */
120 1.1 martin int sc_padr_retried; /* number of PADR retries already done */
121 1.1 martin };
122 1.1 martin
123 1.1 martin /* incoming traffic will be queued here */
124 1.1 martin struct ifqueue ppoediscinq = { NULL };
125 1.1 martin struct ifqueue ppoeinq = { NULL };
126 1.1 martin
127 1.1 martin #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
128 1.1 martin void * pppoe_softintr = NULL;
129 1.1 martin static void pppoe_softintr_handler(void *);
130 1.1 martin #else
131 1.1 martin struct callout pppoe_softintr = CALLOUT_INITIALIZER;
132 1.1 martin void pppoe_softintr_handler(void*);
133 1.1 martin #endif
134 1.1 martin
135 1.1 martin extern int sppp_ioctl(struct ifnet *ifp, unsigned long cmd, void *data);
136 1.1 martin
137 1.1 martin /* input routines */
138 1.1 martin static void pppoe_input(void);
139 1.1 martin static void pppoe_disc_input(struct mbuf *m);
140 1.1 martin static void pppoe_dispatch_disc_pkt(u_int8_t *p, size_t size, struct ifnet *rcvif, struct ether_header *eh);
141 1.1 martin static void pppoe_data_input(struct mbuf *m);
142 1.1 martin
143 1.1 martin /* management routines */
144 1.5 martin void pppoeattach(int count);
145 1.1 martin static int pppoe_connect(struct pppoe_softc *sc);
146 1.1 martin static int pppoe_disconnect(struct pppoe_softc *sc);
147 1.1 martin static void pppoe_abort_connect(struct pppoe_softc *sc);
148 1.1 martin static int pppoe_ioctl(struct ifnet *ifp, unsigned long cmd, caddr_t data);
149 1.1 martin static void pppoe_tls(struct sppp *sp);
150 1.1 martin static void pppoe_tlf(struct sppp *sp);
151 1.1 martin static void pppoe_start(struct ifnet *ifp);
152 1.1 martin
153 1.1 martin /* internal timeout handling */
154 1.1 martin static void pppoe_timeout(void*);
155 1.1 martin
156 1.1 martin /* sending actual protocol controll packets */
157 1.1 martin static int pppoe_send_padi(struct pppoe_softc *sc);
158 1.1 martin static int pppoe_send_padr(struct pppoe_softc *sc);
159 1.1 martin static int pppoe_send_padt(struct pppoe_softc *sc);
160 1.1 martin
161 1.1 martin /* raw output */
162 1.1 martin static int pppoe_output(struct pppoe_softc *sc, struct mbuf *m);
163 1.1 martin
164 1.1 martin /* internal helper functions */
165 1.1 martin static struct pppoe_softc * pppoe_find_softc_by_session(u_int session, struct ifnet *rcvif);
166 1.1 martin static struct pppoe_softc * pppoe_find_softc_by_hunique(u_int8_t *token, size_t len, struct ifnet *rcvif);
167 1.1 martin
168 1.5 martin LIST_HEAD(pppoe_softc_head, pppoe_softc) pppoe_softc_list;
169 1.1 martin
170 1.5 martin int pppoe_clone_create __P((struct if_clone *, int));
171 1.5 martin void pppoe_clone_destroy __P((struct ifnet *));
172 1.5 martin
173 1.5 martin struct if_clone pppoe_cloner =
174 1.5 martin IF_CLONE_INITIALIZER("pppoe", pppoe_clone_create, pppoe_clone_destroy);
175 1.5 martin
176 1.5 martin /* ARGSUSED */
177 1.1 martin void
178 1.5 martin pppoeattach(count)
179 1.5 martin int count;
180 1.5 martin {
181 1.5 martin LIST_INIT(&pppoe_softc_list);
182 1.5 martin if_clone_attach(&pppoe_cloner);
183 1.5 martin
184 1.5 martin ppoediscinq.ifq_maxlen = IFQ_MAXLEN;
185 1.5 martin ppoeinq.ifq_maxlen = IFQ_MAXLEN;
186 1.5 martin
187 1.5 martin #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
188 1.5 martin pppoe_softintr = softintr_establish(IPL_SOFTNET, pppoe_softintr_handler, NULL);
189 1.5 martin #endif
190 1.5 martin }
191 1.5 martin
192 1.5 martin int
193 1.5 martin pppoe_clone_create(ifc, unit)
194 1.5 martin struct if_clone *ifc;
195 1.5 martin int unit;
196 1.1 martin {
197 1.1 martin struct pppoe_softc *sc;
198 1.1 martin
199 1.5 martin sc = malloc(sizeof(struct pppoe_softc), M_DEVBUF, M_WAITOK);
200 1.5 martin memset(sc, 0, sizeof(struct pppoe_softc));
201 1.5 martin
202 1.5 martin sprintf(sc->sc_sppp.pp_if.if_xname, "pppoe%d", unit);
203 1.5 martin sc->sc_sppp.pp_if.if_softc = sc;
204 1.5 martin sc->sc_sppp.pp_if.if_mtu = ETHERMTU - PPPOE_HEADERLEN - 2; /* two byte PPP protocol discriminator, then IP data */
205 1.5 martin sc->sc_sppp.pp_if.if_flags = IFF_SIMPLEX | IFF_POINTOPOINT
206 1.5 martin | IFF_MULTICAST | IFF_LINK1; /* auto "dial" */
207 1.5 martin sc->sc_sppp.pp_if.if_type = IFT_PPP;
208 1.5 martin sc->sc_sppp.pp_if.if_hdrlen = sizeof(struct ether_header)+PPPOE_HEADERLEN;
209 1.5 martin sc->sc_sppp.pp_if.if_dlt = DLT_PPP_ETHER;
210 1.5 martin sc->sc_sppp.pp_flags |= PP_NOFRAMING; /* no serial encapsulation */
211 1.5 martin sc->sc_sppp.pp_if.if_ioctl = pppoe_ioctl;
212 1.5 martin IFQ_SET_MAXLEN(&sc->sc_sppp.pp_if.if_snd, IFQ_MAXLEN);
213 1.5 martin IFQ_SET_READY(&sc->sc_sppp.pp_if.if_snd);
214 1.5 martin
215 1.5 martin /* changed to real address later */
216 1.5 martin memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
217 1.5 martin
218 1.5 martin callout_init(&sc->sc_timeout);
219 1.5 martin
220 1.5 martin sc->sc_sppp.pp_if.if_start = pppoe_start;
221 1.5 martin sc->sc_sppp.pp_tls = pppoe_tls;
222 1.5 martin sc->sc_sppp.pp_tlf = pppoe_tlf;
223 1.5 martin sc->sc_sppp.pp_framebytes = PPPOE_HEADERLEN; /* framing added to ppp packets */
224 1.1 martin
225 1.5 martin if_attach(&sc->sc_sppp.pp_if);
226 1.5 martin sppp_attach(&sc->sc_sppp.pp_if);
227 1.1 martin
228 1.1 martin #if NBPFILTER > 0
229 1.5 martin bpfattach(&sc->sc_sppp.pp_if, DLT_PPP_ETHER, 0);
230 1.1 martin #endif
231 1.5 martin LIST_INSERT_HEAD(&pppoe_softc_list, sc, sc_list);
232 1.5 martin return 0;
233 1.5 martin }
234 1.1 martin
235 1.5 martin void
236 1.5 martin pppoe_clone_destroy(ifp)
237 1.5 martin struct ifnet *ifp;
238 1.5 martin {
239 1.5 martin struct pppoe_softc * sc = ifp->if_softc;
240 1.1 martin
241 1.5 martin LIST_REMOVE(sc, sc_list);
242 1.5 martin #if NBPFILTER > 0
243 1.5 martin bpfdetach(ifp);
244 1.1 martin #endif
245 1.6 martin sppp_detach(&sc->sc_sppp.pp_if);
246 1.5 martin if_detach(ifp);
247 1.5 martin free(sc, M_DEVBUF);
248 1.1 martin }
249 1.1 martin
250 1.1 martin /*
251 1.1 martin * Find the interface handling the specified session.
252 1.1 martin * Note: O(number of sessions open), this is a client-side only, mean
253 1.1 martin * and lean implementation, so number of open sessions typically should
254 1.1 martin * be 1.
255 1.1 martin */
256 1.1 martin static struct pppoe_softc *
257 1.1 martin pppoe_find_softc_by_session(u_int session, struct ifnet *rcvif)
258 1.1 martin {
259 1.5 martin struct pppoe_softc *sc;
260 1.1 martin
261 1.1 martin if (session == 0) return NULL;
262 1.1 martin
263 1.5 martin LIST_FOREACH(sc, &pppoe_softc_list, sc_list) {
264 1.5 martin if (sc->sc_state == PPPOE_STATE_SESSION
265 1.5 martin && sc->sc_session == session) {
266 1.5 martin if (sc->sc_eth_if == rcvif)
267 1.5 martin return sc;
268 1.1 martin else
269 1.1 martin return NULL;
270 1.1 martin }
271 1.1 martin }
272 1.1 martin return NULL;
273 1.1 martin }
274 1.1 martin
275 1.1 martin /* Check host unique token passed and return appropriate softc pointer,
276 1.1 martin * or NULL if token is bogus. */
277 1.1 martin static struct pppoe_softc *
278 1.1 martin pppoe_find_softc_by_hunique(u_int8_t *token, size_t len, struct ifnet *rcvif)
279 1.1 martin {
280 1.5 martin struct pppoe_softc *sc, *t;
281 1.1 martin if (len != sizeof sc) return NULL;
282 1.5 martin memcpy(&t, token, len);
283 1.5 martin
284 1.5 martin LIST_FOREACH(sc, &pppoe_softc_list, sc_list)
285 1.5 martin if (sc == t) break;
286 1.5 martin
287 1.5 martin if (sc != t) {
288 1.1 martin #ifdef PPPOE_DEBUG
289 1.1 martin printf("pppoe: invalid host unique value\n");
290 1.1 martin #endif
291 1.1 martin return NULL;
292 1.1 martin }
293 1.5 martin
294 1.1 martin /* should be safe to access *sc now */
295 1.1 martin if (sc->sc_state < PPPOE_STATE_PADI_SENT || sc->sc_state >= PPPOE_STATE_SESSION) {
296 1.1 martin #ifdef PPPOE_DEBUG
297 1.1 martin printf("%s: state=%d, not accepting host unique\n",
298 1.1 martin sc->sc_sppp.pp_if.if_xname, sc->sc_state);
299 1.1 martin #endif
300 1.1 martin return NULL;
301 1.1 martin }
302 1.1 martin if (sc->sc_eth_if != rcvif) {
303 1.1 martin #ifdef PPPOE_DEBUG
304 1.1 martin printf("%s: wrong interface, not accepting host unique\n",
305 1.1 martin sc->sc_sppp.pp_if.if_xname);
306 1.1 martin #endif
307 1.1 martin return NULL;
308 1.1 martin }
309 1.1 martin return sc;
310 1.1 martin }
311 1.1 martin
312 1.1 martin #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
313 1.1 martin static void pppoe_softintr_handler(void *dummy)
314 1.1 martin {
315 1.1 martin /* called at splsoftnet() */
316 1.1 martin pppoe_input();
317 1.1 martin }
318 1.1 martin #else
319 1.1 martin void pppoe_softintr_handler(void *dummy)
320 1.1 martin {
321 1.1 martin int s = splnet();
322 1.1 martin pppoe_input();
323 1.1 martin callout_deactivate(&pppoe_softintr);
324 1.1 martin splx(s);
325 1.1 martin }
326 1.1 martin #endif
327 1.1 martin
328 1.1 martin /* called at appropriate protection level */
329 1.1 martin static void
330 1.1 martin pppoe_input()
331 1.1 martin {
332 1.1 martin struct mbuf *m;
333 1.3 martin int s, disc_done, data_done;
334 1.1 martin
335 1.3 martin do {
336 1.3 martin disc_done = 0;
337 1.3 martin data_done = 0;
338 1.3 martin for (;;) {
339 1.3 martin s = splnet();
340 1.1 martin IF_DEQUEUE(&ppoediscinq, m);
341 1.3 martin splx(s);
342 1.3 martin if (m == NULL) break;
343 1.3 martin disc_done = 1;
344 1.1 martin pppoe_disc_input(m);
345 1.1 martin }
346 1.3 martin
347 1.3 martin for (;;) {
348 1.3 martin s = splnet();
349 1.1 martin IF_DEQUEUE(&ppoeinq, m);
350 1.3 martin splx(s);
351 1.3 martin if (m == NULL) break;
352 1.3 martin data_done = 1;
353 1.1 martin pppoe_data_input(m);
354 1.1 martin }
355 1.3 martin } while (disc_done || data_done);
356 1.1 martin }
357 1.1 martin
358 1.1 martin /* analyze and handle a single received packet while not in session state */
359 1.1 martin static void pppoe_dispatch_disc_pkt(u_int8_t *p, size_t size, struct ifnet *rcvif, struct ether_header *eh)
360 1.1 martin {
361 1.1 martin u_int16_t tag, len;
362 1.1 martin u_int8_t vertype, code;
363 1.1 martin u_int16_t session, plen;
364 1.1 martin struct pppoe_softc *sc;
365 1.1 martin const char *err_msg = NULL;
366 1.1 martin u_int8_t * ac_cookie;
367 1.1 martin size_t ac_cookie_len;
368 1.1 martin
369 1.1 martin ac_cookie = NULL;
370 1.1 martin ac_cookie_len = 0;
371 1.1 martin session = 0;
372 1.1 martin if (size <= PPPOE_HEADERLEN) {
373 1.1 martin printf("pppoe: packet too short: %ld\n", (long)size);
374 1.1 martin return;
375 1.1 martin }
376 1.1 martin vertype = *p++;
377 1.1 martin if (vertype != PPPOE_VERTYPE) {
378 1.1 martin printf("pppoe: unknown version/type packet: 0x%x\n", vertype);
379 1.1 martin return;
380 1.1 martin }
381 1.1 martin code = *p++;
382 1.1 martin PPPOE_READ_16(p, session);
383 1.1 martin PPPOE_READ_16(p, plen);
384 1.1 martin size -= PPPOE_HEADERLEN;
385 1.1 martin
386 1.1 martin if (plen > size) {
387 1.1 martin printf("pppoe: packet content does not fit: data available = %ld, packet size = %ld\n",
388 1.1 martin (long)size, (long)plen);
389 1.1 martin return;
390 1.1 martin }
391 1.1 martin size = plen; /* ignore trailing garbage */
392 1.1 martin tag = 0;
393 1.1 martin len = 0;
394 1.1 martin sc = NULL;
395 1.1 martin while (size > 4) {
396 1.1 martin PPPOE_READ_16(p, tag);
397 1.1 martin PPPOE_READ_16(p, len);
398 1.1 martin if (len > size) {
399 1.1 martin printf("pppoe: tag 0x%x len 0x%x is too long\n", tag, len);
400 1.1 martin return;
401 1.1 martin }
402 1.1 martin switch (tag) {
403 1.1 martin case PPPOE_TAG_EOL:
404 1.1 martin size = 0; break;
405 1.1 martin case PPPOE_TAG_SNAME:
406 1.1 martin break; /* ignored */
407 1.1 martin case PPPOE_TAG_ACNAME:
408 1.1 martin break; /* ignored */
409 1.1 martin case PPPOE_TAG_HUNIQUE:
410 1.1 martin if (sc == NULL)
411 1.1 martin sc = pppoe_find_softc_by_hunique(p, len, rcvif);
412 1.1 martin break;
413 1.1 martin case PPPOE_TAG_ACCOOKIE:
414 1.1 martin if (ac_cookie == NULL) {
415 1.1 martin ac_cookie = p;
416 1.1 martin ac_cookie_len = len;
417 1.1 martin }
418 1.1 martin break;
419 1.1 martin case PPPOE_TAG_SNAME_ERR:
420 1.1 martin err_msg = "SERVICE NAME ERROR";
421 1.1 martin break;
422 1.1 martin case PPPOE_TAG_ACSYS_ERR:
423 1.1 martin err_msg = "AC SYSTEM ERROR";
424 1.1 martin break;
425 1.1 martin case PPPOE_TAG_GENERIC_ERR:
426 1.1 martin err_msg = "GENERIC ERROR";
427 1.1 martin break;
428 1.1 martin }
429 1.1 martin if (err_msg) {
430 1.1 martin printf("%s: %s\n", sc? sc->sc_sppp.pp_if.if_xname : "pppoe",
431 1.1 martin err_msg);
432 1.1 martin return;
433 1.1 martin }
434 1.1 martin if (size >= 0) {
435 1.1 martin size -= 4 + len;
436 1.1 martin if (len > 0)
437 1.1 martin p += len;
438 1.1 martin }
439 1.1 martin }
440 1.1 martin switch (code) {
441 1.1 martin case PPPOE_CODE_PADI:
442 1.1 martin case PPPOE_CODE_PADR:
443 1.1 martin /* ignore, we are no access concentrator */
444 1.1 martin return;
445 1.1 martin case PPPOE_CODE_PADO:
446 1.1 martin if (sc == NULL) {
447 1.1 martin printf("pppoe: received PADO but could not find request for it\n");
448 1.1 martin return;
449 1.1 martin }
450 1.1 martin if (sc->sc_state != PPPOE_STATE_PADI_SENT) {
451 1.1 martin printf("%s: received unexpected PADO\n", sc->sc_sppp.pp_if.if_xname);
452 1.1 martin return;
453 1.1 martin }
454 1.1 martin if (ac_cookie) {
455 1.1 martin sc->sc_ac_cookie = malloc(ac_cookie_len, M_DEVBUF, M_DONTWAIT);
456 1.1 martin if (sc->sc_ac_cookie == NULL)
457 1.1 martin return;
458 1.1 martin sc->sc_ac_cookie_len = ac_cookie_len;
459 1.1 martin memcpy(sc->sc_ac_cookie, ac_cookie, ac_cookie_len);
460 1.1 martin }
461 1.1 martin memcpy(&sc->sc_dest, eh->ether_shost, sizeof sc->sc_dest);
462 1.1 martin callout_stop(&sc->sc_timeout);
463 1.1 martin sc->sc_padr_retried = 0;
464 1.1 martin sc->sc_state = PPPOE_STATE_PADR_SENT;
465 1.1 martin if (pppoe_send_padr(sc) == 0)
466 1.1 martin callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT*(1+sc->sc_padr_retried), pppoe_timeout, sc);
467 1.1 martin else
468 1.1 martin pppoe_abort_connect(sc);
469 1.1 martin break;
470 1.1 martin case PPPOE_CODE_PADS:
471 1.1 martin if (sc == NULL)
472 1.1 martin return;
473 1.1 martin sc->sc_session = session;
474 1.1 martin callout_stop(&sc->sc_timeout);
475 1.1 martin printf("%s: session 0x%x connected\n", sc->sc_sppp.pp_if.if_xname, session);
476 1.1 martin sc->sc_state = PPPOE_STATE_SESSION;
477 1.1 martin sc->sc_sppp.pp_up(&sc->sc_sppp); /* notify upper layers */
478 1.1 martin break;
479 1.1 martin case PPPOE_CODE_PADT:
480 1.1 martin if (sc == NULL)
481 1.1 martin return;
482 1.1 martin /* stop timer (we might be about to transmit a PADT ourself) */
483 1.1 martin callout_stop(&sc->sc_timeout);
484 1.1 martin /* signal upper layer */
485 1.1 martin printf("%s: session 0x%x terminated, received PADT\n", sc->sc_sppp.pp_if.if_xname, session);
486 1.1 martin /* clean up softc */
487 1.1 martin sc->sc_state = PPPOE_STATE_INITIAL;
488 1.1 martin memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
489 1.1 martin if (sc->sc_ac_cookie) {
490 1.1 martin free(sc->sc_ac_cookie, M_MBUF);
491 1.1 martin sc->sc_ac_cookie = NULL;
492 1.1 martin }
493 1.1 martin sc->sc_ac_cookie_len = 0;
494 1.1 martin sc->sc_session = 0;
495 1.1 martin sc->sc_sppp.pp_down(&sc->sc_sppp);
496 1.1 martin break;
497 1.1 martin default:
498 1.1 martin printf("%s: unknown code (0x%04x) session = 0x%04x\n",
499 1.1 martin sc? sc->sc_sppp.pp_if.if_xname : "pppoe",
500 1.1 martin code, session);
501 1.1 martin break;
502 1.1 martin }
503 1.1 martin }
504 1.1 martin
505 1.1 martin static void
506 1.1 martin pppoe_disc_input(struct mbuf *m)
507 1.1 martin {
508 1.1 martin u_int8_t *p;
509 1.1 martin struct ether_header *eh;
510 1.1 martin
511 1.1 martin eh = mtod(m, struct ether_header*);
512 1.1 martin m_adj(m, sizeof(struct ether_header));
513 1.1 martin p = mtod(m, u_int8_t*);
514 1.1 martin KASSERT(m->m_flags & M_PKTHDR);
515 1.1 martin pppoe_dispatch_disc_pkt(p, m->m_len, m->m_pkthdr.rcvif, eh);
516 1.1 martin m_free(m);
517 1.1 martin }
518 1.1 martin
519 1.1 martin static void
520 1.1 martin pppoe_data_input(struct mbuf *m)
521 1.1 martin {
522 1.1 martin u_int8_t *p, vertype;
523 1.1 martin u_int16_t session, plen, code;
524 1.1 martin struct pppoe_softc *sc;
525 1.1 martin
526 1.1 martin KASSERT(m->m_flags & M_PKTHDR);
527 1.1 martin
528 1.1 martin m_adj(m, sizeof(struct ether_header));
529 1.1 martin if (m->m_pkthdr.len <= PPPOE_HEADERLEN) {
530 1.1 martin printf("pppoe (data): dropping too short packet: %ld bytes\n", (long)m->m_pkthdr.len);
531 1.1 martin goto drop;
532 1.1 martin }
533 1.1 martin
534 1.1 martin p = mtod(m, u_int8_t*);
535 1.1 martin
536 1.1 martin vertype = *p++;
537 1.1 martin if (vertype != PPPOE_VERTYPE) {
538 1.1 martin printf("pppoe (data): unknown version/type packet: 0x%x\n", vertype);
539 1.1 martin goto drop;
540 1.1 martin }
541 1.1 martin
542 1.1 martin code = *p++;
543 1.1 martin if (code != 0)
544 1.1 martin goto drop;
545 1.1 martin
546 1.1 martin PPPOE_READ_16(p, session);
547 1.1 martin sc = pppoe_find_softc_by_session(session, m->m_pkthdr.rcvif);
548 1.1 martin if (sc == NULL)
549 1.1 martin goto drop;
550 1.1 martin
551 1.1 martin PPPOE_READ_16(p, plen);
552 1.1 martin
553 1.1 martin #if NBPFILTER > 0
554 1.1 martin if(sc->sc_sppp.pp_if.if_bpf)
555 1.1 martin bpf_mtap(sc->sc_sppp.pp_if.if_bpf, m);
556 1.1 martin #endif
557 1.1 martin
558 1.1 martin m_adj(m, PPPOE_HEADERLEN);
559 1.1 martin
560 1.1 martin #ifdef PPPOE_DEBUG
561 1.1 martin {
562 1.1 martin struct mbuf *p;
563 1.1 martin
564 1.1 martin printf("%s: pkthdr.len=%d, pppoe.len=%d",
565 1.1 martin sc->sc_sppp.pp_if.if_xname,
566 1.1 martin m->m_pkthdr.len, plen);
567 1.1 martin p = m;
568 1.1 martin while (p) {
569 1.1 martin printf(" l=%d", p->m_len);
570 1.1 martin p = p->m_next;
571 1.1 martin }
572 1.1 martin printf("\n");
573 1.1 martin }
574 1.1 martin #endif
575 1.1 martin
576 1.1 martin if (m->m_pkthdr.len < plen)
577 1.1 martin goto drop;
578 1.1 martin
579 1.1 martin /* fix incoming interface pointer (not the raw ethernet interface anymore) */
580 1.1 martin m->m_pkthdr.rcvif = &sc->sc_sppp.pp_if;
581 1.1 martin
582 1.1 martin /* pass packet up */
583 1.1 martin sppp_input(&sc->sc_sppp.pp_if, m);
584 1.1 martin return;
585 1.1 martin
586 1.1 martin drop:
587 1.1 martin m_free(m);
588 1.1 martin }
589 1.1 martin
590 1.1 martin static int
591 1.1 martin pppoe_output(struct pppoe_softc *sc, struct mbuf *m)
592 1.1 martin {
593 1.1 martin struct sockaddr dst;
594 1.1 martin struct ether_header *eh;
595 1.1 martin u_int16_t etype;
596 1.1 martin
597 1.1 martin if (sc->sc_eth_if == NULL)
598 1.1 martin return EIO;
599 1.1 martin
600 1.1 martin memset(&dst, 0, sizeof dst);
601 1.1 martin dst.sa_family = AF_UNSPEC;
602 1.1 martin eh = (struct ether_header*)&dst.sa_data;
603 1.1 martin etype = sc->sc_state == PPPOE_STATE_SESSION? ETHERTYPE_PPPOE : ETHERTYPE_PPPOEDISC;
604 1.1 martin eh->ether_type = htons(etype);
605 1.1 martin memcpy(&eh->ether_dhost, &sc->sc_dest, sizeof sc->sc_dest);
606 1.1 martin
607 1.1 martin #ifdef PPPOE_DEBUG
608 1.1 martin printf("%s (%x) state=%d, session=0x%x output -> %s, len=%d\n",
609 1.1 martin sc->sc_sppp.pp_if.if_xname, etype,
610 1.1 martin sc->sc_state, sc->sc_session,
611 1.1 martin ether_sprintf((const unsigned char *)&sc->sc_dest), m->m_pkthdr.len);
612 1.1 martin #endif
613 1.1 martin
614 1.1 martin return sc->sc_eth_if->if_output(sc->sc_eth_if, m, &dst, NULL);
615 1.1 martin }
616 1.1 martin
617 1.1 martin static int
618 1.1 martin pppoe_ioctl(struct ifnet *ifp, unsigned long cmd, caddr_t data)
619 1.1 martin {
620 1.1 martin struct proc *p = curproc; /* XXX */
621 1.1 martin struct pppoe_softc *sc = (struct pppoe_softc*)ifp;
622 1.1 martin int error = 0;
623 1.1 martin
624 1.1 martin switch (cmd) {
625 1.1 martin case PPPOESETPARMS:
626 1.1 martin {
627 1.1 martin struct pppoediscparms *parms = (struct pppoediscparms*)data;
628 1.1 martin if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
629 1.1 martin return error;
630 1.1 martin if (parms->eth_ifname[0] != 0) {
631 1.1 martin sc->sc_eth_if = ifunit(parms->eth_ifname);
632 1.1 martin if (sc->sc_eth_if == NULL)
633 1.1 martin return ENXIO;
634 1.1 martin }
635 1.1 martin if (parms->ac_name) {
636 1.1 martin size_t s;
637 1.1 martin char * p = malloc(parms->ac_name_len + 1, M_DEVBUF, M_WAITOK);
638 1.1 martin copyinstr(parms->ac_name, p, parms->ac_name_len, &s);
639 1.1 martin if (sc->sc_concentrator_name)
640 1.1 martin free(sc->sc_concentrator_name, M_DEVBUF);
641 1.1 martin sc->sc_concentrator_name = p;
642 1.1 martin }
643 1.1 martin if (parms->service_name) {
644 1.1 martin size_t s;
645 1.1 martin char * p = malloc(parms->service_name_len + 1, M_DEVBUF, M_WAITOK);
646 1.1 martin copyinstr(parms->service_name, p, parms->service_name_len, &s);
647 1.1 martin if (sc->sc_service_name)
648 1.1 martin free(sc->sc_service_name, M_DEVBUF);
649 1.1 martin sc->sc_service_name = p;
650 1.1 martin }
651 1.1 martin return 0;
652 1.1 martin }
653 1.1 martin break;
654 1.1 martin case PPPOEGETPARMS:
655 1.1 martin {
656 1.1 martin struct pppoediscparms *parms = (struct pppoediscparms*)data;
657 1.1 martin memset(parms, 0, sizeof *parms);
658 1.1 martin if (sc->sc_eth_if)
659 1.1 martin strncpy(parms->ifname, sc->sc_eth_if->if_xname, IFNAMSIZ);
660 1.1 martin return 0;
661 1.1 martin }
662 1.1 martin break;
663 1.1 martin default:
664 1.1 martin return sppp_ioctl(ifp, cmd, data);
665 1.1 martin }
666 1.1 martin return 0;
667 1.1 martin }
668 1.1 martin
669 1.1 martin /*
670 1.1 martin * Allocate a mbuf/cluster with space to store the given data length
671 1.1 martin * of payload, leaving space for prepending an ethernet header
672 1.1 martin * in front.
673 1.1 martin */
674 1.1 martin static struct mbuf *
675 1.1 martin pppoe_get_mbuf(size_t len)
676 1.1 martin {
677 1.1 martin struct mbuf *m;
678 1.1 martin
679 1.1 martin MGETHDR(m, M_DONTWAIT, MT_DATA);
680 1.1 martin if (m == NULL)
681 1.1 martin return NULL;
682 1.1 martin if (len+sizeof(struct ether_header) > MHLEN) {
683 1.1 martin MCLGET(m, M_DONTWAIT);
684 1.1 martin if ((m->m_flags & M_EXT) == 0) {
685 1.1 martin struct mbuf *n;
686 1.1 martin MFREE(m, n);
687 1.1 martin return 0;
688 1.1 martin }
689 1.1 martin }
690 1.1 martin m->m_data += sizeof(struct ether_header);
691 1.1 martin m->m_len = len;
692 1.1 martin m->m_pkthdr.len = len;
693 1.1 martin m->m_pkthdr.rcvif = NULL;
694 1.1 martin
695 1.1 martin return m;
696 1.1 martin }
697 1.1 martin
698 1.1 martin static int
699 1.1 martin pppoe_send_padi(struct pppoe_softc *sc)
700 1.1 martin {
701 1.1 martin struct mbuf *m0;
702 1.1 martin int len, l1, l2;
703 1.1 martin u_int8_t *p;
704 1.1 martin
705 1.1 martin if (sc->sc_state >PPPOE_STATE_PADI_SENT)
706 1.1 martin panic("pppoe_send_padi in state %d", sc->sc_state);
707 1.1 martin
708 1.1 martin /* calculate length of frame (excluding ethernet header + pppoe header) */
709 1.1 martin len = 2+2+2+2+sizeof sc; /* service name tag is required, host unique is send too */
710 1.1 martin if (sc->sc_service_name != NULL) {
711 1.1 martin l1 = strlen(sc->sc_service_name);
712 1.1 martin len += l1;
713 1.1 martin }
714 1.1 martin if (sc->sc_concentrator_name != NULL) {
715 1.1 martin l2 = strlen(sc->sc_concentrator_name);
716 1.1 martin len += 2+2+l2;
717 1.1 martin }
718 1.1 martin
719 1.1 martin /* allocate a buffer */
720 1.1 martin m0 = pppoe_get_mbuf(len+PPPOE_HEADERLEN); /* header len + payload len */
721 1.1 martin if (!m0) return ENOBUFS;
722 1.1 martin
723 1.1 martin /* fill in pkt */
724 1.1 martin p = mtod(m0, u_int8_t*);
725 1.1 martin PPPOE_ADD_HEADER(p, PPPOE_CODE_PADI, 0, len);
726 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
727 1.1 martin if (sc->sc_service_name != NULL) {
728 1.1 martin PPPOE_ADD_16(p, l1);
729 1.1 martin memcpy(p, sc->sc_service_name, l1);
730 1.1 martin p += l1;
731 1.1 martin } else {
732 1.1 martin PPPOE_ADD_16(p, 0);
733 1.1 martin }
734 1.1 martin if (sc->sc_concentrator_name != NULL) {
735 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_ACNAME);
736 1.1 martin PPPOE_ADD_16(p, l2);
737 1.1 martin memcpy(p, sc->sc_concentrator_name, l2);
738 1.1 martin p += l2;
739 1.1 martin }
740 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
741 1.1 martin PPPOE_ADD_16(p, sizeof(sc));
742 1.1 martin memcpy(p, &sc, sizeof sc);
743 1.1 martin
744 1.1 martin #ifdef PPPOE_DEBUG
745 1.1 martin p += sizeof sc;
746 1.1 martin if (p - mtod(m0, u_int8_t*) != len + PPPOE_HEADERLEN)
747 1.1 martin panic("pppoe_send_padi: garbled output len, should be %ld, is %ld",
748 1.1 martin (long)(len + PPPOE_HEADERLEN), (long)(p - mtod(m0, u_int8_t*)));
749 1.1 martin #endif
750 1.1 martin
751 1.1 martin /* send pkt */
752 1.1 martin return pppoe_output(sc, m0);
753 1.1 martin }
754 1.1 martin
755 1.1 martin static void
756 1.1 martin pppoe_timeout(void *arg)
757 1.1 martin {
758 1.1 martin int x;
759 1.1 martin struct pppoe_softc *sc = (struct pppoe_softc*)arg;
760 1.1 martin
761 1.1 martin #ifdef PPPOE_DEBUG
762 1.1 martin printf("%s: timeout\n", sc->sc_sppp.pp_if.if_xname);
763 1.1 martin #endif
764 1.1 martin
765 1.1 martin switch (sc->sc_state) {
766 1.1 martin case PPPOE_STATE_PADI_SENT:
767 1.1 martin x = splnet();
768 1.1 martin sc->sc_padi_retried++;
769 1.1 martin if (sc->sc_padi_retried >= PPPOE_DISC_MAXPADI) {
770 1.1 martin pppoe_abort_connect(sc);
771 1.1 martin splx(x);
772 1.1 martin return;
773 1.1 martin }
774 1.1 martin if (pppoe_send_padi(sc) == 0)
775 1.1 martin callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT*(1+sc->sc_padi_retried), pppoe_timeout, sc);
776 1.1 martin else
777 1.1 martin pppoe_abort_connect(sc);
778 1.1 martin splx(x);
779 1.1 martin break;
780 1.1 martin
781 1.1 martin case PPPOE_STATE_PADR_SENT:
782 1.1 martin x = splnet();
783 1.1 martin sc->sc_padr_retried++;
784 1.1 martin if (sc->sc_padr_retried >= PPPOE_DISC_MAXPADR) {
785 1.1 martin memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
786 1.1 martin sc->sc_state = PPPOE_STATE_PADI_SENT;
787 1.1 martin sc->sc_padr_retried = 0;
788 1.1 martin if (pppoe_send_padi(sc) == 0)
789 1.1 martin callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT*(1+sc->sc_padi_retried), pppoe_timeout, sc);
790 1.1 martin else
791 1.1 martin pppoe_abort_connect(sc);
792 1.1 martin splx(x);
793 1.1 martin return;
794 1.1 martin }
795 1.1 martin if (pppoe_send_padr(sc) == 0)
796 1.1 martin callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT*(1+sc->sc_padr_retried), pppoe_timeout, sc);
797 1.1 martin else
798 1.1 martin pppoe_abort_connect(sc);
799 1.1 martin splx(x);
800 1.1 martin break;
801 1.1 martin case PPPOE_STATE_CLOSING:
802 1.1 martin x = splnet();
803 1.1 martin pppoe_disconnect(sc);
804 1.1 martin splx(x);
805 1.1 martin break;
806 1.1 martin default:
807 1.1 martin return; /* all done, work in peace */
808 1.1 martin }
809 1.1 martin }
810 1.1 martin
811 1.1 martin /* Start a connection (i.e. initiate discovery phase) */
812 1.1 martin static int
813 1.1 martin pppoe_connect(struct pppoe_softc *sc)
814 1.1 martin {
815 1.1 martin int x, err;
816 1.1 martin
817 1.1 martin if (sc->sc_state != PPPOE_STATE_INITIAL)
818 1.1 martin return EBUSY;
819 1.1 martin
820 1.1 martin x = splnet();
821 1.1 martin sc->sc_state = PPPOE_STATE_PADI_SENT;
822 1.1 martin sc->sc_padr_retried = 0;
823 1.1 martin err = pppoe_send_padi(sc);
824 1.1 martin if (err == 0)
825 1.1 martin callout_reset(&sc->sc_timeout, PPPOE_DISC_TIMEOUT, pppoe_timeout, sc);
826 1.1 martin else
827 1.1 martin pppoe_abort_connect(sc);
828 1.1 martin splx(x);
829 1.1 martin return err;
830 1.1 martin }
831 1.1 martin
832 1.1 martin /* disconnect */
833 1.1 martin static int
834 1.1 martin pppoe_disconnect(struct pppoe_softc *sc)
835 1.1 martin {
836 1.1 martin int err, x;
837 1.1 martin
838 1.1 martin x = splnet();
839 1.1 martin
840 1.1 martin if (sc->sc_state < PPPOE_STATE_SESSION)
841 1.1 martin err = EBUSY;
842 1.1 martin else {
843 1.1 martin printf("%s: disconnecting\n", sc->sc_sppp.pp_if.if_xname);
844 1.1 martin err = pppoe_send_padt(sc);
845 1.1 martin }
846 1.1 martin
847 1.1 martin /* cleanup softc */
848 1.1 martin sc->sc_state = PPPOE_STATE_INITIAL;
849 1.1 martin memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
850 1.1 martin if (sc->sc_ac_cookie) {
851 1.1 martin free(sc->sc_ac_cookie, M_MBUF);
852 1.1 martin sc->sc_ac_cookie = NULL;
853 1.1 martin }
854 1.1 martin sc->sc_ac_cookie_len = 0;
855 1.1 martin sc->sc_session = 0;
856 1.1 martin
857 1.1 martin /* notify upper layer */
858 1.1 martin sc->sc_sppp.pp_down(&sc->sc_sppp);
859 1.1 martin
860 1.1 martin splx(x);
861 1.1 martin
862 1.1 martin return err;
863 1.1 martin }
864 1.1 martin
865 1.1 martin /* Connection attempt aborted */
866 1.1 martin static void
867 1.1 martin pppoe_abort_connect(struct pppoe_softc *sc)
868 1.1 martin {
869 1.1 martin printf("%s: could not establish connection\n",
870 1.1 martin sc->sc_sppp.pp_if.if_xname);
871 1.1 martin sc->sc_state = PPPOE_STATE_INITIAL;
872 1.1 martin memcpy(&sc->sc_dest, etherbroadcastaddr, sizeof(sc->sc_dest));
873 1.1 martin
874 1.1 martin /* notify upper layer */
875 1.1 martin sc->sc_sppp.pp_down(&sc->sc_sppp);
876 1.1 martin }
877 1.1 martin
878 1.1 martin /* Send a PADR packet */
879 1.1 martin static int
880 1.1 martin pppoe_send_padr(struct pppoe_softc *sc)
881 1.1 martin {
882 1.1 martin struct mbuf *m0;
883 1.1 martin u_int8_t *p;
884 1.1 martin size_t len, l1;
885 1.1 martin
886 1.1 martin if (sc->sc_state != PPPOE_STATE_PADR_SENT)
887 1.1 martin return EIO;
888 1.1 martin
889 1.1 martin len = 2+2+2+2+sizeof(sc); /* service name, host unique */
890 1.1 martin if (sc->sc_service_name != NULL) { /* service name tag maybe empty */
891 1.1 martin l1 = strlen(sc->sc_service_name);
892 1.1 martin len += l1;
893 1.1 martin }
894 1.1 martin if (sc->sc_ac_cookie_len > 0)
895 1.1 martin len += 2+2+sc->sc_ac_cookie_len; /* AC cookie */
896 1.1 martin m0 = pppoe_get_mbuf(len+PPPOE_HEADERLEN);
897 1.1 martin if (!m0) return ENOBUFS;
898 1.1 martin p = mtod(m0, u_int8_t*);
899 1.1 martin PPPOE_ADD_HEADER(p, PPPOE_CODE_PADR, 0, len);
900 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
901 1.1 martin if (sc->sc_service_name != NULL) {
902 1.1 martin PPPOE_ADD_16(p, l1);
903 1.1 martin memcpy(p, sc->sc_service_name, l1);
904 1.1 martin p += l1;
905 1.1 martin } else {
906 1.1 martin PPPOE_ADD_16(p, 0);
907 1.1 martin }
908 1.1 martin if (sc->sc_ac_cookie_len > 0) {
909 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_ACCOOKIE);
910 1.1 martin PPPOE_ADD_16(p, sc->sc_ac_cookie_len);
911 1.1 martin memcpy(p, sc->sc_ac_cookie, sc->sc_ac_cookie_len);
912 1.1 martin p += sc->sc_ac_cookie_len;
913 1.1 martin }
914 1.1 martin PPPOE_ADD_16(p, PPPOE_TAG_HUNIQUE);
915 1.1 martin PPPOE_ADD_16(p, sizeof(sc));
916 1.1 martin memcpy(p, &sc, sizeof sc);
917 1.1 martin
918 1.1 martin #ifdef PPPOE_DEBUG
919 1.1 martin p += sizeof sc;
920 1.1 martin if (p - mtod(m0, u_int8_t*) != len + PPPOE_HEADERLEN)
921 1.1 martin panic("pppoe_send_padr: garbled output len, should be %ld, is %ld",
922 1.1 martin (long)(len + PPPOE_HEADERLEN), (long)(p - mtod(m0, u_int8_t*)));
923 1.1 martin #endif
924 1.1 martin
925 1.1 martin return pppoe_output(sc, m0);
926 1.1 martin }
927 1.1 martin
928 1.1 martin /* send a PADT packet */
929 1.1 martin static int
930 1.1 martin pppoe_send_padt(struct pppoe_softc *sc)
931 1.1 martin {
932 1.1 martin struct mbuf *m0;
933 1.1 martin u_int8_t *p;
934 1.1 martin
935 1.1 martin if (sc->sc_state < PPPOE_STATE_SESSION)
936 1.1 martin return EIO;
937 1.1 martin
938 1.1 martin #ifdef PPPOE_DEBUG
939 1.1 martin printf("%s: sending PADT\n", sc->sc_sppp.pp_if.if_xname);
940 1.1 martin #endif
941 1.1 martin m0 = pppoe_get_mbuf(PPPOE_HEADERLEN);
942 1.1 martin if (!m0) return ENOBUFS;
943 1.1 martin p = mtod(m0, u_int8_t*);
944 1.1 martin PPPOE_ADD_HEADER(p, PPPOE_CODE_PADT, sc->sc_session, 0);
945 1.1 martin return pppoe_output(sc, m0);
946 1.1 martin }
947 1.1 martin
948 1.1 martin static void
949 1.1 martin pppoe_tls(struct sppp *sp)
950 1.1 martin {
951 1.1 martin struct pppoe_softc *sc = (void*)sp;
952 1.1 martin if (sc->sc_state != PPPOE_STATE_INITIAL)
953 1.1 martin return;
954 1.1 martin pppoe_connect(sc);
955 1.1 martin }
956 1.1 martin
957 1.1 martin static void
958 1.1 martin pppoe_tlf(struct sppp *sp)
959 1.1 martin {
960 1.1 martin struct pppoe_softc *sc = (void*)sp;
961 1.1 martin if (sc->sc_state < PPPOE_STATE_SESSION)
962 1.1 martin return;
963 1.1 martin /*
964 1.1 martin * Do not call pppoe_disconnect here, the upper layer state
965 1.1 martin * machine gets confused by this. We must return from this
966 1.1 martin * function and defer disconnecting to the timeout handler.
967 1.1 martin */
968 1.1 martin sc->sc_state = PPPOE_STATE_CLOSING;
969 1.1 martin callout_reset(&sc->sc_timeout, hz/100, pppoe_timeout, sc);
970 1.1 martin }
971 1.1 martin
972 1.1 martin static void
973 1.1 martin pppoe_start(struct ifnet *ifp)
974 1.1 martin {
975 1.1 martin struct pppoe_softc *sc = (void*)ifp;
976 1.1 martin struct mbuf *m;
977 1.1 martin u_int8_t *p;
978 1.1 martin size_t len;
979 1.1 martin
980 1.1 martin if (sppp_isempty(ifp))
981 1.1 martin return;
982 1.1 martin
983 1.1 martin /* are we read to proccess data yet? */
984 1.1 martin if (sc->sc_state < PPPOE_STATE_SESSION) {
985 1.1 martin sppp_flush(&sc->sc_sppp.pp_if);
986 1.1 martin return;
987 1.1 martin }
988 1.1 martin
989 1.1 martin while ((m = sppp_dequeue(ifp)) != NULL) {
990 1.1 martin len = m->m_pkthdr.len;
991 1.1 martin M_PREPEND(m, PPPOE_HEADERLEN, M_DONTWAIT);
992 1.1 martin if (m == NULL) {
993 1.1 martin m_free(m);
994 1.1 martin break;
995 1.1 martin }
996 1.1 martin p = mtod(m, u_int8_t*);
997 1.1 martin PPPOE_ADD_HEADER(p, 0, sc->sc_session, len);
998 1.1 martin
999 1.1 martin #if NBPFILTER > 0
1000 1.1 martin if(sc->sc_sppp.pp_if.if_bpf)
1001 1.1 martin bpf_mtap(sc->sc_sppp.pp_if.if_bpf, m);
1002 1.1 martin #endif
1003 1.1 martin
1004 1.1 martin pppoe_output(sc, m);
1005 1.1 martin }
1006 1.1 martin }
1007 1.1 martin
1008 1.1 martin #endif /* NPPPOE > 0 */
1009