Merge from vendor branch NTPD:
[dragonfly.git] / sys / net / if_fddisubr.c
1 /*
2  * Copyright (c) 1995, 1996
3  *      Matt Thomas <matt@3am-software.com>.  All rights reserved.
4  * Copyright (c) 1982, 1989, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by the University of
18  *      California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *      from: if_ethersubr.c,v 1.5 1994/12/13 22:31:45 wollman Exp
36  * $FreeBSD: src/sys/net/if_fddisubr.c,v 1.41.2.8 2002/02/20 23:34:09 fjoe Exp $
37  * $DragonFly: src/sys/net/Attic/if_fddisubr.c,v 1.16 2005/02/11 22:25:57 joerg Exp $
38  */
39
40 #include "opt_atalk.h"
41 #include "opt_inet.h"
42 #include "opt_inet6.h"
43 #include "opt_ipx.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/mbuf.h>
48 #include <sys/socket.h>
49 #include <sys/malloc.h>
50
51 #include <net/if.h>
52 #include <net/bpf.h>
53 #include <net/netisr.h>
54 #include <net/route.h>
55 #include <net/if_llc.h>
56 #include <net/if_dl.h>
57 #include <net/if_types.h>
58 #include <net/ifq_var.h>
59
60 #if defined(INET) || defined(INET6)
61 #include <netinet/in.h>
62 #include <netinet/in_var.h>
63 #include <netinet/if_ether.h>
64 #include <net/ethernet.h>
65 #endif
66 #ifdef INET6
67 #include <netinet6/nd6.h>
68 #endif
69 #if defined(__DragonFly__) || defined(__FreeBSD__)
70 #include <netinet/if_fddi.h>
71 #else
72 #include <net/if_fddi.h>
73 #endif
74
75 #ifdef IPX
76 #include <netproto/ipx/ipx.h>
77 #include <netproto/ipx/ipx_if.h>
78 #endif
79
80 #ifdef NS
81 #include <netns/ns.h>
82 #include <netns/ns_if.h>
83 #endif
84
85 #ifdef DECNET
86 #include <netdnet/dn.h>
87 #endif
88
89 #ifdef NETATALK
90 #include <netproto/atalk/at.h>
91 #include <netproto/atalk/at_var.h>
92 #include <netproto/atalk/at_extern.h>
93
94 #define llc_snap_org_code llc_un.type_snap.org_code
95 #define llc_snap_ether_type llc_un.type_snap.ether_type
96
97 extern u_char   at_org_code[ 3 ];
98 extern u_char   aarp_org_code[ 3 ];
99 #endif /* NETATALK */
100
101 static  int fddi_resolvemulti (struct ifnet *, struct sockaddr **,
102                                    struct sockaddr *);
103 static void     fddi_input(struct ifnet *, struct mbuf *);
104 static int      fddi_output(struct ifnet *, struct mbuf *, struct sockaddr *,
105                             struct rtentry *);
106
107 #define senderr(e) { error = (e); goto bad;}
108
109 /*
110  * This really should be defined in if_llc.h but in case it isn't.
111  */
112 #ifndef llc_snap
113 #define llc_snap        llc_un.type_snap
114 #endif
115
116 #if defined(__DragonFly__)
117 #define RTALLOC1(a, b)          _rtlookup(a, b, b ? RTL_DOCLONE : RTL_DONTCLONE)
118 #define ARPRESOLVE(a, b, c, d, e, f)    arpresolve(a, b, c, d, e)
119 #elif defined(__FreeBSD__)
120 #define RTALLOC1(a, b)                  rtalloc1(a, b, 0UL)
121 #define ARPRESOLVE(a, b, c, d, e, f)    arpresolve(a, b, c, d, e, f)
122 #endif
123 /*
124  * FDDI output routine.
125  * Encapsulate a packet of type family for the local net.
126  * Use trailer local net encapsulation if enough data in first
127  * packet leaves a multiple of 512 bytes of data in remainder.
128  * Assumes that ifp is actually pointer to arpcom structure.
129  */
130 static int
131 fddi_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
132             struct rtentry *rt)
133 {
134         struct arpcom *ac = (struct arpcom *)ifp;
135         u_int16_t type;
136         u_char esrc[6], edst[6];
137         struct fddi_header *fh;
138         boolean_t hdrcmplt = FALSE;
139         int s, loop_copy = 0, error;
140         struct altq_pktattr pktattr;
141
142         if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
143                 senderr(ENETDOWN);
144
145         /*
146          * If the queueing discipline needs packet classification,
147          * do it before prepending link headers.
148          */
149         ifq_classify(&ifp->if_snd, m, dst->sa_family, &pktattr);
150
151         switch (dst->sa_family) {
152 #ifdef INET
153         case AF_INET: {
154                 if (!arpresolve(ifp, rt, m, dst, edst))
155                         return (0);     /* if not yet resolved */
156                 type = htons(ETHERTYPE_IP);
157                 break;
158         }
159 #endif
160 #ifdef INET6
161         case AF_INET6:
162                 if (!nd6_storelladdr(&ac->ac_if, rt, m, dst, (u_char *)edst)) {
163                         /* Something bad happened */
164                         return (0);
165                 }
166                 type = htons(ETHERTYPE_IPV6);
167                 break;
168 #endif
169 #ifdef IPX
170         case AF_IPX:
171                 type = htons(ETHERTYPE_IPX);
172                 bcopy(&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host), edst,
173                       sizeof edst);
174                 break;
175 #endif
176 #ifdef NETATALK
177         case AF_APPLETALK: {
178                 struct at_ifaddr *aa;
179
180                 if (!aarpresolve((struct arpcom *) ifp, m,
181                                  (struct sockaddr_at *)dst, edst))
182                         return (0);
183
184                 /*
185                  * ifaddr is the first thing in at_ifaddr
186                  */
187                 if ((aa = at_ifawithnet((struct sockaddr_at *)dst)) == NULL) {
188                         error = 0;      /* XXX */
189                         goto bad;
190                 }
191
192                 /*
193                  * In the phase 2 case, we need to prepend an mbuf
194                  * for the llc header.  Since we must preserve the
195                  * value of m, which is passed to us by value, we
196                  * m_copy() the first mbuf, and use it for our llc
197                  * header.
198                  */
199                 if (aa->aa_flags & AFA_PHASE2) {
200                         struct llc llc;
201
202                         M_PREPEND(m, sizeof(struct llc), MB_WAIT);
203                         if (m == NULL)
204                                 senderr(ENOBUFS);
205                         llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
206                         llc.llc_control = LLC_UI;
207                         bcopy(at_org_code, llc.llc_snap_org_code,
208                               sizeof at_org_code);
209                         llc.llc_snap_ether_type = htons(ETHERTYPE_AT);
210                         bcopy(&llc, mtod(m, caddr_t), sizeof(struct llc));
211                         type = 0;
212                 } else {
213                         type = htons(ETHERTYPE_AT);
214                 }
215                 break;
216         }
217 #endif /* NETATALK */
218 #ifdef NS
219         case AF_NS:
220                 type = htons(ETHERTYPE_NS);
221                 bcopy(&(((struct sockaddr_ns *)dst)->sns_addr.x_host), edst,
222                       sizeof edst);
223                 break;
224 #endif
225
226         case pseudo_AF_HDRCMPLT:
227         {
228                 struct ether_header *eh;
229
230                 hdrcmplt = TRUE;
231                 eh = (struct ether_header *)dst->sa_data;
232                 memcpy(esrc, eh->ether_shost, sizeof esrc);
233                 /* FALLTHROUGH */
234         }
235
236         case AF_UNSPEC:
237         {
238                 struct ether_header *eh;
239
240                 loop_copy = -1;
241                 eh = (struct ether_header *)dst->sa_data;
242                 memcpy(edst, eh->ether_dhost, sizeof edst);
243                 if (*edst & 1)
244                         m->m_flags |= (M_BCAST|M_MCAST);
245                 type = eh->ether_type;
246                 break;
247         }
248
249         case AF_IMPLINK:
250         {
251                 fh = mtod(m, struct fddi_header *);
252                 error = EPROTONOSUPPORT;
253                 switch (fh->fddi_fc & (FDDIFC_C|FDDIFC_L|FDDIFC_F)) {
254                         case FDDIFC_LLC_ASYNC: {
255                                 /* legal priorities are 0 through 7 */
256                                 if ((fh->fddi_fc & FDDIFC_Z) > 7)
257                                         goto bad;
258                                 break;
259                         }
260                         case FDDIFC_LLC_SYNC: {
261                                 /* FDDIFC_Z bits reserved, must be zero */
262                                 if (fh->fddi_fc & FDDIFC_Z)
263                                         goto bad;
264                                 break;
265                         }
266                         case FDDIFC_SMT: {
267                                 /* FDDIFC_Z bits must be non zero */
268                                 if ((fh->fddi_fc & FDDIFC_Z) == 0)
269                                         goto bad;
270                                 break;
271                         }
272                         default: {
273                                 /* anything else is too dangerous */
274                                 goto bad;
275                         }
276                 }
277                 error = 0;
278                 if (fh->fddi_dhost[0] & 1)
279                         m->m_flags |= (M_BCAST | M_MCAST);
280                 goto queue_it;
281         }
282         default:
283                 printf("%s: can't handle af%d\n", ifp->if_xname,
284                         dst->sa_family);
285                 senderr(EAFNOSUPPORT);
286         }
287
288         if (type != 0) {
289                 struct llc *l;
290
291                 M_PREPEND(m, sizeof(struct llc), MB_DONTWAIT);
292                 if (m == NULL)
293                         return (ENOBUFS);
294                 l = mtod(m, struct llc *);
295                 l->llc_control = LLC_UI;
296                 l->llc_dsap = l->llc_ssap = LLC_SNAP_LSAP;
297                 l->llc_snap.org_code[0] = l->llc_snap.org_code[1] =
298                     l->llc_snap.org_code[2] = 0;
299                 memcpy(&l->llc_snap.ether_type, &type, sizeof(u_int16_t));
300         }
301
302         /*
303          * Add local net header.  If no space in first mbuf,
304          * allocate another.
305          */
306         M_PREPEND(m, sizeof(struct fddi_header), MB_DONTWAIT);
307         if (m == NULL)
308                 return (ENOBUFS);
309         fh = mtod(m, struct fddi_header *);
310         fh->fddi_fc = FDDIFC_LLC_ASYNC|FDDIFC_LLC_PRIO4;
311         memcpy(fh->fddi_dhost, edst, sizeof edst);
312
313 queue_it:
314         if (hdrcmplt)
315                 memcpy(fh->fddi_shost, esrc, sizeof fh->fddi_shost);
316         else
317                 memcpy(fh->fddi_shost, ac->ac_enaddr, sizeof fh->fddi_shost);
318         /*
319                 memcpy(fh->fddi_shost, ac->ac_enaddr, sizeof fh->fddi_shost);
320          * Ethernet address or a broadcast address, loopback a copy.
321          * XXX To make a simplex device behave exactly like a duplex
322          * device, we should copy in the case of sending to our own
323          * ethernet address (thus letting the original actually appear
324          * on the wire). However, we don't do that here for security
325          * reasons and compatibility with the original behavior.
326          */
327         if ((ifp->if_flags & IFF_SIMPLEX) &&
328            (loop_copy != -1)) {
329                 if ((m->m_flags & M_BCAST) || loop_copy) {
330                         struct mbuf *n = m_copypacket(m, MB_DONTWAIT);
331
332                         if_simloop(ifp, n, dst->sa_family,
333                                    sizeof(struct fddi_header));
334                 } else if (bcmp(fh->fddi_dhost, fh->fddi_shost,
335                                 sizeof(fh->fddi_shost)) == 0) {
336                         if_simloop(ifp, m, dst->sa_family,
337                                    sizeof(struct fddi_header));
338                         senderr(0);     /* XXX */
339                 }
340         }
341
342         s = splimp();
343         /*
344          * Queue message on interface, and start output if interface
345          * not yet active.
346          */
347         error = ifq_enqueue(&ifp->if_snd, m, &pktattr);
348         if (error) {
349                 splx(s);
350                 return(ENOBUFS);
351         }
352         ifp->if_obytes += m->m_pkthdr.len;
353         if (m->m_flags & M_MCAST)
354                 ifp->if_omcasts++;
355         if ((ifp->if_flags & IFF_OACTIVE) == 0)
356                 (*ifp->if_start)(ifp);
357         splx(s);
358
359         return (0);
360
361 bad:
362         m_freem(m);
363         return (error);
364 }
365
366 /*
367  * Process a received FDDI packet;
368  * the packet is in the mbuf chain m without
369  * the fddi header, which is provided separately.
370  */
371 static void
372 fddi_input(struct ifnet *ifp, struct mbuf *m)
373 {
374         int isr;
375         struct llc *l;
376         struct fddi_header *fh = mtod(m, struct fddi_header *);
377
378         if (m->m_len < sizeof(struct fddi_header)) {
379                 /* XXX error in the caller. */
380                 m_freem(m);
381                 return;
382         }
383         m_adj(m, sizeof(struct fddi_header));
384         m->m_pkthdr.rcvif = ifp;
385
386         if (!(ifp->if_flags & IFF_UP)) {
387                 m_freem(m);
388                 return;
389         }
390         getmicrotime(&ifp->if_lastchange);
391         ifp->if_ibytes += m->m_pkthdr.len + sizeof *fh;
392         if (fh->fddi_dhost[0] & 1) {
393                 if (bcmp(ifp->if_broadcastaddr, fh->fddi_dhost,
394                          ifp->if_addrlen) == 0)
395                         m->m_flags |= M_BCAST;
396                 else
397                         m->m_flags |= M_MCAST;
398                 ifp->if_imcasts++;
399         } else if ((ifp->if_flags & IFF_PROMISC) &&
400             bcmp(((struct arpcom *)ifp)->ac_enaddr, fh->fddi_dhost,
401                  sizeof fh->fddi_dhost) != 0) {
402                 m_freem(m);
403                 return;
404         }
405
406 #ifdef M_LINK0
407         /*
408          * If this has a LLC priority of 0, then mark it so upper
409          * layers have a hint that it really came via a FDDI/Ethernet
410          * bridge.
411          */
412         if ((fh->fddi_fc & FDDIFC_LLC_PRIO7) == FDDIFC_LLC_PRIO0)
413                 m->m_flags |= M_LINK0;
414 #endif
415
416         l = mtod(m, struct llc *);
417         switch (l->llc_dsap) {
418 #if defined(INET) || defined(INET6) || defined(NS) || defined(DECNET) || defined(IPX) || defined(NETATALK)
419         case LLC_SNAP_LSAP:
420         {
421                 u_int16_t type;
422                 if (l->llc_control != LLC_UI || l->llc_ssap != LLC_SNAP_LSAP)
423                         goto dropanyway;
424 #ifdef NETATALK
425                 if (bcmp(&(l->llc_snap_org_code)[0], at_org_code,
426                          sizeof(at_org_code)) == 0 &&
427                     sizeof(at_org_code) == 0 &&
428                     ntohs(l->llc_snap_ether_type) == ETHERTYPE_AT) {
429                         m_adj(m, sizeof(struct llc));
430                         isr = NETISR_ATALK2;
431                         break;
432                 }
433
434                 if (bcmp(&(l->llc_snap_org_code)[0], aarp_org_code,
435                          sizeof(aarp_org_code)) == 0 &&
436                         ntohs(l->llc_snap_ether_type) == ETHERTYPE_AARP) {
437                     m_adj(m, sizeof(struct llc));
438                     isr = NETISR_AARP;
439                     break;
440                 }
441 #endif
442                 if (l->llc_snap.org_code[0] != 0 ||
443                     l->llc_snap.org_code[1] != 0 ||
444                     l->llc_snap.org_code[2] != 0)
445                         goto dropanyway;
446                 type = ntohs(l->llc_snap.ether_type);
447                 m_adj(m, 8);
448                 switch (type) {
449 #ifdef INET
450                 case ETHERTYPE_IP:
451                         if (ipflow_fastforward(m))
452                                 return;
453                         isr = NETISR_IP;
454                         break;
455
456                 case ETHERTYPE_ARP:
457                         if (ifp->if_flags & IFF_NOARP)
458                                 goto dropanyway;
459                         isr = NETISR_ARP;
460                         break;
461 #endif
462 #ifdef INET6
463                 case ETHERTYPE_IPV6:
464                         isr = NETISR_IPV6;
465                         break;
466 #endif
467 #ifdef IPX
468                 case ETHERTYPE_IPX:
469                         isr = NETISR_IPX;
470                         break;
471 #endif
472 #ifdef NS
473                 case ETHERTYPE_NS:
474                         isr = NETISR_NS;
475                         break;
476 #endif
477 #ifdef DECNET
478                 case ETHERTYPE_DECNET:
479                         isr = NETISR_DECNET;
480                         break;
481 #endif
482 #ifdef NETATALK
483                 case ETHERTYPE_AT:
484                         isr = NETISR_ATALK1;
485                         break;
486                 case ETHERTYPE_AARP:
487                         isr = NETISR_AARP;
488                         break;
489 #endif /* NETATALK */
490                 default:
491                         /* printf("fddi_input: unknown protocol 0x%x\n", type); */
492                         ifp->if_noproto++;
493                         goto dropanyway;
494                 }
495                 break;
496         }
497 #endif /* INET || NS */
498
499         default:
500                 /* printf("fddi_input: unknown dsap 0x%x\n", l->llc_dsap); */
501                 ifp->if_noproto++;
502         dropanyway:
503                 m_freem(m);
504                 return;
505         }
506
507         netisr_dispatch(isr, m);
508 }
509
510 /*
511  * Perform common duties while attaching to interface list
512  */
513 #ifdef __NetBSD__
514 #define ifa_next        ifa_list.tqe_next
515 #endif
516
517 void
518 fddi_ifattach(ifp)
519         struct ifnet *ifp;
520 {
521         struct ifaddr *ifa;
522         struct sockaddr_dl *sdl;
523
524         ifp->if_input = fddi_input;
525         ifp->if_output = fddi_output;
526         ifp->if_type = IFT_FDDI;
527         ifp->if_addrlen = 6;
528         ifp->if_broadcastaddr = fddibroadcastaddr;
529         ifp->if_hdrlen = 21;
530         ifp->if_mtu = FDDIMTU;
531         ifp->if_resolvemulti = fddi_resolvemulti;
532         ifp->if_baudrate = 100000000;
533 #ifdef IFF_NOTRAILERS
534         ifp->if_flags |= IFF_NOTRAILERS;
535 #endif
536         if_attach(ifp);
537 #if defined(__DragonFly__) || defined(__FreeBSD__)
538         ifa = ifnet_addrs[ifp->if_index - 1];
539         sdl = (struct sockaddr_dl *)ifa->ifa_addr;
540         sdl->sdl_type = IFT_FDDI;
541         sdl->sdl_alen = ifp->if_addrlen;
542         bcopy(((struct arpcom *)ifp)->ac_enaddr, LLADDR(sdl), ifp->if_addrlen);
543 #elif defined(__NetBSD__)
544         LIST_INIT(&((struct arpcom *)ifp)->ac_multiaddrs);
545         for (ifa = ifp->if_addrlist.tqh_first; ifa != NULL; ifa = ifa->ifa_list.tqe_next)
546 #else
547         for (ifa = ifp->if_addrlist; ifa != NULL; ifa = ifa->ifa_next)
548 #endif
549 #if !defined(__DragonFly__) && !defined(__FreeBSD__)
550                 if ((sdl = (struct sockaddr_dl *)ifa->ifa_addr) &&
551                     sdl->sdl_family == AF_LINK) {
552                         sdl->sdl_type = IFT_FDDI;
553                         sdl->sdl_alen = ifp->if_addrlen;
554                         bcopy(((struct arpcom *)ifp)->ac_enaddr, LLADDR(sdl),
555                               ifp->if_addrlen);
556                         break;
557                 }
558 #endif
559         bpfattach(ifp, DLT_FDDI, sizeof(struct fddi_header));
560 }
561
562 static int
563 fddi_resolvemulti(ifp, llsa, sa)
564         struct ifnet *ifp;
565         struct sockaddr **llsa;
566         struct sockaddr *sa;
567 {
568         struct sockaddr_dl *sdl;
569         struct sockaddr_in *sin;
570 #ifdef INET6
571         struct sockaddr_in6 *sin6;
572 #endif
573         u_char *e_addr;
574
575         switch(sa->sa_family) {
576         case AF_LINK:
577                 /*
578                  * No mapping needed. Just check that it's a valid MC address.
579                  */
580                 sdl = (struct sockaddr_dl *)sa;
581                 e_addr = LLADDR(sdl);
582                 if ((e_addr[0] & 1) != 1)
583                         return EADDRNOTAVAIL;
584                 *llsa = 0;
585                 return 0;
586
587 #ifdef INET
588         case AF_INET:
589                 sin = (struct sockaddr_in *)sa;
590                 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)))
591                         return EADDRNOTAVAIL;
592                 MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
593                        M_WAITOK);
594                 sdl->sdl_len = sizeof *sdl;
595                 sdl->sdl_family = AF_LINK;
596                 sdl->sdl_index = ifp->if_index;
597                 sdl->sdl_type = IFT_FDDI;
598                 sdl->sdl_nlen = 0;
599                 sdl->sdl_alen = ETHER_ADDR_LEN; /* XXX */
600                 sdl->sdl_slen = 0;
601                 e_addr = LLADDR(sdl);
602                 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr);
603                 *llsa = (struct sockaddr *)sdl;
604                 return 0;
605 #endif
606 #ifdef INET6
607         case AF_INET6:
608                 sin6 = (struct sockaddr_in6 *)sa;
609                 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
610                         /*
611                          * An IP6 address of 0 means listen to all
612                          * of the Ethernet multicast address used for IP6.
613                          * (This is used for multicast routers.)
614                          */
615                         ifp->if_flags |= IFF_ALLMULTI;
616                         *llsa = 0;
617                         return 0;
618                 }
619                 if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
620                         return EADDRNOTAVAIL;
621                 MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
622                        M_WAITOK);
623                 sdl->sdl_len = sizeof *sdl;
624                 sdl->sdl_family = AF_LINK;
625                 sdl->sdl_index = ifp->if_index;
626                 sdl->sdl_type = IFT_FDDI;
627                 sdl->sdl_nlen = 0;
628                 sdl->sdl_alen = ETHER_ADDR_LEN; /* XXX */
629                 sdl->sdl_slen = 0;
630                 e_addr = LLADDR(sdl);
631                 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr);
632                 *llsa = (struct sockaddr *)sdl;
633                 return 0;
634 #endif
635
636         default:
637                 /*
638                  * Well, the text isn't quite right, but it's the name
639                  * that counts...
640                  */
641                 return EAFNOSUPPORT;
642         }
643 }