Home | History | Annotate | Line # | Download | only in net
if_loop.c revision 1.35
      1  1.35   thorpej /*	$NetBSD: if_loop.c,v 1.35 2001/01/17 00:30:51 thorpej Exp $	*/
      2  1.26    itojun 
      3  1.26    itojun /*
      4  1.26    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5  1.26    itojun  * All rights reserved.
      6  1.26    itojun  *
      7  1.26    itojun  * Redistribution and use in source and binary forms, with or without
      8  1.26    itojun  * modification, are permitted provided that the following conditions
      9  1.26    itojun  * are met:
     10  1.26    itojun  * 1. Redistributions of source code must retain the above copyright
     11  1.26    itojun  *    notice, this list of conditions and the following disclaimer.
     12  1.26    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.26    itojun  *    notice, this list of conditions and the following disclaimer in the
     14  1.26    itojun  *    documentation and/or other materials provided with the distribution.
     15  1.26    itojun  * 3. Neither the name of the project nor the names of its contributors
     16  1.26    itojun  *    may be used to endorse or promote products derived from this software
     17  1.26    itojun  *    without specific prior written permission.
     18  1.26    itojun  *
     19  1.26    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20  1.26    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  1.26    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  1.26    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23  1.26    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  1.26    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  1.26    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  1.26    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  1.26    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  1.26    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.26    itojun  * SUCH DAMAGE.
     30  1.26    itojun  */
     31  1.12       cgd 
     32   1.1       cgd /*
     33  1.11   mycroft  * Copyright (c) 1982, 1986, 1993
     34  1.11   mycroft  *	The Regents of the University of California.  All rights reserved.
     35   1.1       cgd  *
     36   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     37   1.1       cgd  * modification, are permitted provided that the following conditions
     38   1.1       cgd  * are met:
     39   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     40   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     41   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     42   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     43   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     44   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     45   1.1       cgd  *    must display the following acknowledgement:
     46   1.1       cgd  *	This product includes software developed by the University of
     47   1.1       cgd  *	California, Berkeley and its contributors.
     48   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     49   1.1       cgd  *    may be used to endorse or promote products derived from this software
     50   1.1       cgd  *    without specific prior written permission.
     51   1.1       cgd  *
     52   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     53   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     54   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     55   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     56   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     57   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     58   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     59   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     60   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     61   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     62   1.1       cgd  * SUCH DAMAGE.
     63   1.1       cgd  *
     64  1.21      fvdl  *	@(#)if_loop.c	8.2 (Berkeley) 1/9/95
     65   1.1       cgd  */
     66   1.1       cgd 
     67   1.1       cgd /*
     68   1.1       cgd  * Loopback interface driver for protocol testing and timing.
     69   1.1       cgd  */
     70  1.23  jonathan 
     71  1.23  jonathan #include "opt_inet.h"
     72  1.23  jonathan #include "opt_atalk.h"
     73  1.24  jonathan #include "opt_iso.h"
     74  1.25  jonathan #include "opt_ns.h"
     75   1.1       cgd 
     76   1.9   mycroft #include "bpfilter.h"
     77   1.4       cgd #include "loop.h"
     78   1.4       cgd 
     79   1.9   mycroft #include <sys/param.h>
     80   1.9   mycroft #include <sys/systm.h>
     81  1.11   mycroft #include <sys/kernel.h>
     82   1.9   mycroft #include <sys/mbuf.h>
     83   1.9   mycroft #include <sys/socket.h>
     84   1.9   mycroft #include <sys/errno.h>
     85   1.9   mycroft #include <sys/ioctl.h>
     86  1.11   mycroft #include <sys/time.h>
     87  1.11   mycroft 
     88  1.11   mycroft #include <machine/cpu.h>
     89   1.9   mycroft 
     90   1.9   mycroft #include <net/if.h>
     91   1.9   mycroft #include <net/if_types.h>
     92   1.9   mycroft #include <net/netisr.h>
     93   1.9   mycroft #include <net/route.h>
     94   1.1       cgd 
     95   1.1       cgd #ifdef	INET
     96   1.9   mycroft #include <netinet/in.h>
     97   1.9   mycroft #include <netinet/in_systm.h>
     98   1.9   mycroft #include <netinet/in_var.h>
     99   1.9   mycroft #include <netinet/ip.h>
    100   1.1       cgd #endif
    101   1.1       cgd 
    102  1.26    itojun #ifdef INET6
    103  1.26    itojun #ifndef INET
    104  1.26    itojun #include <netinet/in.h>
    105  1.26    itojun #endif
    106  1.26    itojun #include <netinet6/in6_var.h>
    107  1.29    itojun #include <netinet/ip6.h>
    108  1.26    itojun #endif
    109  1.26    itojun 
    110   1.1       cgd #ifdef NS
    111   1.9   mycroft #include <netns/ns.h>
    112   1.9   mycroft #include <netns/ns_if.h>
    113   1.1       cgd #endif
    114   1.1       cgd 
    115  1.22  christos #ifdef IPX
    116  1.22  christos #include <netipx/ipx.h>
    117  1.22  christos #include <netipx/ipx_if.h>
    118  1.22  christos #endif
    119  1.22  christos 
    120   1.1       cgd #ifdef ISO
    121   1.9   mycroft #include <netiso/iso.h>
    122   1.9   mycroft #include <netiso/iso_var.h>
    123   1.1       cgd #endif
    124   1.1       cgd 
    125  1.19  christos #ifdef NETATALK
    126  1.19  christos #include <netatalk/at.h>
    127  1.19  christos #include <netatalk/at_var.h>
    128  1.19  christos #endif
    129  1.19  christos 
    130   1.2       cgd #if NBPFILTER > 0
    131   1.2       cgd #include <net/bpf.h>
    132   1.2       cgd #endif
    133   1.9   mycroft 
    134  1.26    itojun #if defined(LARGE_LOMTU)
    135  1.26    itojun #define LOMTU	(131072 +  MHLEN + MLEN)
    136  1.26    itojun #else
    137  1.20  jonathan #define	LOMTU	(32768 +  MHLEN + MLEN)
    138  1.26    itojun #endif
    139   1.1       cgd 
    140   1.4       cgd struct	ifnet loif[NLOOP];
    141   1.1       cgd 
    142  1.34   thorpej #ifdef ALTQ
    143  1.32   thorpej void	lostart(struct ifnet *);
    144  1.34   thorpej #endif
    145  1.32   thorpej 
    146   1.6    andrew void
    147  1.11   mycroft loopattach(n)
    148  1.11   mycroft 	int n;
    149   1.1       cgd {
    150  1.30  augustss 	int i;
    151  1.30  augustss 	struct ifnet *ifp;
    152   1.1       cgd 
    153  1.11   mycroft 	for (i = 0; i < NLOOP; i++) {
    154   1.4       cgd 		ifp = &loif[i];
    155  1.17  christos 		sprintf(ifp->if_xname, "lo%d", i);
    156  1.15   thorpej 		ifp->if_softc = NULL;
    157   1.4       cgd 		ifp->if_mtu = LOMTU;
    158  1.11   mycroft 		ifp->if_flags = IFF_LOOPBACK | IFF_MULTICAST;
    159   1.4       cgd 		ifp->if_ioctl = loioctl;
    160   1.4       cgd 		ifp->if_output = looutput;
    161  1.34   thorpej #ifdef ALTQ
    162  1.32   thorpej 		ifp->if_start = lostart;
    163  1.34   thorpej #endif
    164   1.4       cgd 		ifp->if_type = IFT_LOOP;
    165   1.4       cgd 		ifp->if_hdrlen = 0;
    166   1.4       cgd 		ifp->if_addrlen = 0;
    167  1.33   thorpej 		ifp->if_dlt = DLT_NULL;
    168  1.32   thorpej 		IFQ_SET_READY(&ifp->if_snd);
    169   1.4       cgd 		if_attach(ifp);
    170  1.35   thorpej 		if_alloc_sadl(ifp);
    171   1.2       cgd #if NBPFILTER > 0
    172  1.31   thorpej 		bpfattach(ifp, DLT_NULL, sizeof(u_int));
    173   1.2       cgd #endif
    174   1.4       cgd 	}
    175   1.1       cgd }
    176   1.1       cgd 
    177  1.11   mycroft int
    178   1.1       cgd looutput(ifp, m, dst, rt)
    179   1.1       cgd 	struct ifnet *ifp;
    180  1.30  augustss 	struct mbuf *m;
    181   1.1       cgd 	struct sockaddr *dst;
    182  1.30  augustss 	struct rtentry *rt;
    183   1.1       cgd {
    184   1.1       cgd 	int s, isr;
    185  1.30  augustss 	struct ifqueue *ifq = 0;
    186   1.1       cgd 
    187   1.1       cgd 	if ((m->m_flags & M_PKTHDR) == 0)
    188  1.14   mycroft 		panic("looutput: no header mbuf");
    189  1.11   mycroft 	ifp->if_lastchange = time;
    190   1.2       cgd #if NBPFILTER > 0
    191  1.18   mycroft 	if (ifp->if_bpf && (ifp->if_flags & IFF_LOOPBACK)) {
    192   1.2       cgd 		/*
    193   1.2       cgd 		 * We need to prepend the address family as
    194   1.2       cgd 		 * a four byte field.  Cons up a dummy header
    195   1.2       cgd 		 * to pacify bpf.  This is safe because bpf
    196   1.2       cgd 		 * will only read from the mbuf (i.e., it won't
    197   1.2       cgd 		 * try to free it or keep a pointer to it).
    198   1.2       cgd 		 */
    199   1.2       cgd 		struct mbuf m0;
    200   1.2       cgd 		u_int af = dst->sa_family;
    201   1.2       cgd 
    202   1.2       cgd 		m0.m_next = m;
    203   1.2       cgd 		m0.m_len = 4;
    204   1.2       cgd 		m0.m_data = (char *)&af;
    205   1.2       cgd 
    206  1.11   mycroft 		bpf_mtap(ifp->if_bpf, &m0);
    207   1.2       cgd 	}
    208   1.2       cgd #endif
    209   1.1       cgd 	m->m_pkthdr.rcvif = ifp;
    210   1.1       cgd 
    211  1.11   mycroft 	if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
    212   1.1       cgd 		m_freem(m);
    213  1.11   mycroft 		return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
    214  1.11   mycroft 			rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
    215   1.1       cgd 	}
    216  1.26    itojun 
    217  1.27    itojun #ifndef PULLDOWN_TEST
    218  1.26    itojun 	/*
    219  1.26    itojun 	 * KAME requires that the packet to be contiguous on the
    220  1.26    itojun 	 * mbuf.  We need to make that sure.
    221  1.26    itojun 	 * this kind of code should be avoided.
    222  1.27    itojun 	 * XXX other conditions to avoid running this part?
    223  1.26    itojun 	 */
    224  1.28    itojun 	if (m->m_len != m->m_pkthdr.len) {
    225  1.28    itojun 		struct mbuf *n = NULL;
    226  1.28    itojun 		int maxlen;
    227  1.26    itojun 
    228  1.26    itojun 		MGETHDR(n, M_DONTWAIT, MT_HEADER);
    229  1.28    itojun 		maxlen = MHLEN;
    230  1.28    itojun 		if (n)
    231  1.28    itojun 			M_COPY_PKTHDR(n, m);
    232  1.28    itojun 		if (n && m->m_pkthdr.len > maxlen) {
    233  1.27    itojun 			MCLGET(n, M_DONTWAIT);
    234  1.28    itojun 			maxlen = MCLBYTES;
    235  1.27    itojun 			if ((n->m_flags & M_EXT) == 0) {
    236  1.27    itojun 				m_free(n);
    237  1.27    itojun 				n = NULL;
    238  1.27    itojun 			}
    239  1.27    itojun 		}
    240  1.27    itojun 		if (!n) {
    241  1.27    itojun 			printf("looutput: mbuf allocation failed\n");
    242  1.27    itojun 			m_freem(m);
    243  1.27    itojun 			return ENOBUFS;
    244  1.26    itojun 		}
    245  1.26    itojun 
    246  1.28    itojun 		if (m->m_pkthdr.len <= maxlen) {
    247  1.27    itojun 			m_copydata(m, 0, m->m_pkthdr.len, mtod(n, caddr_t));
    248  1.27    itojun 			n->m_len = m->m_pkthdr.len;
    249  1.27    itojun 			n->m_next = NULL;
    250  1.27    itojun 			m_freem(m);
    251  1.27    itojun 		} else {
    252  1.28    itojun 			m_copydata(m, 0, maxlen, mtod(n, caddr_t));
    253  1.28    itojun 			m_adj(m, maxlen);
    254  1.28    itojun 			n->m_len = maxlen;
    255  1.27    itojun 			n->m_next = m;
    256  1.27    itojun 			m->m_flags &= ~M_PKTHDR;
    257  1.27    itojun 		}
    258  1.26    itojun 		m = n;
    259  1.26    itojun 	}
    260  1.26    itojun #if 0
    261  1.27    itojun 	if (m && m->m_next != NULL) {
    262  1.26    itojun 		printf("loop: not contiguous...\n");
    263  1.27    itojun 		m_freem(m);
    264  1.27    itojun 		return ENOBUFS;
    265  1.27    itojun 	}
    266  1.26    itojun #endif
    267  1.26    itojun #endif
    268  1.26    itojun 
    269   1.1       cgd 	ifp->if_opackets++;
    270   1.1       cgd 	ifp->if_obytes += m->m_pkthdr.len;
    271  1.32   thorpej 
    272  1.32   thorpej #ifdef ALTQ
    273  1.32   thorpej 	/*
    274  1.32   thorpej 	 * ALTQ on the loopback interface is just for debugging.  It's
    275  1.32   thorpej 	 * used only for loopback interfaces, not for a simplex interface.
    276  1.32   thorpej 	 */
    277  1.32   thorpej 	if ((ALTQ_IS_ENABLED(&ifp->if_snd) || TBR_IS_ENABLED(&ifp->if_snd)) &&
    278  1.32   thorpej 	    ifp->if_start == lostart) {
    279  1.32   thorpej 		struct altq_pktattr pktattr;
    280  1.32   thorpej 		int error;
    281  1.32   thorpej 
    282  1.32   thorpej 		/*
    283  1.32   thorpej 		 * If the queueing discipline needs packet classification,
    284  1.32   thorpej 		 * do it before prepending the link headers.
    285  1.32   thorpej 		 */
    286  1.32   thorpej 		IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family, &pktattr);
    287  1.32   thorpej 
    288  1.32   thorpej 		M_PREPEND(m, sizeof(uint32_t), M_DONTWAIT);
    289  1.32   thorpej 		if (m == NULL)
    290  1.32   thorpej 			return (ENOBUFS);
    291  1.32   thorpej 		*(mtod(m, uint32_t *)) = dst->sa_family;
    292  1.32   thorpej 
    293  1.32   thorpej 		s = splimp();
    294  1.32   thorpej 		IFQ_ENQUEUE(&ifp->if_snd, m, &pktattr, error);
    295  1.32   thorpej 		(*ifp->if_start)(ifp);
    296  1.32   thorpej 		splx(s);
    297  1.32   thorpej 		return (error);
    298  1.32   thorpej 	}
    299  1.32   thorpej #endif /* ALTQ */
    300  1.32   thorpej 
    301   1.1       cgd 	switch (dst->sa_family) {
    302   1.1       cgd 
    303   1.1       cgd #ifdef INET
    304   1.1       cgd 	case AF_INET:
    305   1.1       cgd 		ifq = &ipintrq;
    306   1.1       cgd 		isr = NETISR_IP;
    307   1.1       cgd 		break;
    308   1.1       cgd #endif
    309  1.26    itojun #ifdef INET6
    310  1.26    itojun 	case AF_INET6:
    311  1.26    itojun 		m->m_flags |= M_LOOP;
    312  1.26    itojun 		ifq = &ip6intrq;
    313  1.26    itojun 		isr = NETISR_IPV6;
    314  1.26    itojun 		break;
    315  1.26    itojun #endif
    316   1.1       cgd #ifdef NS
    317   1.1       cgd 	case AF_NS:
    318   1.1       cgd 		ifq = &nsintrq;
    319   1.1       cgd 		isr = NETISR_NS;
    320   1.1       cgd 		break;
    321   1.1       cgd #endif
    322   1.1       cgd #ifdef ISO
    323   1.1       cgd 	case AF_ISO:
    324   1.1       cgd 		ifq = &clnlintrq;
    325   1.1       cgd 		isr = NETISR_ISO;
    326  1.22  christos 		break;
    327  1.22  christos #endif
    328  1.22  christos #ifdef IPX
    329  1.22  christos 	case AF_IPX:
    330  1.22  christos 		ifq = &ipxintrq;
    331  1.22  christos 		isr = NETISR_IPX;
    332  1.19  christos 		break;
    333  1.19  christos #endif
    334  1.19  christos #ifdef NETATALK
    335  1.19  christos 	case AF_APPLETALK:
    336  1.19  christos 	        ifq = &atintrq2;
    337  1.19  christos 		isr = NETISR_ATALK;
    338   1.1       cgd 		break;
    339   1.1       cgd #endif
    340   1.1       cgd 	default:
    341  1.17  christos 		printf("%s: can't handle af%d\n", ifp->if_xname,
    342  1.16  christos 		    dst->sa_family);
    343   1.1       cgd 		m_freem(m);
    344   1.1       cgd 		return (EAFNOSUPPORT);
    345   1.1       cgd 	}
    346   1.1       cgd 	s = splimp();
    347   1.1       cgd 	if (IF_QFULL(ifq)) {
    348   1.1       cgd 		IF_DROP(ifq);
    349   1.1       cgd 		m_freem(m);
    350   1.1       cgd 		splx(s);
    351   1.1       cgd 		return (ENOBUFS);
    352   1.1       cgd 	}
    353   1.1       cgd 	IF_ENQUEUE(ifq, m);
    354   1.1       cgd 	schednetisr(isr);
    355   1.1       cgd 	ifp->if_ipackets++;
    356   1.1       cgd 	ifp->if_ibytes += m->m_pkthdr.len;
    357   1.1       cgd 	splx(s);
    358   1.1       cgd 	return (0);
    359   1.1       cgd }
    360  1.32   thorpej 
    361  1.32   thorpej #ifdef ALTQ
    362  1.32   thorpej void
    363  1.32   thorpej lostart(struct ifnet *ifp)
    364  1.32   thorpej {
    365  1.32   thorpej 	struct ifqueue *ifq;
    366  1.32   thorpej 	struct mbuf *m;
    367  1.32   thorpej 	uint32_t af;
    368  1.32   thorpej 	int s, isr;
    369  1.32   thorpej 
    370  1.32   thorpej 	for (;;) {
    371  1.32   thorpej 		IFQ_DEQUEUE(&ifp->if_snd, m);
    372  1.32   thorpej 		if (m == NULL)
    373  1.32   thorpej 			return;
    374  1.32   thorpej 
    375  1.32   thorpej 		af = *(mtod(m, uint32_t *));
    376  1.32   thorpej 		m_adj(m, sizeof(uint32_t));
    377  1.32   thorpej 
    378  1.32   thorpej 		switch (af) {
    379  1.32   thorpej #ifdef INET
    380  1.32   thorpej 		case AF_INET:
    381  1.32   thorpej 			ifq = &ipintrq;
    382  1.32   thorpej 			isr = NETISR_IP;
    383  1.32   thorpej 			break;
    384  1.32   thorpej #endif
    385  1.32   thorpej #ifdef INET6
    386  1.32   thorpej 		case AF_INET6:
    387  1.32   thorpej 			m->m_flags |= M_LOOP;
    388  1.32   thorpej 			ifq = &ip6intrq;
    389  1.32   thorpej 			isr = NETISR_IPV6;
    390  1.32   thorpej 			break;
    391  1.32   thorpej #endif
    392  1.32   thorpej #ifdef IPX
    393  1.32   thorpej 		case AF_IPX:
    394  1.32   thorpej 			ifq = &ipxintrq;
    395  1.32   thorpej 			isr = NETISR_IPX;
    396  1.32   thorpej 			break;
    397  1.32   thorpej #endif
    398  1.32   thorpej #ifdef NS
    399  1.32   thorpej 		case AF_NS:
    400  1.32   thorpej 			ifq = &nsintrq;
    401  1.32   thorpej 			isr = NETISR_NS;
    402  1.32   thorpej 			break;
    403  1.32   thorpej #endif
    404  1.32   thorpej #ifdef ISO
    405  1.32   thorpej 		case AF_ISO:
    406  1.32   thorpej 			ifq = &clnlintrq;
    407  1.32   thorpej 			isr = NETISR_ISO;
    408  1.32   thorpej 			break;
    409  1.32   thorpej #endif
    410  1.32   thorpej #ifdef NETATALK
    411  1.32   thorpej 		case AF_APPLETALK:
    412  1.32   thorpej 			ifq = &atintrq2;
    413  1.32   thorpej 			isr = NETISR_ATALK;
    414  1.32   thorpej 			break;
    415  1.32   thorpej #endif
    416  1.32   thorpej 		default:
    417  1.32   thorpej 			printf("%s: can't handle af%d\n", ifp->if_xname, af);
    418  1.32   thorpej 			m_freem(m);
    419  1.32   thorpej 			return;
    420  1.32   thorpej 		}
    421  1.32   thorpej 
    422  1.32   thorpej 		s = splimp();
    423  1.32   thorpej 		if (IF_QFULL(ifq)) {
    424  1.32   thorpej 			IF_DROP(ifq);
    425  1.32   thorpej 			splx(s);
    426  1.32   thorpej 			m_freem(m);
    427  1.32   thorpej 			return;
    428  1.32   thorpej 		}
    429  1.32   thorpej 		IF_ENQUEUE(ifq, m);
    430  1.32   thorpej 		schednetisr(isr);
    431  1.32   thorpej 		ifp->if_ipackets++;
    432  1.32   thorpej 		ifp->if_ibytes += m->m_pkthdr.len;
    433  1.32   thorpej 		splx(s);
    434  1.32   thorpej 	}
    435  1.32   thorpej }
    436  1.32   thorpej #endif /* ALTQ */
    437   1.1       cgd 
    438   1.1       cgd /* ARGSUSED */
    439  1.11   mycroft void
    440   1.1       cgd lortrequest(cmd, rt, sa)
    441  1.11   mycroft 	int cmd;
    442  1.11   mycroft 	struct rtentry *rt;
    443  1.11   mycroft 	struct sockaddr *sa;
    444   1.1       cgd {
    445  1.11   mycroft 
    446   1.1       cgd 	if (rt)
    447   1.1       cgd 		rt->rt_rmx.rmx_mtu = LOMTU;
    448   1.1       cgd }
    449   1.1       cgd 
    450   1.1       cgd /*
    451   1.1       cgd  * Process an ioctl request.
    452   1.1       cgd  */
    453   1.1       cgd /* ARGSUSED */
    454  1.11   mycroft int
    455   1.1       cgd loioctl(ifp, cmd, data)
    456  1.30  augustss 	struct ifnet *ifp;
    457  1.13       cgd 	u_long cmd;
    458   1.1       cgd 	caddr_t data;
    459   1.1       cgd {
    460  1.30  augustss 	struct ifaddr *ifa;
    461  1.30  augustss 	struct ifreq *ifr;
    462  1.30  augustss 	int error = 0;
    463   1.1       cgd 
    464   1.1       cgd 	switch (cmd) {
    465   1.1       cgd 
    466   1.1       cgd 	case SIOCSIFADDR:
    467   1.1       cgd 		ifp->if_flags |= IFF_UP;
    468   1.1       cgd 		ifa = (struct ifaddr *)data;
    469  1.26    itojun 		if (ifa != 0 /*&& ifa->ifa_addr->sa_family == AF_ISO*/)
    470   1.1       cgd 			ifa->ifa_rtrequest = lortrequest;
    471   1.1       cgd 		/*
    472   1.1       cgd 		 * Everything else is done at a higher level.
    473   1.1       cgd 		 */
    474   1.1       cgd 		break;
    475   1.1       cgd 
    476   1.8   hpeyerl 	case SIOCADDMULTI:
    477   1.8   hpeyerl 	case SIOCDELMULTI:
    478   1.8   hpeyerl 		ifr = (struct ifreq *)data;
    479   1.8   hpeyerl 		if (ifr == 0) {
    480   1.8   hpeyerl 			error = EAFNOSUPPORT;		/* XXX */
    481   1.8   hpeyerl 			break;
    482   1.8   hpeyerl 		}
    483   1.8   hpeyerl 		switch (ifr->ifr_addr.sa_family) {
    484   1.8   hpeyerl 
    485   1.8   hpeyerl #ifdef INET
    486   1.8   hpeyerl 		case AF_INET:
    487  1.26    itojun 			break;
    488  1.26    itojun #endif
    489  1.26    itojun #ifdef INET6
    490  1.26    itojun 		case AF_INET6:
    491   1.8   hpeyerl 			break;
    492   1.8   hpeyerl #endif
    493  1.11   mycroft 
    494   1.8   hpeyerl 		default:
    495   1.8   hpeyerl 			error = EAFNOSUPPORT;
    496   1.8   hpeyerl 			break;
    497   1.8   hpeyerl 		}
    498   1.8   hpeyerl 		break;
    499  1.11   mycroft 
    500   1.1       cgd 	default:
    501   1.1       cgd 		error = EINVAL;
    502   1.1       cgd 	}
    503   1.1       cgd 	return (error);
    504   1.1       cgd }
    505