]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/net/if_atmsubr.c
Upgrade to OpenSSH 5.1p1.
[FreeBSD/FreeBSD.git] / sys / net / if_atmsubr.c
1 /*      $NetBSD: if_atmsubr.c,v 1.10 1997/03/11 23:19:51 chuck Exp $       */
2
3 /*-
4  *
5  * Copyright (c) 1996 Charles D. Cranor and Washington University.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by Charles D. Cranor and 
19  *      Washington University.
20  * 4. The name of the author may not be used to endorse or promote products
21  *    derived from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  *
34  * if_atmsubr.c
35  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include "opt_inet.h"
41 #include "opt_inet6.h"
42 #include "opt_mac.h"
43 #include "opt_natm.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/module.h>
49 #include <sys/mbuf.h>
50 #include <sys/socket.h>
51 #include <sys/sockio.h>
52 #include <sys/errno.h>
53 #include <sys/sysctl.h>
54 #include <sys/malloc.h>
55
56 #include <net/if.h>
57 #include <net/netisr.h>
58 #include <net/route.h>
59 #include <net/if_dl.h>
60 #include <net/if_types.h>
61 #include <net/if_atm.h>
62
63 #include <netinet/in.h>
64 #include <netinet/if_atm.h>
65 #include <netinet/if_ether.h> /* XXX: for ETHERTYPE_* */
66 #if defined(INET) || defined(INET6)
67 #include <netinet/in_var.h>
68 #endif
69 #ifdef NATM
70 #include <netnatm/natm.h>
71 #endif
72
73 #include <security/mac/mac_framework.h>
74
75 /*
76  * Netgraph interface functions.
77  * These need not be protected by a lock, because ng_atm nodes are persitent.
78  * The ng_atm module can be unloaded only if all ATM interfaces have been
79  * unloaded, so nobody should be in the code paths accessing these function
80  * pointers.
81  */
82 void    (*ng_atm_attach_p)(struct ifnet *);
83 void    (*ng_atm_detach_p)(struct ifnet *);
84 int     (*ng_atm_output_p)(struct ifnet *, struct mbuf **);
85 void    (*ng_atm_input_p)(struct ifnet *, struct mbuf **,
86             struct atm_pseudohdr *, void *);
87 void    (*ng_atm_input_orphan_p)(struct ifnet *, struct mbuf *,
88             struct atm_pseudohdr *, void *);
89 void    (*ng_atm_event_p)(struct ifnet *, uint32_t, void *);
90
91 /*
92  * Harp pseudo interface hooks
93  */
94 void    (*atm_harp_input_p)(struct ifnet *ifp, struct mbuf **m,
95             struct atm_pseudohdr *ah, void *rxhand);
96 void    (*atm_harp_attach_p)(struct ifnet *);
97 void    (*atm_harp_detach_p)(struct ifnet *);
98 void    (*atm_harp_event_p)(struct ifnet *, uint32_t, void *);
99
100 SYSCTL_NODE(_hw, OID_AUTO, atm, CTLFLAG_RW, 0, "ATM hardware");
101
102 MALLOC_DEFINE(M_IFATM, "ifatm", "atm interface internals");
103
104 #ifndef ETHERTYPE_IPV6
105 #define ETHERTYPE_IPV6  0x86dd
106 #endif
107
108 #define senderr(e) do { error = (e); goto bad; } while (0)
109
110 /*
111  * atm_output: ATM output routine
112  *   inputs:
113  *     "ifp" = ATM interface to output to
114  *     "m0" = the packet to output
115  *     "dst" = the sockaddr to send to (either IP addr, or raw VPI/VCI)
116  *     "rt0" = the route to use
117  *   returns: error code   [0 == ok]
118  *
119  *   note: special semantic: if (dst == NULL) then we assume "m" already
120  *              has an atm_pseudohdr on it and just send it directly.
121  *              [for native mode ATM output]   if dst is null, then
122  *              rt0 must also be NULL.
123  */
124 int
125 atm_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst,
126     struct rtentry *rt0)
127 {
128         u_int16_t etype = 0;                    /* if using LLC/SNAP */
129         int error = 0, sz;
130         struct atm_pseudohdr atmdst, *ad;
131         struct mbuf *m = m0;
132         struct atmllc *atmllc;
133         struct atmllc *llc_hdr = NULL;
134         u_int32_t atm_flags;
135
136 #ifdef MAC
137         error = mac_ifnet_check_transmit(ifp, m);
138         if (error)
139                 senderr(error);
140 #endif
141
142         if (!((ifp->if_flags & IFF_UP) &&
143             (ifp->if_drv_flags & IFF_DRV_RUNNING)))
144                 senderr(ENETDOWN);
145
146         /*
147          * check for non-native ATM traffic   (dst != NULL)
148          */
149         if (dst) {
150                 switch (dst->sa_family) {
151
152 #if defined(INET) || defined(INET6)
153                 case AF_INET:
154                 case AF_INET6:
155                 {
156                         struct rtentry *rt = NULL;
157                         /*  
158                          * check route
159                          */
160                         if (rt0 != NULL) {
161                                 error = rt_check_fib(&rt, &rt0,
162                                     dst, rt0->rt_fibnum);
163                                 if (error)
164                                         goto bad;
165                                 RT_UNLOCK(rt);
166                         }
167
168                         if (dst->sa_family == AF_INET6)
169                                 etype = ETHERTYPE_IPV6;
170                         else
171                                 etype = ETHERTYPE_IP;
172                         if (!atmresolve(rt, m, dst, &atmdst)) {
173                                 m = NULL; 
174                                 /* XXX: atmresolve already free'd it */
175                                 senderr(EHOSTUNREACH);
176                                 /* XXX: put ATMARP stuff here */
177                                 /* XXX: watch who frees m on failure */
178                         }
179                 }
180                         break;
181 #endif /* INET || INET6 */
182
183                 case AF_UNSPEC:
184                         /*
185                          * XXX: bpfwrite. assuming dst contains 12 bytes
186                          * (atm pseudo header (4) + LLC/SNAP (8))
187                          */
188                         bcopy(dst->sa_data, &atmdst, sizeof(atmdst));
189                         llc_hdr = (struct atmllc *)(dst->sa_data +
190                             sizeof(atmdst));
191                         break;
192                         
193                 default:
194                         printf("%s: can't handle af%d\n", ifp->if_xname, 
195                             dst->sa_family);
196                         senderr(EAFNOSUPPORT);
197                 }
198
199                 /*
200                  * must add atm_pseudohdr to data
201                  */
202                 sz = sizeof(atmdst);
203                 atm_flags = ATM_PH_FLAGS(&atmdst);
204                 if (atm_flags & ATM_PH_LLCSNAP)
205                         sz += 8;        /* sizeof snap == 8 */
206                 M_PREPEND(m, sz, M_DONTWAIT);
207                 if (m == 0)
208                         senderr(ENOBUFS);
209                 ad = mtod(m, struct atm_pseudohdr *);
210                 *ad = atmdst;
211                 if (atm_flags & ATM_PH_LLCSNAP) {
212                         atmllc = (struct atmllc *)(ad + 1);
213                         if (llc_hdr == NULL) {
214                                 bcopy(ATMLLC_HDR, atmllc->llchdr, 
215                                       sizeof(atmllc->llchdr));
216                                 /* note: in host order */
217                                 ATM_LLC_SETTYPE(atmllc, etype); 
218                         }
219                         else
220                                 bcopy(llc_hdr, atmllc, sizeof(struct atmllc));
221                 }
222         }
223
224         if (ng_atm_output_p != NULL) {
225                 if ((error = (*ng_atm_output_p)(ifp, &m)) != 0) {
226                         if (m != NULL)
227                                 m_freem(m);
228                         return (error);
229                 }
230                 if (m == NULL)
231                         return (0);
232         }
233
234         /*
235          * Queue message on interface, and start output if interface
236          * not yet active.
237          */
238         if (!IF_HANDOFF_ADJ(&ifp->if_snd, m, ifp,
239             -(int)sizeof(struct atm_pseudohdr)))
240                 return (ENOBUFS);
241         return (error);
242
243 bad:
244         if (m)
245                 m_freem(m);
246         return (error);
247 }
248
249 /*
250  * Process a received ATM packet;
251  * the packet is in the mbuf chain m.
252  */
253 void
254 atm_input(struct ifnet *ifp, struct atm_pseudohdr *ah, struct mbuf *m,
255     void *rxhand)
256 {
257         int isr;
258         u_int16_t etype = ETHERTYPE_IP;         /* default */
259
260         if ((ifp->if_flags & IFF_UP) == 0) {
261                 m_freem(m);
262                 return;
263         }
264 #ifdef MAC
265         mac_ifnet_create_mbuf(ifp, m);
266 #endif
267         ifp->if_ibytes += m->m_pkthdr.len;
268
269         if (ng_atm_input_p != NULL) {
270                 (*ng_atm_input_p)(ifp, &m, ah, rxhand);
271                 if (m == NULL)
272                         return;
273         }
274
275         /* not eaten by ng_atm. Maybe it's a pseudo-harp PDU? */
276         if (atm_harp_input_p != NULL) {
277                 (*atm_harp_input_p)(ifp, &m, ah, rxhand);
278                 if (m == NULL)
279                         return;
280         }
281
282         if (rxhand) {
283 #ifdef NATM
284                 struct natmpcb *npcb;
285
286                 /*
287                  * XXXRW: this use of 'rxhand' is not a very good idea, and
288                  * was subject to races even before SMPng due to the release
289                  * of spl here.
290                  */
291                 NATM_LOCK();
292                 npcb = rxhand;
293                 npcb->npcb_inq++;       /* count # in queue */
294                 isr = NETISR_NATM;
295                 m->m_pkthdr.rcvif = rxhand; /* XXX: overload */
296                 NATM_UNLOCK();
297 #else
298                 printf("atm_input: NATM detected but not "
299                     "configured in kernel\n");
300                 goto dropit;
301 #endif
302         } else {
303                 /*
304                  * handle LLC/SNAP header, if present
305                  */
306                 if (ATM_PH_FLAGS(ah) & ATM_PH_LLCSNAP) {
307                         struct atmllc *alc;
308
309                         if (m->m_len < sizeof(*alc) &&
310                             (m = m_pullup(m, sizeof(*alc))) == 0)
311                                 return; /* failed */
312                         alc = mtod(m, struct atmllc *);
313                         if (bcmp(alc, ATMLLC_HDR, 6)) {
314                                 printf("%s: recv'd invalid LLC/SNAP frame "
315                                     "[vp=%d,vc=%d]\n", ifp->if_xname,
316                                     ATM_PH_VPI(ah), ATM_PH_VCI(ah));
317                                 m_freem(m);
318                                 return;
319                         }
320                         etype = ATM_LLC_TYPE(alc);
321                         m_adj(m, sizeof(*alc));
322                 }
323
324                 switch (etype) {
325
326 #ifdef INET
327                 case ETHERTYPE_IP:
328                         isr = NETISR_IP;
329                         break;
330 #endif
331
332 #ifdef INET6
333                 case ETHERTYPE_IPV6:
334                         isr = NETISR_IPV6;
335                         break;
336 #endif
337                 default:
338 #ifndef NATM
339   dropit:
340 #endif
341                         if (ng_atm_input_orphan_p != NULL)
342                                 (*ng_atm_input_orphan_p)(ifp, m, ah, rxhand);
343                         else
344                                 m_freem(m);
345                         return;
346                 }
347         }
348         netisr_dispatch(isr, m);
349 }
350
351 /*
352  * Perform common duties while attaching to interface list.
353  */
354 void
355 atm_ifattach(struct ifnet *ifp)
356 {
357         struct ifaddr *ifa;
358         struct sockaddr_dl *sdl;
359         struct ifatm *ifatm = ifp->if_l2com;
360
361         ifp->if_addrlen = 0;
362         ifp->if_hdrlen = 0;
363         if_attach(ifp);
364         ifp->if_mtu = ATMMTU;
365         ifp->if_output = atm_output;
366 #if 0
367         ifp->if_input = atm_input;
368 #endif
369         ifp->if_snd.ifq_maxlen = 50;    /* dummy */
370
371         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
372                 if (ifa->ifa_addr->sa_family == AF_LINK) {
373                         sdl = (struct sockaddr_dl *)ifa->ifa_addr;
374                         sdl->sdl_type = IFT_ATM;
375                         sdl->sdl_alen = ifp->if_addrlen;
376 #ifdef notyet /* if using ATMARP, store hardware address using the next line */
377                         bcopy(ifp->hw_addr, LLADDR(sdl), ifp->if_addrlen);
378 #endif
379                         break;
380                 }
381
382         ifp->if_linkmib = &ifatm->mib;
383         ifp->if_linkmiblen = sizeof(ifatm->mib);
384
385         if(ng_atm_attach_p)
386                 (*ng_atm_attach_p)(ifp);
387         if (atm_harp_attach_p)
388                 (*atm_harp_attach_p)(ifp);
389 }
390
391 /*
392  * Common stuff for detaching an ATM interface
393  */
394 void
395 atm_ifdetach(struct ifnet *ifp)
396 {
397         if (atm_harp_detach_p)
398                 (*atm_harp_detach_p)(ifp);
399         if(ng_atm_detach_p)
400                 (*ng_atm_detach_p)(ifp);
401         if_detach(ifp);
402 }
403
404 /*
405  * Support routine for the SIOCATMGVCCS ioctl().
406  *
407  * This routine assumes, that the private VCC structures used by the driver
408  * begin with a struct atmio_vcc.
409  *
410  * Return a table of VCCs in a freshly allocated memory area.
411  * Here we have a problem: we first count, how many vccs we need
412  * to return. The we allocate the memory and finally fill it in.
413  * Because we cannot lock while calling malloc, the number of active
414  * vccs may change while we're in malloc. So we allocate a couple of
415  * vccs more and if space anyway is not enough re-iterate.
416  *
417  * We could use an sx lock for the vcc tables.
418  */
419 struct atmio_vcctable *
420 atm_getvccs(struct atmio_vcc **table, u_int size, u_int start,
421     struct mtx *lock, int waitok)
422 {
423         u_int cid, alloc;
424         size_t len;
425         struct atmio_vcctable *vccs;
426         struct atmio_vcc *v;
427
428         alloc = start + 10;
429         vccs = NULL;
430
431         for (;;) {
432                 len = sizeof(*vccs) + alloc * sizeof(vccs->vccs[0]);
433                 vccs = reallocf(vccs, len, M_TEMP,
434                     waitok ? M_WAITOK : M_NOWAIT);
435                 if (vccs == NULL)
436                         return (NULL);
437                 bzero(vccs, len);
438
439                 vccs->count = 0;
440                 v = vccs->vccs;
441
442                 mtx_lock(lock);
443                 for (cid = 0; cid < size; cid++)
444                         if (table[cid] != NULL) {
445                                 if (++vccs->count == alloc)
446                                         /* too many - try again */
447                                         break;
448                                 *v++ = *table[cid];
449                         }
450                 mtx_unlock(lock);
451
452                 if (cid == size)
453                         break;
454
455                 alloc *= 2;
456         }
457         return (vccs);
458 }
459
460 /*
461  * Driver or channel state has changed. Inform whoever is interested
462  * in these events.
463  */
464 void
465 atm_event(struct ifnet *ifp, u_int event, void *arg)
466 {
467         if (ng_atm_event_p != NULL)
468                 (*ng_atm_event_p)(ifp, event, arg);
469         if (atm_harp_event_p != NULL)
470                 (*atm_harp_event_p)(ifp, event, arg);
471 }
472
473 static void *
474 atm_alloc(u_char type, struct ifnet *ifp)
475 {
476         struct ifatm    *ifatm;
477
478         ifatm = malloc(sizeof(struct ifatm), M_IFATM, M_WAITOK | M_ZERO);
479         ifatm->ifp = ifp;
480
481         return (ifatm);
482 }
483
484 static void
485 atm_free(void *com, u_char type)
486 {
487
488         free(com, M_IFATM);
489 }
490
491 static int
492 atm_modevent(module_t mod, int type, void *data)
493 {
494         switch (type) {
495         case MOD_LOAD:
496                 if_register_com_alloc(IFT_ATM, atm_alloc, atm_free);
497                 break;
498         case MOD_UNLOAD:
499                 if_deregister_com_alloc(IFT_ATM);
500                 break;
501         default:
502                 return (EOPNOTSUPP);
503         }
504
505         return (0);
506 }
507
508 static moduledata_t atm_mod = {
509         "atm",
510         atm_modevent,
511         0
512 };
513                 
514 DECLARE_MODULE(atm, atm_mod, SI_SUB_INIT_IF, SI_ORDER_ANY);
515 MODULE_VERSION(atm, 1);