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>
37 #include "monitor/monitor.h"
38 #include "sysemu/sysemu.h"
39 #include "qapi/error.h"
40 #include "qemu-common.h"
41 #include "qemu/cutils.h"
42 #include "qemu/error-report.h"
43 #include "qemu/main-loop.h"
44 #include "qemu/sockets.h"
48 #include "net/vhost_net.h"
50 typedef struct TAPState
{
53 char down_script
[1024];
54 char down_script_arg
[128];
55 uint8_t buf
[NET_BUFSIZE
];
61 VHostNetState
*vhost_net
;
62 unsigned host_vnet_hdr_len
;
66 static void launch_script(const char *setup_script
, const char *ifname
,
67 int fd
, Error
**errp
);
69 static void tap_send(void *opaque
);
70 static void tap_writable(void *opaque
);
72 static void tap_update_fd_handler(TAPState
*s
)
74 qemu_set_fd_handler(s
->fd
,
75 s
->read_poll
&& s
->enabled
? tap_send
: NULL
,
76 s
->write_poll
&& s
->enabled
? tap_writable
: NULL
,
80 static void tap_read_poll(TAPState
*s
, bool enable
)
82 s
->read_poll
= enable
;
83 tap_update_fd_handler(s
);
86 static void tap_write_poll(TAPState
*s
, bool enable
)
88 s
->write_poll
= enable
;
89 tap_update_fd_handler(s
);
92 static void tap_writable(void *opaque
)
96 tap_write_poll(s
, false);
98 qemu_flush_queued_packets(&s
->nc
);
101 static ssize_t
tap_write_packet(TAPState
*s
, const struct iovec
*iov
, int iovcnt
)
106 len
= writev(s
->fd
, iov
, iovcnt
);
107 } while (len
== -1 && errno
== EINTR
);
109 if (len
== -1 && errno
== EAGAIN
) {
110 tap_write_poll(s
, true);
117 static ssize_t
tap_receive_iov(NetClientState
*nc
, const struct iovec
*iov
,
120 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
121 const struct iovec
*iovp
= iov
;
122 struct iovec iov_copy
[iovcnt
+ 1];
123 struct virtio_net_hdr_mrg_rxbuf hdr
= { };
125 if (s
->host_vnet_hdr_len
&& !s
->using_vnet_hdr
) {
126 iov_copy
[0].iov_base
= &hdr
;
127 iov_copy
[0].iov_len
= s
->host_vnet_hdr_len
;
128 memcpy(&iov_copy
[1], iov
, iovcnt
* sizeof(*iov
));
133 return tap_write_packet(s
, iovp
, iovcnt
);
136 static ssize_t
tap_receive_raw(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
138 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
141 struct virtio_net_hdr_mrg_rxbuf hdr
= { };
143 if (s
->host_vnet_hdr_len
) {
144 iov
[iovcnt
].iov_base
= &hdr
;
145 iov
[iovcnt
].iov_len
= s
->host_vnet_hdr_len
;
149 iov
[iovcnt
].iov_base
= (char *)buf
;
150 iov
[iovcnt
].iov_len
= size
;
153 return tap_write_packet(s
, iov
, iovcnt
);
156 static ssize_t
tap_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
158 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
161 if (s
->host_vnet_hdr_len
&& !s
->using_vnet_hdr
) {
162 return tap_receive_raw(nc
, buf
, size
);
165 iov
[0].iov_base
= (char *)buf
;
166 iov
[0].iov_len
= size
;
168 return tap_write_packet(s
, iov
, 1);
172 ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
174 return read(tapfd
, buf
, maxlen
);
178 static void tap_send_completed(NetClientState
*nc
, ssize_t len
)
180 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
181 tap_read_poll(s
, true);
184 static void tap_send(void *opaque
)
186 TAPState
*s
= opaque
;
191 uint8_t *buf
= s
->buf
;
193 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
198 if (s
->host_vnet_hdr_len
&& !s
->using_vnet_hdr
) {
199 buf
+= s
->host_vnet_hdr_len
;
200 size
-= s
->host_vnet_hdr_len
;
203 size
= qemu_send_packet_async(&s
->nc
, buf
, size
, tap_send_completed
);
205 tap_read_poll(s
, false);
207 } else if (size
< 0) {
212 * When the host keeps receiving more packets while tap_send() is
213 * running we can hog the QEMU global mutex. Limit the number of
214 * packets that are processed per tap_send() callback to prevent
215 * stalling the guest.
224 static bool tap_has_ufo(NetClientState
*nc
)
226 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
228 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
233 static bool tap_has_vnet_hdr(NetClientState
*nc
)
235 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
237 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
239 return !!s
->host_vnet_hdr_len
;
242 static bool tap_has_vnet_hdr_len(NetClientState
*nc
, int len
)
244 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
246 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
248 return !!tap_probe_vnet_hdr_len(s
->fd
, len
);
251 static void tap_set_vnet_hdr_len(NetClientState
*nc
, int len
)
253 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
255 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
256 assert(len
== sizeof(struct virtio_net_hdr_mrg_rxbuf
) ||
257 len
== sizeof(struct virtio_net_hdr
) ||
258 len
== sizeof(struct virtio_net_hdr_v1_hash
));
260 tap_fd_set_vnet_hdr_len(s
->fd
, len
);
261 s
->host_vnet_hdr_len
= len
;
264 static void tap_using_vnet_hdr(NetClientState
*nc
, bool using_vnet_hdr
)
266 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
268 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
269 assert(!!s
->host_vnet_hdr_len
== using_vnet_hdr
);
271 s
->using_vnet_hdr
= using_vnet_hdr
;
274 static int tap_set_vnet_le(NetClientState
*nc
, bool is_le
)
276 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
278 return tap_fd_set_vnet_le(s
->fd
, is_le
);
281 static int tap_set_vnet_be(NetClientState
*nc
, bool is_be
)
283 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
285 return tap_fd_set_vnet_be(s
->fd
, is_be
);
288 static void tap_set_offload(NetClientState
*nc
, int csum
, int tso4
,
289 int tso6
, int ecn
, int ufo
)
291 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
296 tap_fd_set_offload(s
->fd
, csum
, tso4
, tso6
, ecn
, ufo
);
299 static void tap_exit_notify(Notifier
*notifier
, void *data
)
301 TAPState
*s
= container_of(notifier
, TAPState
, exit
);
304 if (s
->down_script
[0]) {
305 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
, &err
);
307 error_report_err(err
);
312 static void tap_cleanup(NetClientState
*nc
)
314 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
317 vhost_net_cleanup(s
->vhost_net
);
318 g_free(s
->vhost_net
);
322 qemu_purge_queued_packets(nc
);
324 tap_exit_notify(&s
->exit
, NULL
);
325 qemu_remove_exit_notifier(&s
->exit
);
327 tap_read_poll(s
, false);
328 tap_write_poll(s
, false);
333 static void tap_poll(NetClientState
*nc
, bool enable
)
335 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
336 tap_read_poll(s
, enable
);
337 tap_write_poll(s
, enable
);
340 int tap_get_fd(NetClientState
*nc
)
342 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
343 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
349 static NetClientInfo net_tap_info
= {
350 .type
= NET_CLIENT_DRIVER_TAP
,
351 .size
= sizeof(TAPState
),
352 .receive
= tap_receive
,
353 .receive_raw
= tap_receive_raw
,
354 .receive_iov
= tap_receive_iov
,
356 .cleanup
= tap_cleanup
,
357 .has_ufo
= tap_has_ufo
,
358 .has_vnet_hdr
= tap_has_vnet_hdr
,
359 .has_vnet_hdr_len
= tap_has_vnet_hdr_len
,
360 .using_vnet_hdr
= tap_using_vnet_hdr
,
361 .set_offload
= tap_set_offload
,
362 .set_vnet_hdr_len
= tap_set_vnet_hdr_len
,
363 .set_vnet_le
= tap_set_vnet_le
,
364 .set_vnet_be
= tap_set_vnet_be
,
367 static TAPState
*net_tap_fd_init(NetClientState
*peer
,
376 nc
= qemu_new_net_client(&net_tap_info
, peer
, model
, name
);
378 s
= DO_UPCAST(TAPState
, nc
, nc
);
381 s
->host_vnet_hdr_len
= vnet_hdr
? sizeof(struct virtio_net_hdr
) : 0;
382 s
->using_vnet_hdr
= false;
383 s
->has_ufo
= tap_probe_has_ufo(s
->fd
);
385 tap_set_offload(&s
->nc
, 0, 0, 0, 0, 0);
387 * Make sure host header length is set correctly in tap:
388 * it might have been modified by another instance of qemu.
390 if (tap_probe_vnet_hdr_len(s
->fd
, s
->host_vnet_hdr_len
)) {
391 tap_fd_set_vnet_hdr_len(s
->fd
, s
->host_vnet_hdr_len
);
393 tap_read_poll(s
, true);
396 s
->exit
.notify
= tap_exit_notify
;
397 qemu_add_exit_notifier(&s
->exit
);
402 static void launch_script(const char *setup_script
, const char *ifname
,
403 int fd
, Error
**errp
)
409 /* try to launch network script */
412 error_setg_errno(errp
, errno
, "could not launch network script %s",
417 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
419 for (i
= 3; i
< open_max
; i
++) {
425 *parg
++ = (char *)setup_script
;
426 *parg
++ = (char *)ifname
;
428 execv(setup_script
, args
);
431 while (waitpid(pid
, &status
, 0) != pid
) {
435 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
438 error_setg(errp
, "network script %s failed with status %d",
439 setup_script
, status
);
443 static int recv_fd(int c
)
446 uint8_t msgbuf
[CMSG_SPACE(sizeof(fd
))];
447 struct msghdr msg
= {
448 .msg_control
= msgbuf
,
449 .msg_controllen
= sizeof(msgbuf
),
451 struct cmsghdr
*cmsg
;
456 cmsg
= CMSG_FIRSTHDR(&msg
);
457 cmsg
->cmsg_level
= SOL_SOCKET
;
458 cmsg
->cmsg_type
= SCM_RIGHTS
;
459 cmsg
->cmsg_len
= CMSG_LEN(sizeof(fd
));
460 msg
.msg_controllen
= cmsg
->cmsg_len
;
463 iov
.iov_len
= sizeof(req
);
468 len
= recvmsg(c
, &msg
, 0);
470 memcpy(&fd
, CMSG_DATA(cmsg
), sizeof(fd
));
477 static int net_bridge_run_helper(const char *helper
, const char *bridge
,
480 sigset_t oldmask
, mask
;
487 sigaddset(&mask
, SIGCHLD
);
488 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
490 if (socketpair(PF_UNIX
, SOCK_STREAM
, 0, sv
) == -1) {
491 error_setg_errno(errp
, errno
, "socketpair() failed");
495 /* try to launch bridge helper */
498 error_setg_errno(errp
, errno
, "Can't fork bridge helper");
502 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
505 char *helper_cmd
= NULL
;
507 for (i
= 3; i
< open_max
; i
++) {
513 fd_buf
= g_strdup_printf("%s%d", "--fd=", sv
[1]);
515 if (strrchr(helper
, ' ') || strrchr(helper
, '\t')) {
516 /* assume helper is a command */
518 if (strstr(helper
, "--br=") == NULL
) {
519 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
522 helper_cmd
= g_strdup_printf("%s %s %s %s", helper
,
523 "--use-vnet", fd_buf
, br_buf
? br_buf
: "");
526 *parg
++ = (char *)"sh";
527 *parg
++ = (char *)"-c";
528 *parg
++ = helper_cmd
;
531 execv("/bin/sh", args
);
534 /* assume helper is just the executable path name */
536 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
539 *parg
++ = (char *)helper
;
540 *parg
++ = (char *)"--use-vnet";
559 } while (fd
== -1 && errno
== EINTR
);
564 while (waitpid(pid
, &status
, 0) != pid
) {
567 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
569 error_setg_errno(errp
, saved_errno
,
570 "failed to recv file descriptor");
573 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
574 error_setg(errp
, "bridge helper failed");
581 int net_init_bridge(const Netdev
*netdev
, const char *name
,
582 NetClientState
*peer
, Error
**errp
)
584 const NetdevBridgeOptions
*bridge
;
585 const char *helper
, *br
;
589 assert(netdev
->type
== NET_CLIENT_DRIVER_BRIDGE
);
590 bridge
= &netdev
->u
.bridge
;
592 helper
= bridge
->has_helper
? bridge
->helper
: DEFAULT_BRIDGE_HELPER
;
593 br
= bridge
->has_br
? bridge
->br
: DEFAULT_BRIDGE_INTERFACE
;
595 fd
= net_bridge_run_helper(helper
, br
, errp
);
600 qemu_set_nonblock(fd
);
601 vnet_hdr
= tap_probe_vnet_hdr(fd
);
602 s
= net_tap_fd_init(peer
, "bridge", name
, fd
, vnet_hdr
);
604 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
), "helper=%s,br=%s", helper
,
610 static int net_tap_init(const NetdevTapOptions
*tap
, int *vnet_hdr
,
611 const char *setup_script
, char *ifname
,
612 size_t ifname_sz
, int mq_required
, Error
**errp
)
615 int fd
, vnet_hdr_required
;
617 if (tap
->has_vnet_hdr
) {
618 *vnet_hdr
= tap
->vnet_hdr
;
619 vnet_hdr_required
= *vnet_hdr
;
622 vnet_hdr_required
= 0;
625 TFR(fd
= tap_open(ifname
, ifname_sz
, vnet_hdr
, vnet_hdr_required
,
632 setup_script
[0] != '\0' &&
633 strcmp(setup_script
, "no") != 0) {
634 launch_script(setup_script
, ifname
, fd
, &err
);
636 error_propagate(errp
, err
);
645 #define MAX_TAP_QUEUES 1024
647 static void net_init_tap_one(const NetdevTapOptions
*tap
, NetClientState
*peer
,
648 const char *model
, const char *name
,
649 const char *ifname
, const char *script
,
650 const char *downscript
, const char *vhostfdname
,
651 int vnet_hdr
, int fd
, Error
**errp
)
654 TAPState
*s
= net_tap_fd_init(peer
, model
, name
, fd
, vnet_hdr
);
657 tap_set_sndbuf(s
->fd
, tap
, &err
);
659 error_propagate(errp
, err
);
663 if (tap
->has_fd
|| tap
->has_fds
) {
664 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
), "fd=%d", fd
);
665 } else if (tap
->has_helper
) {
666 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
), "helper=%s",
669 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
),
670 "ifname=%s,script=%s,downscript=%s", ifname
, script
,
673 if (strcmp(downscript
, "no") != 0) {
674 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", downscript
);
675 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
),
680 if (tap
->has_vhost
? tap
->vhost
:
681 vhostfdname
|| (tap
->has_vhostforce
&& tap
->vhostforce
)) {
682 VhostNetOptions options
;
684 options
.backend_type
= VHOST_BACKEND_TYPE_KERNEL
;
685 options
.net_backend
= &s
->nc
;
686 if (tap
->has_poll_us
) {
687 options
.busyloop_timeout
= tap
->poll_us
;
689 options
.busyloop_timeout
= 0;
693 vhostfd
= monitor_fd_param(cur_mon
, vhostfdname
, &err
);
695 if (tap
->has_vhostforce
&& tap
->vhostforce
) {
696 error_propagate(errp
, err
);
698 warn_report_err(err
);
702 qemu_set_nonblock(vhostfd
);
704 vhostfd
= open("/dev/vhost-net", O_RDWR
);
706 if (tap
->has_vhostforce
&& tap
->vhostforce
) {
707 error_setg_errno(errp
, errno
,
708 "tap: open vhost char device failed");
710 warn_report("tap: open vhost char device failed: %s",
715 qemu_set_nonblock(vhostfd
);
717 options
.opaque
= (void *)(uintptr_t)vhostfd
;
719 s
->vhost_net
= vhost_net_init(&options
);
721 if (tap
->has_vhostforce
&& tap
->vhostforce
) {
722 error_setg(errp
, VHOST_NET_INIT_FAILED
);
724 warn_report(VHOST_NET_INIT_FAILED
);
728 } else if (vhostfdname
) {
729 error_setg(errp
, "vhostfd(s)= is not valid without vhost");
733 static int get_fds(char *str
, char *fds
[], int max
)
735 char *ptr
= str
, *this;
736 size_t len
= strlen(str
);
739 while (i
< max
&& ptr
< str
+ len
) {
740 this = strchr(ptr
, ':');
743 fds
[i
] = g_strdup(ptr
);
745 fds
[i
] = g_strndup(ptr
, this - ptr
);
759 int net_init_tap(const Netdev
*netdev
, const char *name
,
760 NetClientState
*peer
, Error
**errp
)
762 const NetdevTapOptions
*tap
;
763 int fd
, vnet_hdr
= 0, i
= 0, queues
;
764 /* for the no-fd, no-helper case */
765 const char *script
= NULL
; /* suppress wrong "uninit'd use" gcc warning */
766 const char *downscript
= NULL
;
768 const char *vhostfdname
;
771 assert(netdev
->type
== NET_CLIENT_DRIVER_TAP
);
772 tap
= &netdev
->u
.tap
;
773 queues
= tap
->has_queues
? tap
->queues
: 1;
774 vhostfdname
= tap
->has_vhostfd
? tap
->vhostfd
: NULL
;
776 /* QEMU hubs do not support multiqueue tap, in this case peer is set.
777 * For -netdev, peer is always NULL. */
778 if (peer
&& (tap
->has_queues
|| tap
->has_fds
|| tap
->has_vhostfds
)) {
779 error_setg(errp
, "Multiqueue tap cannot be used with hubs");
784 if (tap
->has_ifname
|| tap
->has_script
|| tap
->has_downscript
||
785 tap
->has_vnet_hdr
|| tap
->has_helper
|| tap
->has_queues
||
786 tap
->has_fds
|| tap
->has_vhostfds
) {
787 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
788 "helper=, queues=, fds=, and vhostfds= "
789 "are invalid with fd=");
793 fd
= monitor_fd_param(cur_mon
, tap
->fd
, &err
);
795 error_propagate(errp
, err
);
799 qemu_set_nonblock(fd
);
801 vnet_hdr
= tap_probe_vnet_hdr(fd
);
803 net_init_tap_one(tap
, peer
, "tap", name
, NULL
,
805 vhostfdname
, vnet_hdr
, fd
, &err
);
807 error_propagate(errp
, err
);
810 } else if (tap
->has_fds
) {
813 int nfds
= 0, nvhosts
= 0;
816 if (tap
->has_ifname
|| tap
->has_script
|| tap
->has_downscript
||
817 tap
->has_vnet_hdr
|| tap
->has_helper
|| tap
->has_queues
||
819 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
820 "helper=, queues=, and vhostfd= "
821 "are invalid with fds=");
825 fds
= g_new0(char *, MAX_TAP_QUEUES
);
826 vhost_fds
= g_new0(char *, MAX_TAP_QUEUES
);
828 nfds
= get_fds(tap
->fds
, fds
, MAX_TAP_QUEUES
);
829 if (tap
->has_vhostfds
) {
830 nvhosts
= get_fds(tap
->vhostfds
, vhost_fds
, MAX_TAP_QUEUES
);
831 if (nfds
!= nvhosts
) {
832 error_setg(errp
, "The number of fds passed does not match "
833 "the number of vhostfds passed");
839 for (i
= 0; i
< nfds
; i
++) {
840 fd
= monitor_fd_param(cur_mon
, fds
[i
], &err
);
842 error_propagate(errp
, err
);
847 qemu_set_nonblock(fd
);
850 vnet_hdr
= tap_probe_vnet_hdr(fd
);
851 } else if (vnet_hdr
!= tap_probe_vnet_hdr(fd
)) {
853 "vnet_hdr not consistent across given tap fds");
858 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
860 tap
->has_vhostfds
? vhost_fds
[i
] : NULL
,
863 error_propagate(errp
, err
);
870 for (i
= 0; i
< nvhosts
; i
++) {
871 g_free(vhost_fds
[i
]);
873 for (i
= 0; i
< nfds
; i
++) {
879 } else if (tap
->has_helper
) {
880 if (tap
->has_ifname
|| tap
->has_script
|| tap
->has_downscript
||
881 tap
->has_vnet_hdr
|| tap
->has_queues
|| tap
->has_vhostfds
) {
882 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
883 "queues=, and vhostfds= are invalid with helper=");
887 fd
= net_bridge_run_helper(tap
->helper
,
889 tap
->br
: DEFAULT_BRIDGE_INTERFACE
,
895 qemu_set_nonblock(fd
);
896 vnet_hdr
= tap_probe_vnet_hdr(fd
);
898 net_init_tap_one(tap
, peer
, "bridge", name
, ifname
,
899 script
, downscript
, vhostfdname
,
902 error_propagate(errp
, err
);
907 if (tap
->has_vhostfds
) {
908 error_setg(errp
, "vhostfds= is invalid if fds= wasn't specified");
911 script
= tap
->has_script
? tap
->script
: DEFAULT_NETWORK_SCRIPT
;
912 downscript
= tap
->has_downscript
? tap
->downscript
:
913 DEFAULT_NETWORK_DOWN_SCRIPT
;
915 if (tap
->has_ifname
) {
916 pstrcpy(ifname
, sizeof ifname
, tap
->ifname
);
921 for (i
= 0; i
< queues
; i
++) {
922 fd
= net_tap_init(tap
, &vnet_hdr
, i
>= 1 ? "no" : script
,
923 ifname
, sizeof ifname
, queues
> 1, errp
);
928 if (queues
> 1 && i
== 0 && !tap
->has_ifname
) {
929 if (tap_fd_get_ifname(fd
, ifname
)) {
930 error_setg(errp
, "Fail to get ifname");
936 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
937 i
>= 1 ? "no" : script
,
938 i
>= 1 ? "no" : downscript
,
939 vhostfdname
, vnet_hdr
, fd
, &err
);
941 error_propagate(errp
, err
);
951 VHostNetState
*tap_get_vhost_net(NetClientState
*nc
)
953 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
954 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
958 int tap_enable(NetClientState
*nc
)
960 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
966 ret
= tap_fd_enable(s
->fd
);
969 tap_update_fd_handler(s
);
975 int tap_disable(NetClientState
*nc
)
977 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
980 if (s
->enabled
== 0) {
983 ret
= tap_fd_disable(s
->fd
);
985 qemu_purge_queued_packets(nc
);
987 tap_update_fd_handler(s
);