Merge remote-tracking branch 'qemu-project/master'
[qemu/ar7.git] / net / tap.c
blob51f7aec39d9e1e9ec3320d5c6bcb5a9b69036992
1 /*
2 * QEMU System Emulator
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
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
27 #include "tap_int.h"
30 #include <sys/ioctl.h>
31 #include <sys/wait.h>
32 #include <sys/socket.h>
33 #include <net/if.h>
35 #include "net/eth.h"
36 #include "net/net.h"
37 #include "clients.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"
46 #include "net/tap.h"
48 #include "net/vhost_net.h"
50 typedef struct TAPState {
51 NetClientState nc;
52 int fd;
53 char down_script[1024];
54 char down_script_arg[128];
55 uint8_t buf[NET_BUFSIZE];
56 bool read_poll;
57 bool write_poll;
58 bool using_vnet_hdr;
59 bool has_ufo;
60 bool has_uso;
61 bool enabled;
62 VHostNetState *vhost_net;
63 unsigned host_vnet_hdr_len;
64 Notifier exit;
65 } TAPState;
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,
78 s);
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)
95 TAPState *s = 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)
104 ssize_t len;
106 len = RETRY_ON_EINTR(writev(s->fd, iov, iovcnt));
108 if (len == -1 && errno == EAGAIN) {
109 tap_write_poll(s, true);
110 return 0;
113 return len;
116 static ssize_t tap_receive_iov(NetClientState *nc, const struct iovec *iov,
117 int iovcnt)
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));
129 iovp = iov_copy;
130 iovcnt++;
133 return tap_write_packet(s, iovp, iovcnt);
136 static ssize_t tap_receive(NetClientState *nc, const uint8_t *buf, size_t size)
138 struct iovec iov = {
139 .iov_base = (void *)buf,
140 .iov_len = size
143 return tap_receive_iov(nc, &iov, 1);
146 #ifndef __sun__
147 ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
149 return read(tapfd, buf, maxlen);
151 #endif
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;
162 int size;
163 int packets = 0;
165 while (true) {
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));
171 if (size <= 0) {
172 break;
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)) {
182 buf = min_pkt;
183 size = min_pktsz;
187 size = qemu_send_packet_async(&s->nc, buf, size, tap_send_completed);
188 if (size == 0) {
189 tap_read_poll(s, false);
190 break;
191 } else if (size < 0) {
192 break;
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.
201 packets++;
202 if (packets >= 50) {
203 break;
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);
214 return s->has_ufo;
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);
223 return s->has_uso;
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);
269 if (s->fd < 0) {
270 return;
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);
279 Error *err = NULL;
281 if (s->down_script[0]) {
282 launch_script(s->down_script, s->down_script_arg, s->fd, &err);
283 if (err) {
284 error_report_err(err);
289 static void tap_cleanup(NetClientState *nc)
291 TAPState *s = DO_UPCAST(TAPState, nc, nc);
293 if (s->vhost_net) {
294 vhost_net_cleanup(s->vhost_net);
295 g_free(s->vhost_net);
296 s->vhost_net = NULL;
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);
306 close(s->fd);
307 s->fd = -1;
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);
329 return s->fd;
332 /* fd support */
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,
339 .poll = tap_poll,
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,
353 const char *model,
354 const char *name,
355 int fd,
356 int vnet_hdr)
358 NetClientState *nc;
359 TAPState *s;
361 nc = qemu_new_net_client(&net_tap_info, peer, model, name);
363 s = DO_UPCAST(TAPState, nc, nc);
365 s->fd = fd;
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);
370 s->enabled = true;
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.
376 if (vnet_hdr) {
377 tap_fd_set_vnet_hdr_len(s->fd, s->host_vnet_hdr_len);
379 tap_read_poll(s, true);
380 s->vhost_net = NULL;
382 s->exit.notify = tap_exit_notify;
383 qemu_add_exit_notifier(&s->exit);
385 return s;
388 static void launch_script(const char *setup_script, const char *ifname,
389 int fd, Error **errp)
391 int pid, status;
392 char *args[3];
393 char **parg;
395 /* try to launch network script */
396 pid = fork();
397 if (pid < 0) {
398 error_setg_errno(errp, errno, "could not launch network script %s",
399 setup_script);
400 return;
402 if (pid == 0) {
403 int open_max = sysconf(_SC_OPEN_MAX), i;
405 for (i = 3; i < open_max; i++) {
406 if (i != fd) {
407 close(i);
410 parg = args;
411 *parg++ = (char *)setup_script;
412 *parg++ = (char *)ifname;
413 *parg = NULL;
414 execv(setup_script, args);
415 _exit(1);
416 } else {
417 while (waitpid(pid, &status, 0) != pid) {
418 /* loop */
421 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
422 return;
424 error_setg(errp, "network script %s failed with status %d",
425 setup_script, status);
429 static int recv_fd(int c)
431 int fd;
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;
438 struct iovec iov;
439 uint8_t req[1];
440 ssize_t len;
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;
448 iov.iov_base = req;
449 iov.iov_len = sizeof(req);
451 msg.msg_iov = &iov;
452 msg.msg_iovlen = 1;
454 len = recvmsg(c, &msg, 0);
455 if (len > 0) {
456 memcpy(&fd, CMSG_DATA(cmsg), sizeof(fd));
457 return fd;
460 return len;
463 static int net_bridge_run_helper(const char *helper, const char *bridge,
464 Error **errp)
466 sigset_t oldmask, mask;
467 g_autofree char *default_helper = NULL;
468 int pid, status;
469 char *args[5];
470 char **parg;
471 int sv[2];
473 sigemptyset(&mask);
474 sigaddset(&mask, SIGCHLD);
475 sigprocmask(SIG_BLOCK, &mask, &oldmask);
477 if (!helper) {
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");
483 return -1;
486 /* try to launch bridge helper */
487 pid = fork();
488 if (pid < 0) {
489 error_setg_errno(errp, errno, "Can't fork bridge helper");
490 return -1;
492 if (pid == 0) {
493 int open_max = sysconf(_SC_OPEN_MAX), i;
494 char *fd_buf = NULL;
495 char *br_buf = NULL;
496 char *helper_cmd = NULL;
498 for (i = 3; i < open_max; i++) {
499 if (i != sv[1]) {
500 close(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 : "");
516 parg = args;
517 *parg++ = (char *)"sh";
518 *parg++ = (char *)"-c";
519 *parg++ = helper_cmd;
520 *parg++ = NULL;
522 execv("/bin/sh", args);
523 g_free(helper_cmd);
524 } else {
525 /* assume helper is just the executable path name */
527 br_buf = g_strdup_printf("%s%s", "--br=", bridge);
529 parg = args;
530 *parg++ = (char *)helper;
531 *parg++ = (char *)"--use-vnet";
532 *parg++ = fd_buf;
533 *parg++ = br_buf;
534 *parg++ = NULL;
536 execv(helper, args);
538 g_free(fd_buf);
539 g_free(br_buf);
540 _exit(1);
542 } else {
543 int fd;
544 int saved_errno;
546 close(sv[1]);
548 fd = RETRY_ON_EINTR(recv_fd(sv[0]));
549 saved_errno = errno;
551 close(sv[0]);
553 while (waitpid(pid, &status, 0) != pid) {
554 /* loop */
556 sigprocmask(SIG_SETMASK, &oldmask, NULL);
557 if (fd < 0) {
558 error_setg_errno(errp, saved_errno,
559 "failed to recv file descriptor");
560 return -1;
562 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
563 error_setg(errp, "bridge helper failed");
564 return -1;
566 return fd;
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;
575 TAPState *s;
576 int fd, vnet_hdr;
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);
584 if (fd == -1) {
585 return -1;
588 if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
589 error_setg_errno(errp, errno, "Failed to set FD nonblocking");
590 return -1;
592 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
593 if (vnet_hdr < 0) {
594 close(fd);
595 return -1;
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);
601 return 0;
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)
608 Error *err = NULL;
609 int fd, vnet_hdr_required;
611 if (tap->has_vnet_hdr) {
612 *vnet_hdr = tap->vnet_hdr;
613 vnet_hdr_required = *vnet_hdr;
614 } else {
615 *vnet_hdr = 1;
616 vnet_hdr_required = 0;
619 fd = RETRY_ON_EINTR(tap_open(ifname, ifname_sz, vnet_hdr, vnet_hdr_required,
620 mq_required, errp));
621 if (fd < 0) {
622 return -1;
625 if (setup_script &&
626 setup_script[0] != '\0' &&
627 strcmp(setup_script, "no") != 0) {
628 launch_script(setup_script, ifname, fd, &err);
629 if (err) {
630 error_propagate(errp, err);
631 close(fd);
632 return -1;
636 return fd;
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)
647 Error *err = NULL;
648 TAPState *s = net_tap_fd_init(peer, model, name, fd, vnet_hdr);
649 int vhostfd;
651 tap_set_sndbuf(s->fd, tap, &err);
652 if (err) {
653 error_propagate(errp, err);
654 goto failed;
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);
661 } else {
662 qemu_set_info_str(&s->nc, "ifname=%s,script=%s,downscript=%s", ifname,
663 script, downscript);
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),
668 "%s", ifname);
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;
680 } else {
681 options.busyloop_timeout = 0;
684 if (vhostfdname) {
685 vhostfd = monitor_fd_param(monitor_cur(), vhostfdname, &err);
686 if (vhostfd == -1) {
687 error_propagate(errp, err);
688 goto failed;
690 if (!g_unix_set_fd_nonblocking(vhostfd, true, NULL)) {
691 error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
692 name, fd);
693 goto failed;
695 } else {
696 vhostfd = open("/dev/vhost-net", O_RDWR);
697 if (vhostfd < 0) {
698 error_setg_errno(errp, errno,
699 "tap: open vhost char device failed");
700 goto failed;
702 if (!g_unix_set_fd_nonblocking(vhostfd, true, NULL)) {
703 error_setg_errno(errp, errno, "Failed to set FD nonblocking");
704 goto failed;
707 options.opaque = (void *)(uintptr_t)vhostfd;
708 options.nvqs = 2;
710 s->vhost_net = vhost_net_init(&options);
711 if (!s->vhost_net) {
712 error_setg(errp,
713 "vhost-net requested but could not be initialized");
714 goto failed;
716 } else if (vhostfdname) {
717 error_setg(errp, "vhostfd(s)= is not valid without vhost");
718 goto failed;
721 return;
723 failed:
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);
731 int i = 0;
733 while (i < max && ptr < str + len) {
734 this = strchr(ptr, ':');
736 if (this == NULL) {
737 fds[i] = g_strdup(ptr);
738 } else {
739 fds[i] = g_strndup(ptr, this - ptr);
742 i++;
743 if (this == NULL) {
744 break;
745 } else {
746 ptr = this + 1;
750 return i;
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 */
759 const char *script;
760 const char *downscript;
761 Error *err = NULL;
762 const char *vhostfdname;
763 char ifname[128];
764 int ret = 0;
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");
777 return -1;
780 if (tap->fd) {
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=");
787 return -1;
790 fd = monitor_fd_param(monitor_cur(), tap->fd, errp);
791 if (fd == -1) {
792 return -1;
795 if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
796 error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
797 name, fd);
798 close(fd);
799 return -1;
802 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
803 if (vnet_hdr < 0) {
804 close(fd);
805 return -1;
808 net_init_tap_one(tap, peer, "tap", name, NULL,
809 script, downscript,
810 vhostfdname, vnet_hdr, fd, &err);
811 if (err) {
812 error_propagate(errp, err);
813 close(fd);
814 return -1;
816 } else if (tap->fds) {
817 char **fds;
818 char **vhost_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 ||
823 tap->vhostfd) {
824 error_setg(errp, "ifname=, script=, downscript=, vnet_hdr=, "
825 "helper=, queues=, and vhostfd= "
826 "are invalid with fds=");
827 return -1;
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);
834 if (tap->vhostfds) {
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");
839 ret = -1;
840 goto free_fail;
844 for (i = 0; i < nfds; i++) {
845 fd = monitor_fd_param(monitor_cur(), fds[i], errp);
846 if (fd == -1) {
847 ret = -1;
848 goto free_fail;
851 ret = g_unix_set_fd_nonblocking(fd, true, NULL);
852 if (!ret) {
853 error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
854 name, fd);
855 goto free_fail;
858 if (i == 0) {
859 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
860 if (vnet_hdr < 0) {
861 ret = -1;
862 goto free_fail;
864 } else if (vnet_hdr != tap_probe_vnet_hdr(fd, NULL)) {
865 error_setg(errp,
866 "vnet_hdr not consistent across given tap fds");
867 ret = -1;
868 goto free_fail;
871 net_init_tap_one(tap, peer, "tap", name, ifname,
872 script, downscript,
873 tap->vhostfds ? vhost_fds[i] : NULL,
874 vnet_hdr, fd, &err);
875 if (err) {
876 error_propagate(errp, err);
877 ret = -1;
878 goto free_fail;
882 free_fail:
883 for (i = 0; i < nvhosts; i++) {
884 g_free(vhost_fds[i]);
886 for (i = 0; i < nfds; i++) {
887 g_free(fds[i]);
889 g_free(fds);
890 g_free(vhost_fds);
891 return ret;
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=");
897 return -1;
900 fd = net_bridge_run_helper(tap->helper,
901 tap->br ?: DEFAULT_BRIDGE_INTERFACE,
902 errp);
903 if (fd == -1) {
904 return -1;
907 if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
908 error_setg_errno(errp, errno, "Failed to set FD nonblocking");
909 return -1;
911 vnet_hdr = tap_probe_vnet_hdr(fd, errp);
912 if (vnet_hdr < 0) {
913 close(fd);
914 return -1;
917 net_init_tap_one(tap, peer, "bridge", name, ifname,
918 script, downscript, vhostfdname,
919 vnet_hdr, fd, &err);
920 if (err) {
921 error_propagate(errp, err);
922 close(fd);
923 return -1;
925 } else {
926 g_autofree char *default_script = NULL;
927 g_autofree char *default_downscript = NULL;
928 if (tap->vhostfds) {
929 error_setg(errp, "vhostfds= is invalid if fds= wasn't specified");
930 return -1;
933 if (!script) {
934 script = default_script = get_relocated_path(DEFAULT_NETWORK_SCRIPT);
936 if (!downscript) {
937 downscript = default_downscript =
938 get_relocated_path(DEFAULT_NETWORK_DOWN_SCRIPT);
941 if (tap->ifname) {
942 pstrcpy(ifname, sizeof ifname, tap->ifname);
943 } else {
944 ifname[0] = '\0';
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);
950 if (fd == -1) {
951 return -1;
954 if (queues > 1 && i == 0 && !tap->ifname) {
955 if (tap_fd_get_ifname(fd, ifname)) {
956 error_setg(errp, "Fail to get ifname");
957 close(fd);
958 return -1;
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);
966 if (err) {
967 error_propagate(errp, err);
968 close(fd);
969 return -1;
974 return 0;
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);
981 return s->vhost_net;
984 int tap_enable(NetClientState *nc)
986 TAPState *s = DO_UPCAST(TAPState, nc, nc);
987 int ret;
989 if (s->enabled) {
990 return 0;
991 } else {
992 ret = tap_fd_enable(s->fd);
993 if (ret == 0) {
994 s->enabled = true;
995 tap_update_fd_handler(s);
997 return ret;
1001 int tap_disable(NetClientState *nc)
1003 TAPState *s = DO_UPCAST(TAPState, nc, nc);
1004 int ret;
1006 if (s->enabled == 0) {
1007 return 0;
1008 } else {
1009 ret = tap_fd_disable(s->fd);
1010 if (ret == 0) {
1011 qemu_purge_queued_packets(nc);
1012 s->enabled = false;
1013 tap_update_fd_handler(s);
1015 return ret;