Home | History | Annotate | Line # | Download | only in dev
if_veth.c revision 1.6
      1 /* $NetBSD: if_veth.c,v 1.6 2016/02/09 08:32:10 ozaki-r Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2011 Jared D. McNeill <jmcneill (at) invisible.ca>
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  * POSSIBILITY OF SUCH DAMAGE.
     27  */
     28 
     29 #include <sys/cdefs.h>
     30 __KERNEL_RCSID(0, "$NetBSD: if_veth.c,v 1.6 2016/02/09 08:32:10 ozaki-r Exp $");
     31 
     32 #include <sys/param.h>
     33 #include <sys/proc.h>
     34 #include <sys/systm.h>
     35 #include <sys/kernel.h>
     36 #include <sys/mbuf.h>
     37 #include <sys/socket.h>
     38 #include <sys/device.h>
     39 
     40 #include <net/if.h>
     41 #include <net/if_ether.h>
     42 #include <net/if_media.h>
     43 
     44 #include <net/bpf.h>
     45 
     46 #include <machine/mainbus.h>
     47 #include <machine/thunk.h>
     48 
     49 static int	veth_match(device_t, cfdata_t, void *);
     50 static void	veth_attach(device_t, device_t, void *);
     51 static bool	veth_shutdown(device_t, int);
     52 
     53 static int	veth_init(struct ifnet *);
     54 static void	veth_start(struct ifnet *);
     55 static void	veth_stop(struct ifnet *, int);
     56 static void	veth_watchdog(struct ifnet *);
     57 static int	veth_ioctl(struct ifnet *, u_long, void *);
     58 
     59 static int	veth_rx(void *);
     60 static void	veth_softrx(void *);
     61 static void	veth_softtx(void *);
     62 
     63 static int	veth_ifmedia_change(struct ifnet *);
     64 static void	veth_ifmedia_status(struct ifnet *, struct ifmediareq *);
     65 
     66 #ifdef VETH_DEBUG
     67 #define vethprintf printf
     68 #else
     69 static inline void vethprintf(const char *fmt, ...) { }
     70 #endif
     71 
     72 struct veth_softc {
     73 	device_t		sc_dev;
     74 	struct ethercom		sc_ec;
     75 	struct ifmedia		sc_ifmedia;
     76 	int			sc_tapfd;
     77 	uint8_t			sc_eaddr[ETHER_ADDR_LEN];
     78 	uint8_t			sc_rx_buf[4096 + 65536];
     79 	uint8_t			sc_tx_buf[4096 + 65536];
     80 	void			*sc_rx_ih;
     81 	void			*sc_rx_intr;
     82 	void			*sc_tx_intr;
     83 };
     84 
     85 CFATTACH_DECL_NEW(veth, sizeof(struct veth_softc),
     86     veth_match, veth_attach, NULL, NULL);
     87 
     88 static int
     89 veth_match(device_t parent, cfdata_t match, void *opaque)
     90 {
     91 	struct thunkbus_attach_args *taa = opaque;
     92 
     93 	if (taa->taa_type != THUNKBUS_TYPE_VETH)
     94 		return 0;
     95 
     96 	return 1;
     97 }
     98 
     99 static void
    100 veth_attach(device_t parent, device_t self, void *opaque)
    101 {
    102 	struct veth_softc *sc = device_private(self);
    103 	struct thunkbus_attach_args *taa = opaque;
    104 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    105 
    106 	sc->sc_dev = self;
    107 
    108 	pmf_device_register1(self, NULL, NULL, veth_shutdown);
    109 
    110 	sc->sc_tapfd = thunk_open_tap(taa->u.veth.device);
    111 	if (sc->sc_tapfd == -1) {
    112 		aprint_error(": couldn't open %s: %d\n",
    113 		    taa->u.veth.device, thunk_geterrno());
    114 		return;
    115 	}
    116 	if (ether_aton_r(sc->sc_eaddr, sizeof(sc->sc_eaddr),
    117 	    taa->u.veth.eaddr) != 0) {
    118 		aprint_error(": couldn't parse hw address '%s'\n",
    119 		    taa->u.veth.eaddr);
    120 		return;
    121 	}
    122 
    123 	aprint_naive("\n");
    124 	aprint_normal(": Virtual Ethernet (device = %s)\n", taa->u.veth.device);
    125 
    126 	aprint_normal_dev(self, "Ethernet address %s\n",
    127 	    ether_sprintf(sc->sc_eaddr));
    128 
    129 	strlcpy(ifp->if_xname, device_xname(self), IFNAMSIZ);
    130 	ifp->if_softc = sc;
    131 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    132 	ifp->if_ioctl = veth_ioctl;
    133 	ifp->if_watchdog = veth_watchdog;
    134 	ifp->if_start = veth_start;
    135 	ifp->if_init = veth_init;
    136 	ifp->if_stop = veth_stop;
    137 	IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
    138 	IFQ_SET_READY(&ifq->if_snd);
    139 
    140 	if_initialize(ifp);
    141 	ether_ifattach(ifp, sc->sc_eaddr);
    142 	if_register(ifp);
    143 
    144 	ifmedia_init(&sc->sc_ifmedia, 0,
    145 	    veth_ifmedia_change,
    146 	    veth_ifmedia_status);
    147 	ifmedia_add(&sc->sc_ifmedia, IFM_ETHER|IFM_100_TX, 0, NULL);
    148 	ifmedia_set(&sc->sc_ifmedia, IFM_ETHER|IFM_100_TX);
    149 
    150 	sc->sc_rx_intr = softint_establish(SOFTINT_NET, veth_softrx, sc);
    151 	if (sc->sc_rx_intr == NULL)
    152 		panic("couldn't establish veth rx softint");
    153 	sc->sc_tx_intr = softint_establish(SOFTINT_NET, veth_softtx, sc);
    154 	if (sc->sc_tx_intr == NULL)
    155 		panic("couldn't establish veth tx softint");
    156 
    157 	thunk_setown(sc->sc_tapfd);
    158 
    159 	sc->sc_rx_ih = sigio_intr_establish(veth_rx, sc);
    160 	if (sc->sc_rx_ih == NULL)
    161 		panic("couldn't establish veth rx interrupt");
    162 }
    163 
    164 static bool
    165 veth_shutdown(device_t self, int flags)
    166 {
    167 	struct veth_softc *sc = device_private(self);
    168 
    169 	if (sc->sc_tapfd != -1)
    170 		thunk_close(sc->sc_tapfd);
    171 
    172 	return true;
    173 }
    174 
    175 static int
    176 veth_init(struct ifnet *ifp)
    177 {
    178 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    179 
    180 	veth_stop(ifp, 0);
    181 
    182 	ifp->if_flags |= IFF_RUNNING;
    183 	ifp->if_flags &= ~IFF_OACTIVE;
    184 
    185 	return 0;
    186 }
    187 
    188 static int
    189 veth_rx(void *priv)
    190 {
    191 	struct veth_softc *sc = priv;
    192 
    193 	softint_schedule(sc->sc_rx_intr);
    194 	return 0;
    195 }
    196 
    197 static void
    198 veth_softrx(void *priv)
    199 {
    200 	struct veth_softc *sc = priv;
    201 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    202 	struct mbuf *m;
    203 	ssize_t len;
    204 	int s, avail;
    205 
    206 	for (;;) {
    207 		avail = thunk_pollin_tap(sc->sc_tapfd, 0);
    208 		if (avail == 0)
    209 			break;
    210 
    211 		len = thunk_read(sc->sc_tapfd, sc->sc_rx_buf,
    212 		    min(avail, sizeof(sc->sc_rx_buf)));
    213 		vethprintf("%s: read returned %d\n", __func__, len);
    214 		if (len == -1)
    215 			panic("read() from tap failed");
    216 
    217 		MGETHDR(m, M_DONTWAIT, MT_DATA);
    218 		if (m == NULL) {
    219 			vethprintf("MGETHDR failed (input error)\n");
    220 			++ifp->if_ierrors;
    221 			continue;
    222 		}
    223 		if (len > MHLEN) {
    224 			MCLGET(m, M_DONTWAIT);
    225 			if ((m->m_flags & M_EXT) == 0) {
    226 				m_freem(m);
    227 				++ifp->if_ierrors;
    228 				vethprintf("M_EXT not set (input error)\n");
    229 				continue;
    230 			}
    231 		}
    232 		m->m_pkthdr.rcvif = ifp;
    233 		m->m_pkthdr.len = m->m_len = len;
    234 		memcpy(mtod(m, void *), sc->sc_rx_buf, len);
    235 		++ifp->if_ipackets;
    236 
    237 		bpf_mtap(ifp, m);
    238 
    239 		s = splnet();
    240 		if_input(ifp, m);
    241 		splx(s);
    242 	}
    243 }
    244 
    245 static void
    246 veth_softtx(void *priv)
    247 {
    248 	struct veth_softc *sc = priv;
    249 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    250 	int s;
    251 
    252 	if (ifp->if_flags & IFF_OACTIVE) {
    253 		if (thunk_pollout_tap(sc->sc_tapfd, 0) == 1)
    254 			ifp->if_flags &= ~IFF_OACTIVE;
    255 	}
    256 
    257 	s = splnet();
    258 	veth_start(ifp);
    259 	splx(s);
    260 }
    261 
    262 static void
    263 veth_start(struct ifnet *ifp)
    264 {
    265 	struct veth_softc *sc = ifp->if_softc;
    266 	struct mbuf *m0;
    267 	ssize_t len;
    268 
    269 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    270 
    271 	if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
    272 		return;
    273 
    274 	for (;;) {
    275 		IFQ_POLL(&ifp->if_snd, m0);
    276 		if (m0 == NULL)
    277 			break;
    278 
    279 		if (thunk_pollout_tap(sc->sc_tapfd, 0) != 1) {
    280 			printf("queue full\n");
    281 			ifp->if_flags |= IFF_OACTIVE;
    282 			break;
    283 		}
    284 
    285 		IFQ_DEQUEUE(&ifp->if_snd, m0);
    286 		bpf_mtap(ifp, m0);
    287 
    288 		m_copydata(m0, 0, m0->m_pkthdr.len, sc->sc_tx_buf);
    289 
    290 		vethprintf("write %d bytes...\n", m0->m_pkthdr.len);
    291 		len = thunk_write(sc->sc_tapfd, sc->sc_tx_buf,
    292 		    m0->m_pkthdr.len);
    293 		vethprintf("write returned %d\n", len);
    294 		if (len > 0)
    295 			++ifp->if_opackets;
    296 		else
    297 			++ifp->if_oerrors;
    298 		m_freem(m0);
    299 	}
    300 }
    301 
    302 static void
    303 veth_stop(struct ifnet *ifp, int disable)
    304 {
    305 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    306 	ifp->if_timer = 0;
    307 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
    308 }
    309 
    310 static void
    311 veth_watchdog(struct ifnet *ifp)
    312 {
    313 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    314 	++ifp->if_oerrors;
    315 	veth_init(ifp);
    316 }
    317 
    318 static int
    319 veth_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    320 {
    321 	struct veth_softc *sc = ifp->if_softc;
    322 	struct ifreq *ifr;
    323 	int s, error;
    324 
    325 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    326 
    327 	s = splnet();
    328 
    329 	switch (cmd) {
    330 	case SIOCSIFMEDIA:
    331 	case SIOCGIFMEDIA:
    332 		ifr = data;
    333 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_ifmedia, cmd);
    334 		break;
    335 	case SIOCADDMULTI:
    336 	case SIOCDELMULTI:
    337 		if ((error = ether_ioctl(ifp, cmd, data)) == ENETRESET) {
    338 			if (ifp->if_flags & IFF_RUNNING) {
    339 				veth_init(ifp);
    340 			}
    341 			error = 0;
    342 		}
    343 		break;
    344 	default:
    345 		error = ether_ioctl(ifp, cmd, data);
    346 		break;
    347 	}
    348 
    349 	splx(s);
    350 	return error;
    351 }
    352 
    353 static int
    354 veth_ifmedia_change(struct ifnet *ifp)
    355 {
    356 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    357 	return 0;
    358 }
    359 
    360 static void
    361 veth_ifmedia_status(struct ifnet *ifp, struct ifmediareq *req)
    362 {
    363 	vethprintf("%s: %s flags=%x\n", __func__, ifp->if_xname, ifp->if_flags);
    364 	req->ifm_status |= IFM_ACTIVE | IFM_AVALID;
    365 	req->ifm_active = IFM_100_TX | IFM_FDX | IFM_ETHER;
    366 }
    367