Statistics
| Branch: | Revision:

root / net / tap.c @ 8af8ce4d

History | View | Annotate | Download (12 kB)

1 5281d757 Mark McLoughlin
/*
2 5281d757 Mark McLoughlin
 * QEMU System Emulator
3 5281d757 Mark McLoughlin
 *
4 5281d757 Mark McLoughlin
 * Copyright (c) 2003-2008 Fabrice Bellard
5 5281d757 Mark McLoughlin
 * Copyright (c) 2009 Red Hat, Inc.
6 5281d757 Mark McLoughlin
 *
7 5281d757 Mark McLoughlin
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 5281d757 Mark McLoughlin
 * of this software and associated documentation files (the "Software"), to deal
9 5281d757 Mark McLoughlin
 * in the Software without restriction, including without limitation the rights
10 5281d757 Mark McLoughlin
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 5281d757 Mark McLoughlin
 * copies of the Software, and to permit persons to whom the Software is
12 5281d757 Mark McLoughlin
 * furnished to do so, subject to the following conditions:
13 5281d757 Mark McLoughlin
 *
14 5281d757 Mark McLoughlin
 * The above copyright notice and this permission notice shall be included in
15 5281d757 Mark McLoughlin
 * all copies or substantial portions of the Software.
16 5281d757 Mark McLoughlin
 *
17 5281d757 Mark McLoughlin
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 5281d757 Mark McLoughlin
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 5281d757 Mark McLoughlin
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 5281d757 Mark McLoughlin
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 5281d757 Mark McLoughlin
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 5281d757 Mark McLoughlin
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 5281d757 Mark McLoughlin
 * THE SOFTWARE.
24 5281d757 Mark McLoughlin
 */
25 5281d757 Mark McLoughlin
26 5281d757 Mark McLoughlin
#include "net/tap.h"
27 5281d757 Mark McLoughlin
28 5281d757 Mark McLoughlin
#include "config-host.h"
29 5281d757 Mark McLoughlin
30 5281d757 Mark McLoughlin
#include <signal.h>
31 5281d757 Mark McLoughlin
#include <sys/ioctl.h>
32 5281d757 Mark McLoughlin
#include <sys/stat.h>
33 5281d757 Mark McLoughlin
#include <sys/wait.h>
34 71f4effc Alexander Graf
#include <sys/socket.h>
35 5281d757 Mark McLoughlin
#include <net/if.h>
36 5281d757 Mark McLoughlin
37 5281d757 Mark McLoughlin
#include "net.h"
38 5281d757 Mark McLoughlin
#include "sysemu.h"
39 5281d757 Mark McLoughlin
#include "qemu-char.h"
40 5281d757 Mark McLoughlin
#include "qemu-common.h"
41 2f792016 Markus Armbruster
#include "qemu-error.h"
42 5281d757 Mark McLoughlin
43 5281d757 Mark McLoughlin
#include "net/tap-linux.h"
44 5281d757 Mark McLoughlin
45 5281d757 Mark McLoughlin
/* Maximum GSO packet size (64k) plus plenty of room for
46 5281d757 Mark McLoughlin
 * the ethernet and virtio_net headers
47 5281d757 Mark McLoughlin
 */
48 5281d757 Mark McLoughlin
#define TAP_BUFSIZE (4096 + 65536)
49 5281d757 Mark McLoughlin
50 5281d757 Mark McLoughlin
typedef struct TAPState {
51 3e35ba93 Mark McLoughlin
    VLANClientState nc;
52 5281d757 Mark McLoughlin
    int fd;
53 5281d757 Mark McLoughlin
    char down_script[1024];
54 5281d757 Mark McLoughlin
    char down_script_arg[128];
55 5281d757 Mark McLoughlin
    uint8_t buf[TAP_BUFSIZE];
56 8af8ce4d Anthony Liguori
    Notifier exit_notifier;
57 5281d757 Mark McLoughlin
    unsigned int read_poll : 1;
58 5281d757 Mark McLoughlin
    unsigned int write_poll : 1;
59 5281d757 Mark McLoughlin
    unsigned int has_vnet_hdr : 1;
60 5281d757 Mark McLoughlin
    unsigned int using_vnet_hdr : 1;
61 5281d757 Mark McLoughlin
    unsigned int has_ufo: 1;
62 5281d757 Mark McLoughlin
} TAPState;
63 5281d757 Mark McLoughlin
64 5281d757 Mark McLoughlin
static int launch_script(const char *setup_script, const char *ifname, int fd);
65 5281d757 Mark McLoughlin
66 5281d757 Mark McLoughlin
static int tap_can_send(void *opaque);
67 5281d757 Mark McLoughlin
static void tap_send(void *opaque);
68 5281d757 Mark McLoughlin
static void tap_writable(void *opaque);
69 5281d757 Mark McLoughlin
70 5281d757 Mark McLoughlin
static void tap_update_fd_handler(TAPState *s)
71 5281d757 Mark McLoughlin
{
72 5281d757 Mark McLoughlin
    qemu_set_fd_handler2(s->fd,
73 5281d757 Mark McLoughlin
                         s->read_poll  ? tap_can_send : NULL,
74 5281d757 Mark McLoughlin
                         s->read_poll  ? tap_send     : NULL,
75 5281d757 Mark McLoughlin
                         s->write_poll ? tap_writable : NULL,
76 5281d757 Mark McLoughlin
                         s);
77 5281d757 Mark McLoughlin
}
78 5281d757 Mark McLoughlin
79 5281d757 Mark McLoughlin
static void tap_read_poll(TAPState *s, int enable)
80 5281d757 Mark McLoughlin
{
81 5281d757 Mark McLoughlin
    s->read_poll = !!enable;
82 5281d757 Mark McLoughlin
    tap_update_fd_handler(s);
83 5281d757 Mark McLoughlin
}
84 5281d757 Mark McLoughlin
85 5281d757 Mark McLoughlin
static void tap_write_poll(TAPState *s, int enable)
86 5281d757 Mark McLoughlin
{
87 5281d757 Mark McLoughlin
    s->write_poll = !!enable;
88 5281d757 Mark McLoughlin
    tap_update_fd_handler(s);
89 5281d757 Mark McLoughlin
}
90 5281d757 Mark McLoughlin
91 5281d757 Mark McLoughlin
static void tap_writable(void *opaque)
92 5281d757 Mark McLoughlin
{
93 5281d757 Mark McLoughlin
    TAPState *s = opaque;
94 5281d757 Mark McLoughlin
95 5281d757 Mark McLoughlin
    tap_write_poll(s, 0);
96 5281d757 Mark McLoughlin
97 3e35ba93 Mark McLoughlin
    qemu_flush_queued_packets(&s->nc);
98 5281d757 Mark McLoughlin
}
99 5281d757 Mark McLoughlin
100 5281d757 Mark McLoughlin
static ssize_t tap_write_packet(TAPState *s, const struct iovec *iov, int iovcnt)
101 5281d757 Mark McLoughlin
{
102 5281d757 Mark McLoughlin
    ssize_t len;
103 5281d757 Mark McLoughlin
104 5281d757 Mark McLoughlin
    do {
105 5281d757 Mark McLoughlin
        len = writev(s->fd, iov, iovcnt);
106 5281d757 Mark McLoughlin
    } while (len == -1 && errno == EINTR);
107 5281d757 Mark McLoughlin
108 5281d757 Mark McLoughlin
    if (len == -1 && errno == EAGAIN) {
109 5281d757 Mark McLoughlin
        tap_write_poll(s, 1);
110 5281d757 Mark McLoughlin
        return 0;
111 5281d757 Mark McLoughlin
    }
112 5281d757 Mark McLoughlin
113 5281d757 Mark McLoughlin
    return len;
114 5281d757 Mark McLoughlin
}
115 5281d757 Mark McLoughlin
116 3e35ba93 Mark McLoughlin
static ssize_t tap_receive_iov(VLANClientState *nc, const struct iovec *iov,
117 5281d757 Mark McLoughlin
                               int iovcnt)
118 5281d757 Mark McLoughlin
{
119 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
120 5281d757 Mark McLoughlin
    const struct iovec *iovp = iov;
121 5281d757 Mark McLoughlin
    struct iovec iov_copy[iovcnt + 1];
122 5281d757 Mark McLoughlin
    struct virtio_net_hdr hdr = { 0, };
123 5281d757 Mark McLoughlin
124 5281d757 Mark McLoughlin
    if (s->has_vnet_hdr && !s->using_vnet_hdr) {
125 5281d757 Mark McLoughlin
        iov_copy[0].iov_base = &hdr;
126 5281d757 Mark McLoughlin
        iov_copy[0].iov_len =  sizeof(hdr);
127 5281d757 Mark McLoughlin
        memcpy(&iov_copy[1], iov, iovcnt * sizeof(*iov));
128 5281d757 Mark McLoughlin
        iovp = iov_copy;
129 5281d757 Mark McLoughlin
        iovcnt++;
130 5281d757 Mark McLoughlin
    }
131 5281d757 Mark McLoughlin
132 5281d757 Mark McLoughlin
    return tap_write_packet(s, iovp, iovcnt);
133 5281d757 Mark McLoughlin
}
134 5281d757 Mark McLoughlin
135 3e35ba93 Mark McLoughlin
static ssize_t tap_receive_raw(VLANClientState *nc, const uint8_t *buf, size_t size)
136 5281d757 Mark McLoughlin
{
137 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
138 5281d757 Mark McLoughlin
    struct iovec iov[2];
139 5281d757 Mark McLoughlin
    int iovcnt = 0;
140 5281d757 Mark McLoughlin
    struct virtio_net_hdr hdr = { 0, };
141 5281d757 Mark McLoughlin
142 5281d757 Mark McLoughlin
    if (s->has_vnet_hdr) {
143 5281d757 Mark McLoughlin
        iov[iovcnt].iov_base = &hdr;
144 5281d757 Mark McLoughlin
        iov[iovcnt].iov_len  = sizeof(hdr);
145 5281d757 Mark McLoughlin
        iovcnt++;
146 5281d757 Mark McLoughlin
    }
147 5281d757 Mark McLoughlin
148 5281d757 Mark McLoughlin
    iov[iovcnt].iov_base = (char *)buf;
149 5281d757 Mark McLoughlin
    iov[iovcnt].iov_len  = size;
150 5281d757 Mark McLoughlin
    iovcnt++;
151 5281d757 Mark McLoughlin
152 5281d757 Mark McLoughlin
    return tap_write_packet(s, iov, iovcnt);
153 5281d757 Mark McLoughlin
}
154 5281d757 Mark McLoughlin
155 3e35ba93 Mark McLoughlin
static ssize_t tap_receive(VLANClientState *nc, const uint8_t *buf, size_t size)
156 5281d757 Mark McLoughlin
{
157 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
158 5281d757 Mark McLoughlin
    struct iovec iov[1];
159 5281d757 Mark McLoughlin
160 5281d757 Mark McLoughlin
    if (s->has_vnet_hdr && !s->using_vnet_hdr) {
161 3e35ba93 Mark McLoughlin
        return tap_receive_raw(nc, buf, size);
162 5281d757 Mark McLoughlin
    }
163 5281d757 Mark McLoughlin
164 5281d757 Mark McLoughlin
    iov[0].iov_base = (char *)buf;
165 5281d757 Mark McLoughlin
    iov[0].iov_len  = size;
166 5281d757 Mark McLoughlin
167 5281d757 Mark McLoughlin
    return tap_write_packet(s, iov, 1);
168 5281d757 Mark McLoughlin
}
169 5281d757 Mark McLoughlin
170 5281d757 Mark McLoughlin
static int tap_can_send(void *opaque)
171 5281d757 Mark McLoughlin
{
172 5281d757 Mark McLoughlin
    TAPState *s = opaque;
173 5281d757 Mark McLoughlin
174 3e35ba93 Mark McLoughlin
    return qemu_can_send_packet(&s->nc);
175 5281d757 Mark McLoughlin
}
176 5281d757 Mark McLoughlin
177 966ea5ec Mark McLoughlin
#ifndef __sun__
178 966ea5ec Mark McLoughlin
ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
179 5281d757 Mark McLoughlin
{
180 5281d757 Mark McLoughlin
    return read(tapfd, buf, maxlen);
181 5281d757 Mark McLoughlin
}
182 5281d757 Mark McLoughlin
#endif
183 5281d757 Mark McLoughlin
184 3e35ba93 Mark McLoughlin
static void tap_send_completed(VLANClientState *nc, ssize_t len)
185 5281d757 Mark McLoughlin
{
186 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
187 5281d757 Mark McLoughlin
    tap_read_poll(s, 1);
188 5281d757 Mark McLoughlin
}
189 5281d757 Mark McLoughlin
190 5281d757 Mark McLoughlin
static void tap_send(void *opaque)
191 5281d757 Mark McLoughlin
{
192 5281d757 Mark McLoughlin
    TAPState *s = opaque;
193 5281d757 Mark McLoughlin
    int size;
194 5281d757 Mark McLoughlin
195 5819c918 Mark McLoughlin
    do {
196 5819c918 Mark McLoughlin
        uint8_t *buf = s->buf;
197 5819c918 Mark McLoughlin
198 5819c918 Mark McLoughlin
        size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
199 5819c918 Mark McLoughlin
        if (size <= 0) {
200 5819c918 Mark McLoughlin
            break;
201 5819c918 Mark McLoughlin
        }
202 5819c918 Mark McLoughlin
203 5819c918 Mark McLoughlin
        if (s->has_vnet_hdr && !s->using_vnet_hdr) {
204 5819c918 Mark McLoughlin
            buf  += sizeof(struct virtio_net_hdr);
205 5819c918 Mark McLoughlin
            size -= sizeof(struct virtio_net_hdr);
206 5819c918 Mark McLoughlin
        }
207 5819c918 Mark McLoughlin
208 3e35ba93 Mark McLoughlin
        size = qemu_send_packet_async(&s->nc, buf, size, tap_send_completed);
209 5819c918 Mark McLoughlin
        if (size == 0) {
210 5819c918 Mark McLoughlin
            tap_read_poll(s, 0);
211 5819c918 Mark McLoughlin
        }
212 3e35ba93 Mark McLoughlin
    } while (size > 0 && qemu_can_send_packet(&s->nc));
213 5281d757 Mark McLoughlin
}
214 5281d757 Mark McLoughlin
215 3e35ba93 Mark McLoughlin
int tap_has_ufo(VLANClientState *nc)
216 5281d757 Mark McLoughlin
{
217 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
218 5281d757 Mark McLoughlin
219 665a3b07 Mark McLoughlin
    assert(nc->info->type == NET_CLIENT_TYPE_TAP);
220 5281d757 Mark McLoughlin
221 5281d757 Mark McLoughlin
    return s->has_ufo;
222 5281d757 Mark McLoughlin
}
223 5281d757 Mark McLoughlin
224 3e35ba93 Mark McLoughlin
int tap_has_vnet_hdr(VLANClientState *nc)
225 5281d757 Mark McLoughlin
{
226 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
227 5281d757 Mark McLoughlin
228 665a3b07 Mark McLoughlin
    assert(nc->info->type == NET_CLIENT_TYPE_TAP);
229 5281d757 Mark McLoughlin
230 5281d757 Mark McLoughlin
    return s->has_vnet_hdr;
231 5281d757 Mark McLoughlin
}
232 5281d757 Mark McLoughlin
233 3e35ba93 Mark McLoughlin
void tap_using_vnet_hdr(VLANClientState *nc, int using_vnet_hdr)
234 5281d757 Mark McLoughlin
{
235 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
236 5281d757 Mark McLoughlin
237 5281d757 Mark McLoughlin
    using_vnet_hdr = using_vnet_hdr != 0;
238 5281d757 Mark McLoughlin
239 665a3b07 Mark McLoughlin
    assert(nc->info->type == NET_CLIENT_TYPE_TAP);
240 5281d757 Mark McLoughlin
    assert(s->has_vnet_hdr == using_vnet_hdr);
241 5281d757 Mark McLoughlin
242 5281d757 Mark McLoughlin
    s->using_vnet_hdr = using_vnet_hdr;
243 5281d757 Mark McLoughlin
}
244 5281d757 Mark McLoughlin
245 3e35ba93 Mark McLoughlin
void tap_set_offload(VLANClientState *nc, int csum, int tso4,
246 5281d757 Mark McLoughlin
                     int tso6, int ecn, int ufo)
247 5281d757 Mark McLoughlin
{
248 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
249 5281d757 Mark McLoughlin
250 1faac1f7 Mark McLoughlin
    return tap_fd_set_offload(s->fd, csum, tso4, tso6, ecn, ufo);
251 5281d757 Mark McLoughlin
}
252 5281d757 Mark McLoughlin
253 3e35ba93 Mark McLoughlin
static void tap_cleanup(VLANClientState *nc)
254 5281d757 Mark McLoughlin
{
255 3e35ba93 Mark McLoughlin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
256 5281d757 Mark McLoughlin
257 3e35ba93 Mark McLoughlin
    qemu_purge_queued_packets(nc);
258 5281d757 Mark McLoughlin
259 5281d757 Mark McLoughlin
    if (s->down_script[0])
260 5281d757 Mark McLoughlin
        launch_script(s->down_script, s->down_script_arg, s->fd);
261 5281d757 Mark McLoughlin
262 5281d757 Mark McLoughlin
    tap_read_poll(s, 0);
263 5281d757 Mark McLoughlin
    tap_write_poll(s, 0);
264 5281d757 Mark McLoughlin
    close(s->fd);
265 8af8ce4d Anthony Liguori
    exit_notifier_remove(&s->exit_notifier);
266 8af8ce4d Anthony Liguori
}
267 8af8ce4d Anthony Liguori
268 8af8ce4d Anthony Liguori
/* Instead of exiting gracefully, we're exiting because someone called
269 8af8ce4d Anthony Liguori
 * exit(), make sure to invoke down script at least
270 8af8ce4d Anthony Liguori
 */
271 8af8ce4d Anthony Liguori
static void tap_cleanup_at_exit(Notifier *notifier)
272 8af8ce4d Anthony Liguori
{
273 8af8ce4d Anthony Liguori
    TAPState *s = container_of(notifier, TAPState, exit_notifier);
274 8af8ce4d Anthony Liguori
275 8af8ce4d Anthony Liguori
    if (s->down_script[0]) {
276 8af8ce4d Anthony Liguori
        launch_script(s->down_script, s->down_script_arg, s->fd);
277 8af8ce4d Anthony Liguori
    }
278 5281d757 Mark McLoughlin
}
279 5281d757 Mark McLoughlin
280 ceb69615 Michael S. Tsirkin
static void tap_poll(VLANClientState *nc, bool enable)
281 ceb69615 Michael S. Tsirkin
{
282 ceb69615 Michael S. Tsirkin
    TAPState *s = DO_UPCAST(TAPState, nc, nc);
283 ceb69615 Michael S. Tsirkin
    tap_read_poll(s, enable);
284 ceb69615 Michael S. Tsirkin
    tap_write_poll(s, enable);
285 ceb69615 Michael S. Tsirkin
}
286 ceb69615 Michael S. Tsirkin
287 5281d757 Mark McLoughlin
/* fd support */
288 5281d757 Mark McLoughlin
289 3e35ba93 Mark McLoughlin
static NetClientInfo net_tap_info = {
290 3e35ba93 Mark McLoughlin
    .type = NET_CLIENT_TYPE_TAP,
291 3e35ba93 Mark McLoughlin
    .size = sizeof(TAPState),
292 3e35ba93 Mark McLoughlin
    .receive = tap_receive,
293 3e35ba93 Mark McLoughlin
    .receive_raw = tap_receive_raw,
294 3e35ba93 Mark McLoughlin
    .receive_iov = tap_receive_iov,
295 ceb69615 Michael S. Tsirkin
    .poll = tap_poll,
296 3e35ba93 Mark McLoughlin
    .cleanup = tap_cleanup,
297 3e35ba93 Mark McLoughlin
};
298 3e35ba93 Mark McLoughlin
299 5281d757 Mark McLoughlin
static TAPState *net_tap_fd_init(VLANState *vlan,
300 5281d757 Mark McLoughlin
                                 const char *model,
301 5281d757 Mark McLoughlin
                                 const char *name,
302 5281d757 Mark McLoughlin
                                 int fd,
303 5281d757 Mark McLoughlin
                                 int vnet_hdr)
304 5281d757 Mark McLoughlin
{
305 3e35ba93 Mark McLoughlin
    VLANClientState *nc;
306 5281d757 Mark McLoughlin
    TAPState *s;
307 5281d757 Mark McLoughlin
308 3e35ba93 Mark McLoughlin
    nc = qemu_new_net_client(&net_tap_info, vlan, NULL, model, name);
309 3e35ba93 Mark McLoughlin
310 3e35ba93 Mark McLoughlin
    s = DO_UPCAST(TAPState, nc, nc);
311 3e35ba93 Mark McLoughlin
312 5281d757 Mark McLoughlin
    s->fd = fd;
313 5281d757 Mark McLoughlin
    s->has_vnet_hdr = vnet_hdr != 0;
314 5281d757 Mark McLoughlin
    s->using_vnet_hdr = 0;
315 9c282718 Mark McLoughlin
    s->has_ufo = tap_probe_has_ufo(s->fd);
316 8af8ce4d Anthony Liguori
    s->exit_notifier.notify = tap_cleanup_at_exit;
317 8af8ce4d Anthony Liguori
    exit_notifier_add(&s->exit_notifier);
318 3e35ba93 Mark McLoughlin
    tap_set_offload(&s->nc, 0, 0, 0, 0, 0);
319 5281d757 Mark McLoughlin
    tap_read_poll(s, 1);
320 5281d757 Mark McLoughlin
    return s;
321 5281d757 Mark McLoughlin
}
322 5281d757 Mark McLoughlin
323 5281d757 Mark McLoughlin
static int launch_script(const char *setup_script, const char *ifname, int fd)
324 5281d757 Mark McLoughlin
{
325 5281d757 Mark McLoughlin
    sigset_t oldmask, mask;
326 5281d757 Mark McLoughlin
    int pid, status;
327 5281d757 Mark McLoughlin
    char *args[3];
328 5281d757 Mark McLoughlin
    char **parg;
329 5281d757 Mark McLoughlin
330 5281d757 Mark McLoughlin
    sigemptyset(&mask);
331 5281d757 Mark McLoughlin
    sigaddset(&mask, SIGCHLD);
332 5281d757 Mark McLoughlin
    sigprocmask(SIG_BLOCK, &mask, &oldmask);
333 5281d757 Mark McLoughlin
334 5281d757 Mark McLoughlin
    /* try to launch network script */
335 5281d757 Mark McLoughlin
    pid = fork();
336 5281d757 Mark McLoughlin
    if (pid == 0) {
337 5281d757 Mark McLoughlin
        int open_max = sysconf(_SC_OPEN_MAX), i;
338 5281d757 Mark McLoughlin
339 5281d757 Mark McLoughlin
        for (i = 0; i < open_max; i++) {
340 5281d757 Mark McLoughlin
            if (i != STDIN_FILENO &&
341 5281d757 Mark McLoughlin
                i != STDOUT_FILENO &&
342 5281d757 Mark McLoughlin
                i != STDERR_FILENO &&
343 5281d757 Mark McLoughlin
                i != fd) {
344 5281d757 Mark McLoughlin
                close(i);
345 5281d757 Mark McLoughlin
            }
346 5281d757 Mark McLoughlin
        }
347 5281d757 Mark McLoughlin
        parg = args;
348 5281d757 Mark McLoughlin
        *parg++ = (char *)setup_script;
349 5281d757 Mark McLoughlin
        *parg++ = (char *)ifname;
350 5281d757 Mark McLoughlin
        *parg++ = NULL;
351 5281d757 Mark McLoughlin
        execv(setup_script, args);
352 5281d757 Mark McLoughlin
        _exit(1);
353 5281d757 Mark McLoughlin
    } else if (pid > 0) {
354 5281d757 Mark McLoughlin
        while (waitpid(pid, &status, 0) != pid) {
355 5281d757 Mark McLoughlin
            /* loop */
356 5281d757 Mark McLoughlin
        }
357 5281d757 Mark McLoughlin
        sigprocmask(SIG_SETMASK, &oldmask, NULL);
358 5281d757 Mark McLoughlin
359 5281d757 Mark McLoughlin
        if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
360 5281d757 Mark McLoughlin
            return 0;
361 5281d757 Mark McLoughlin
        }
362 5281d757 Mark McLoughlin
    }
363 5281d757 Mark McLoughlin
    fprintf(stderr, "%s: could not launch network script\n", setup_script);
364 5281d757 Mark McLoughlin
    return -1;
365 5281d757 Mark McLoughlin
}
366 5281d757 Mark McLoughlin
367 5281d757 Mark McLoughlin
static int net_tap_init(QemuOpts *opts, int *vnet_hdr)
368 5281d757 Mark McLoughlin
{
369 5281d757 Mark McLoughlin
    int fd, vnet_hdr_required;
370 5281d757 Mark McLoughlin
    char ifname[128] = {0,};
371 5281d757 Mark McLoughlin
    const char *setup_script;
372 5281d757 Mark McLoughlin
373 5281d757 Mark McLoughlin
    if (qemu_opt_get(opts, "ifname")) {
374 5281d757 Mark McLoughlin
        pstrcpy(ifname, sizeof(ifname), qemu_opt_get(opts, "ifname"));
375 5281d757 Mark McLoughlin
    }
376 5281d757 Mark McLoughlin
377 5281d757 Mark McLoughlin
    *vnet_hdr = qemu_opt_get_bool(opts, "vnet_hdr", 1);
378 5281d757 Mark McLoughlin
    if (qemu_opt_get(opts, "vnet_hdr")) {
379 5281d757 Mark McLoughlin
        vnet_hdr_required = *vnet_hdr;
380 5281d757 Mark McLoughlin
    } else {
381 5281d757 Mark McLoughlin
        vnet_hdr_required = 0;
382 5281d757 Mark McLoughlin
    }
383 5281d757 Mark McLoughlin
384 5281d757 Mark McLoughlin
    TFR(fd = tap_open(ifname, sizeof(ifname), vnet_hdr, vnet_hdr_required));
385 5281d757 Mark McLoughlin
    if (fd < 0) {
386 5281d757 Mark McLoughlin
        return -1;
387 5281d757 Mark McLoughlin
    }
388 5281d757 Mark McLoughlin
389 5281d757 Mark McLoughlin
    setup_script = qemu_opt_get(opts, "script");
390 5281d757 Mark McLoughlin
    if (setup_script &&
391 5281d757 Mark McLoughlin
        setup_script[0] != '\0' &&
392 5281d757 Mark McLoughlin
        strcmp(setup_script, "no") != 0 &&
393 5281d757 Mark McLoughlin
        launch_script(setup_script, ifname, fd)) {
394 5281d757 Mark McLoughlin
        close(fd);
395 5281d757 Mark McLoughlin
        return -1;
396 5281d757 Mark McLoughlin
    }
397 5281d757 Mark McLoughlin
398 5281d757 Mark McLoughlin
    qemu_opt_set(opts, "ifname", ifname);
399 5281d757 Mark McLoughlin
400 5281d757 Mark McLoughlin
    return fd;
401 5281d757 Mark McLoughlin
}
402 5281d757 Mark McLoughlin
403 5281d757 Mark McLoughlin
int net_init_tap(QemuOpts *opts, Monitor *mon, const char *name, VLANState *vlan)
404 5281d757 Mark McLoughlin
{
405 5281d757 Mark McLoughlin
    TAPState *s;
406 df6c2a0f Mark McLoughlin
    int fd, vnet_hdr = 0;
407 5281d757 Mark McLoughlin
408 5281d757 Mark McLoughlin
    if (qemu_opt_get(opts, "fd")) {
409 5281d757 Mark McLoughlin
        if (qemu_opt_get(opts, "ifname") ||
410 5281d757 Mark McLoughlin
            qemu_opt_get(opts, "script") ||
411 5281d757 Mark McLoughlin
            qemu_opt_get(opts, "downscript") ||
412 5281d757 Mark McLoughlin
            qemu_opt_get(opts, "vnet_hdr")) {
413 1ecda02b Markus Armbruster
            error_report("ifname=, script=, downscript= and vnet_hdr= is invalid with fd=");
414 5281d757 Mark McLoughlin
            return -1;
415 5281d757 Mark McLoughlin
        }
416 5281d757 Mark McLoughlin
417 5281d757 Mark McLoughlin
        fd = net_handle_fd_param(mon, qemu_opt_get(opts, "fd"));
418 5281d757 Mark McLoughlin
        if (fd == -1) {
419 5281d757 Mark McLoughlin
            return -1;
420 5281d757 Mark McLoughlin
        }
421 5281d757 Mark McLoughlin
422 5281d757 Mark McLoughlin
        fcntl(fd, F_SETFL, O_NONBLOCK);
423 5281d757 Mark McLoughlin
424 5281d757 Mark McLoughlin
        vnet_hdr = tap_probe_vnet_hdr(fd);
425 5281d757 Mark McLoughlin
    } else {
426 5281d757 Mark McLoughlin
        if (!qemu_opt_get(opts, "script")) {
427 5281d757 Mark McLoughlin
            qemu_opt_set(opts, "script", DEFAULT_NETWORK_SCRIPT);
428 5281d757 Mark McLoughlin
        }
429 5281d757 Mark McLoughlin
430 5281d757 Mark McLoughlin
        if (!qemu_opt_get(opts, "downscript")) {
431 5281d757 Mark McLoughlin
            qemu_opt_set(opts, "downscript", DEFAULT_NETWORK_DOWN_SCRIPT);
432 5281d757 Mark McLoughlin
        }
433 5281d757 Mark McLoughlin
434 5281d757 Mark McLoughlin
        fd = net_tap_init(opts, &vnet_hdr);
435 929fe497 Juergen Lock
        if (fd == -1) {
436 929fe497 Juergen Lock
            return -1;
437 929fe497 Juergen Lock
        }
438 5281d757 Mark McLoughlin
    }
439 5281d757 Mark McLoughlin
440 5281d757 Mark McLoughlin
    s = net_tap_fd_init(vlan, "tap", name, fd, vnet_hdr);
441 5281d757 Mark McLoughlin
    if (!s) {
442 5281d757 Mark McLoughlin
        close(fd);
443 5281d757 Mark McLoughlin
        return -1;
444 5281d757 Mark McLoughlin
    }
445 5281d757 Mark McLoughlin
446 15ac913b Mark McLoughlin
    if (tap_set_sndbuf(s->fd, opts) < 0) {
447 5281d757 Mark McLoughlin
        return -1;
448 5281d757 Mark McLoughlin
    }
449 5281d757 Mark McLoughlin
450 5281d757 Mark McLoughlin
    if (qemu_opt_get(opts, "fd")) {
451 3e35ba93 Mark McLoughlin
        snprintf(s->nc.info_str, sizeof(s->nc.info_str), "fd=%d", fd);
452 5281d757 Mark McLoughlin
    } else {
453 5281d757 Mark McLoughlin
        const char *ifname, *script, *downscript;
454 5281d757 Mark McLoughlin
455 5281d757 Mark McLoughlin
        ifname     = qemu_opt_get(opts, "ifname");
456 5281d757 Mark McLoughlin
        script     = qemu_opt_get(opts, "script");
457 5281d757 Mark McLoughlin
        downscript = qemu_opt_get(opts, "downscript");
458 5281d757 Mark McLoughlin
459 3e35ba93 Mark McLoughlin
        snprintf(s->nc.info_str, sizeof(s->nc.info_str),
460 5281d757 Mark McLoughlin
                 "ifname=%s,script=%s,downscript=%s",
461 5281d757 Mark McLoughlin
                 ifname, script, downscript);
462 5281d757 Mark McLoughlin
463 5281d757 Mark McLoughlin
        if (strcmp(downscript, "no") != 0) {
464 5281d757 Mark McLoughlin
            snprintf(s->down_script, sizeof(s->down_script), "%s", downscript);
465 5281d757 Mark McLoughlin
            snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
466 5281d757 Mark McLoughlin
        }
467 5281d757 Mark McLoughlin
    }
468 5281d757 Mark McLoughlin
469 5281d757 Mark McLoughlin
    return 0;
470 5281d757 Mark McLoughlin
}