Home | History | Annotate | Line # | Download | only in net
if_loop.c revision 1.73
      1  1.73      yamt /*	$NetBSD: if_loop.c,v 1.73 2011/04/25 22:20:59 yamt 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.55     perry  *
      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.55     perry  *
     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.47       agc  * 3. Neither the name of the University nor the names of its contributors
     45   1.1       cgd  *    may be used to endorse or promote products derived from this software
     46   1.1       cgd  *    without specific prior written permission.
     47   1.1       cgd  *
     48   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58   1.1       cgd  * SUCH DAMAGE.
     59   1.1       cgd  *
     60  1.21      fvdl  *	@(#)if_loop.c	8.2 (Berkeley) 1/9/95
     61   1.1       cgd  */
     62   1.1       cgd 
     63   1.1       cgd /*
     64   1.1       cgd  * Loopback interface driver for protocol testing and timing.
     65   1.1       cgd  */
     66  1.40     lukem 
     67  1.40     lukem #include <sys/cdefs.h>
     68  1.73      yamt __KERNEL_RCSID(0, "$NetBSD: if_loop.c,v 1.73 2011/04/25 22:20:59 yamt Exp $");
     69  1.23  jonathan 
     70  1.23  jonathan #include "opt_inet.h"
     71  1.23  jonathan #include "opt_atalk.h"
     72  1.24  jonathan #include "opt_iso.h"
     73  1.46    martin #include "opt_ipx.h"
     74  1.46    martin #include "opt_mbuftrace.h"
     75   1.1       cgd 
     76   1.4       cgd 
     77   1.9   mycroft #include <sys/param.h>
     78   1.9   mycroft #include <sys/systm.h>
     79  1.11   mycroft #include <sys/kernel.h>
     80   1.9   mycroft #include <sys/mbuf.h>
     81   1.9   mycroft #include <sys/socket.h>
     82   1.9   mycroft #include <sys/errno.h>
     83   1.9   mycroft #include <sys/ioctl.h>
     84  1.11   mycroft #include <sys/time.h>
     85  1.11   mycroft 
     86  1.66        ad #include <sys/cpu.h>
     87   1.9   mycroft 
     88   1.9   mycroft #include <net/if.h>
     89   1.9   mycroft #include <net/if_types.h>
     90   1.9   mycroft #include <net/netisr.h>
     91   1.9   mycroft #include <net/route.h>
     92   1.1       cgd 
     93   1.1       cgd #ifdef	INET
     94   1.9   mycroft #include <netinet/in.h>
     95   1.9   mycroft #include <netinet/in_systm.h>
     96   1.9   mycroft #include <netinet/in_var.h>
     97  1.73      yamt #include <netinet/in_offload.h>
     98   1.9   mycroft #include <netinet/ip.h>
     99   1.1       cgd #endif
    100   1.1       cgd 
    101  1.26    itojun #ifdef INET6
    102  1.26    itojun #ifndef INET
    103  1.26    itojun #include <netinet/in.h>
    104  1.26    itojun #endif
    105  1.26    itojun #include <netinet6/in6_var.h>
    106  1.73      yamt #include <netinet6/in6_offload.h>
    107  1.29    itojun #include <netinet/ip6.h>
    108  1.26    itojun #endif
    109  1.26    itojun 
    110  1.22  christos #ifdef IPX
    111  1.22  christos #include <netipx/ipx.h>
    112  1.22  christos #include <netipx/ipx_if.h>
    113  1.22  christos #endif
    114  1.22  christos 
    115   1.1       cgd #ifdef ISO
    116   1.9   mycroft #include <netiso/iso.h>
    117   1.9   mycroft #include <netiso/iso_var.h>
    118   1.1       cgd #endif
    119   1.1       cgd 
    120  1.19  christos #ifdef NETATALK
    121  1.19  christos #include <netatalk/at.h>
    122  1.19  christos #include <netatalk/at_var.h>
    123  1.19  christos #endif
    124  1.19  christos 
    125   1.2       cgd #include <net/bpf.h>
    126   1.9   mycroft 
    127  1.26    itojun #if defined(LARGE_LOMTU)
    128  1.26    itojun #define LOMTU	(131072 +  MHLEN + MLEN)
    129  1.48  jonathan #define LOMTU_MAX LOMTU
    130  1.26    itojun #else
    131  1.20  jonathan #define	LOMTU	(32768 +  MHLEN + MLEN)
    132  1.48  jonathan #define	LOMTU_MAX	(65536 +  MHLEN + MLEN)
    133  1.26    itojun #endif
    134   1.1       cgd 
    135  1.34   thorpej #ifdef ALTQ
    136  1.57   thorpej static void	lostart(struct ifnet *);
    137  1.34   thorpej #endif
    138  1.32   thorpej 
    139  1.57   thorpej static int	loop_clone_create(struct if_clone *, int);
    140  1.57   thorpej static int	loop_clone_destroy(struct ifnet *);
    141  1.52     peter 
    142  1.57   thorpej static struct if_clone loop_cloner =
    143  1.52     peter     IF_CLONE_INITIALIZER("lo", loop_clone_create, loop_clone_destroy);
    144  1.52     peter 
    145   1.6    andrew void
    146  1.62  christos loopattach(int n)
    147   1.1       cgd {
    148  1.52     peter 
    149  1.52     peter 	(void)loop_clone_create(&loop_cloner, 0);	/* lo0 always exists */
    150  1.52     peter 	if_clone_attach(&loop_cloner);
    151  1.52     peter }
    152  1.52     peter 
    153  1.57   thorpej static int
    154  1.52     peter loop_clone_create(struct if_clone *ifc, int unit)
    155  1.52     peter {
    156  1.60     peter 	struct ifnet *ifp;
    157  1.52     peter 
    158  1.68  christos 	ifp = if_alloc(IFT_LOOP);
    159  1.52     peter 
    160  1.68  christos 	if_initname(ifp, ifc->ifc_name, unit);
    161   1.1       cgd 
    162  1.60     peter 	ifp->if_mtu = LOMTU;
    163  1.60     peter 	ifp->if_flags = IFF_LOOPBACK | IFF_MULTICAST | IFF_RUNNING;
    164  1.60     peter 	ifp->if_ioctl = loioctl;
    165  1.60     peter 	ifp->if_output = looutput;
    166  1.34   thorpej #ifdef ALTQ
    167  1.60     peter 	ifp->if_start = lostart;
    168  1.34   thorpej #endif
    169  1.60     peter 	ifp->if_type = IFT_LOOP;
    170  1.60     peter 	ifp->if_hdrlen = 0;
    171  1.60     peter 	ifp->if_addrlen = 0;
    172  1.60     peter 	ifp->if_dlt = DLT_NULL;
    173  1.60     peter 	IFQ_SET_READY(&ifp->if_snd);
    174  1.52     peter 	if (unit == 0)
    175  1.60     peter 		lo0ifp = ifp;
    176  1.60     peter 	if_attach(ifp);
    177  1.60     peter 	if_alloc_sadl(ifp);
    178  1.72     joerg 	bpf_attach(ifp, DLT_NULL, sizeof(u_int));
    179  1.42      matt #ifdef MBUFTRACE
    180  1.60     peter 	ifp->if_mowner = malloc(sizeof(struct mowner), M_DEVBUF,
    181  1.52     peter 	    M_WAITOK | M_ZERO);
    182  1.60     peter 	strlcpy(ifp->if_mowner->mo_name, ifp->if_xname,
    183  1.60     peter 	    sizeof(ifp->if_mowner->mo_name));
    184  1.60     peter 	MOWNER_ATTACH(ifp->if_mowner);
    185  1.42      matt #endif
    186  1.52     peter 
    187  1.52     peter 	return (0);
    188  1.52     peter }
    189  1.52     peter 
    190  1.57   thorpej static int
    191  1.52     peter loop_clone_destroy(struct ifnet *ifp)
    192  1.52     peter {
    193  1.52     peter 
    194  1.53     peter 	if (ifp == lo0ifp)
    195  1.53     peter 		return (EPERM);
    196  1.52     peter 
    197  1.52     peter #ifdef MBUFTRACE
    198  1.52     peter 	MOWNER_DETACH(ifp->if_mowner);
    199  1.52     peter 	free(ifp->if_mowner, M_DEVBUF);
    200  1.52     peter #endif
    201  1.52     peter 
    202  1.72     joerg 	bpf_detach(ifp);
    203  1.52     peter 	if_detach(ifp);
    204  1.52     peter 
    205  1.60     peter 	free(ifp, M_DEVBUF);
    206  1.53     peter 
    207  1.53     peter 	return (0);
    208   1.1       cgd }
    209   1.1       cgd 
    210  1.11   mycroft int
    211  1.63    dyoung looutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
    212  1.54     peter     struct rtentry *rt)
    213   1.1       cgd {
    214   1.1       cgd 	int s, isr;
    215  1.54     peter 	struct ifqueue *ifq = NULL;
    216  1.73      yamt 	int csum_flags;
    217   1.1       cgd 
    218  1.42      matt 	MCLAIM(m, ifp->if_mowner);
    219   1.1       cgd 	if ((m->m_flags & M_PKTHDR) == 0)
    220  1.14   mycroft 		panic("looutput: no header mbuf");
    221  1.72     joerg 	if (ifp->if_flags & IFF_LOOPBACK)
    222  1.72     joerg 		bpf_mtap_af(ifp, dst->sa_family, m);
    223   1.1       cgd 	m->m_pkthdr.rcvif = ifp;
    224   1.1       cgd 
    225  1.11   mycroft 	if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
    226   1.1       cgd 		m_freem(m);
    227  1.11   mycroft 		return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
    228  1.11   mycroft 			rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
    229   1.1       cgd 	}
    230  1.26    itojun 
    231   1.1       cgd 	ifp->if_opackets++;
    232   1.1       cgd 	ifp->if_obytes += m->m_pkthdr.len;
    233  1.32   thorpej 
    234  1.32   thorpej #ifdef ALTQ
    235  1.32   thorpej 	/*
    236  1.32   thorpej 	 * ALTQ on the loopback interface is just for debugging.  It's
    237  1.32   thorpej 	 * used only for loopback interfaces, not for a simplex interface.
    238  1.32   thorpej 	 */
    239  1.32   thorpej 	if ((ALTQ_IS_ENABLED(&ifp->if_snd) || TBR_IS_ENABLED(&ifp->if_snd)) &&
    240  1.32   thorpej 	    ifp->if_start == lostart) {
    241  1.32   thorpej 		struct altq_pktattr pktattr;
    242  1.32   thorpej 		int error;
    243  1.32   thorpej 
    244  1.32   thorpej 		/*
    245  1.32   thorpej 		 * If the queueing discipline needs packet classification,
    246  1.32   thorpej 		 * do it before prepending the link headers.
    247  1.32   thorpej 		 */
    248  1.32   thorpej 		IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family, &pktattr);
    249  1.32   thorpej 
    250  1.32   thorpej 		M_PREPEND(m, sizeof(uint32_t), M_DONTWAIT);
    251  1.32   thorpej 		if (m == NULL)
    252  1.32   thorpej 			return (ENOBUFS);
    253  1.32   thorpej 		*(mtod(m, uint32_t *)) = dst->sa_family;
    254  1.32   thorpej 
    255  1.38   thorpej 		s = splnet();
    256  1.32   thorpej 		IFQ_ENQUEUE(&ifp->if_snd, m, &pktattr, error);
    257  1.32   thorpej 		(*ifp->if_start)(ifp);
    258  1.32   thorpej 		splx(s);
    259  1.32   thorpej 		return (error);
    260  1.32   thorpej 	}
    261  1.32   thorpej #endif /* ALTQ */
    262  1.49  jonathan 
    263  1.49  jonathan 	m_tag_delete_nonpersistent(m);
    264  1.32   thorpej 
    265   1.1       cgd 	switch (dst->sa_family) {
    266   1.1       cgd 
    267   1.1       cgd #ifdef INET
    268   1.1       cgd 	case AF_INET:
    269  1.73      yamt 		csum_flags = m->m_pkthdr.csum_flags;
    270  1.73      yamt 		KASSERT((csum_flags & ~(M_CSUM_IPv4|M_CSUM_UDPv4)) == 0);
    271  1.73      yamt 		if (csum_flags != 0 && IN_LOOPBACK_NEED_CHECKSUM(csum_flags)) {
    272  1.73      yamt 			ip_undefer_csum(m, 0, csum_flags);
    273  1.73      yamt 		}
    274  1.73      yamt 		m->m_pkthdr.csum_flags = 0;
    275   1.1       cgd 		ifq = &ipintrq;
    276   1.1       cgd 		isr = NETISR_IP;
    277   1.1       cgd 		break;
    278   1.1       cgd #endif
    279  1.26    itojun #ifdef INET6
    280  1.26    itojun 	case AF_INET6:
    281  1.73      yamt 		csum_flags = m->m_pkthdr.csum_flags;
    282  1.73      yamt 		KASSERT((csum_flags & ~M_CSUM_UDPv6) == 0);
    283  1.73      yamt 		if (csum_flags != 0 &&
    284  1.73      yamt 		    IN6_LOOPBACK_NEED_CHECKSUM(csum_flags)) {
    285  1.73      yamt 			ip6_undefer_csum(m, 0, csum_flags);
    286  1.73      yamt 		}
    287  1.73      yamt 		m->m_pkthdr.csum_flags = 0;
    288  1.26    itojun 		m->m_flags |= M_LOOP;
    289  1.26    itojun 		ifq = &ip6intrq;
    290  1.26    itojun 		isr = NETISR_IPV6;
    291  1.26    itojun 		break;
    292  1.26    itojun #endif
    293   1.1       cgd #ifdef ISO
    294   1.1       cgd 	case AF_ISO:
    295   1.1       cgd 		ifq = &clnlintrq;
    296   1.1       cgd 		isr = NETISR_ISO;
    297  1.22  christos 		break;
    298  1.22  christos #endif
    299  1.22  christos #ifdef IPX
    300  1.22  christos 	case AF_IPX:
    301  1.22  christos 		ifq = &ipxintrq;
    302  1.22  christos 		isr = NETISR_IPX;
    303  1.19  christos 		break;
    304  1.19  christos #endif
    305  1.19  christos #ifdef NETATALK
    306  1.19  christos 	case AF_APPLETALK:
    307  1.19  christos 	        ifq = &atintrq2;
    308  1.19  christos 		isr = NETISR_ATALK;
    309   1.1       cgd 		break;
    310   1.1       cgd #endif
    311   1.1       cgd 	default:
    312  1.17  christos 		printf("%s: can't handle af%d\n", ifp->if_xname,
    313  1.16  christos 		    dst->sa_family);
    314   1.1       cgd 		m_freem(m);
    315   1.1       cgd 		return (EAFNOSUPPORT);
    316   1.1       cgd 	}
    317  1.38   thorpej 	s = splnet();
    318   1.1       cgd 	if (IF_QFULL(ifq)) {
    319   1.1       cgd 		IF_DROP(ifq);
    320   1.1       cgd 		m_freem(m);
    321   1.1       cgd 		splx(s);
    322   1.1       cgd 		return (ENOBUFS);
    323   1.1       cgd 	}
    324   1.1       cgd 	IF_ENQUEUE(ifq, m);
    325   1.1       cgd 	schednetisr(isr);
    326   1.1       cgd 	ifp->if_ipackets++;
    327   1.1       cgd 	ifp->if_ibytes += m->m_pkthdr.len;
    328   1.1       cgd 	splx(s);
    329   1.1       cgd 	return (0);
    330   1.1       cgd }
    331  1.32   thorpej 
    332  1.32   thorpej #ifdef ALTQ
    333  1.57   thorpej static void
    334  1.32   thorpej lostart(struct ifnet *ifp)
    335  1.32   thorpej {
    336  1.32   thorpej 	struct ifqueue *ifq;
    337  1.32   thorpej 	struct mbuf *m;
    338  1.32   thorpej 	uint32_t af;
    339  1.32   thorpej 	int s, isr;
    340  1.32   thorpej 
    341  1.32   thorpej 	for (;;) {
    342  1.32   thorpej 		IFQ_DEQUEUE(&ifp->if_snd, m);
    343  1.32   thorpej 		if (m == NULL)
    344  1.32   thorpej 			return;
    345  1.32   thorpej 
    346  1.32   thorpej 		af = *(mtod(m, uint32_t *));
    347  1.32   thorpej 		m_adj(m, sizeof(uint32_t));
    348  1.32   thorpej 
    349  1.32   thorpej 		switch (af) {
    350  1.32   thorpej #ifdef INET
    351  1.32   thorpej 		case AF_INET:
    352  1.32   thorpej 			ifq = &ipintrq;
    353  1.32   thorpej 			isr = NETISR_IP;
    354  1.32   thorpej 			break;
    355  1.32   thorpej #endif
    356  1.32   thorpej #ifdef INET6
    357  1.32   thorpej 		case AF_INET6:
    358  1.32   thorpej 			m->m_flags |= M_LOOP;
    359  1.32   thorpej 			ifq = &ip6intrq;
    360  1.32   thorpej 			isr = NETISR_IPV6;
    361  1.32   thorpej 			break;
    362  1.32   thorpej #endif
    363  1.32   thorpej #ifdef IPX
    364  1.32   thorpej 		case AF_IPX:
    365  1.32   thorpej 			ifq = &ipxintrq;
    366  1.32   thorpej 			isr = NETISR_IPX;
    367  1.32   thorpej 			break;
    368  1.32   thorpej #endif
    369  1.32   thorpej #ifdef ISO
    370  1.32   thorpej 		case AF_ISO:
    371  1.32   thorpej 			ifq = &clnlintrq;
    372  1.32   thorpej 			isr = NETISR_ISO;
    373  1.32   thorpej 			break;
    374  1.32   thorpej #endif
    375  1.32   thorpej #ifdef NETATALK
    376  1.32   thorpej 		case AF_APPLETALK:
    377  1.32   thorpej 			ifq = &atintrq2;
    378  1.32   thorpej 			isr = NETISR_ATALK;
    379  1.32   thorpej 			break;
    380  1.32   thorpej #endif
    381  1.32   thorpej 		default:
    382  1.32   thorpej 			printf("%s: can't handle af%d\n", ifp->if_xname, af);
    383  1.32   thorpej 			m_freem(m);
    384  1.32   thorpej 			return;
    385  1.32   thorpej 		}
    386  1.32   thorpej 
    387  1.38   thorpej 		s = splnet();
    388  1.32   thorpej 		if (IF_QFULL(ifq)) {
    389  1.32   thorpej 			IF_DROP(ifq);
    390  1.32   thorpej 			splx(s);
    391  1.32   thorpej 			m_freem(m);
    392  1.32   thorpej 			return;
    393  1.32   thorpej 		}
    394  1.32   thorpej 		IF_ENQUEUE(ifq, m);
    395  1.32   thorpej 		schednetisr(isr);
    396  1.32   thorpej 		ifp->if_ipackets++;
    397  1.32   thorpej 		ifp->if_ibytes += m->m_pkthdr.len;
    398  1.32   thorpej 		splx(s);
    399  1.32   thorpej 	}
    400  1.32   thorpej }
    401  1.32   thorpej #endif /* ALTQ */
    402   1.1       cgd 
    403   1.1       cgd /* ARGSUSED */
    404  1.11   mycroft void
    405  1.62  christos lortrequest(int cmd, struct rtentry *rt,
    406  1.69    dyoung     const struct rt_addrinfo *info)
    407   1.1       cgd {
    408  1.11   mycroft 
    409   1.1       cgd 	if (rt)
    410  1.52     peter 		rt->rt_rmx.rmx_mtu = lo0ifp->if_mtu;
    411   1.1       cgd }
    412   1.1       cgd 
    413   1.1       cgd /*
    414   1.1       cgd  * Process an ioctl request.
    415   1.1       cgd  */
    416   1.1       cgd /* ARGSUSED */
    417  1.11   mycroft int
    418  1.64  christos loioctl(struct ifnet *ifp, u_long cmd, void *data)
    419   1.1       cgd {
    420  1.30  augustss 	struct ifaddr *ifa;
    421  1.67    dyoung 	struct ifreq *ifr = data;
    422  1.30  augustss 	int error = 0;
    423   1.1       cgd 
    424   1.1       cgd 	switch (cmd) {
    425   1.1       cgd 
    426  1.70    dyoung 	case SIOCINITIFADDR:
    427   1.1       cgd 		ifp->if_flags |= IFF_UP;
    428   1.1       cgd 		ifa = (struct ifaddr *)data;
    429  1.54     peter 		if (ifa != NULL /*&& ifa->ifa_addr->sa_family == AF_ISO*/)
    430   1.1       cgd 			ifa->ifa_rtrequest = lortrequest;
    431   1.1       cgd 		/*
    432   1.1       cgd 		 * Everything else is done at a higher level.
    433   1.1       cgd 		 */
    434  1.48  jonathan 		break;
    435  1.48  jonathan 
    436  1.48  jonathan 	case SIOCSIFMTU:
    437  1.48  jonathan 		if ((unsigned)ifr->ifr_mtu > LOMTU_MAX)
    438  1.48  jonathan 			error = EINVAL;
    439  1.67    dyoung 		else if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET){
    440  1.48  jonathan 			/* XXX update rt mtu for AF_ISO? */
    441  1.67    dyoung 			error = 0;
    442  1.48  jonathan 		}
    443   1.1       cgd 		break;
    444   1.1       cgd 
    445   1.8   hpeyerl 	case SIOCADDMULTI:
    446   1.8   hpeyerl 	case SIOCDELMULTI:
    447  1.54     peter 		if (ifr == NULL) {
    448   1.8   hpeyerl 			error = EAFNOSUPPORT;		/* XXX */
    449   1.8   hpeyerl 			break;
    450   1.8   hpeyerl 		}
    451  1.65    dyoung 		switch (ifreq_getaddr(cmd, ifr)->sa_family) {
    452   1.8   hpeyerl 
    453   1.8   hpeyerl #ifdef INET
    454   1.8   hpeyerl 		case AF_INET:
    455  1.26    itojun 			break;
    456  1.26    itojun #endif
    457  1.26    itojun #ifdef INET6
    458  1.26    itojun 		case AF_INET6:
    459   1.8   hpeyerl 			break;
    460   1.8   hpeyerl #endif
    461  1.11   mycroft 
    462   1.8   hpeyerl 		default:
    463   1.8   hpeyerl 			error = EAFNOSUPPORT;
    464   1.8   hpeyerl 			break;
    465   1.8   hpeyerl 		}
    466   1.8   hpeyerl 		break;
    467  1.11   mycroft 
    468   1.1       cgd 	default:
    469  1.70    dyoung 		error = ifioctl_common(ifp, cmd, data);
    470   1.1       cgd 	}
    471   1.1       cgd 	return (error);
    472   1.1       cgd }
    473