4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009 Red Hat, Inc.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
30 #include <sys/ioctl.h>
32 #include <sys/socket.h>
38 #include "monitor/monitor.h"
39 #include "sysemu/sysemu.h"
40 #include "qapi/error.h"
41 #include "qemu-common.h"
42 #include "qemu/cutils.h"
43 #include "qemu/error-report.h"
44 #include "qemu/main-loop.h"
45 #include "qemu/sockets.h"
49 #include "net/vhost_net.h"
51 typedef struct TAPState {
54 char down_script[1024];
55 char down_script_arg[128];
56 uint8_t buf[NET_BUFSIZE];
62 VHostNetState *vhost_net;
63 unsigned host_vnet_hdr_len;
67 static void launch_script(const char *setup_script, const char *ifname,
68 int fd, Error **errp);
70 static void tap_send(void *opaque);
71 static void tap_writable(void *opaque);
73 static void tap_update_fd_handler(TAPState *s)
75 qemu_set_fd_handler(s->fd,
76 s->read_poll && s->enabled ? tap_send : NULL,
77 s->write_poll && s->enabled ? tap_writable : NULL,
81 static void tap_read_poll(TAPState *s, bool enable)
83 s->read_poll = enable;
84 tap_update_fd_handler(s);
87 static void tap_write_poll(TAPState *s, bool enable)
89 s->write_poll = enable;
90 tap_update_fd_handler(s);
93 static void tap_writable(void *opaque)
97 tap_write_poll(s, false);
99 qemu_flush_queued_packets(&s->nc);
102 static ssize_t tap_write_packet(TAPState *s, const struct iovec *iov, int iovcnt)
107 len = writev(s->fd, iov, iovcnt);
108 } while (len == -1 && errno == EINTR);
110 if (len == -1 && errno == EAGAIN) {
111 tap_write_poll(s, true);
118 static ssize_t tap_receive_iov(NetClientState *nc, const struct iovec *iov,
121 TAPState *s = DO_UPCAST(TAPState, nc, nc);
122 const struct iovec *iovp = iov;
123 struct iovec iov_copy[iovcnt + 1];
124 struct virtio_net_hdr_mrg_rxbuf hdr = { };
126 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
127 iov_copy[0].iov_base = &hdr;
128 iov_copy[0].iov_len = s->host_vnet_hdr_len;
129 memcpy(&iov_copy[1], iov, iovcnt * sizeof(*iov));
134 return tap_write_packet(s, iovp, iovcnt);
137 static ssize_t tap_receive_raw(NetClientState *nc, const uint8_t *buf, size_t size)
139 TAPState *s = DO_UPCAST(TAPState, nc, nc);
142 struct virtio_net_hdr_mrg_rxbuf hdr = { };
144 if (s->host_vnet_hdr_len) {
145 iov[iovcnt].iov_base = &hdr;
146 iov[iovcnt].iov_len = s->host_vnet_hdr_len;
150 iov[iovcnt].iov_base = (char *)buf;
151 iov[iovcnt].iov_len = size;
154 return tap_write_packet(s, iov, iovcnt);
157 static ssize_t tap_receive(NetClientState *nc, const uint8_t *buf, size_t size)
159 TAPState *s = DO_UPCAST(TAPState, nc, nc);
162 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
163 return tap_receive_raw(nc, buf, size);
166 iov[0].iov_base = (char *)buf;
167 iov[0].iov_len = size;
169 return tap_write_packet(s, iov, 1);
173 ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
175 return read(tapfd, buf, maxlen);
179 static void tap_send_completed(NetClientState *nc, ssize_t len)
181 TAPState *s = DO_UPCAST(TAPState, nc, nc);
182 tap_read_poll(s, true);
185 static void tap_send(void *opaque)
187 TAPState *s = opaque;
192 uint8_t *buf = s->buf;
193 uint8_t min_pkt[ETH_ZLEN];
194 size_t min_pktsz = sizeof(min_pkt);
196 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
201 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
202 buf += s->host_vnet_hdr_len;
203 size -= s->host_vnet_hdr_len;
206 if (!s->nc.peer->do_not_pad) {
207 if (eth_pad_short_frame(min_pkt, &min_pktsz, buf, size)) {
213 size = qemu_send_packet_async(&s->nc, buf, size, tap_send_completed);
215 tap_read_poll(s, false);
217 } else if (size < 0) {
222 * When the host keeps receiving more packets while tap_send() is
223 * running we can hog the QEMU global mutex. Limit the number of
224 * packets that are processed per tap_send() callback to prevent
225 * stalling the guest.
234 static bool tap_has_ufo(NetClientState *nc)
236 TAPState *s = DO_UPCAST(TAPState, nc, nc);
238 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
243 static bool tap_has_vnet_hdr(NetClientState *nc)
245 TAPState *s = DO_UPCAST(TAPState, nc, nc);
247 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
249 return !!s->host_vnet_hdr_len;
252 static bool tap_has_vnet_hdr_len(NetClientState *nc, int len)
254 TAPState *s = DO_UPCAST(TAPState, nc, nc);
256 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
258 return !!tap_probe_vnet_hdr_len(s->fd, len);
261 static void tap_set_vnet_hdr_len(NetClientState *nc, int len)
263 TAPState *s = DO_UPCAST(TAPState, nc, nc);
265 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
266 assert(len == sizeof(struct virtio_net_hdr_mrg_rxbuf) ||
267 len == sizeof(struct virtio_net_hdr) ||
268 len == sizeof(struct virtio_net_hdr_v1_hash));
270 tap_fd_set_vnet_hdr_len(s->fd, len);
271 s->host_vnet_hdr_len = len;
274 static void tap_using_vnet_hdr(NetClientState *nc, bool using_vnet_hdr)
276 TAPState *s = DO_UPCAST(TAPState, nc, nc);
278 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
279 assert(!!s->host_vnet_hdr_len == using_vnet_hdr);
281 s->using_vnet_hdr = using_vnet_hdr;
284 static int tap_set_vnet_le(NetClientState *nc, bool is_le)
286 TAPState *s = DO_UPCAST(TAPState, nc, nc);
288 return tap_fd_set_vnet_le(s->fd, is_le);
291 static int tap_set_vnet_be(NetClientState *nc, bool is_be)
293 TAPState *s = DO_UPCAST(TAPState, nc, nc);
295 return tap_fd_set_vnet_be(s->fd, is_be);
298 static void tap_set_offload(NetClientState *nc, int csum, int tso4,
299 int tso6, int ecn, int ufo)
301 TAPState *s = DO_UPCAST(TAPState, nc, nc);
306 tap_fd_set_offload(s->fd, csum, tso4, tso6, ecn, ufo);
309 static void tap_exit_notify(Notifier *notifier, void *data)
311 TAPState *s = container_of(notifier, TAPState, exit);
314 if (s->down_script[0]) {
315 launch_script(s->down_script, s->down_script_arg, s->fd, &err);
317 error_report_err(err);
322 static void tap_cleanup(NetClientState *nc)
324 TAPState *s = DO_UPCAST(TAPState, nc, nc);
327 vhost_net_cleanup(s->vhost_net);
328 g_free(s->vhost_net);
332 qemu_purge_queued_packets(nc);
334 tap_exit_notify(&s->exit, NULL);
335 qemu_remove_exit_notifier(&s->exit);
337 tap_read_poll(s, false);
338 tap_write_poll(s, false);
343 static void tap_poll(NetClientState *nc, bool enable)
345 TAPState *s = DO_UPCAST(TAPState, nc, nc);
346 tap_read_poll(s, enable);
347 tap_write_poll(s, enable);
350 int tap_get_fd(NetClientState *nc)
352 TAPState *s = DO_UPCAST(TAPState, nc, nc);
353 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
359 static NetClientInfo net_tap_info = {
360 .type = NET_CLIENT_DRIVER_TAP,
361 .size = sizeof(TAPState),
362 .receive = tap_receive,
363 .receive_raw = tap_receive_raw,
364 .receive_iov = tap_receive_iov,
366 .cleanup = tap_cleanup,
367 .has_ufo = tap_has_ufo,
368 .has_vnet_hdr = tap_has_vnet_hdr,
369 .has_vnet_hdr_len = tap_has_vnet_hdr_len,
370 .using_vnet_hdr = tap_using_vnet_hdr,
371 .set_offload = tap_set_offload,
372 .set_vnet_hdr_len = tap_set_vnet_hdr_len,
373 .set_vnet_le = tap_set_vnet_le,
374 .set_vnet_be = tap_set_vnet_be,
377 static TAPState *net_tap_fd_init(NetClientState *peer,
386 nc = qemu_new_net_client(&net_tap_info, peer, model, name);
388 s = DO_UPCAST(TAPState, nc, nc);
391 s->host_vnet_hdr_len = vnet_hdr ? sizeof(struct virtio_net_hdr) : 0;
392 s->using_vnet_hdr = false;
393 s->has_ufo = tap_probe_has_ufo(s->fd);
395 tap_set_offload(&s->nc, 0, 0, 0, 0, 0);
397 * Make sure host header length is set correctly in tap:
398 * it might have been modified by another instance of qemu.
400 if (tap_probe_vnet_hdr_len(s->fd, s->host_vnet_hdr_len)) {
401 tap_fd_set_vnet_hdr_len(s->fd, s->host_vnet_hdr_len);
403 tap_read_poll(s, true);
406 s->exit.notify = tap_exit_notify;
407 qemu_add_exit_notifier(&s->exit);
412 static void launch_script(const char *setup_script, const char *ifname,
413 int fd, Error **errp)
419 /* try to launch network script */
422 error_setg_errno(errp, errno, "could not launch network script %s",
427 int open_max = sysconf(_SC_OPEN_MAX), i;
429 for (i = 3; i < open_max; i++) {
435 *parg++ = (char *)setup_script;
436 *parg++ = (char *)ifname;
438 execv(setup_script, args);
441 while (waitpid(pid, &status, 0) != pid) {
445 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
448 error_setg(errp, "network script %s failed with status %d",
449 setup_script, status);
453 static int recv_fd(int c)
456 uint8_t msgbuf[CMSG_SPACE(sizeof(fd))];
457 struct msghdr msg = {
458 .msg_control = msgbuf,
459 .msg_controllen = sizeof(msgbuf),
461 struct cmsghdr *cmsg;
466 cmsg = CMSG_FIRSTHDR(&msg);
467 cmsg->cmsg_level = SOL_SOCKET;
468 cmsg->cmsg_type = SCM_RIGHTS;
469 cmsg->cmsg_len = CMSG_LEN(sizeof(fd));
470 msg.msg_controllen = cmsg->cmsg_len;
473 iov.iov_len = sizeof(req);
478 len = recvmsg(c, &msg, 0);
480 memcpy(&fd, CMSG_DATA(cmsg), sizeof(fd));
487 static int net_bridge_run_helper(const char *helper, const char *bridge,
490 sigset_t oldmask, mask;
491 g_autofree char *default_helper = NULL;
498 sigaddset(&mask, SIGCHLD);
499 sigprocmask(SIG_BLOCK, &mask, &oldmask);
502 helper = default_helper = get_relocated_path(DEFAULT_BRIDGE_HELPER);
505 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) == -1) {
506 error_setg_errno(errp, errno, "socketpair() failed");
510 /* try to launch bridge helper */
513 error_setg_errno(errp, errno, "Can't fork bridge helper");
517 int open_max = sysconf(_SC_OPEN_MAX), i;
520 char *helper_cmd = NULL;
522 for (i = 3; i < open_max; i++) {
528 fd_buf = g_strdup_printf("%s%d", "--fd=", sv[1]);
530 if (strrchr(helper, ' ') || strrchr(helper, '\t')) {
531 /* assume helper is a command */
533 if (strstr(helper, "--br=") == NULL) {
534 br_buf = g_strdup_printf("%s%s", "--br=", bridge);
537 helper_cmd = g_strdup_printf("%s %s %s %s", helper,
538 "--use-vnet", fd_buf, br_buf ? br_buf : "");
541 *parg++ = (char *)"sh";
542 *parg++ = (char *)"-c";
543 *parg++ = helper_cmd;
546 execv("/bin/sh", args);
549 /* assume helper is just the executable path name */
551 br_buf = g_strdup_printf("%s%s", "--br=", bridge);
554 *parg++ = (char *)helper;
555 *parg++ = (char *)"--use-vnet";
574 } while (fd == -1 && errno == EINTR);
579 while (waitpid(pid, &status, 0) != pid) {
582 sigprocmask(SIG_SETMASK, &oldmask, NULL);
584 error_setg_errno(errp, saved_errno,
585 "failed to recv file descriptor");
588 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
589 error_setg(errp, "bridge helper failed");
596 int net_init_bridge(const Netdev *netdev, const char *name,
597 NetClientState *peer, Error **errp)
599 const NetdevBridgeOptions *bridge;
600 const char *helper, *br;
604 assert(netdev->type == NET_CLIENT_DRIVER_BRIDGE);
605 bridge = &netdev->u.bridge;
606 helper = bridge->has_helper ? bridge->helper : NULL;
607 br = bridge->has_br ? bridge->br : DEFAULT_BRIDGE_INTERFACE;
609 fd = net_bridge_run_helper(helper, br, errp);
614 qemu_set_nonblock(fd);
615 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
620 s = net_tap_fd_init(peer, "bridge", name, fd, vnet_hdr);
622 snprintf(s->nc.info_str, sizeof(s->nc.info_str), "helper=%s,br=%s", helper,
628 static int net_tap_init(const NetdevTapOptions *tap, int *vnet_hdr,
629 const char *setup_script, char *ifname,
630 size_t ifname_sz, int mq_required, Error **errp)
633 int fd, vnet_hdr_required;
635 if (tap->has_vnet_hdr) {
636 *vnet_hdr = tap->vnet_hdr;
637 vnet_hdr_required = *vnet_hdr;
640 vnet_hdr_required = 0;
643 TFR(fd = tap_open(ifname, ifname_sz, vnet_hdr, vnet_hdr_required,
650 setup_script[0] != '\0' &&
651 strcmp(setup_script, "no") != 0) {
652 launch_script(setup_script, ifname, fd, &err);
654 error_propagate(errp, err);
663 #define MAX_TAP_QUEUES 1024
665 static void net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
666 const char *model, const char *name,
667 const char *ifname, const char *script,
668 const char *downscript, const char *vhostfdname,
669 int vnet_hdr, int fd, Error **errp)
672 TAPState *s = net_tap_fd_init(peer, model, name, fd, vnet_hdr);
675 tap_set_sndbuf(s->fd, tap, &err);
677 error_propagate(errp, err);
681 if (tap->has_fd || tap->has_fds) {
682 snprintf(s->nc.info_str, sizeof(s->nc.info_str), "fd=%d", fd);
683 } else if (tap->has_helper) {
684 snprintf(s->nc.info_str, sizeof(s->nc.info_str), "helper=%s",
687 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
688 "ifname=%s,script=%s,downscript=%s", ifname, script,
691 if (strcmp(downscript, "no") != 0) {
692 snprintf(s->down_script, sizeof(s->down_script), "%s", downscript);
693 snprintf(s->down_script_arg, sizeof(s->down_script_arg),
698 if (tap->has_vhost ? tap->vhost :
699 vhostfdname || (tap->has_vhostforce && tap->vhostforce)) {
700 VhostNetOptions options;
702 options.backend_type = VHOST_BACKEND_TYPE_KERNEL;
703 options.net_backend = &s->nc;
704 if (tap->has_poll_us) {
705 options.busyloop_timeout = tap->poll_us;
707 options.busyloop_timeout = 0;
713 vhostfd = monitor_fd_param(monitor_cur(), vhostfdname, &err);
715 if (tap->has_vhostforce && tap->vhostforce) {
716 error_propagate(errp, err);
718 warn_report_err(err);
722 ret = qemu_try_set_nonblock(vhostfd);
724 error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
729 vhostfd = open("/dev/vhost-net", O_RDWR);
731 if (tap->has_vhostforce && tap->vhostforce) {
732 error_setg_errno(errp, errno,
733 "tap: open vhost char device failed");
735 warn_report("tap: open vhost char device failed: %s",
740 qemu_set_nonblock(vhostfd);
742 options.opaque = (void *)(uintptr_t)vhostfd;
744 s->vhost_net = vhost_net_init(&options);
746 if (tap->has_vhostforce && tap->vhostforce) {
747 error_setg(errp, VHOST_NET_INIT_FAILED);
749 warn_report(VHOST_NET_INIT_FAILED);
753 } else if (vhostfdname) {
754 error_setg(errp, "vhostfd(s)= is not valid without vhost");
758 static int get_fds(char *str, char *fds[], int max)
760 char *ptr = str, *this;
761 size_t len = strlen(str);
764 while (i < max && ptr < str + len) {
765 this = strchr(ptr, ':');
768 fds[i] = g_strdup(ptr);
770 fds[i] = g_strndup(ptr, this - ptr);
784 int net_init_tap(const Netdev *netdev, const char *name,
785 NetClientState *peer, Error **errp)
787 const NetdevTapOptions *tap;
788 int fd, vnet_hdr = 0, i = 0, queues;
789 /* for the no-fd, no-helper case */
791 const char *downscript;
793 const char *vhostfdname;
797 assert(netdev->type == NET_CLIENT_DRIVER_TAP);
798 tap = &netdev->u.tap;
799 queues = tap->has_queues ? tap->queues : 1;
800 vhostfdname = tap->has_vhostfd ? tap->vhostfd : NULL;
801 script = tap->has_script ? tap->script : NULL;
802 downscript = tap->has_downscript ? tap->downscript : NULL;
804 /* QEMU hubs do not support multiqueue tap, in this case peer is set.
805 * For -netdev, peer is always NULL. */
806 if (peer && (tap->has_queues || tap->has_fds || tap->has_vhostfds)) {
807 error_setg(errp, "Multiqueue tap cannot be used with hubs");
812 if (tap->has_ifname || tap->has_script || tap->has_downscript ||
813 tap->has_vnet_hdr || tap->has_helper || tap->has_queues ||
814 tap->has_fds || tap->has_vhostfds) {
815 error_setg(errp, "ifname=, script=, downscript=, vnet_hdr=, "
816 "helper=, queues=, fds=, and vhostfds= "
817 "are invalid with fd=");
821 fd = monitor_fd_param(monitor_cur(), tap->fd, errp);
826 ret = qemu_try_set_nonblock(fd);
828 error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
834 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
840 net_init_tap_one(tap, peer, "tap", name, NULL,
842 vhostfdname, vnet_hdr, fd, &err);
844 error_propagate(errp, err);
848 } else if (tap->has_fds) {
851 int nfds = 0, nvhosts = 0;
853 if (tap->has_ifname || tap->has_script || tap->has_downscript ||
854 tap->has_vnet_hdr || tap->has_helper || tap->has_queues ||
856 error_setg(errp, "ifname=, script=, downscript=, vnet_hdr=, "
857 "helper=, queues=, and vhostfd= "
858 "are invalid with fds=");
862 fds = g_new0(char *, MAX_TAP_QUEUES);
863 vhost_fds = g_new0(char *, MAX_TAP_QUEUES);
865 nfds = get_fds(tap->fds, fds, MAX_TAP_QUEUES);
866 if (tap->has_vhostfds) {
867 nvhosts = get_fds(tap->vhostfds, vhost_fds, MAX_TAP_QUEUES);
868 if (nfds != nvhosts) {
869 error_setg(errp, "The number of fds passed does not match "
870 "the number of vhostfds passed");
876 for (i = 0; i < nfds; i++) {
877 fd = monitor_fd_param(monitor_cur(), fds[i], errp);
883 ret = qemu_try_set_nonblock(fd);
885 error_setg_errno(errp, -ret, "%s: Can't use file descriptor %d",
891 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
895 } else if (vnet_hdr != tap_probe_vnet_hdr(fd, NULL)) {
897 "vnet_hdr not consistent across given tap fds");
902 net_init_tap_one(tap, peer, "tap", name, ifname,
904 tap->has_vhostfds ? vhost_fds[i] : NULL,
907 error_propagate(errp, err);
914 for (i = 0; i < nvhosts; i++) {
915 g_free(vhost_fds[i]);
917 for (i = 0; i < nfds; i++) {
923 } else if (tap->has_helper) {
924 if (tap->has_ifname || tap->has_script || tap->has_downscript ||
925 tap->has_vnet_hdr || tap->has_queues || tap->has_vhostfds) {
926 error_setg(errp, "ifname=, script=, downscript=, vnet_hdr=, "
927 "queues=, and vhostfds= are invalid with helper=");
931 fd = net_bridge_run_helper(tap->helper,
933 tap->br : DEFAULT_BRIDGE_INTERFACE,
939 qemu_set_nonblock(fd);
940 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
946 net_init_tap_one(tap, peer, "bridge", name, ifname,
947 script, downscript, vhostfdname,
950 error_propagate(errp, err);
955 g_autofree char *default_script = NULL;
956 g_autofree char *default_downscript = NULL;
957 if (tap->has_vhostfds) {
958 error_setg(errp, "vhostfds= is invalid if fds= wasn't specified");
963 script = default_script = get_relocated_path(DEFAULT_NETWORK_SCRIPT);
966 downscript = default_downscript =
967 get_relocated_path(DEFAULT_NETWORK_DOWN_SCRIPT);
970 if (tap->has_ifname) {
971 pstrcpy(ifname, sizeof ifname, tap->ifname);
976 for (i = 0; i < queues; i++) {
977 fd = net_tap_init(tap, &vnet_hdr, i >= 1 ? "no" : script,
978 ifname, sizeof ifname, queues > 1, errp);
983 if (queues > 1 && i == 0 && !tap->has_ifname) {
984 if (tap_fd_get_ifname(fd, ifname)) {
985 error_setg(errp, "Fail to get ifname");
991 net_init_tap_one(tap, peer, "tap", name, ifname,
992 i >= 1 ? "no" : script,
993 i >= 1 ? "no" : downscript,
994 vhostfdname, vnet_hdr, fd, &err);
996 error_propagate(errp, err);
1006 VHostNetState *tap_get_vhost_net(NetClientState *nc)
1008 TAPState *s = DO_UPCAST(TAPState, nc, nc);
1009 assert(nc->info->type == NET_CLIENT_DRIVER_TAP);
1010 return s->vhost_net;
1013 int tap_enable(NetClientState *nc)
1015 TAPState *s = DO_UPCAST(TAPState, nc, nc);
1021 ret = tap_fd_enable(s->fd);
1024 tap_update_fd_handler(s);
1030 int tap_disable(NetClientState *nc)
1032 TAPState *s = DO_UPCAST(TAPState, nc, nc);
1035 if (s->enabled == 0) {
1038 ret = tap_fd_disable(s->fd);
1040 qemu_purge_queued_packets(nc);
1042 tap_update_fd_handler(s);