2001-11-13 02:49:33 +03:00
|
|
|
/* $NetBSD: if_loop.c,v 1.40 2001/11/12 23:49:40 lukem Exp $ */
|
1999-07-01 12:12:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-13 10:01:27 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)if_loop.c 8.2 (Berkeley) 1/9/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Loopback interface driver for protocol testing and timing.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 02:49:33 +03:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__KERNEL_RCSID(0, "$NetBSD: if_loop.c,v 1.40 2001/11/12 23:49:40 lukem Exp $");
|
|
|
|
|
1998-07-05 04:51:04 +04:00
|
|
|
#include "opt_inet.h"
|
|
|
|
#include "opt_atalk.h"
|
1998-07-05 08:37:35 +04:00
|
|
|
#include "opt_iso.h"
|
1998-07-05 10:49:00 +04:00
|
|
|
#include "opt_ns.h"
|
1998-07-05 04:51:04 +04:00
|
|
|
|
1993-12-17 03:10:06 +03:00
|
|
|
#include "bpfilter.h"
|
1993-05-07 13:27:52 +04:00
|
|
|
#include "loop.h"
|
|
|
|
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1994-05-13 10:01:27 +04:00
|
|
|
#include <sys/kernel.h>
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
1994-05-13 10:01:27 +04:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <net/netisr.h>
|
|
|
|
#include <net/route.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifdef INET
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef INET6
|
|
|
|
#ifndef INET
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet6/in6_var.h>
|
2000-02-06 15:49:37 +03:00
|
|
|
#include <netinet/ip6.h>
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef NS
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <netns/ns.h>
|
|
|
|
#include <netns/ns_if.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
1998-05-04 16:54:22 +04:00
|
|
|
#ifdef IPX
|
|
|
|
#include <netipx/ipx.h>
|
|
|
|
#include <netipx/ipx_if.h>
|
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef ISO
|
1993-12-17 03:10:06 +03:00
|
|
|
#include <netiso/iso.h>
|
|
|
|
#include <netiso/iso_var.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
1997-04-03 01:23:26 +04:00
|
|
|
#ifdef NETATALK
|
|
|
|
#include <netatalk/at.h>
|
|
|
|
#include <netatalk/at_var.h>
|
|
|
|
#endif
|
|
|
|
|
1993-03-25 03:27:49 +03:00
|
|
|
#if NBPFILTER > 0
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#endif
|
|
|
|
|
1999-07-01 12:12:45 +04:00
|
|
|
#if defined(LARGE_LOMTU)
|
|
|
|
#define LOMTU (131072 + MHLEN + MLEN)
|
|
|
|
#else
|
1997-08-14 05:12:35 +04:00
|
|
|
#define LOMTU (32768 + MHLEN + MLEN)
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-05-07 13:27:52 +04:00
|
|
|
struct ifnet loif[NLOOP];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-12-19 00:13:14 +03:00
|
|
|
#ifdef ALTQ
|
2000-12-18 22:18:33 +03:00
|
|
|
void lostart(struct ifnet *);
|
2000-12-19 00:13:14 +03:00
|
|
|
#endif
|
2000-12-18 22:18:33 +03:00
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1994-05-13 10:01:27 +04:00
|
|
|
loopattach(n)
|
|
|
|
int n;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:45:33 +04:00
|
|
|
int i;
|
|
|
|
struct ifnet *ifp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
for (i = 0; i < NLOOP; i++) {
|
1993-05-07 13:27:52 +04:00
|
|
|
ifp = &loif[i];
|
1996-10-13 06:10:01 +04:00
|
|
|
sprintf(ifp->if_xname, "lo%d", i);
|
1996-05-07 06:40:22 +04:00
|
|
|
ifp->if_softc = NULL;
|
1993-05-07 13:27:52 +04:00
|
|
|
ifp->if_mtu = LOMTU;
|
1994-05-13 10:01:27 +04:00
|
|
|
ifp->if_flags = IFF_LOOPBACK | IFF_MULTICAST;
|
1993-05-07 13:27:52 +04:00
|
|
|
ifp->if_ioctl = loioctl;
|
|
|
|
ifp->if_output = looutput;
|
2000-12-19 00:13:14 +03:00
|
|
|
#ifdef ALTQ
|
2000-12-18 22:18:33 +03:00
|
|
|
ifp->if_start = lostart;
|
2000-12-19 00:13:14 +03:00
|
|
|
#endif
|
1993-05-07 13:27:52 +04:00
|
|
|
ifp->if_type = IFT_LOOP;
|
|
|
|
ifp->if_hdrlen = 0;
|
|
|
|
ifp->if_addrlen = 0;
|
2000-12-18 22:44:33 +03:00
|
|
|
ifp->if_dlt = DLT_NULL;
|
2000-12-18 22:18:33 +03:00
|
|
|
IFQ_SET_READY(&ifp->if_snd);
|
1993-05-07 13:27:52 +04:00
|
|
|
if_attach(ifp);
|
2001-01-17 03:30:49 +03:00
|
|
|
if_alloc_sadl(ifp);
|
1993-03-25 03:27:49 +03:00
|
|
|
#if NBPFILTER > 0
|
2000-12-12 21:00:22 +03:00
|
|
|
bpfattach(ifp, DLT_NULL, sizeof(u_int));
|
1993-03-25 03:27:49 +03:00
|
|
|
#endif
|
1993-05-07 13:27:52 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
looutput(ifp, m, dst, rt)
|
|
|
|
struct ifnet *ifp;
|
2000-03-30 13:45:33 +04:00
|
|
|
struct mbuf *m;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct sockaddr *dst;
|
2000-03-30 13:45:33 +04:00
|
|
|
struct rtentry *rt;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int s, isr;
|
2000-03-30 13:45:33 +04:00
|
|
|
struct ifqueue *ifq = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if ((m->m_flags & M_PKTHDR) == 0)
|
1995-07-23 20:33:08 +04:00
|
|
|
panic("looutput: no header mbuf");
|
1993-03-25 03:27:49 +03:00
|
|
|
#if NBPFILTER > 0
|
1997-03-21 19:58:49 +03:00
|
|
|
if (ifp->if_bpf && (ifp->if_flags & IFF_LOOPBACK)) {
|
1993-03-25 03:27:49 +03:00
|
|
|
/*
|
|
|
|
* We need to prepend the address family as
|
|
|
|
* a four byte field. Cons up a dummy header
|
|
|
|
* to pacify bpf. This is safe because bpf
|
|
|
|
* will only read from the mbuf (i.e., it won't
|
|
|
|
* try to free it or keep a pointer to it).
|
|
|
|
*/
|
|
|
|
struct mbuf m0;
|
2001-02-20 10:58:16 +03:00
|
|
|
u_int32_t af = dst->sa_family;
|
1993-03-25 03:27:49 +03:00
|
|
|
|
|
|
|
m0.m_next = m;
|
|
|
|
m0.m_len = 4;
|
|
|
|
m0.m_data = (char *)⁡
|
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
bpf_mtap(ifp->if_bpf, &m0);
|
1993-03-25 03:27:49 +03:00
|
|
|
}
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
m->m_pkthdr.rcvif = ifp;
|
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
m_freem(m);
|
1994-05-13 10:01:27 +04:00
|
|
|
return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
|
|
|
|
rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
|
1999-12-13 18:17:17 +03:00
|
|
|
#ifndef PULLDOWN_TEST
|
1999-07-01 12:12:45 +04:00
|
|
|
/*
|
|
|
|
* KAME requires that the packet to be contiguous on the
|
|
|
|
* mbuf. We need to make that sure.
|
|
|
|
* this kind of code should be avoided.
|
1999-12-13 18:17:17 +03:00
|
|
|
* XXX other conditions to avoid running this part?
|
1999-07-01 12:12:45 +04:00
|
|
|
*/
|
1999-12-15 09:16:05 +03:00
|
|
|
if (m->m_len != m->m_pkthdr.len) {
|
|
|
|
struct mbuf *n = NULL;
|
|
|
|
int maxlen;
|
1999-07-01 12:12:45 +04:00
|
|
|
|
|
|
|
MGETHDR(n, M_DONTWAIT, MT_HEADER);
|
1999-12-15 09:16:05 +03:00
|
|
|
maxlen = MHLEN;
|
|
|
|
if (n)
|
|
|
|
M_COPY_PKTHDR(n, m);
|
|
|
|
if (n && m->m_pkthdr.len > maxlen) {
|
1999-12-13 18:17:17 +03:00
|
|
|
MCLGET(n, M_DONTWAIT);
|
1999-12-15 09:16:05 +03:00
|
|
|
maxlen = MCLBYTES;
|
1999-12-13 18:17:17 +03:00
|
|
|
if ((n->m_flags & M_EXT) == 0) {
|
|
|
|
m_free(n);
|
|
|
|
n = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!n) {
|
|
|
|
printf("looutput: mbuf allocation failed\n");
|
|
|
|
m_freem(m);
|
|
|
|
return ENOBUFS;
|
1999-07-01 12:12:45 +04:00
|
|
|
}
|
|
|
|
|
1999-12-15 09:16:05 +03:00
|
|
|
if (m->m_pkthdr.len <= maxlen) {
|
1999-12-13 18:17:17 +03:00
|
|
|
m_copydata(m, 0, m->m_pkthdr.len, mtod(n, caddr_t));
|
|
|
|
n->m_len = m->m_pkthdr.len;
|
|
|
|
n->m_next = NULL;
|
|
|
|
m_freem(m);
|
|
|
|
} else {
|
1999-12-15 09:16:05 +03:00
|
|
|
m_copydata(m, 0, maxlen, mtod(n, caddr_t));
|
|
|
|
m_adj(m, maxlen);
|
|
|
|
n->m_len = maxlen;
|
1999-12-13 18:17:17 +03:00
|
|
|
n->m_next = m;
|
|
|
|
m->m_flags &= ~M_PKTHDR;
|
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
m = n;
|
|
|
|
}
|
|
|
|
#if 0
|
1999-12-13 18:17:17 +03:00
|
|
|
if (m && m->m_next != NULL) {
|
1999-07-01 12:12:45 +04:00
|
|
|
printf("loop: not contiguous...\n");
|
1999-12-13 18:17:17 +03:00
|
|
|
m_freem(m);
|
|
|
|
return ENOBUFS;
|
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
ifp->if_opackets++;
|
|
|
|
ifp->if_obytes += m->m_pkthdr.len;
|
2000-12-18 22:18:33 +03:00
|
|
|
|
|
|
|
#ifdef ALTQ
|
|
|
|
/*
|
|
|
|
* ALTQ on the loopback interface is just for debugging. It's
|
|
|
|
* used only for loopback interfaces, not for a simplex interface.
|
|
|
|
*/
|
|
|
|
if ((ALTQ_IS_ENABLED(&ifp->if_snd) || TBR_IS_ENABLED(&ifp->if_snd)) &&
|
|
|
|
ifp->if_start == lostart) {
|
|
|
|
struct altq_pktattr pktattr;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the queueing discipline needs packet classification,
|
|
|
|
* do it before prepending the link headers.
|
|
|
|
*/
|
|
|
|
IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family, &pktattr);
|
|
|
|
|
|
|
|
M_PREPEND(m, sizeof(uint32_t), M_DONTWAIT);
|
|
|
|
if (m == NULL)
|
|
|
|
return (ENOBUFS);
|
|
|
|
*(mtod(m, uint32_t *)) = dst->sa_family;
|
|
|
|
|
2001-04-14 03:29:55 +04:00
|
|
|
s = splnet();
|
2000-12-18 22:18:33 +03:00
|
|
|
IFQ_ENQUEUE(&ifp->if_snd, m, &pktattr, error);
|
|
|
|
(*ifp->if_start)(ifp);
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
#endif /* ALTQ */
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
switch (dst->sa_family) {
|
|
|
|
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
ifq = &ipintrq;
|
|
|
|
isr = NETISR_IP;
|
|
|
|
break;
|
|
|
|
#endif
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
m->m_flags |= M_LOOP;
|
|
|
|
ifq = &ip6intrq;
|
|
|
|
isr = NETISR_IPV6;
|
|
|
|
break;
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef NS
|
|
|
|
case AF_NS:
|
|
|
|
ifq = &nsintrq;
|
|
|
|
isr = NETISR_NS;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef ISO
|
|
|
|
case AF_ISO:
|
|
|
|
ifq = &clnlintrq;
|
|
|
|
isr = NETISR_ISO;
|
|
|
|
break;
|
1997-04-03 01:23:26 +04:00
|
|
|
#endif
|
1998-05-04 16:54:22 +04:00
|
|
|
#ifdef IPX
|
|
|
|
case AF_IPX:
|
|
|
|
ifq = &ipxintrq;
|
|
|
|
isr = NETISR_IPX;
|
|
|
|
break;
|
|
|
|
#endif
|
1997-04-03 01:23:26 +04:00
|
|
|
#ifdef NETATALK
|
|
|
|
case AF_APPLETALK:
|
|
|
|
ifq = &atintrq2;
|
|
|
|
isr = NETISR_ATALK;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
default:
|
1996-10-13 06:10:01 +04:00
|
|
|
printf("%s: can't handle af%d\n", ifp->if_xname,
|
1996-10-11 02:59:41 +04:00
|
|
|
dst->sa_family);
|
1993-03-21 12:45:37 +03:00
|
|
|
m_freem(m);
|
|
|
|
return (EAFNOSUPPORT);
|
|
|
|
}
|
2001-04-14 03:29:55 +04:00
|
|
|
s = splnet();
|
1993-03-21 12:45:37 +03:00
|
|
|
if (IF_QFULL(ifq)) {
|
|
|
|
IF_DROP(ifq);
|
|
|
|
m_freem(m);
|
|
|
|
splx(s);
|
|
|
|
return (ENOBUFS);
|
|
|
|
}
|
|
|
|
IF_ENQUEUE(ifq, m);
|
|
|
|
schednetisr(isr);
|
|
|
|
ifp->if_ipackets++;
|
|
|
|
ifp->if_ibytes += m->m_pkthdr.len;
|
|
|
|
splx(s);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-12-18 22:18:33 +03:00
|
|
|
#ifdef ALTQ
|
|
|
|
void
|
|
|
|
lostart(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct ifqueue *ifq;
|
|
|
|
struct mbuf *m;
|
|
|
|
uint32_t af;
|
|
|
|
int s, isr;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
IFQ_DEQUEUE(&ifp->if_snd, m);
|
|
|
|
if (m == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
af = *(mtod(m, uint32_t *));
|
|
|
|
m_adj(m, sizeof(uint32_t));
|
|
|
|
|
|
|
|
switch (af) {
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
ifq = &ipintrq;
|
|
|
|
isr = NETISR_IP;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
m->m_flags |= M_LOOP;
|
|
|
|
ifq = &ip6intrq;
|
|
|
|
isr = NETISR_IPV6;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef IPX
|
|
|
|
case AF_IPX:
|
|
|
|
ifq = &ipxintrq;
|
|
|
|
isr = NETISR_IPX;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef NS
|
|
|
|
case AF_NS:
|
|
|
|
ifq = &nsintrq;
|
|
|
|
isr = NETISR_NS;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef ISO
|
|
|
|
case AF_ISO:
|
|
|
|
ifq = &clnlintrq;
|
|
|
|
isr = NETISR_ISO;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef NETATALK
|
|
|
|
case AF_APPLETALK:
|
|
|
|
ifq = &atintrq2;
|
|
|
|
isr = NETISR_ATALK;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
printf("%s: can't handle af%d\n", ifp->if_xname, af);
|
|
|
|
m_freem(m);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-04-14 03:29:55 +04:00
|
|
|
s = splnet();
|
2000-12-18 22:18:33 +03:00
|
|
|
if (IF_QFULL(ifq)) {
|
|
|
|
IF_DROP(ifq);
|
|
|
|
splx(s);
|
|
|
|
m_freem(m);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
IF_ENQUEUE(ifq, m);
|
|
|
|
schednetisr(isr);
|
|
|
|
ifp->if_ipackets++;
|
|
|
|
ifp->if_ibytes += m->m_pkthdr.len;
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* ALTQ */
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1994-05-13 10:01:27 +04:00
|
|
|
void
|
2001-01-17 07:05:41 +03:00
|
|
|
lortrequest(cmd, rt, info)
|
1994-05-13 10:01:27 +04:00
|
|
|
int cmd;
|
|
|
|
struct rtentry *rt;
|
2001-01-17 07:05:41 +03:00
|
|
|
struct rt_addrinfo *info;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-05-13 10:01:27 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (rt)
|
|
|
|
rt->rt_rmx.rmx_mtu = LOMTU;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process an ioctl request.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-05-13 10:01:27 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
loioctl(ifp, cmd, data)
|
2000-03-30 13:45:33 +04:00
|
|
|
struct ifnet *ifp;
|
1994-10-31 00:43:03 +03:00
|
|
|
u_long cmd;
|
1993-03-21 12:45:37 +03:00
|
|
|
caddr_t data;
|
|
|
|
{
|
2000-03-30 13:45:33 +04:00
|
|
|
struct ifaddr *ifa;
|
|
|
|
struct ifreq *ifr;
|
|
|
|
int error = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
|
|
|
|
case SIOCSIFADDR:
|
|
|
|
ifp->if_flags |= IFF_UP;
|
|
|
|
ifa = (struct ifaddr *)data;
|
1999-07-01 12:12:45 +04:00
|
|
|
if (ifa != 0 /*&& ifa->ifa_addr->sa_family == AF_ISO*/)
|
1993-03-21 12:45:37 +03:00
|
|
|
ifa->ifa_rtrequest = lortrequest;
|
|
|
|
/*
|
|
|
|
* Everything else is done at a higher level.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
1993-12-06 07:17:38 +03:00
|
|
|
case SIOCADDMULTI:
|
|
|
|
case SIOCDELMULTI:
|
|
|
|
ifr = (struct ifreq *)data;
|
|
|
|
if (ifr == 0) {
|
|
|
|
error = EAFNOSUPPORT; /* XXX */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (ifr->ifr_addr.sa_family) {
|
|
|
|
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
break;
|
|
|
|
#endif
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
break;
|
|
|
|
#endif
|
1994-05-13 10:01:27 +04:00
|
|
|
|
1993-12-06 07:17:38 +03:00
|
|
|
default:
|
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
1994-05-13 10:01:27 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
|
|
|
error = EINVAL;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|