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 launch_script(const char *setup_script
, const char *ifname
,
389 int fd
, Error
**errp
)
395 /* try to launch network script */
398 error_setg_errno(errp
, errno
, "could not launch network script %s",
403 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
405 for (i
= 3; i
< open_max
; i
++) {
411 *parg
++ = (char *)setup_script
;
412 *parg
++ = (char *)ifname
;
414 execv(setup_script
, args
);
417 while (waitpid(pid
, &status
, 0) != pid
) {
421 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
424 error_setg(errp
, "network script %s failed with status %d",
425 setup_script
, status
);
429 static int recv_fd(int c
)
432 uint8_t msgbuf
[CMSG_SPACE(sizeof(fd
))];
433 struct msghdr msg
= {
434 .msg_control
= msgbuf
,
435 .msg_controllen
= sizeof(msgbuf
),
437 struct cmsghdr
*cmsg
;
442 cmsg
= CMSG_FIRSTHDR(&msg
);
443 cmsg
->cmsg_level
= SOL_SOCKET
;
444 cmsg
->cmsg_type
= SCM_RIGHTS
;
445 cmsg
->cmsg_len
= CMSG_LEN(sizeof(fd
));
446 msg
.msg_controllen
= cmsg
->cmsg_len
;
449 iov
.iov_len
= sizeof(req
);
454 len
= recvmsg(c
, &msg
, 0);
456 memcpy(&fd
, CMSG_DATA(cmsg
), sizeof(fd
));
463 static int net_bridge_run_helper(const char *helper
, const char *bridge
,
466 sigset_t oldmask
, mask
;
467 g_autofree
char *default_helper
= NULL
;
474 sigaddset(&mask
, SIGCHLD
);
475 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
478 helper
= default_helper
= get_relocated_path(DEFAULT_BRIDGE_HELPER
);
481 if (socketpair(PF_UNIX
, SOCK_STREAM
, 0, sv
) == -1) {
482 error_setg_errno(errp
, errno
, "socketpair() failed");
486 /* try to launch bridge helper */
489 error_setg_errno(errp
, errno
, "Can't fork bridge helper");
493 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
496 char *helper_cmd
= NULL
;
498 for (i
= 3; i
< open_max
; i
++) {
504 fd_buf
= g_strdup_printf("%s%d", "--fd=", sv
[1]);
506 if (strrchr(helper
, ' ') || strrchr(helper
, '\t')) {
507 /* assume helper is a command */
509 if (strstr(helper
, "--br=") == NULL
) {
510 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
513 helper_cmd
= g_strdup_printf("%s %s %s %s", helper
,
514 "--use-vnet", fd_buf
, br_buf
? br_buf
: "");
517 *parg
++ = (char *)"sh";
518 *parg
++ = (char *)"-c";
519 *parg
++ = helper_cmd
;
522 execv("/bin/sh", args
);
525 /* assume helper is just the executable path name */
527 br_buf
= g_strdup_printf("%s%s", "--br=", bridge
);
530 *parg
++ = (char *)helper
;
531 *parg
++ = (char *)"--use-vnet";
548 fd
= RETRY_ON_EINTR(recv_fd(sv
[0]));
553 while (waitpid(pid
, &status
, 0) != pid
) {
556 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
558 error_setg_errno(errp
, saved_errno
,
559 "failed to recv file descriptor");
562 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
563 error_setg(errp
, "bridge helper failed");
570 int net_init_bridge(const Netdev
*netdev
, const char *name
,
571 NetClientState
*peer
, Error
**errp
)
573 const NetdevBridgeOptions
*bridge
;
574 const char *helper
, *br
;
578 assert(netdev
->type
== NET_CLIENT_DRIVER_BRIDGE
);
579 bridge
= &netdev
->u
.bridge
;
580 helper
= bridge
->helper
;
581 br
= bridge
->br
?: DEFAULT_BRIDGE_INTERFACE
;
583 fd
= net_bridge_run_helper(helper
, br
, errp
);
588 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
589 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
592 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
597 s
= net_tap_fd_init(peer
, "bridge", name
, fd
, vnet_hdr
);
599 qemu_set_info_str(&s
->nc
, "helper=%s,br=%s", helper
, br
);
604 static int net_tap_init(const NetdevTapOptions
*tap
, int *vnet_hdr
,
605 const char *setup_script
, char *ifname
,
606 size_t ifname_sz
, int mq_required
, Error
**errp
)
609 int fd
, vnet_hdr_required
;
611 if (tap
->has_vnet_hdr
) {
612 *vnet_hdr
= tap
->vnet_hdr
;
613 vnet_hdr_required
= *vnet_hdr
;
616 vnet_hdr_required
= 0;
619 fd
= RETRY_ON_EINTR(tap_open(ifname
, ifname_sz
, vnet_hdr
, vnet_hdr_required
,
626 setup_script
[0] != '\0' &&
627 strcmp(setup_script
, "no") != 0) {
628 launch_script(setup_script
, ifname
, fd
, &err
);
630 error_propagate(errp
, err
);
639 #define MAX_TAP_QUEUES 1024
641 static void net_init_tap_one(const NetdevTapOptions
*tap
, NetClientState
*peer
,
642 const char *model
, const char *name
,
643 const char *ifname
, const char *script
,
644 const char *downscript
, const char *vhostfdname
,
645 int vnet_hdr
, int fd
, Error
**errp
)
648 TAPState
*s
= net_tap_fd_init(peer
, model
, name
, fd
, vnet_hdr
);
651 tap_set_sndbuf(s
->fd
, tap
, &err
);
653 error_propagate(errp
, err
);
657 if (tap
->fd
|| tap
->fds
) {
658 qemu_set_info_str(&s
->nc
, "fd=%d", fd
);
659 } else if (tap
->helper
) {
660 qemu_set_info_str(&s
->nc
, "helper=%s", tap
->helper
);
662 qemu_set_info_str(&s
->nc
, "ifname=%s,script=%s,downscript=%s", ifname
,
665 if (strcmp(downscript
, "no") != 0) {
666 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", downscript
);
667 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
),
672 if (tap
->has_vhost
? tap
->vhost
:
673 vhostfdname
|| (tap
->has_vhostforce
&& tap
->vhostforce
)) {
674 VhostNetOptions options
;
676 options
.backend_type
= VHOST_BACKEND_TYPE_KERNEL
;
677 options
.net_backend
= &s
->nc
;
678 if (tap
->has_poll_us
) {
679 options
.busyloop_timeout
= tap
->poll_us
;
681 options
.busyloop_timeout
= 0;
685 vhostfd
= monitor_fd_param(monitor_cur(), vhostfdname
, &err
);
687 error_propagate(errp
, err
);
690 if (!g_unix_set_fd_nonblocking(vhostfd
, true, NULL
)) {
691 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
696 vhostfd
= open("/dev/vhost-net", O_RDWR
);
698 error_setg_errno(errp
, errno
,
699 "tap: open vhost char device failed");
702 if (!g_unix_set_fd_nonblocking(vhostfd
, true, NULL
)) {
703 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
707 options
.opaque
= (void *)(uintptr_t)vhostfd
;
710 s
->vhost_net
= vhost_net_init(&options
);
713 "vhost-net requested but could not be initialized");
716 } else if (vhostfdname
) {
717 error_setg(errp
, "vhostfd(s)= is not valid without vhost");
724 qemu_del_net_client(&s
->nc
);
727 static int get_fds(char *str
, char *fds
[], int max
)
729 char *ptr
= str
, *this;
730 size_t len
= strlen(str
);
733 while (i
< max
&& ptr
< str
+ len
) {
734 this = strchr(ptr
, ':');
737 fds
[i
] = g_strdup(ptr
);
739 fds
[i
] = g_strndup(ptr
, this - ptr
);
753 int net_init_tap(const Netdev
*netdev
, const char *name
,
754 NetClientState
*peer
, Error
**errp
)
756 const NetdevTapOptions
*tap
;
757 int fd
, vnet_hdr
= 0, i
= 0, queues
;
758 /* for the no-fd, no-helper case */
760 const char *downscript
;
762 const char *vhostfdname
;
766 assert(netdev
->type
== NET_CLIENT_DRIVER_TAP
);
767 tap
= &netdev
->u
.tap
;
768 queues
= tap
->has_queues
? tap
->queues
: 1;
769 vhostfdname
= tap
->vhostfd
;
770 script
= tap
->script
;
771 downscript
= tap
->downscript
;
773 /* QEMU hubs do not support multiqueue tap, in this case peer is set.
774 * For -netdev, peer is always NULL. */
775 if (peer
&& (tap
->has_queues
|| tap
->fds
|| tap
->vhostfds
)) {
776 error_setg(errp
, "Multiqueue tap cannot be used with hubs");
781 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
782 tap
->has_vnet_hdr
|| tap
->helper
|| tap
->has_queues
||
783 tap
->fds
|| tap
->vhostfds
) {
784 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
785 "helper=, queues=, fds=, and vhostfds= "
786 "are invalid with fd=");
790 fd
= monitor_fd_param(monitor_cur(), tap
->fd
, errp
);
795 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
796 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
802 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
808 net_init_tap_one(tap
, peer
, "tap", name
, NULL
,
810 vhostfdname
, vnet_hdr
, fd
, &err
);
812 error_propagate(errp
, err
);
816 } else if (tap
->fds
) {
819 int nfds
= 0, nvhosts
= 0;
821 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
822 tap
->has_vnet_hdr
|| tap
->helper
|| tap
->has_queues
||
824 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
825 "helper=, queues=, and vhostfd= "
826 "are invalid with fds=");
830 fds
= g_new0(char *, MAX_TAP_QUEUES
);
831 vhost_fds
= g_new0(char *, MAX_TAP_QUEUES
);
833 nfds
= get_fds(tap
->fds
, fds
, MAX_TAP_QUEUES
);
835 nvhosts
= get_fds(tap
->vhostfds
, vhost_fds
, MAX_TAP_QUEUES
);
836 if (nfds
!= nvhosts
) {
837 error_setg(errp
, "The number of fds passed does not match "
838 "the number of vhostfds passed");
844 for (i
= 0; i
< nfds
; i
++) {
845 fd
= monitor_fd_param(monitor_cur(), fds
[i
], errp
);
851 ret
= g_unix_set_fd_nonblocking(fd
, true, NULL
);
853 error_setg_errno(errp
, errno
, "%s: Can't use file descriptor %d",
859 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
864 } else if (vnet_hdr
!= tap_probe_vnet_hdr(fd
, NULL
)) {
866 "vnet_hdr not consistent across given tap fds");
871 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
873 tap
->vhostfds
? vhost_fds
[i
] : NULL
,
876 error_propagate(errp
, err
);
883 for (i
= 0; i
< nvhosts
; i
++) {
884 g_free(vhost_fds
[i
]);
886 for (i
= 0; i
< nfds
; i
++) {
892 } else if (tap
->helper
) {
893 if (tap
->ifname
|| tap
->script
|| tap
->downscript
||
894 tap
->has_vnet_hdr
|| tap
->has_queues
|| tap
->vhostfds
) {
895 error_setg(errp
, "ifname=, script=, downscript=, vnet_hdr=, "
896 "queues=, and vhostfds= are invalid with helper=");
900 fd
= net_bridge_run_helper(tap
->helper
,
901 tap
->br
?: DEFAULT_BRIDGE_INTERFACE
,
907 if (!g_unix_set_fd_nonblocking(fd
, true, NULL
)) {
908 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
911 vnet_hdr
= tap_probe_vnet_hdr(fd
, errp
);
917 net_init_tap_one(tap
, peer
, "bridge", name
, ifname
,
918 script
, downscript
, vhostfdname
,
921 error_propagate(errp
, err
);
926 g_autofree
char *default_script
= NULL
;
927 g_autofree
char *default_downscript
= NULL
;
929 error_setg(errp
, "vhostfds= is invalid if fds= wasn't specified");
934 script
= default_script
= get_relocated_path(DEFAULT_NETWORK_SCRIPT
);
937 downscript
= default_downscript
=
938 get_relocated_path(DEFAULT_NETWORK_DOWN_SCRIPT
);
942 pstrcpy(ifname
, sizeof ifname
, tap
->ifname
);
947 for (i
= 0; i
< queues
; i
++) {
948 fd
= net_tap_init(tap
, &vnet_hdr
, i
>= 1 ? "no" : script
,
949 ifname
, sizeof ifname
, queues
> 1, errp
);
954 if (queues
> 1 && i
== 0 && !tap
->ifname
) {
955 if (tap_fd_get_ifname(fd
, ifname
)) {
956 error_setg(errp
, "Fail to get ifname");
962 net_init_tap_one(tap
, peer
, "tap", name
, ifname
,
963 i
>= 1 ? "no" : script
,
964 i
>= 1 ? "no" : downscript
,
965 vhostfdname
, vnet_hdr
, fd
, &err
);
967 error_propagate(errp
, err
);
977 VHostNetState
*tap_get_vhost_net(NetClientState
*nc
)
979 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
980 assert(nc
->info
->type
== NET_CLIENT_DRIVER_TAP
);
984 int tap_enable(NetClientState
*nc
)
986 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
992 ret
= tap_fd_enable(s
->fd
);
995 tap_update_fd_handler(s
);
1001 int tap_disable(NetClientState
*nc
)
1003 TAPState
*s
= DO_UPCAST(TAPState
, nc
, nc
);
1006 if (s
->enabled
== 0) {
1009 ret
= tap_fd_disable(s
->fd
);
1011 qemu_purge_queued_packets(nc
);
1013 tap_update_fd_handler(s
);