]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/net/if_arcsubr.c
Update libucl to latest version
[FreeBSD/FreeBSD.git] / sys / net / if_arcsubr.c
1 /*      $NetBSD: if_arcsubr.c,v 1.36 2001/06/14 05:44:23 itojun Exp $   */
2 /*      $FreeBSD$ */
3
4 /*-
5  * Copyright (c) 1994, 1995 Ignatios Souvatzis
6  * Copyright (c) 1982, 1989, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  * from: NetBSD: if_ethersubr.c,v 1.9 1994/06/29 06:36:11 cgd Exp
38  *       @(#)if_ethersubr.c     8.1 (Berkeley) 6/10/93
39  *
40  */
41 #include "opt_inet.h"
42 #include "opt_inet6.h"
43
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
47 #include <sys/module.h>
48 #include <sys/malloc.h>
49 #include <sys/mbuf.h>
50 #include <sys/protosw.h>
51 #include <sys/socket.h>
52 #include <sys/sockio.h>
53 #include <sys/errno.h>
54 #include <sys/syslog.h>
55
56 #include <machine/cpu.h>
57
58 #include <net/if.h>
59 #include <net/if_var.h>
60 #include <net/netisr.h>
61 #include <net/route.h>
62 #include <net/if_dl.h>
63 #include <net/if_types.h>
64 #include <net/if_arc.h>
65 #include <net/if_arp.h>
66 #include <net/bpf.h>
67 #include <net/if_llatbl.h>
68
69 #if defined(INET) || defined(INET6)
70 #include <netinet/in.h>
71 #include <netinet/in_var.h>
72 #include <netinet/if_ether.h>
73 #endif
74
75 #ifdef INET6
76 #include <netinet6/nd6.h>
77 #endif
78
79 #define ARCNET_ALLOW_BROKEN_ARP
80
81 static struct mbuf *arc_defrag(struct ifnet *, struct mbuf *);
82 static int arc_resolvemulti(struct ifnet *, struct sockaddr **,
83                             struct sockaddr *);
84
85 u_int8_t  arcbroadcastaddr = 0;
86
87 #define ARC_LLADDR(ifp) (*(u_int8_t *)IF_LLADDR(ifp))
88
89 #define senderr(e) { error = (e); goto bad;}
90 #define SIN(s)  ((const struct sockaddr_in *)(s))
91
92 /*
93  * ARCnet output routine.
94  * Encapsulate a packet of type family for the local net.
95  * Assumes that ifp is actually pointer to arccom structure.
96  */
97 int
98 arc_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
99     struct route *ro)
100 {
101         struct arc_header       *ah;
102         int                     error;
103         u_int8_t                atype, adst;
104         int                     loop_copy = 0;
105         int                     isphds;
106 #ifdef INET
107         int                     is_gw;
108 #endif
109
110         if (!((ifp->if_flags & IFF_UP) &&
111             (ifp->if_drv_flags & IFF_DRV_RUNNING)))
112                 return(ENETDOWN); /* m, m1 aren't initialized yet */
113
114         error = 0;
115
116         switch (dst->sa_family) {
117 #ifdef INET
118         case AF_INET:
119
120                 /*
121                  * For now, use the simple IP addr -> ARCnet addr mapping
122                  */
123                 if (m->m_flags & (M_BCAST|M_MCAST))
124                         adst = arcbroadcastaddr; /* ARCnet broadcast address */
125                 else if (ifp->if_flags & IFF_NOARP)
126                         adst = ntohl(SIN(dst)->sin_addr.s_addr) & 0xFF;
127                 else {
128                         is_gw = 0;
129                         if (ro != NULL && ro->ro_rt != NULL &&
130                             (ro->ro_rt->rt_flags & RTF_GATEWAY) != 0)
131                                 is_gw = 1;
132                         error = arpresolve(ifp, is_gw, m, dst, &adst, NULL);
133                         if (error)
134                                 return (error == EWOULDBLOCK ? 0 : error);
135                 }
136
137                 atype = (ifp->if_flags & IFF_LINK0) ?
138                         ARCTYPE_IP_OLD : ARCTYPE_IP;
139                 break;
140         case AF_ARP:
141         {
142                 struct arphdr *ah;
143                 ah = mtod(m, struct arphdr *);
144                 ah->ar_hrd = htons(ARPHRD_ARCNET);
145
146                 loop_copy = -1; /* if this is for us, don't do it */
147
148                 switch(ntohs(ah->ar_op)) {
149                 case ARPOP_REVREQUEST:
150                 case ARPOP_REVREPLY:
151                         atype = ARCTYPE_REVARP;
152                         break;
153                 case ARPOP_REQUEST:
154                 case ARPOP_REPLY:
155                 default:
156                         atype = ARCTYPE_ARP;
157                         break;
158                 }
159
160                 if (m->m_flags & M_BCAST)
161                         bcopy(ifp->if_broadcastaddr, &adst, ARC_ADDR_LEN);
162                 else
163                         bcopy(ar_tha(ah), &adst, ARC_ADDR_LEN);
164         
165         }
166         break;
167 #endif
168 #ifdef INET6
169         case AF_INET6:
170                 error = nd6_storelladdr(ifp, m, dst, (u_char *)&adst, NULL);
171                 if (error)
172                         return (error);
173                 atype = ARCTYPE_INET6;
174                 break;
175 #endif
176         case AF_UNSPEC:
177             {
178                 const struct arc_header *ah;
179
180                 loop_copy = -1;
181                 ah = (const struct arc_header *)dst->sa_data;
182                 adst = ah->arc_dhost;
183                 atype = ah->arc_type;
184
185                 if (atype == ARCTYPE_ARP) {
186                         atype = (ifp->if_flags & IFF_LINK0) ?
187                             ARCTYPE_ARP_OLD: ARCTYPE_ARP;
188
189 #ifdef ARCNET_ALLOW_BROKEN_ARP
190                         /*
191                          * XXX It's not clear per RFC826 if this is needed, but
192                          * "assigned numbers" say this is wrong.
193                          * However, e.g., AmiTCP 3.0Beta used it... we make this
194                          * switchable for emergency cases. Not perfect, but...
195                          */
196                         if (ifp->if_flags & IFF_LINK2)
197                                 mtod(m, struct arphdr *)->ar_pro = atype - 1;
198 #endif
199                 }
200                 break;
201             }
202         default:
203                 if_printf(ifp, "can't handle af%d\n", dst->sa_family);
204                 senderr(EAFNOSUPPORT);
205         }
206
207         isphds = arc_isphds(atype);
208         M_PREPEND(m, isphds ? ARC_HDRNEWLEN : ARC_HDRLEN, M_NOWAIT);
209         if (m == 0)
210                 senderr(ENOBUFS);
211         ah = mtod(m, struct arc_header *);
212         ah->arc_type = atype;
213         ah->arc_dhost = adst;
214         ah->arc_shost = ARC_LLADDR(ifp);
215         if (isphds) {
216                 ah->arc_flag = 0;
217                 ah->arc_seqid = 0;
218         }
219
220         if ((ifp->if_flags & IFF_SIMPLEX) && (loop_copy != -1)) {
221                 if ((m->m_flags & M_BCAST) || (loop_copy > 0)) {
222                         struct mbuf *n = m_copy(m, 0, (int)M_COPYALL);
223
224                         (void) if_simloop(ifp, n, dst->sa_family, ARC_HDRLEN);
225                 } else if (ah->arc_dhost == ah->arc_shost) {
226                         (void) if_simloop(ifp, m, dst->sa_family, ARC_HDRLEN);
227                         return (0);     /* XXX */
228                 }
229         }
230
231         BPF_MTAP(ifp, m);
232
233         error = ifp->if_transmit(ifp, m);
234
235         return (error);
236
237 bad:
238         if (m)
239                 m_freem(m);
240         return (error);
241 }
242
243 void
244 arc_frag_init(struct ifnet *ifp)
245 {
246         struct arccom *ac;
247
248         ac = (struct arccom *)ifp->if_l2com;
249         ac->curr_frag = 0;
250 }
251
252 struct mbuf *
253 arc_frag_next(struct ifnet *ifp)
254 {
255         struct arccom *ac;
256         struct mbuf *m;
257         struct arc_header *ah;
258
259         ac = (struct arccom *)ifp->if_l2com;
260         if ((m = ac->curr_frag) == 0) {
261                 int tfrags;
262
263                 /* dequeue new packet */
264                 IF_DEQUEUE(&ifp->if_snd, m);
265                 if (m == 0)
266                         return 0;
267
268                 ah = mtod(m, struct arc_header *);
269                 if (!arc_isphds(ah->arc_type))
270                         return m;
271
272                 ++ac->ac_seqid;         /* make the seqid unique */
273                 tfrags = (m->m_pkthdr.len + ARC_MAX_DATA - 1) / ARC_MAX_DATA;
274                 ac->fsflag = 2 * tfrags - 3;
275                 ac->sflag = 0;
276                 ac->rsflag = ac->fsflag;
277                 ac->arc_dhost = ah->arc_dhost;
278                 ac->arc_shost = ah->arc_shost;
279                 ac->arc_type = ah->arc_type;
280
281                 m_adj(m, ARC_HDRNEWLEN);
282                 ac->curr_frag = m;
283         }
284
285         /* split out next fragment and return it */
286         if (ac->sflag < ac->fsflag) {
287                 /* we CAN'T have short packets here */
288                 ac->curr_frag = m_split(m, ARC_MAX_DATA, M_NOWAIT);
289                 if (ac->curr_frag == 0) {
290                         m_freem(m);
291                         return 0;
292                 }
293
294                 M_PREPEND(m, ARC_HDRNEWLEN, M_NOWAIT);
295                 if (m == 0) {
296                         m_freem(ac->curr_frag);
297                         ac->curr_frag = 0;
298                         return 0;
299                 }
300
301                 ah = mtod(m, struct arc_header *);
302                 ah->arc_flag = ac->rsflag;
303                 ah->arc_seqid = ac->ac_seqid;
304
305                 ac->sflag += 2;
306                 ac->rsflag = ac->sflag;
307         } else if ((m->m_pkthdr.len >=
308             ARC_MIN_FORBID_LEN - ARC_HDRNEWLEN + 2) &&
309             (m->m_pkthdr.len <=
310             ARC_MAX_FORBID_LEN - ARC_HDRNEWLEN + 2)) {
311                 ac->curr_frag = 0;
312
313                 M_PREPEND(m, ARC_HDRNEWLEN_EXC, M_NOWAIT);
314                 if (m == 0)
315                         return 0;
316
317                 ah = mtod(m, struct arc_header *);
318                 ah->arc_flag = 0xFF;
319                 ah->arc_seqid = 0xFFFF;
320                 ah->arc_type2 = ac->arc_type;
321                 ah->arc_flag2 = ac->sflag;
322                 ah->arc_seqid2 = ac->ac_seqid;
323         } else {
324                 ac->curr_frag = 0;
325
326                 M_PREPEND(m, ARC_HDRNEWLEN, M_NOWAIT);
327                 if (m == 0)
328                         return 0;
329
330                 ah = mtod(m, struct arc_header *);
331                 ah->arc_flag = ac->sflag;
332                 ah->arc_seqid = ac->ac_seqid;
333         }
334
335         ah->arc_dhost = ac->arc_dhost;
336         ah->arc_shost = ac->arc_shost;
337         ah->arc_type = ac->arc_type;
338
339         return m;
340 }
341
342 /*
343  * Defragmenter. Returns mbuf if last packet found, else
344  * NULL. frees imcoming mbuf as necessary.
345  */
346
347 static __inline struct mbuf *
348 arc_defrag(struct ifnet *ifp, struct mbuf *m)
349 {
350         struct arc_header *ah, *ah1;
351         struct arccom *ac;
352         struct ac_frag *af;
353         struct mbuf *m1;
354         char *s;
355         int newflen;
356         u_char src,dst,typ;
357
358         ac = (struct arccom *)ifp->if_l2com;
359
360         if (m->m_len < ARC_HDRNEWLEN) {
361                 m = m_pullup(m, ARC_HDRNEWLEN);
362                 if (m == NULL) {
363                         if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
364                         return NULL;
365                 }
366         }
367
368         ah = mtod(m, struct arc_header *);
369         typ = ah->arc_type;
370
371         if (!arc_isphds(typ))
372                 return m;
373
374         src = ah->arc_shost;
375         dst = ah->arc_dhost;
376
377         if (ah->arc_flag == 0xff) {
378                 m_adj(m, 4);
379
380                 if (m->m_len < ARC_HDRNEWLEN) {
381                         m = m_pullup(m, ARC_HDRNEWLEN);
382                         if (m == NULL) {
383                                 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
384                                 return NULL;
385                         }
386                 }
387
388                 ah = mtod(m, struct arc_header *);
389         }
390
391         af = &ac->ac_fragtab[src];
392         m1 = af->af_packet;
393         s = "debug code error";
394
395         if (ah->arc_flag & 1) {
396                 /*
397                  * first fragment. We always initialize, which is
398                  * about the right thing to do, as we only want to
399                  * accept one fragmented packet per src at a time.
400                  */
401                 if (m1 != NULL)
402                         m_freem(m1);
403
404                 af->af_packet = m;
405                 m1 = m;
406                 af->af_maxflag = ah->arc_flag;
407                 af->af_lastseen = 0;
408                 af->af_seqid = ah->arc_seqid;
409
410                 return NULL;
411                 /* notreached */
412         } else {
413                 /* check for unfragmented packet */
414                 if (ah->arc_flag == 0)
415                         return m;
416
417                 /* do we have a first packet from that src? */
418                 if (m1 == NULL) {
419                         s = "no first frag";
420                         goto outofseq;
421                 }
422
423                 ah1 = mtod(m1, struct arc_header *);
424
425                 if (ah->arc_seqid != ah1->arc_seqid) {
426                         s = "seqid differs";
427                         goto outofseq;
428                 }
429
430                 if (typ != ah1->arc_type) {
431                         s = "type differs";
432                         goto outofseq;
433                 }
434
435                 if (dst != ah1->arc_dhost) {
436                         s = "dest host differs";
437                         goto outofseq;
438                 }
439
440                 /* typ, seqid and dst are ok here. */
441
442                 if (ah->arc_flag == af->af_lastseen) {
443                         m_freem(m);
444                         return NULL;
445                 }
446
447                 if (ah->arc_flag == af->af_lastseen + 2) {
448                         /* ok, this is next fragment */
449                         af->af_lastseen = ah->arc_flag;
450                         m_adj(m,ARC_HDRNEWLEN);
451
452                         /*
453                          * m_cat might free the first mbuf (with pkthdr)
454                          * in 2nd chain; therefore:
455                          */
456
457                         newflen = m->m_pkthdr.len;
458
459                         m_cat(m1,m);
460
461                         m1->m_pkthdr.len += newflen;
462
463                         /* is it the last one? */
464                         if (af->af_lastseen > af->af_maxflag) {
465                                 af->af_packet = NULL;
466                                 return(m1);
467                         } else
468                                 return NULL;
469                 }
470                 s = "other reason";
471                 /* if all else fails, it is out of sequence, too */
472         }
473 outofseq:
474         if (m1) {
475                 m_freem(m1);
476                 af->af_packet = NULL;
477         }
478
479         if (m)
480                 m_freem(m);
481
482         log(LOG_INFO,"%s: got out of seq. packet: %s\n",
483             ifp->if_xname, s);
484
485         return NULL;
486 }
487
488 /*
489  * return 1 if Packet Header Definition Standard, else 0.
490  * For now: old IP, old ARP aren't obviously. Lacking correct information,
491  * we guess that besides new IP and new ARP also IPX and APPLETALK are PHDS.
492  * (Apple and Novell corporations were involved, among others, in PHDS work).
493  * Easiest is to assume that everybody else uses that, too.
494  */
495 int
496 arc_isphds(u_int8_t type)
497 {
498         return (type != ARCTYPE_IP_OLD &&
499                 type != ARCTYPE_ARP_OLD &&
500                 type != ARCTYPE_DIAGNOSE);
501 }
502
503 /*
504  * Process a received Arcnet packet;
505  * the packet is in the mbuf chain m with
506  * the ARCnet header.
507  */
508 void
509 arc_input(struct ifnet *ifp, struct mbuf *m)
510 {
511         struct arc_header *ah;
512         int isr;
513         u_int8_t atype;
514
515         if ((ifp->if_flags & IFF_UP) == 0) {
516                 m_freem(m);
517                 return;
518         }
519
520         /* possibly defragment: */
521         m = arc_defrag(ifp, m);
522         if (m == NULL)
523                 return;
524
525         BPF_MTAP(ifp, m);
526
527         ah = mtod(m, struct arc_header *);
528         /* does this belong to us? */
529         if ((ifp->if_flags & IFF_PROMISC) == 0
530             && ah->arc_dhost != arcbroadcastaddr
531             && ah->arc_dhost != ARC_LLADDR(ifp)) {
532                 m_freem(m);
533                 return;
534         }
535
536         if_inc_counter(ifp, IFCOUNTER_IBYTES, m->m_pkthdr.len);
537
538         if (ah->arc_dhost == arcbroadcastaddr) {
539                 m->m_flags |= M_BCAST|M_MCAST;
540                 if_inc_counter(ifp, IFCOUNTER_IMCASTS, 1);
541         }
542
543         atype = ah->arc_type;
544         switch (atype) {
545 #ifdef INET
546         case ARCTYPE_IP:
547                 m_adj(m, ARC_HDRNEWLEN);
548                 if ((m = ip_fastforward(m)) == NULL)
549                         return;
550                 isr = NETISR_IP;
551                 break;
552
553         case ARCTYPE_IP_OLD:
554                 m_adj(m, ARC_HDRLEN);
555                 if ((m = ip_fastforward(m)) == NULL)
556                         return;
557                 isr = NETISR_IP;
558                 break;
559
560         case ARCTYPE_ARP:
561                 if (ifp->if_flags & IFF_NOARP) {
562                         /* Discard packet if ARP is disabled on interface */
563                         m_freem(m);
564                         return;
565                 }
566                 m_adj(m, ARC_HDRNEWLEN);
567                 isr = NETISR_ARP;
568 #ifdef ARCNET_ALLOW_BROKEN_ARP
569                 mtod(m, struct arphdr *)->ar_pro = htons(ETHERTYPE_IP);
570 #endif
571                 break;
572
573         case ARCTYPE_ARP_OLD:
574                 if (ifp->if_flags & IFF_NOARP) {
575                         /* Discard packet if ARP is disabled on interface */
576                         m_freem(m);
577                         return;
578                 }
579                 m_adj(m, ARC_HDRLEN);
580                 isr = NETISR_ARP;
581 #ifdef ARCNET_ALLOW_BROKEN_ARP
582                 mtod(m, struct arphdr *)->ar_pro = htons(ETHERTYPE_IP);
583 #endif
584                 break;
585 #endif
586 #ifdef INET6
587         case ARCTYPE_INET6:
588                 m_adj(m, ARC_HDRNEWLEN);
589                 isr = NETISR_IPV6;
590                 break;
591 #endif
592         default:
593                 m_freem(m);
594                 return;
595         }
596         M_SETFIB(m, ifp->if_fib);
597         netisr_dispatch(isr, m);
598 }
599
600 /*
601  * Register (new) link level address.
602  */
603 void
604 arc_storelladdr(struct ifnet *ifp, u_int8_t lla)
605 {
606         ARC_LLADDR(ifp) = lla;
607 }
608
609 /*
610  * Perform common duties while attaching to interface list
611  */
612 void
613 arc_ifattach(struct ifnet *ifp, u_int8_t lla)
614 {
615         struct ifaddr *ifa;
616         struct sockaddr_dl *sdl;
617         struct arccom *ac;
618
619         if_attach(ifp);
620         ifp->if_addrlen = 1;
621         ifp->if_hdrlen = ARC_HDRLEN;
622         ifp->if_mtu = 1500;
623         ifp->if_resolvemulti = arc_resolvemulti;
624         if (ifp->if_baudrate == 0)
625                 ifp->if_baudrate = 2500000;
626         ifa = ifp->if_addr;
627         KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__));
628         sdl = (struct sockaddr_dl *)ifa->ifa_addr;
629         sdl->sdl_type = IFT_ARCNET;
630         sdl->sdl_alen = ifp->if_addrlen;
631
632         if (ifp->if_flags & IFF_BROADCAST)
633                 ifp->if_flags |= IFF_MULTICAST|IFF_ALLMULTI;
634
635         ac = (struct arccom *)ifp->if_l2com;
636         ac->ac_seqid = (time_second) & 0xFFFF; /* try to make seqid unique */
637         if (lla == 0) {
638                 /* XXX this message isn't entirely clear, to me -- cgd */
639                 log(LOG_ERR,"%s: link address 0 reserved for broadcasts.  Please change it and ifconfig %s down up\n",
640                    ifp->if_xname, ifp->if_xname);
641         }
642         arc_storelladdr(ifp, lla);
643
644         ifp->if_broadcastaddr = &arcbroadcastaddr;
645
646         bpfattach(ifp, DLT_ARCNET, ARC_HDRLEN);
647 }
648
649 void
650 arc_ifdetach(struct ifnet *ifp)
651 {
652         bpfdetach(ifp);
653         if_detach(ifp);
654 }
655
656 int
657 arc_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
658 {
659         struct ifaddr *ifa = (struct ifaddr *) data;
660         struct ifreq *ifr = (struct ifreq *) data;
661         int error = 0;
662
663         switch (command) {
664         case SIOCSIFADDR:
665                 ifp->if_flags |= IFF_UP;
666                 switch (ifa->ifa_addr->sa_family) {
667 #ifdef INET
668                 case AF_INET:
669                         ifp->if_init(ifp->if_softc);    /* before arpwhohas */
670                         arp_ifinit(ifp, ifa);
671                         break;
672 #endif
673                 default:
674                         ifp->if_init(ifp->if_softc);
675                         break;
676                 }
677                 break;
678
679         case SIOCGIFADDR:
680                 {
681                         struct sockaddr *sa;
682
683                         sa = (struct sockaddr *) &ifr->ifr_data;
684                         *(u_int8_t *)sa->sa_data = ARC_LLADDR(ifp);
685                 }
686                 break;
687
688         case SIOCADDMULTI:
689         case SIOCDELMULTI:
690                 if (ifr == NULL)
691                         error = EAFNOSUPPORT;
692                 else {
693                         switch (ifr->ifr_addr.sa_family) {
694                         case AF_INET:
695                         case AF_INET6:
696                                 error = 0;
697                                 break;
698                         default:
699                                 error = EAFNOSUPPORT;
700                                 break;
701                         }
702                 }
703                 break;
704
705         case SIOCSIFMTU:
706                 /*
707                  * Set the interface MTU.
708                  * mtu can't be larger than ARCMTU for RFC1051
709                  * and can't be larger than ARC_PHDS_MTU
710                  */
711                 if (((ifp->if_flags & IFF_LINK0) && ifr->ifr_mtu > ARCMTU) ||
712                     ifr->ifr_mtu > ARC_PHDS_MAXMTU)
713                         error = EINVAL;
714                 else
715                         ifp->if_mtu = ifr->ifr_mtu;
716                 break;
717         }
718
719         return (error);
720 }
721
722 /* based on ether_resolvemulti() */
723 int
724 arc_resolvemulti(struct ifnet *ifp, struct sockaddr **llsa,
725     struct sockaddr *sa)
726 {
727         struct sockaddr_dl *sdl;
728 #ifdef INET
729         struct sockaddr_in *sin;
730 #endif
731 #ifdef INET6
732         struct sockaddr_in6 *sin6;
733 #endif
734
735         switch(sa->sa_family) {
736         case AF_LINK:
737                 /*
738                 * No mapping needed. Just check that it's a valid MC address.
739                 */
740                 sdl = (struct sockaddr_dl *)sa;
741                 if (*LLADDR(sdl) != arcbroadcastaddr)
742                         return EADDRNOTAVAIL;
743                 *llsa = 0;
744                 return 0;
745 #ifdef INET
746         case AF_INET:
747                 sin = (struct sockaddr_in *)sa;
748                 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)))
749                         return EADDRNOTAVAIL;
750                 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER);
751                 sdl->sdl_alen = ARC_ADDR_LEN;
752                 *LLADDR(sdl) = 0;
753                 *llsa = (struct sockaddr *)sdl;
754                 return 0;
755 #endif
756 #ifdef INET6
757         case AF_INET6:
758                 sin6 = (struct sockaddr_in6 *)sa;
759                 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
760                         /*
761                          * An IP6 address of 0 means listen to all
762                          * of the Ethernet multicast address used for IP6.
763                          * (This is used for multicast routers.)
764                          */
765                         ifp->if_flags |= IFF_ALLMULTI;
766                         *llsa = 0;
767                         return 0;
768                 }
769                 if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
770                         return EADDRNOTAVAIL;
771                 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER);
772                 sdl->sdl_alen = ARC_ADDR_LEN;
773                 *LLADDR(sdl) = 0;
774                 *llsa = (struct sockaddr *)sdl;
775                 return 0;
776 #endif
777
778         default:
779                 /*
780                  * Well, the text isn't quite right, but it's the name
781                  * that counts...
782                  */
783                 return EAFNOSUPPORT;
784         }
785 }
786
787 static MALLOC_DEFINE(M_ARCCOM, "arccom", "ARCNET interface internals");
788
789 static void*
790 arc_alloc(u_char type, struct ifnet *ifp)
791 {
792         struct arccom   *ac;
793         
794         ac = malloc(sizeof(struct arccom), M_ARCCOM, M_WAITOK | M_ZERO);
795         ac->ac_ifp = ifp;
796
797         return (ac);
798 }
799
800 static void
801 arc_free(void *com, u_char type)
802 {
803
804         free(com, M_ARCCOM);
805 }
806
807 static int
808 arc_modevent(module_t mod, int type, void *data)
809 {
810
811         switch (type) {
812         case MOD_LOAD:
813                 if_register_com_alloc(IFT_ARCNET, arc_alloc, arc_free);
814                 break;
815         case MOD_UNLOAD:
816                 if_deregister_com_alloc(IFT_ARCNET);
817                 break;
818         default:
819                 return EOPNOTSUPP;
820         }
821
822         return (0);
823 }
824
825 static moduledata_t arc_mod = {
826         "arcnet",
827         arc_modevent,
828         0
829 };
830
831 DECLARE_MODULE(arcnet, arc_mod, SI_SUB_INIT_IF, SI_ORDER_ANY);
832 MODULE_VERSION(arcnet, 1);