xref: /freebsd/sys/net/if_loop.c (revision f25ee086333abf35a9b3cefef77a7cceee5b5b24)
1df8bae1dSRodney W. Grimes /*
2df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
14df8bae1dSRodney W. Grimes  *    must display the following acknowledgement:
15df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
16df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
17df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19df8bae1dSRodney W. Grimes  *    without specific prior written permission.
20df8bae1dSRodney W. Grimes  *
21df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
32df8bae1dSRodney W. Grimes  *
33fe6db7c7SRuslan Ermilov  *	@(#)if_loop.c	8.2 (Berkeley) 1/9/95
34c3aac50fSPeter Wemm  * $FreeBSD$
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37df8bae1dSRodney W. Grimes /*
38df8bae1dSRodney W. Grimes  * Loopback interface driver for protocol testing and timing.
39df8bae1dSRodney W. Grimes  */
40df8bae1dSRodney W. Grimes 
417262d3e4SEivind Eklund #include "opt_atalk.h"
421d5e9e22SEivind Eklund #include "opt_inet.h"
43cfa1ca9dSYoshinobu Inoue #include "opt_inet6.h"
44430df5f4SEivind Eklund #include "opt_ipx.h"
45fe6fb873SRobert Watson #include "opt_mac.h"
46430df5f4SEivind Eklund 
47df8bae1dSRodney W. Grimes #include <sys/param.h>
48df8bae1dSRodney W. Grimes #include <sys/systm.h>
49df8bae1dSRodney W. Grimes #include <sys/kernel.h>
50fe6fb873SRobert Watson #include <sys/mac.h>
5190d9802fSPeter Wemm #include <sys/malloc.h>
52df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
532b120974SPeter Wemm #include <sys/module.h>
543d4ce33dSBrooks Davis #include <machine/bus.h>
553d4ce33dSBrooks Davis #include <sys/rman.h>
56df8bae1dSRodney W. Grimes #include <sys/socket.h>
5751a53488SBruce Evans #include <sys/sockio.h>
5890d9802fSPeter Wemm #include <sys/sysctl.h>
59df8bae1dSRodney W. Grimes 
60df8bae1dSRodney W. Grimes #include <net/if.h>
61df8bae1dSRodney W. Grimes #include <net/if_types.h>
62df8bae1dSRodney W. Grimes #include <net/netisr.h>
63df8bae1dSRodney W. Grimes #include <net/route.h>
64df8bae1dSRodney W. Grimes #include <net/bpf.h>
6533841545SHajimu UMEMOTO #include <net/bpfdesc.h>
66df8bae1dSRodney W. Grimes 
67df8bae1dSRodney W. Grimes #ifdef	INET
68df8bae1dSRodney W. Grimes #include <netinet/in.h>
69df8bae1dSRodney W. Grimes #include <netinet/in_var.h>
70df8bae1dSRodney W. Grimes #endif
71df8bae1dSRodney W. Grimes 
72cc6a66f2SJulian Elischer #ifdef IPX
73cc6a66f2SJulian Elischer #include <netipx/ipx.h>
74cc6a66f2SJulian Elischer #include <netipx/ipx_if.h>
75cc6a66f2SJulian Elischer #endif
76cc6a66f2SJulian Elischer 
7782cd038dSYoshinobu Inoue #ifdef INET6
7882cd038dSYoshinobu Inoue #ifndef INET
7982cd038dSYoshinobu Inoue #include <netinet/in.h>
8082cd038dSYoshinobu Inoue #endif
8182cd038dSYoshinobu Inoue #include <netinet6/in6_var.h>
82686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h>
8382cd038dSYoshinobu Inoue #endif
8482cd038dSYoshinobu Inoue 
85655929bfSJulian Elischer #ifdef NETATALK
86655929bfSJulian Elischer #include <netatalk/at.h>
87655929bfSJulian Elischer #include <netatalk/at_var.h>
888cdfefbdSPeter Wemm #endif
89655929bfSJulian Elischer 
90db8889c6SDavid Greenman #ifdef TINY_LOMTU
91df8bae1dSRodney W. Grimes #define	LOMTU	(1024+512)
9282cd038dSYoshinobu Inoue #elif defined(LARGE_LOMTU)
9382cd038dSYoshinobu Inoue #define LOMTU	131072
94db8889c6SDavid Greenman #else
95af78195eSDavid Greenman #define LOMTU	16384
96db8889c6SDavid Greenman #endif
97df8bae1dSRodney W. Grimes 
983d4ce33dSBrooks Davis #define LONAME	"lo"
9990d9802fSPeter Wemm 
10090d9802fSPeter Wemm struct lo_softc {
10190d9802fSPeter Wemm 	struct	ifnet sc_if;		/* network-visible interface */
10290d9802fSPeter Wemm 	LIST_ENTRY(lo_softc) sc_next;
10390d9802fSPeter Wemm };
1043d4ce33dSBrooks Davis 
1053d4ce33dSBrooks Davis int		loioctl(struct ifnet *, u_long, caddr_t);
1063d4ce33dSBrooks Davis static void	lortrequest(int, struct rtentry *, struct rt_addrinfo *);
1073d4ce33dSBrooks Davis int		looutput(struct ifnet *ifp, struct mbuf *m,
1083d4ce33dSBrooks Davis 		    struct sockaddr *dst, struct rtentry *rt);
1093b16e7b2SMaxime Henrion int		lo_clone_create(struct if_clone *, int);
110ae5a19beSBrooks Davis void		lo_clone_destroy(struct ifnet *);
1113d4ce33dSBrooks Davis 
1123d4ce33dSBrooks Davis struct ifnet *loif = NULL;			/* Used externally */
1133d4ce33dSBrooks Davis 
1143d4ce33dSBrooks Davis static MALLOC_DEFINE(M_LO, LONAME, "Loopback Interface");
1153d4ce33dSBrooks Davis 
116f25ee086SRobert Watson static struct mtx lo_mtx;
11790d9802fSPeter Wemm static LIST_HEAD(lo_list, lo_softc) lo_list;
11890d9802fSPeter Wemm 
119ae5a19beSBrooks Davis struct if_clone lo_cloner = IF_CLONE_INITIALIZER(LONAME,
120ae5a19beSBrooks Davis     lo_clone_create, lo_clone_destroy, 1, IF_MAXUNIT);
1213d4ce33dSBrooks Davis 
122ae5a19beSBrooks Davis void
1233d4ce33dSBrooks Davis lo_clone_destroy(ifp)
1243d4ce33dSBrooks Davis 	struct ifnet *ifp;
1253d4ce33dSBrooks Davis {
1263d4ce33dSBrooks Davis 	struct lo_softc *sc;
1273d4ce33dSBrooks Davis 
1283d4ce33dSBrooks Davis 	sc = ifp->if_softc;
1293d4ce33dSBrooks Davis 
130ae5a19beSBrooks Davis 	/* XXX: destroying lo0 will lead to panics. */
131ae5a19beSBrooks Davis 	KASSERT(loif != ifp, ("%s: destroying lo0", __func__));
1323d4ce33dSBrooks Davis 
133f25ee086SRobert Watson 	mtx_lock(&lo_mtx);
134f25ee086SRobert Watson 	LIST_REMOVE(sc, sc_next);
135f25ee086SRobert Watson 	mtx_unlock(&lo_mtx);
1363d4ce33dSBrooks Davis 	bpfdetach(ifp);
1373d4ce33dSBrooks Davis 	if_detach(ifp);
138d722be54SLuigi Rizzo 	free(sc, M_LO);
1393d4ce33dSBrooks Davis }
1403d4ce33dSBrooks Davis 
1413b16e7b2SMaxime Henrion int
1423b16e7b2SMaxime Henrion lo_clone_create(ifc, unit)
1433b16e7b2SMaxime Henrion 	struct if_clone *ifc;
1443b16e7b2SMaxime Henrion 	int unit;
14590d9802fSPeter Wemm {
14690d9802fSPeter Wemm 	struct lo_softc *sc;
14790d9802fSPeter Wemm 
148a163d034SWarner Losh 	MALLOC(sc, struct lo_softc *, sizeof(*sc), M_LO, M_WAITOK | M_ZERO);
14990d9802fSPeter Wemm 
1509bf40edeSBrooks Davis 	if_initname(&sc->sc_if, ifc->ifc_name, unit);
15190d9802fSPeter Wemm 	sc->sc_if.if_mtu = LOMTU;
15290d9802fSPeter Wemm 	sc->sc_if.if_flags = IFF_LOOPBACK | IFF_MULTICAST;
15390d9802fSPeter Wemm 	sc->sc_if.if_ioctl = loioctl;
15490d9802fSPeter Wemm 	sc->sc_if.if_output = looutput;
15590d9802fSPeter Wemm 	sc->sc_if.if_type = IFT_LOOP;
15690d9802fSPeter Wemm 	sc->sc_if.if_snd.ifq_maxlen = ifqmaxlen;
1573d4ce33dSBrooks Davis 	sc->sc_if.if_softc = sc;
15890d9802fSPeter Wemm 	if_attach(&sc->sc_if);
15990d9802fSPeter Wemm 	bpfattach(&sc->sc_if, DLT_NULL, sizeof(u_int));
160f25ee086SRobert Watson 	mtx_lock(&lo_mtx);
16190d9802fSPeter Wemm 	LIST_INSERT_HEAD(&lo_list, sc, sc_next);
162f25ee086SRobert Watson 	mtx_unlock(&lo_mtx);
16390d9802fSPeter Wemm 	if (loif == NULL)
16490d9802fSPeter Wemm 		loif = &sc->sc_if;
1653b16e7b2SMaxime Henrion 
1663b16e7b2SMaxime Henrion 	return (0);
16790d9802fSPeter Wemm }
16890d9802fSPeter Wemm 
1692b120974SPeter Wemm static int
1702b120974SPeter Wemm loop_modevent(module_t mod, int type, void *data)
171df8bae1dSRodney W. Grimes {
1722b120974SPeter Wemm 	switch (type) {
1732b120974SPeter Wemm 	case MOD_LOAD:
174f25ee086SRobert Watson 		mtx_init(&lo_mtx, "lo_mtx", NULL, MTX_DEF);
1753d4ce33dSBrooks Davis 		LIST_INIT(&lo_list);
1763d4ce33dSBrooks Davis 		if_clone_attach(&lo_cloner);
1772b120974SPeter Wemm 		break;
1782b120974SPeter Wemm 	case MOD_UNLOAD:
1792b120974SPeter Wemm 		printf("loop module unload - not possible for this module type\n");
1802b120974SPeter Wemm 		return EINVAL;
181f5fea3ddSPaul Traina 	}
1822b120974SPeter Wemm 	return 0;
1832b120974SPeter Wemm }
1842b120974SPeter Wemm 
1852b120974SPeter Wemm static moduledata_t loop_mod = {
1862b120974SPeter Wemm 	"loop",
1872b120974SPeter Wemm 	loop_modevent,
1882b120974SPeter Wemm 	0
1892b120974SPeter Wemm };
1902b120974SPeter Wemm 
19178ece553SAlexander Kabaev DECLARE_MODULE(loop, loop_mod, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY);
192df8bae1dSRodney W. Grimes 
193cfa1ca9dSYoshinobu Inoue int
194df8bae1dSRodney W. Grimes looutput(ifp, m, dst, rt)
195df8bae1dSRodney W. Grimes 	struct ifnet *ifp;
196df8bae1dSRodney W. Grimes 	register struct mbuf *m;
197df8bae1dSRodney W. Grimes 	struct sockaddr *dst;
198df8bae1dSRodney W. Grimes 	register struct rtentry *rt;
199df8bae1dSRodney W. Grimes {
200fe584538SDag-Erling Smørgrav 	M_ASSERTPKTHDR(m); /* check if we have the packet header */
201ed7509acSJulian Elischer 
202ed7509acSJulian Elischer 	if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
203ed7509acSJulian Elischer 		m_freem(m);
204ed7509acSJulian Elischer 		return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
205ed7509acSJulian Elischer 		        rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
206ed7509acSJulian Elischer 	}
20782cd038dSYoshinobu Inoue 
208ed7509acSJulian Elischer 	ifp->if_opackets++;
209ed7509acSJulian Elischer 	ifp->if_obytes += m->m_pkthdr.len;
210201c2527SJulian Elischer #if 1	/* XXX */
211201c2527SJulian Elischer 	switch (dst->sa_family) {
212201c2527SJulian Elischer 	case AF_INET:
21382cd038dSYoshinobu Inoue 	case AF_INET6:
214201c2527SJulian Elischer 	case AF_IPX:
215201c2527SJulian Elischer 	case AF_APPLETALK:
21605b3ccefSJulian Elischer 		break;
217201c2527SJulian Elischer 	default:
21871582bf5SRobert Watson 		printf("looutput: af=%d unexpected\n", dst->sa_family);
219201c2527SJulian Elischer 		m_freem(m);
220201c2527SJulian Elischer 		return (EAFNOSUPPORT);
221201c2527SJulian Elischer 	}
222201c2527SJulian Elischer #endif
22306a429a3SArchie Cobbs 	return(if_simloop(ifp, m, dst->sa_family, 0));
224ed7509acSJulian Elischer }
225ed7509acSJulian Elischer 
226ed7509acSJulian Elischer /*
227ed7509acSJulian Elischer  * if_simloop()
228ed7509acSJulian Elischer  *
229ed7509acSJulian Elischer  * This function is to support software emulation of hardware loopback,
230ed7509acSJulian Elischer  * i.e., for interfaces with the IFF_SIMPLEX attribute. Since they can't
231ed7509acSJulian Elischer  * hear their own broadcasts, we create a copy of the packet that we
232ed7509acSJulian Elischer  * would normally receive via a hardware loopback.
233ed7509acSJulian Elischer  *
234ed7509acSJulian Elischer  * This function expects the packet to include the media header of length hlen.
235ed7509acSJulian Elischer  */
236ed7509acSJulian Elischer 
237ed7509acSJulian Elischer int
23806a429a3SArchie Cobbs if_simloop(ifp, m, af, hlen)
239ed7509acSJulian Elischer 	struct ifnet *ifp;
24033841545SHajimu UMEMOTO 	struct mbuf *m;
24106a429a3SArchie Cobbs 	int af;
242ed7509acSJulian Elischer 	int hlen;
243ed7509acSJulian Elischer {
244df5e1987SJonathan Lemon 	int isr;
245df8bae1dSRodney W. Grimes 
246fe584538SDag-Erling Smørgrav 	M_ASSERTPKTHDR(m);
2479c855a36SSam Leffler 	m_tag_delete_nonpersistent(m);
248ed7509acSJulian Elischer 	m->m_pkthdr.rcvif = ifp;
24906a429a3SArchie Cobbs 
250963e4c2aSGarrett Wollman 	/* BPF write needs to be handled specially */
25106a429a3SArchie Cobbs 	if (af == AF_UNSPEC) {
25206a429a3SArchie Cobbs 		KASSERT(m->m_len >= sizeof(int), ("if_simloop: m_len"));
25306a429a3SArchie Cobbs 		af = *(mtod(m, int *));
254963e4c2aSGarrett Wollman 		m->m_len -= sizeof(int);
255963e4c2aSGarrett Wollman 		m->m_pkthdr.len -= sizeof(int);
256963e4c2aSGarrett Wollman 		m->m_data += sizeof(int);
257963e4c2aSGarrett Wollman 	}
258963e4c2aSGarrett Wollman 
25906a429a3SArchie Cobbs 	/* Let BPF see incoming packet */
260f5fea3ddSPaul Traina 	if (ifp->if_bpf) {
26133841545SHajimu UMEMOTO 		if (ifp->if_bpf->bif_dlt == DLT_NULL) {
262437ffe18SSam Leffler 			u_int32_t af1 = af;	/* XXX beware sizeof(af) != 4 */
263df8bae1dSRodney W. Grimes 			/*
264437ffe18SSam Leffler 			 * We need to prepend the address family.
265df8bae1dSRodney W. Grimes 			 */
266437ffe18SSam Leffler 			bpf_mtap2(ifp->if_bpf, &af1, sizeof(af1), m);
267437ffe18SSam Leffler 		} else
268437ffe18SSam Leffler 			bpf_mtap(ifp->if_bpf, m);
269df8bae1dSRodney W. Grimes 	}
270df8bae1dSRodney W. Grimes 
271ed7509acSJulian Elischer 	/* Strip away media header */
2723a43ad8fSDoug Rabson 	if (hlen > 0) {
273fe81f64fSAndrew Gallatin 		m_adj(m, hlen);
274ebffbf8cSJake Burkholder #if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__)
2753a43ad8fSDoug Rabson 		/* The alpha doesn't like unaligned data.
2763a43ad8fSDoug Rabson 		 * We move data down in the first mbuf */
277fe81f64fSAndrew Gallatin 		if (mtod(m, vm_offset_t) & 3) {
27860ed92ddSMatt Jacob 			KASSERT(hlen >= 3, ("if_simloop: hlen too small"));
279fe81f64fSAndrew Gallatin 			bcopy(m->m_data,
280fe81f64fSAndrew Gallatin 			    (char *)(mtod(m, vm_offset_t)
281fe81f64fSAndrew Gallatin 				- (mtod(m, vm_offset_t) & 3)),
282fe81f64fSAndrew Gallatin 			    m->m_len);
283fe81f64fSAndrew Gallatin 			mtod(m,vm_offset_t) -= (mtod(m, vm_offset_t) & 3);
284fe81f64fSAndrew Gallatin 		}
2853a43ad8fSDoug Rabson #endif
2863a43ad8fSDoug Rabson 	}
287ed7509acSJulian Elischer 
28806a429a3SArchie Cobbs 	/* Deliver to upper layer protocol */
28906a429a3SArchie Cobbs 	switch (af) {
290df8bae1dSRodney W. Grimes #ifdef INET
291df8bae1dSRodney W. Grimes 	case AF_INET:
292df8bae1dSRodney W. Grimes 		isr = NETISR_IP;
293df8bae1dSRodney W. Grimes 		break;
294df8bae1dSRodney W. Grimes #endif
29582cd038dSYoshinobu Inoue #ifdef INET6
29682cd038dSYoshinobu Inoue 	case AF_INET6:
29782cd038dSYoshinobu Inoue 		m->m_flags |= M_LOOP;
29882cd038dSYoshinobu Inoue 		isr = NETISR_IPV6;
29982cd038dSYoshinobu Inoue 		break;
30082cd038dSYoshinobu Inoue #endif
301cc6a66f2SJulian Elischer #ifdef IPX
302cc6a66f2SJulian Elischer 	case AF_IPX:
303cc6a66f2SJulian Elischer 		isr = NETISR_IPX;
304cc6a66f2SJulian Elischer 		break;
305cc6a66f2SJulian Elischer #endif
306655929bfSJulian Elischer #ifdef NETATALK
307655929bfSJulian Elischer 	case AF_APPLETALK:
3081cafed39SJonathan Lemon 		isr = NETISR_ATALK2;
309655929bfSJulian Elischer 		break;
3108cdfefbdSPeter Wemm #endif
311df8bae1dSRodney W. Grimes 	default:
31206a429a3SArchie Cobbs 		printf("if_simloop: can't handle af=%d\n", af);
313df8bae1dSRodney W. Grimes 		m_freem(m);
314df8bae1dSRodney W. Grimes 		return (EAFNOSUPPORT);
315df8bae1dSRodney W. Grimes 	}
316df8bae1dSRodney W. Grimes 	ifp->if_ipackets++;
317df8bae1dSRodney W. Grimes 	ifp->if_ibytes += m->m_pkthdr.len;
3188dbc9c8bSSam Leffler 	netisr_queue(isr, m);
319df8bae1dSRodney W. Grimes 	return (0);
320df8bae1dSRodney W. Grimes }
321df8bae1dSRodney W. Grimes 
322df8bae1dSRodney W. Grimes /* ARGSUSED */
3233bda9f9bSPoul-Henning Kamp static void
3248071913dSRuslan Ermilov lortrequest(cmd, rt, info)
325df8bae1dSRodney W. Grimes 	int cmd;
326df8bae1dSRodney W. Grimes 	struct rtentry *rt;
3278071913dSRuslan Ermilov 	struct rt_addrinfo *info;
328df8bae1dSRodney W. Grimes {
329d1dd20beSSam Leffler 	RT_LOCK_ASSERT(rt);
33097d8d152SAndre Oppermann 	if (rt)
33197d8d152SAndre Oppermann 		rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu;
332df8bae1dSRodney W. Grimes }
333df8bae1dSRodney W. Grimes 
334df8bae1dSRodney W. Grimes /*
335df8bae1dSRodney W. Grimes  * Process an ioctl request.
336df8bae1dSRodney W. Grimes  */
337df8bae1dSRodney W. Grimes /* ARGSUSED */
338cfa1ca9dSYoshinobu Inoue int
339df8bae1dSRodney W. Grimes loioctl(ifp, cmd, data)
340df8bae1dSRodney W. Grimes 	register struct ifnet *ifp;
341ecbb00a2SDoug Rabson 	u_long cmd;
342df8bae1dSRodney W. Grimes 	caddr_t data;
343df8bae1dSRodney W. Grimes {
344df8bae1dSRodney W. Grimes 	register struct ifaddr *ifa;
34590fd8c38SDavid Greenman 	register struct ifreq *ifr = (struct ifreq *)data;
346df8bae1dSRodney W. Grimes 	register int error = 0;
347df8bae1dSRodney W. Grimes 
348df8bae1dSRodney W. Grimes 	switch (cmd) {
349df8bae1dSRodney W. Grimes 
350df8bae1dSRodney W. Grimes 	case SIOCSIFADDR:
351b8dc74a3SGarrett Wollman 		ifp->if_flags |= IFF_UP | IFF_RUNNING;
352df8bae1dSRodney W. Grimes 		ifa = (struct ifaddr *)data;
353df8bae1dSRodney W. Grimes 		ifa->ifa_rtrequest = lortrequest;
354df8bae1dSRodney W. Grimes 		/*
355df8bae1dSRodney W. Grimes 		 * Everything else is done at a higher level.
356df8bae1dSRodney W. Grimes 		 */
357df8bae1dSRodney W. Grimes 		break;
358df8bae1dSRodney W. Grimes 
359df8bae1dSRodney W. Grimes 	case SIOCADDMULTI:
360df8bae1dSRodney W. Grimes 	case SIOCDELMULTI:
361df8bae1dSRodney W. Grimes 		if (ifr == 0) {
362df8bae1dSRodney W. Grimes 			error = EAFNOSUPPORT;		/* XXX */
363df8bae1dSRodney W. Grimes 			break;
364df8bae1dSRodney W. Grimes 		}
365df8bae1dSRodney W. Grimes 		switch (ifr->ifr_addr.sa_family) {
366df8bae1dSRodney W. Grimes 
367df8bae1dSRodney W. Grimes #ifdef INET
368df8bae1dSRodney W. Grimes 		case AF_INET:
369df8bae1dSRodney W. Grimes 			break;
370df8bae1dSRodney W. Grimes #endif
37182cd038dSYoshinobu Inoue #ifdef INET6
37282cd038dSYoshinobu Inoue 		case AF_INET6:
37382cd038dSYoshinobu Inoue 			break;
37482cd038dSYoshinobu Inoue #endif
375df8bae1dSRodney W. Grimes 
376df8bae1dSRodney W. Grimes 		default:
377df8bae1dSRodney W. Grimes 			error = EAFNOSUPPORT;
378df8bae1dSRodney W. Grimes 			break;
379df8bae1dSRodney W. Grimes 		}
380df8bae1dSRodney W. Grimes 		break;
381df8bae1dSRodney W. Grimes 
38290fd8c38SDavid Greenman 	case SIOCSIFMTU:
38390fd8c38SDavid Greenman 		ifp->if_mtu = ifr->ifr_mtu;
38490fd8c38SDavid Greenman 		break;
38590fd8c38SDavid Greenman 
386ce42f1fbSPoul-Henning Kamp 	case SIOCSIFFLAGS:
387ce42f1fbSPoul-Henning Kamp 		break;
388ce42f1fbSPoul-Henning Kamp 
389df8bae1dSRodney W. Grimes 	default:
390df8bae1dSRodney W. Grimes 		error = EINVAL;
391df8bae1dSRodney W. Grimes 	}
392df8bae1dSRodney W. Grimes 	return (error);
393df8bae1dSRodney W. Grimes }
394