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/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
];
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
)
106 len
= RETRY_ON_EINTR(writev(s
->fd
, iov
, iovcnt
));
108 if (len
== -1 && errno
== EAGAIN
) {
109 tap_write_poll(s
, true);
116 static ssize_t
tap_receive_iov(NetClientState
*nc
, const struct iovec
*iov
,
119 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
120 const struct iovec
*iovp
= iov
;
121 g_autofree
struct iovec
*iov_copy
= NULL
;
122 struct virtio_net_hdr hdr
= { };
124 if (s
->host_vnet_hdr_len
&& !s
->using_vnet_hdr
) {
125 iov_copy
= g_new(struct iovec
, iovcnt
+ 1);
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(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
139 .iov_base
= (void *)buf
,
143 return tap_receive_iov(nc
, &iov
, 1);
147 ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
149 return read(tapfd
, buf
, maxlen
);
153 static void tap_send_completed(NetClientState
*nc
, ssize_t len
)
155 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
156 tap_read_poll(s
, true);
159 static void tap_send(void *opaque
)
161 TAPState
*s
= opaque
;
166 uint8_t *buf
= s
->buf
;
167 uint8_t min_pkt
[ETH_ZLEN
];
168 size_t min_pktsz
= sizeof(min_pkt
);
170 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
175 if (s
->host_vnet_hdr_len
&& !s
->using_vnet_hdr
) {
176 buf
+= s
->host_vnet_hdr_len
;
177 size
-= s
->host_vnet_hdr_len
;
180 if (net_peer_needs_padding(&s
->nc
)) {
181 if (eth_pad_short_frame(min_pkt
, &min_pktsz
, buf
, size
)) {
187 size
= qemu_send_packet_async(&s
->nc
, buf
, size
, tap_send_completed
);
189 tap_read_poll(s
, false);
191 } else if (size
< 0) {
196 * When the host keeps receiving more packets while tap_send() is
197 * running we can hog the BQL. Limit the number of
198 * packets that are processed per tap_send() callback to prevent
199 * stalling the guest.
208 static bool tap_has_ufo(NetClientState
*nc
)
210 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
212 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
217 static bool tap_has_uso(NetClientState
*nc
)
219 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
221 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
226 static bool tap_has_vnet_hdr(NetClientState
*nc
)
228 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
230 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
232 return !!s
->host_vnet_hdr_len
;
235 static bool tap_has_vnet_hdr_len(NetClientState
*nc
, int len
)
237 return tap_has_vnet_hdr(nc
);
240 static void tap_set_vnet_hdr_len(NetClientState
*nc
, int len
)
242 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
244 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
246 tap_fd_set_vnet_hdr_len(s
->fd
, len
);
247 s
->host_vnet_hdr_len
= len
;
248 s
->using_vnet_hdr
= true;
251 static int tap_set_vnet_le(NetClientState
*nc
, bool is_le
)
253 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
255 return tap_fd_set_vnet_le(s
->fd
, is_le
);
258 static int tap_set_vnet_be(NetClientState
*nc
, bool is_be
)
260 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
262 return tap_fd_set_vnet_be(s
->fd
, is_be
);
265 static void tap_set_offload(NetClientState
*nc
, int csum
, int tso4
,
266 int tso6
, int ecn
, int ufo
, int uso4
, int uso6
)
268 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
273 tap_fd_set_offload(s
->fd
, csum
, tso4
, tso6
, ecn
, ufo
, uso4
, uso6
);
276 static void tap_exit_notify(Notifier
*notifier
, void *data
)
278 TAPState
*s
= container_of(notifier
, TAPState
, exit
);
281 if (s
->down_script
[0]) {
282 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
, &err
);
284 error_report_err(err
);
289 static void tap_cleanup(NetClientState
*nc
)
291 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
294 vhost_net_cleanup(s
->vhost_net
);
295 g_free(s
->vhost_net
);
299 qemu_purge_queued_packets(nc
);
301 tap_exit_notify(&s
->exit
, NULL
);
302 qemu_remove_exit_notifier(&s
->exit
);
304 tap_read_poll(s
, false);
305 tap_write_poll(s
, false);
310 static void tap_poll(NetClientState
*nc
, bool enable
)
312 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
313 tap_read_poll(s
, enable
);
314 tap_write_poll(s
, enable
);
317 static bool tap_set_steering_ebpf(NetClientState
*nc
, int prog_fd
)
319 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
320 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
322 return tap_fd_set_steering_ebpf(s
->fd
, prog_fd
) == 0;
325 int tap_get_fd(NetClientState
*nc
)
327 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
328 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
334 static NetClientInfo net_tap_info
= {
335 .type
= NET_CLIENT_DRIVER_TAP
,
336 .size
= sizeof(TAPState
),
337 .receive
= tap_receive
,
338 .receive_iov
= tap_receive_iov
,
340 .cleanup
= tap_cleanup
,
341 .has_ufo
= tap_has_ufo
,
342 .has_uso
= tap_has_uso
,
343 .has_vnet_hdr
= tap_has_vnet_hdr
,
344 .has_vnet_hdr_len
= tap_has_vnet_hdr_len
,
345 .set_offload
= tap_set_offload
,
346 .set_vnet_hdr_len
= tap_set_vnet_hdr_len
,
347 .set_vnet_le
= tap_set_vnet_le
,
348 .set_vnet_be
= tap_set_vnet_be
,
349 .set_steering_ebpf
= tap_set_steering_ebpf
,
352 static TAPState
*net_tap_fd_init(NetClientState
*peer
,
361 nc
= qemu_new_net_client(&net_tap_info
, peer
, model
, name
);
363 s
= DO_UPCAST(TAPState
, nc
, nc
);
366 s
->host_vnet_hdr_len
= vnet_hdr
? sizeof(struct virtio_net_hdr
) : 0;
367 s
->using_vnet_hdr
= false;
368 s
->has_ufo
= tap_probe_has_ufo(s
->fd
);
369 s
->has_uso
= tap_probe_has_uso(s
->fd
);
371 tap_set_offload(&s
->nc
, 0, 0, 0, 0, 0, 0, 0);
373 * Make sure host header length is set correctly in tap:
374 * it might have been modified by another instance of qemu.
377 tap_fd_set_vnet_hdr_len(s
->fd
, s
->host_vnet_hdr_len
);
379 tap_read_poll(s
, true);
382 s
->exit
.notify
= tap_exit_notify
;
383 qemu_add_exit_notifier(&s
->exit
);
388 static void close_all_fds_after_fork(int excluded_fd
)
390 const int skip_fd
[] = {STDIN_FILENO
, STDOUT_FILENO
, STDERR_FILENO
,
392 unsigned int nskip
= ARRAY_SIZE(skip_fd
);
395 * skip_fd must be an ordered array of distinct fds, exclude
396 * excluded_fd if already included in the [STDIN_FILENO - STDERR_FILENO]
399 if (excluded_fd
<= STDERR_FILENO
) {
403 qemu_close_all_open_fd(skip_fd
, nskip
);
406 static void launch_script(const char *setup_script
, const char *ifname
,
407 int fd
, Error
**errp
)
413 /* try to launch network script */
416 error_setg_errno(errp
, errno
, "could not launch network script %s",
421 close_all_fds_after_fork(fd
);
423 *parg
++ = (char *)setup_script
;
424 *parg
++ = (char *)ifname
;
426 execv(setup_script
, args
);
429 while (waitpid(pid
, &status
, 0) != pid
) {
433 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
436 error_setg(errp
, "network script %s failed with status %d",
437 setup_script
, status
);
441 static int recv_fd(int c
)
444 uint8_t msgbuf
[CMSG_SPACE(sizeof(fd
))];
445 struct msghdr msg
= {
446 .msg_control
= msgbuf
,
447 .msg_controllen
= sizeof(msgbuf
),
449 struct cmsghdr
*cmsg
;
454 cmsg
= CMSG_FIRSTHDR(&msg
);
455 cmsg
->cmsg_level
= SOL_SOCKET
;
456 cmsg
->cmsg_type
= SCM_RIGHTS
;
457 cmsg
->cmsg_len
= CMSG_LEN(sizeof(fd
));
458 msg
.msg_controllen
= cmsg
->cmsg_len
;
461 iov
.iov_len
= sizeof(req
);
466 len
= recvmsg(c
, &msg
, 0);
468 memcpy(&fd
, CMSG_DATA(cmsg
), sizeof(fd
));
475 static int net_bridge_run_helper(const char *helper
, const char *bridge
,
478 sigset_t oldmask
, mask
;
479 g_autofree
char *default_helper
= NULL
;
486 sigaddset(&mask
, SIGCHLD
);
487 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
490 helper
= default_helper
= get_relocated_path(DEFAULT_BRIDGE_HELPER
);
493 if (socketpair(PF_UNIX
, SOCK_STREAM
, 0, sv
) == -1) {
494 error_setg_errno(errp
, errno
, "socketpair() failed");
498 /* try to launch bridge helper */
501 error_setg_errno(errp
, errno
, "Can't fork bridge helper");
507 char *helper_cmd
= NULL
;
509 close_all_fds_after_fork(sv
[1]);
510 fd_buf
= g_strdup_printf("%s%d", "--fd=", sv
[1]);
512 if (strrchr(helper
, ' ') || strrchr(helper
, '\t')) {
513 /* assume helper is a command */
515 if (strstr(helper
, "--br=") == NULL
) {
516 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
519 helper_cmd
= g_strdup_printf("%s %s %s %s", helper
,
520 "--use-vnet", fd_buf
, br_buf
? br_buf
: "");
523 *parg
++ = (char *)"sh";
524 *parg
++ = (char *)"-c";
525 *parg
++ = helper_cmd
;
528 execv("/bin/sh", args
);
531 /* assume helper is just the executable path name */
533 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
536 *parg
++ = (char *)helper
;
537 *parg
++ = (char *)"--use-vnet";
554 fd
= RETRY_ON_EINTR(recv_fd(sv
[0]));
559 while (waitpid(pid
, &status
, 0) != pid
) {
562 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
564 error_setg_errno(errp
, saved_errno
,
565 "failed to recv file descriptor");
568 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
569 error_setg(errp
, "bridge helper failed");
576 int net_init_bridge(const Netdev
*netdev
, const char *name
,
577 NetClientState
*peer
, Error
**errp
)
579 const NetdevBridgeOptions
*bridge
;
580 const char *helper
, *br
;
584 assert(netdev
->type
== NET_CLIENT_DRIVER_BRIDGE
);
585 bridge
= &netdev
->u
.bridge
;
586 helper
= bridge
->helper
;
587 br
= bridge
->br
?: DEFAULT_BRIDGE_INTERFACE
;
589 fd
= net_bridge_run_helper(helper
, br
, errp
);
594 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
595 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
598 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
603 s
= net_tap_fd_init(peer
, "bridge", name
, fd
, vnet_hdr
);
605 qemu_set_info_str(&s
->nc
, "helper=%s,br=%s", helper
, br
);
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 fd
= RETRY_ON_EINTR(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
->fd
|| tap
->fds
) {
664 qemu_set_info_str(&s
->nc
, "fd=%d", fd
);
665 } else if (tap
->helper
) {
666 qemu_set_info_str(&s
->nc
, "helper=%s", tap
->helper
);
668 qemu_set_info_str(&s
->nc
, "ifname=%s,script=%s,downscript=%s", ifname
,
671 if (strcmp(downscript
, "no") != 0) {
672 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", downscript
);
673 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
),
678 if (tap
->has_vhost
? tap
->vhost
:
679 vhostfdname
|| (tap
->has_vhostforce
&& tap
->vhostforce
)) {
680 VhostNetOptions options
;
682 options
.backend_type
= VHOST_BACKEND_TYPE_KERNEL
;
683 options
.net_backend
= &s
->nc
;
684 if (tap
->has_poll_us
) {
685 options
.busyloop_timeout
= tap
->poll_us
;
687 options
.busyloop_timeout
= 0;
691 vhostfd
= monitor_fd_param(monitor_cur(), vhostfdname
, &err
);
693 error_propagate(errp
, err
);
696 if (!g_unix_set_fd_nonblocking(vhostfd
, true, NULL
)) {
697 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
702 vhostfd
= open("/dev/vhost-net", O_RDWR
);
704 error_setg_errno(errp
, errno
,
705 "tap: open vhost char device failed");
708 if (!g_unix_set_fd_nonblocking(vhostfd
, true, NULL
)) {
709 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
713 options
.opaque
= (void *)(uintptr_t)vhostfd
;
716 s
->vhost_net
= vhost_net_init(&options
);
719 "vhost-net requested but could not be initialized");
722 } else if (vhostfdname
) {
723 error_setg(errp
, "vhostfd(s)= is not valid without vhost");
730 qemu_del_net_client(&s
->nc
);
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 */
766 const char *downscript
;
768 const char *vhostfdname
;
772 assert(netdev
->type
== NET_CLIENT_DRIVER_TAP
);
773 tap
= &netdev
->u
.tap
;
774 queues
= tap
->has_queues
? tap
->queues
: 1;
775 vhostfdname
= tap
->vhostfd
;
776 script
= tap
->script
;
777 downscript
= tap
->downscript
;
779 /* QEMU hubs do not support multiqueue tap, in this case peer is set.
780 * For -netdev, peer is always NULL. */
781 if (peer
&& (tap
->has_queues
|| tap
->fds
|| tap
->vhostfds
)) {
782 error_setg(errp
, "Multiqueue tap cannot be used with hubs");
787 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
788 tap
->has_vnet_hdr
|| tap
->helper
|| tap
->has_queues
||
789 tap
->fds
|| tap
->vhostfds
) {
790 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
791 "helper=, queues=, fds=, and vhostfds= "
792 "are invalid with fd=");
796 fd
= monitor_fd_param(monitor_cur(), tap
->fd
, errp
);
801 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
802 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
808 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
814 net_init_tap_one(tap
, peer
, "tap", name
, NULL
,
816 vhostfdname
, vnet_hdr
, fd
, &err
);
818 error_propagate(errp
, err
);
822 } else if (tap
->fds
) {
825 int nfds
= 0, nvhosts
= 0;
827 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
828 tap
->has_vnet_hdr
|| tap
->helper
|| tap
->has_queues
||
830 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
831 "helper=, queues=, and vhostfd= "
832 "are invalid with fds=");
836 fds
= g_new0(char *, MAX_TAP_QUEUES
);
837 vhost_fds
= g_new0(char *, MAX_TAP_QUEUES
);
839 nfds
= get_fds(tap
->fds
, fds
, MAX_TAP_QUEUES
);
841 nvhosts
= get_fds(tap
->vhostfds
, vhost_fds
, MAX_TAP_QUEUES
);
842 if (nfds
!= nvhosts
) {
843 error_setg(errp
, "The number of fds passed does not match "
844 "the number of vhostfds passed");
850 for (i
= 0; i
< nfds
; i
++) {
851 fd
= monitor_fd_param(monitor_cur(), fds
[i
], errp
);
857 ret
= g_unix_set_fd_nonblocking(fd
, true, NULL
);
859 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
865 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
870 } else if (vnet_hdr
!= tap_probe_vnet_hdr(fd
, NULL
)) {
872 "vnet_hdr not consistent across given tap fds");
877 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
879 tap
->vhostfds
? vhost_fds
[i
] : NULL
,
882 error_propagate(errp
, err
);
889 for (i
= 0; i
< nvhosts
; i
++) {
890 g_free(vhost_fds
[i
]);
892 for (i
= 0; i
< nfds
; i
++) {
898 } else if (tap
->helper
) {
899 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
900 tap
->has_vnet_hdr
|| tap
->has_queues
|| tap
->vhostfds
) {
901 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
902 "queues=, and vhostfds= are invalid with helper=");
906 fd
= net_bridge_run_helper(tap
->helper
,
907 tap
->br
?: DEFAULT_BRIDGE_INTERFACE
,
913 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
914 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
917 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
923 net_init_tap_one(tap
, peer
, "bridge", name
, ifname
,
924 script
, downscript
, vhostfdname
,
927 error_propagate(errp
, err
);
932 g_autofree
char *default_script
= NULL
;
933 g_autofree
char *default_downscript
= NULL
;
935 error_setg(errp
, "vhostfds= is invalid if fds= wasn't specified");
940 script
= default_script
= get_relocated_path(DEFAULT_NETWORK_SCRIPT
);
943 downscript
= default_downscript
=
944 get_relocated_path(DEFAULT_NETWORK_DOWN_SCRIPT
);
948 pstrcpy(ifname
, sizeof ifname
, tap
->ifname
);
953 for (i
= 0; i
< queues
; i
++) {
954 fd
= net_tap_init(tap
, &vnet_hdr
, i
>= 1 ? "no" : script
,
955 ifname
, sizeof ifname
, queues
> 1, errp
);
960 if (queues
> 1 && i
== 0 && !tap
->ifname
) {
961 if (tap_fd_get_ifname(fd
, ifname
)) {
962 error_setg(errp
, "Fail to get ifname");
968 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
969 i
>= 1 ? "no" : script
,
970 i
>= 1 ? "no" : downscript
,
971 vhostfdname
, vnet_hdr
, fd
, &err
);
973 error_propagate(errp
, err
);
983 VHostNetState
*tap_get_vhost_net(NetClientState
*nc
)
985 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
986 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
990 int tap_enable(NetClientState
*nc
)
992 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
998 ret
= tap_fd_enable(s
->fd
);
1001 tap_update_fd_handler(s
);
1007 int tap_disable(NetClientState
*nc
)
1009 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
1012 if (s
->enabled
== 0) {
1015 ret
= tap_fd_disable(s
->fd
);
1017 qemu_purge_queued_packets(nc
);
1019 tap_update_fd_handler(s
);