]> Git Repo - qemu.git/blame - net/tap.c
convert net_init_slirp() to NetClientOptions
[qemu.git] / net / tap.c
CommitLineData
5281d757
MM
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009 Red Hat, Inc.
6 *
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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.
24 */
25
26#include "net/tap.h"
27
28#include "config-host.h"
29
5281d757
MM
30#include <sys/ioctl.h>
31#include <sys/stat.h>
32#include <sys/wait.h>
71f4effc 33#include <sys/socket.h>
5281d757
MM
34#include <net/if.h>
35
36#include "net.h"
37003adf 37#include "monitor.h"
5281d757
MM
38#include "sysemu.h"
39#include "qemu-char.h"
40#include "qemu-common.h"
2f792016 41#include "qemu-error.h"
5281d757 42
5281d757 43#include "net/tap-linux.h"
5281d757 44
82b0d80e
MT
45#include "hw/vhost_net.h"
46
5281d757
MM
47/* Maximum GSO packet size (64k) plus plenty of room for
48 * the ethernet and virtio_net headers
49 */
50#define TAP_BUFSIZE (4096 + 65536)
51
52typedef struct TAPState {
3e35ba93 53 VLANClientState nc;
5281d757
MM
54 int fd;
55 char down_script[1024];
56 char down_script_arg[128];
57 uint8_t buf[TAP_BUFSIZE];
58 unsigned int read_poll : 1;
59 unsigned int write_poll : 1;
5281d757
MM
60 unsigned int using_vnet_hdr : 1;
61 unsigned int has_ufo: 1;
82b0d80e 62 VHostNetState *vhost_net;
ef4252b1 63 unsigned host_vnet_hdr_len;
5281d757
MM
64} TAPState;
65
66static int launch_script(const char *setup_script, const char *ifname, int fd);
67
68static int tap_can_send(void *opaque);
69static void tap_send(void *opaque);
70static void tap_writable(void *opaque);
71
72static void tap_update_fd_handler(TAPState *s)
73{
74 qemu_set_fd_handler2(s->fd,
75 s->read_poll ? tap_can_send : NULL,
76 s->read_poll ? tap_send : NULL,
77 s->write_poll ? tap_writable : NULL,
78 s);
79}
80
81static void tap_read_poll(TAPState *s, int enable)
82{
83 s->read_poll = !!enable;
84 tap_update_fd_handler(s);
85}
86
87static void tap_write_poll(TAPState *s, int enable)
88{
89 s->write_poll = !!enable;
90 tap_update_fd_handler(s);
91}
92
93static void tap_writable(void *opaque)
94{
95 TAPState *s = opaque;
96
97 tap_write_poll(s, 0);
98
3e35ba93 99 qemu_flush_queued_packets(&s->nc);
5281d757
MM
100}
101
102static ssize_t tap_write_packet(TAPState *s, const struct iovec *iov, int iovcnt)
103{
104 ssize_t len;
105
106 do {
107 len = writev(s->fd, iov, iovcnt);
108 } while (len == -1 && errno == EINTR);
109
110 if (len == -1 && errno == EAGAIN) {
111 tap_write_poll(s, 1);
112 return 0;
113 }
114
115 return len;
116}
117
3e35ba93 118static ssize_t tap_receive_iov(VLANClientState *nc, const struct iovec *iov,
5281d757
MM
119 int iovcnt)
120{
3e35ba93 121 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757
MM
122 const struct iovec *iovp = iov;
123 struct iovec iov_copy[iovcnt + 1];
ef4252b1 124 struct virtio_net_hdr_mrg_rxbuf hdr = { };
5281d757 125
ef4252b1 126 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
5281d757 127 iov_copy[0].iov_base = &hdr;
ef4252b1 128 iov_copy[0].iov_len = s->host_vnet_hdr_len;
5281d757
MM
129 memcpy(&iov_copy[1], iov, iovcnt * sizeof(*iov));
130 iovp = iov_copy;
131 iovcnt++;
132 }
133
134 return tap_write_packet(s, iovp, iovcnt);
135}
136
3e35ba93 137static ssize_t tap_receive_raw(VLANClientState *nc, const uint8_t *buf, size_t size)
5281d757 138{
3e35ba93 139 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757
MM
140 struct iovec iov[2];
141 int iovcnt = 0;
ef4252b1 142 struct virtio_net_hdr_mrg_rxbuf hdr = { };
5281d757 143
ef4252b1 144 if (s->host_vnet_hdr_len) {
5281d757 145 iov[iovcnt].iov_base = &hdr;
ef4252b1 146 iov[iovcnt].iov_len = s->host_vnet_hdr_len;
5281d757
MM
147 iovcnt++;
148 }
149
150 iov[iovcnt].iov_base = (char *)buf;
151 iov[iovcnt].iov_len = size;
152 iovcnt++;
153
154 return tap_write_packet(s, iov, iovcnt);
155}
156
3e35ba93 157static ssize_t tap_receive(VLANClientState *nc, const uint8_t *buf, size_t size)
5281d757 158{
3e35ba93 159 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757
MM
160 struct iovec iov[1];
161
ef4252b1 162 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
3e35ba93 163 return tap_receive_raw(nc, buf, size);
5281d757
MM
164 }
165
166 iov[0].iov_base = (char *)buf;
167 iov[0].iov_len = size;
168
169 return tap_write_packet(s, iov, 1);
170}
171
172static int tap_can_send(void *opaque)
173{
174 TAPState *s = opaque;
175
3e35ba93 176 return qemu_can_send_packet(&s->nc);
5281d757
MM
177}
178
966ea5ec
MM
179#ifndef __sun__
180ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
5281d757
MM
181{
182 return read(tapfd, buf, maxlen);
183}
184#endif
185
3e35ba93 186static void tap_send_completed(VLANClientState *nc, ssize_t len)
5281d757 187{
3e35ba93 188 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757
MM
189 tap_read_poll(s, 1);
190}
191
192static void tap_send(void *opaque)
193{
194 TAPState *s = opaque;
195 int size;
196
5819c918
MM
197 do {
198 uint8_t *buf = s->buf;
199
200 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
201 if (size <= 0) {
202 break;
203 }
204
ef4252b1
MT
205 if (s->host_vnet_hdr_len && !s->using_vnet_hdr) {
206 buf += s->host_vnet_hdr_len;
207 size -= s->host_vnet_hdr_len;
5819c918
MM
208 }
209
3e35ba93 210 size = qemu_send_packet_async(&s->nc, buf, size, tap_send_completed);
5819c918
MM
211 if (size == 0) {
212 tap_read_poll(s, 0);
213 }
3e35ba93 214 } while (size > 0 && qemu_can_send_packet(&s->nc));
5281d757
MM
215}
216
3e35ba93 217int tap_has_ufo(VLANClientState *nc)
5281d757 218{
3e35ba93 219 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757 220
2be64a68 221 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
5281d757
MM
222
223 return s->has_ufo;
224}
225
3e35ba93 226int tap_has_vnet_hdr(VLANClientState *nc)
5281d757 227{
3e35ba93 228 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757 229
2be64a68 230 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
5281d757 231
ef4252b1 232 return !!s->host_vnet_hdr_len;
5281d757
MM
233}
234
445d892f
MT
235int tap_has_vnet_hdr_len(VLANClientState *nc, int len)
236{
237 TAPState *s = DO_UPCAST(TAPState, nc, nc);
238
2be64a68 239 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
445d892f
MT
240
241 return tap_probe_vnet_hdr_len(s->fd, len);
242}
243
244void tap_set_vnet_hdr_len(VLANClientState *nc, int len)
245{
246 TAPState *s = DO_UPCAST(TAPState, nc, nc);
247
2be64a68 248 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
445d892f
MT
249 assert(len == sizeof(struct virtio_net_hdr_mrg_rxbuf) ||
250 len == sizeof(struct virtio_net_hdr));
251
252 tap_fd_set_vnet_hdr_len(s->fd, len);
253 s->host_vnet_hdr_len = len;
254}
255
3e35ba93 256void tap_using_vnet_hdr(VLANClientState *nc, int using_vnet_hdr)
5281d757 257{
3e35ba93 258 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757
MM
259
260 using_vnet_hdr = using_vnet_hdr != 0;
261
2be64a68 262 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
ef4252b1 263 assert(!!s->host_vnet_hdr_len == using_vnet_hdr);
5281d757
MM
264
265 s->using_vnet_hdr = using_vnet_hdr;
266}
267
3e35ba93 268void tap_set_offload(VLANClientState *nc, int csum, int tso4,
5281d757
MM
269 int tso6, int ecn, int ufo)
270{
3e35ba93 271 TAPState *s = DO_UPCAST(TAPState, nc, nc);
27a6375d
MT
272 if (s->fd < 0) {
273 return;
274 }
5281d757 275
27a6375d 276 tap_fd_set_offload(s->fd, csum, tso4, tso6, ecn, ufo);
5281d757
MM
277}
278
3e35ba93 279static void tap_cleanup(VLANClientState *nc)
5281d757 280{
3e35ba93 281 TAPState *s = DO_UPCAST(TAPState, nc, nc);
5281d757 282
82b0d80e
MT
283 if (s->vhost_net) {
284 vhost_net_cleanup(s->vhost_net);
43849424 285 s->vhost_net = NULL;
82b0d80e
MT
286 }
287
3e35ba93 288 qemu_purge_queued_packets(nc);
5281d757
MM
289
290 if (s->down_script[0])
291 launch_script(s->down_script, s->down_script_arg, s->fd);
292
293 tap_read_poll(s, 0);
294 tap_write_poll(s, 0);
295 close(s->fd);
27a6375d 296 s->fd = -1;
5281d757
MM
297}
298
ceb69615
MT
299static void tap_poll(VLANClientState *nc, bool enable)
300{
301 TAPState *s = DO_UPCAST(TAPState, nc, nc);
302 tap_read_poll(s, enable);
303 tap_write_poll(s, enable);
304}
305
95d528a2
MT
306int tap_get_fd(VLANClientState *nc)
307{
308 TAPState *s = DO_UPCAST(TAPState, nc, nc);
2be64a68 309 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
95d528a2
MT
310 return s->fd;
311}
312
5281d757
MM
313/* fd support */
314
3e35ba93 315static NetClientInfo net_tap_info = {
2be64a68 316 .type = NET_CLIENT_OPTIONS_KIND_TAP,
3e35ba93
MM
317 .size = sizeof(TAPState),
318 .receive = tap_receive,
319 .receive_raw = tap_receive_raw,
320 .receive_iov = tap_receive_iov,
ceb69615 321 .poll = tap_poll,
3e35ba93
MM
322 .cleanup = tap_cleanup,
323};
324
5281d757
MM
325static TAPState *net_tap_fd_init(VLANState *vlan,
326 const char *model,
327 const char *name,
328 int fd,
329 int vnet_hdr)
330{
3e35ba93 331 VLANClientState *nc;
5281d757 332 TAPState *s;
5281d757 333
3e35ba93
MM
334 nc = qemu_new_net_client(&net_tap_info, vlan, NULL, model, name);
335
336 s = DO_UPCAST(TAPState, nc, nc);
337
5281d757 338 s->fd = fd;
ef4252b1 339 s->host_vnet_hdr_len = vnet_hdr ? sizeof(struct virtio_net_hdr) : 0;
5281d757 340 s->using_vnet_hdr = 0;
9c282718 341 s->has_ufo = tap_probe_has_ufo(s->fd);
3e35ba93 342 tap_set_offload(&s->nc, 0, 0, 0, 0, 0);
5281d757 343 tap_read_poll(s, 1);
82b0d80e 344 s->vhost_net = NULL;
5281d757
MM
345 return s;
346}
347
5281d757
MM
348static int launch_script(const char *setup_script, const char *ifname, int fd)
349{
5281d757
MM
350 int pid, status;
351 char *args[3];
352 char **parg;
353
5281d757
MM
354 /* try to launch network script */
355 pid = fork();
356 if (pid == 0) {
357 int open_max = sysconf(_SC_OPEN_MAX), i;
358
359 for (i = 0; i < open_max; i++) {
360 if (i != STDIN_FILENO &&
361 i != STDOUT_FILENO &&
362 i != STDERR_FILENO &&
363 i != fd) {
364 close(i);
365 }
366 }
367 parg = args;
368 *parg++ = (char *)setup_script;
369 *parg++ = (char *)ifname;
9678d950 370 *parg = NULL;
5281d757
MM
371 execv(setup_script, args);
372 _exit(1);
373 } else if (pid > 0) {
374 while (waitpid(pid, &status, 0) != pid) {
375 /* loop */
376 }
5281d757
MM
377
378 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
379 return 0;
380 }
381 }
382 fprintf(stderr, "%s: could not launch network script\n", setup_script);
383 return -1;
384}
385
a7c36ee4
CB
386static int recv_fd(int c)
387{
388 int fd;
389 uint8_t msgbuf[CMSG_SPACE(sizeof(fd))];
390 struct msghdr msg = {
391 .msg_control = msgbuf,
392 .msg_controllen = sizeof(msgbuf),
393 };
394 struct cmsghdr *cmsg;
395 struct iovec iov;
396 uint8_t req[1];
397 ssize_t len;
398
399 cmsg = CMSG_FIRSTHDR(&msg);
400 cmsg->cmsg_level = SOL_SOCKET;
401 cmsg->cmsg_type = SCM_RIGHTS;
402 cmsg->cmsg_len = CMSG_LEN(sizeof(fd));
403 msg.msg_controllen = cmsg->cmsg_len;
404
405 iov.iov_base = req;
406 iov.iov_len = sizeof(req);
407
408 msg.msg_iov = &iov;
409 msg.msg_iovlen = 1;
410
411 len = recvmsg(c, &msg, 0);
412 if (len > 0) {
413 memcpy(&fd, CMSG_DATA(cmsg), sizeof(fd));
414 return fd;
415 }
416
417 return len;
418}
419
420static int net_bridge_run_helper(const char *helper, const char *bridge)
421{
422 sigset_t oldmask, mask;
423 int pid, status;
424 char *args[5];
425 char **parg;
426 int sv[2];
427
428 sigemptyset(&mask);
429 sigaddset(&mask, SIGCHLD);
430 sigprocmask(SIG_BLOCK, &mask, &oldmask);
431
432 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) == -1) {
433 return -1;
434 }
435
436 /* try to launch bridge helper */
437 pid = fork();
438 if (pid == 0) {
439 int open_max = sysconf(_SC_OPEN_MAX), i;
440 char fd_buf[6+10];
441 char br_buf[6+IFNAMSIZ] = {0};
442 char helper_cmd[PATH_MAX + sizeof(fd_buf) + sizeof(br_buf) + 15];
443
444 for (i = 0; i < open_max; i++) {
445 if (i != STDIN_FILENO &&
446 i != STDOUT_FILENO &&
447 i != STDERR_FILENO &&
448 i != sv[1]) {
449 close(i);
450 }
451 }
452
453 snprintf(fd_buf, sizeof(fd_buf), "%s%d", "--fd=", sv[1]);
454
455 if (strrchr(helper, ' ') || strrchr(helper, '\t')) {
456 /* assume helper is a command */
457
458 if (strstr(helper, "--br=") == NULL) {
459 snprintf(br_buf, sizeof(br_buf), "%s%s", "--br=", bridge);
460 }
461
462 snprintf(helper_cmd, sizeof(helper_cmd), "%s %s %s %s",
463 helper, "--use-vnet", fd_buf, br_buf);
464
465 parg = args;
466 *parg++ = (char *)"sh";
467 *parg++ = (char *)"-c";
468 *parg++ = helper_cmd;
469 *parg++ = NULL;
470
471 execv("/bin/sh", args);
472 } else {
473 /* assume helper is just the executable path name */
474
475 snprintf(br_buf, sizeof(br_buf), "%s%s", "--br=", bridge);
476
477 parg = args;
478 *parg++ = (char *)helper;
479 *parg++ = (char *)"--use-vnet";
480 *parg++ = fd_buf;
481 *parg++ = br_buf;
482 *parg++ = NULL;
483
484 execv(helper, args);
485 }
486 _exit(1);
487
488 } else if (pid > 0) {
489 int fd;
490
491 close(sv[1]);
492
493 do {
494 fd = recv_fd(sv[0]);
495 } while (fd == -1 && errno == EINTR);
496
497 close(sv[0]);
498
499 while (waitpid(pid, &status, 0) != pid) {
500 /* loop */
501 }
502 sigprocmask(SIG_SETMASK, &oldmask, NULL);
503 if (fd < 0) {
504 fprintf(stderr, "failed to recv file descriptor\n");
505 return -1;
506 }
507
508 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
509 return fd;
510 }
511 }
512 fprintf(stderr, "failed to launch bridge helper\n");
513 return -1;
514}
515
6687b79d
LE
516int net_init_bridge(QemuOpts *opts, const NetClientOptions *new_opts,
517 const char *name, VLANState *vlan)
a7c36ee4
CB
518{
519 TAPState *s;
520 int fd, vnet_hdr;
521
522 if (!qemu_opt_get(opts, "br")) {
523 qemu_opt_set(opts, "br", DEFAULT_BRIDGE_INTERFACE);
524 }
525 if (!qemu_opt_get(opts, "helper")) {
526 qemu_opt_set(opts, "helper", DEFAULT_BRIDGE_HELPER);
527 }
528
529 fd = net_bridge_run_helper(qemu_opt_get(opts, "helper"),
530 qemu_opt_get(opts, "br"));
531 if (fd == -1) {
532 return -1;
533 }
534
535 fcntl(fd, F_SETFL, O_NONBLOCK);
536
537 vnet_hdr = tap_probe_vnet_hdr(fd);
538
539 s = net_tap_fd_init(vlan, "bridge", name, fd, vnet_hdr);
540 if (!s) {
541 close(fd);
542 return -1;
543 }
544
545 snprintf(s->nc.info_str, sizeof(s->nc.info_str), "helper=%s,br=%s",
546 qemu_opt_get(opts, "helper"), qemu_opt_get(opts, "br"));
547
548 return 0;
549}
550
5281d757
MM
551static int net_tap_init(QemuOpts *opts, int *vnet_hdr)
552{
553 int fd, vnet_hdr_required;
554 char ifname[128] = {0,};
555 const char *setup_script;
556
557 if (qemu_opt_get(opts, "ifname")) {
558 pstrcpy(ifname, sizeof(ifname), qemu_opt_get(opts, "ifname"));
559 }
560
561 *vnet_hdr = qemu_opt_get_bool(opts, "vnet_hdr", 1);
562 if (qemu_opt_get(opts, "vnet_hdr")) {
563 vnet_hdr_required = *vnet_hdr;
564 } else {
565 vnet_hdr_required = 0;
566 }
567
568 TFR(fd = tap_open(ifname, sizeof(ifname), vnet_hdr, vnet_hdr_required));
569 if (fd < 0) {
570 return -1;
571 }
572
573 setup_script = qemu_opt_get(opts, "script");
574 if (setup_script &&
575 setup_script[0] != '\0' &&
576 strcmp(setup_script, "no") != 0 &&
577 launch_script(setup_script, ifname, fd)) {
578 close(fd);
579 return -1;
580 }
581
582 qemu_opt_set(opts, "ifname", ifname);
583
584 return fd;
585}
586
6687b79d
LE
587int net_init_tap(QemuOpts *opts, const NetClientOptions *new_opts,
588 const char *name, VLANState *vlan)
5281d757
MM
589{
590 TAPState *s;
df6c2a0f 591 int fd, vnet_hdr = 0;
a7c36ee4 592 const char *model;
5281d757
MM
593
594 if (qemu_opt_get(opts, "fd")) {
595 if (qemu_opt_get(opts, "ifname") ||
596 qemu_opt_get(opts, "script") ||
597 qemu_opt_get(opts, "downscript") ||
a7c36ee4
CB
598 qemu_opt_get(opts, "vnet_hdr") ||
599 qemu_opt_get(opts, "helper")) {
600 error_report("ifname=, script=, downscript=, vnet_hdr=, "
601 "and helper= are invalid with fd=");
5281d757
MM
602 return -1;
603 }
604
42dcc547 605 fd = net_handle_fd_param(cur_mon, qemu_opt_get(opts, "fd"));
5281d757
MM
606 if (fd == -1) {
607 return -1;
608 }
609
610 fcntl(fd, F_SETFL, O_NONBLOCK);
611
612 vnet_hdr = tap_probe_vnet_hdr(fd);
a7c36ee4
CB
613
614 model = "tap";
615
616 } else if (qemu_opt_get(opts, "helper")) {
617 if (qemu_opt_get(opts, "ifname") ||
618 qemu_opt_get(opts, "script") ||
619 qemu_opt_get(opts, "downscript") ||
620 qemu_opt_get(opts, "vnet_hdr")) {
621 error_report("ifname=, script=, downscript=, and vnet_hdr= "
622 "are invalid with helper=");
623 return -1;
624 }
625
626 fd = net_bridge_run_helper(qemu_opt_get(opts, "helper"),
627 DEFAULT_BRIDGE_INTERFACE);
628 if (fd == -1) {
629 return -1;
630 }
631
632 fcntl(fd, F_SETFL, O_NONBLOCK);
633
634 vnet_hdr = tap_probe_vnet_hdr(fd);
635
636 model = "bridge";
637
5281d757
MM
638 } else {
639 if (!qemu_opt_get(opts, "script")) {
640 qemu_opt_set(opts, "script", DEFAULT_NETWORK_SCRIPT);
641 }
642
643 if (!qemu_opt_get(opts, "downscript")) {
644 qemu_opt_set(opts, "downscript", DEFAULT_NETWORK_DOWN_SCRIPT);
645 }
646
647 fd = net_tap_init(opts, &vnet_hdr);
929fe497
JL
648 if (fd == -1) {
649 return -1;
650 }
a7c36ee4
CB
651
652 model = "tap";
5281d757
MM
653 }
654
a7c36ee4 655 s = net_tap_fd_init(vlan, model, name, fd, vnet_hdr);
5281d757
MM
656 if (!s) {
657 close(fd);
658 return -1;
659 }
660
15ac913b 661 if (tap_set_sndbuf(s->fd, opts) < 0) {
5281d757
MM
662 return -1;
663 }
664
665 if (qemu_opt_get(opts, "fd")) {
3e35ba93 666 snprintf(s->nc.info_str, sizeof(s->nc.info_str), "fd=%d", fd);
a7c36ee4
CB
667 } else if (qemu_opt_get(opts, "helper")) {
668 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
669 "helper=%s", qemu_opt_get(opts, "helper"));
5281d757
MM
670 } else {
671 const char *ifname, *script, *downscript;
672
673 ifname = qemu_opt_get(opts, "ifname");
674 script = qemu_opt_get(opts, "script");
675 downscript = qemu_opt_get(opts, "downscript");
676
3e35ba93 677 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
5281d757
MM
678 "ifname=%s,script=%s,downscript=%s",
679 ifname, script, downscript);
680
681 if (strcmp(downscript, "no") != 0) {
682 snprintf(s->down_script, sizeof(s->down_script), "%s", downscript);
683 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
684 }
685 }
686
5430a28f
MT
687 if (qemu_opt_get_bool(opts, "vhost", !!qemu_opt_get(opts, "vhostfd") ||
688 qemu_opt_get_bool(opts, "vhostforce", false))) {
82b0d80e 689 int vhostfd, r;
5430a28f 690 bool force = qemu_opt_get_bool(opts, "vhostforce", false);
82b0d80e 691 if (qemu_opt_get(opts, "vhostfd")) {
42dcc547 692 r = net_handle_fd_param(cur_mon, qemu_opt_get(opts, "vhostfd"));
82b0d80e
MT
693 if (r == -1) {
694 return -1;
695 }
696 vhostfd = r;
697 } else {
698 vhostfd = -1;
699 }
5430a28f 700 s->vhost_net = vhost_net_init(&s->nc, vhostfd, force);
82b0d80e
MT
701 if (!s->vhost_net) {
702 error_report("vhost-net requested but could not be initialized");
703 return -1;
704 }
705 } else if (qemu_opt_get(opts, "vhostfd")) {
706 error_report("vhostfd= is not valid without vhost");
707 return -1;
708 }
709
5281d757
MM
710 return 0;
711}
b202554c
MT
712
713VHostNetState *tap_get_vhost_net(VLANClientState *nc)
714{
715 TAPState *s = DO_UPCAST(TAPState, nc, nc);
2be64a68 716 assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP);
b202554c
MT
717 return s->vhost_net;
718}
This page took 0.401495 seconds and 4 git commands to generate.