]> git.proxmox.com Git - qemu.git/blame - net.c
net: Fix and improved ordered packet delivery
[qemu.git] / net.c
CommitLineData
63a01ef8
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
63a01ef8
AL
24#include <unistd.h>
25#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
28#include <errno.h>
29#include <sys/time.h>
30#include <zlib.h>
31
179a2c19 32/* Needed early for HOST_BSD etc. */
d40cdb10
BS
33#include "config-host.h"
34
63a01ef8
AL
35#ifndef _WIN32
36#include <sys/times.h>
37#include <sys/wait.h>
38#include <termios.h>
39#include <sys/mman.h>
40#include <sys/ioctl.h>
24646c7e 41#include <sys/resource.h>
63a01ef8
AL
42#include <sys/socket.h>
43#include <netinet/in.h>
24646c7e
BS
44#include <net/if.h>
45#ifdef __NetBSD__
46#include <net/if_tap.h>
47#endif
48#ifdef __linux__
49#include <linux/if_tun.h>
50#endif
51#include <arpa/inet.h>
63a01ef8
AL
52#include <dirent.h>
53#include <netdb.h>
54#include <sys/select.h>
179a2c19 55#ifdef HOST_BSD
63a01ef8 56#include <sys/stat.h>
c5e97233 57#if defined(__FreeBSD__) || defined(__DragonFly__)
63a01ef8 58#include <libutil.h>
24646c7e
BS
59#else
60#include <util.h>
63a01ef8
AL
61#endif
62#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63#include <freebsd/stdlib.h>
64#else
65#ifdef __linux__
63a01ef8
AL
66#include <pty.h>
67#include <malloc.h>
68#include <linux/rtc.h>
69
70/* For the benefit of older linux systems which don't supply it,
71 we use a local copy of hpet.h. */
72/* #include <linux/hpet.h> */
73#include "hpet.h"
74
75#include <linux/ppdev.h>
76#include <linux/parport.h>
77#endif
78#ifdef __sun__
79#include <sys/stat.h>
80#include <sys/ethernet.h>
81#include <sys/sockio.h>
82#include <netinet/arp.h>
83#include <netinet/in.h>
84#include <netinet/in_systm.h>
85#include <netinet/ip.h>
86#include <netinet/ip_icmp.h> // must come after ip.h
87#include <netinet/udp.h>
88#include <netinet/tcp.h>
89#include <net/if.h>
90#include <syslog.h>
91#include <stropts.h>
92#endif
93#endif
94#endif
95
63a01ef8
AL
96#if defined(__OpenBSD__)
97#include <util.h>
98#endif
99
100#if defined(CONFIG_VDE)
101#include <libvdeplug.h>
102#endif
103
104#ifdef _WIN32
49dc768d 105#include <windows.h>
63a01ef8
AL
106#include <malloc.h>
107#include <sys/timeb.h>
108#include <mmsystem.h>
109#define getopt_long_only getopt_long
110#define memalign(align, size) malloc(size)
111#endif
112
511d2b14
BS
113#include "qemu-common.h"
114#include "net.h"
115#include "monitor.h"
116#include "sysemu.h"
117#include "qemu-timer.h"
118#include "qemu-char.h"
119#include "audio/audio.h"
120#include "qemu_socket.h"
bb9ea79e 121#include "qemu-log.h"
511d2b14
BS
122
123#if defined(CONFIG_SLIRP)
124#include "libslirp.h"
125#endif
126
127
63a01ef8
AL
128static VLANState *first_vlan;
129
130/***********************************************************/
131/* network device redirectors */
132
133#if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
134static void hex_dump(FILE *f, const uint8_t *buf, int size)
135{
136 int len, i, j, c;
137
138 for(i=0;i<size;i+=16) {
139 len = size - i;
140 if (len > 16)
141 len = 16;
142 fprintf(f, "%08x ", i);
143 for(j=0;j<16;j++) {
144 if (j < len)
145 fprintf(f, " %02x", buf[i+j]);
146 else
147 fprintf(f, " ");
148 }
149 fprintf(f, " ");
150 for(j=0;j<len;j++) {
151 c = buf[i+j];
152 if (c < ' ' || c > '~')
153 c = '.';
154 fprintf(f, "%c", c);
155 }
156 fprintf(f, "\n");
157 }
158}
159#endif
160
161static int parse_macaddr(uint8_t *macaddr, const char *p)
162{
163 int i;
164 char *last_char;
165 long int offset;
166
167 errno = 0;
168 offset = strtol(p, &last_char, 0);
169 if (0 == errno && '\0' == *last_char &&
170 offset >= 0 && offset <= 0xFFFFFF) {
171 macaddr[3] = (offset & 0xFF0000) >> 16;
172 macaddr[4] = (offset & 0xFF00) >> 8;
173 macaddr[5] = offset & 0xFF;
174 return 0;
175 } else {
176 for(i = 0; i < 6; i++) {
177 macaddr[i] = strtol(p, (char **)&p, 16);
178 if (i == 5) {
179 if (*p != '\0')
180 return -1;
181 } else {
182 if (*p != ':' && *p != '-')
183 return -1;
184 p++;
185 }
186 }
187 return 0;
188 }
189
190 return -1;
191}
192
193static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
194{
195 const char *p, *p1;
196 int len;
197 p = *pp;
198 p1 = strchr(p, sep);
199 if (!p1)
200 return -1;
201 len = p1 - p;
202 p1++;
203 if (buf_size > 0) {
204 if (len > buf_size - 1)
205 len = buf_size - 1;
206 memcpy(buf, p, len);
207 buf[len] = '\0';
208 }
209 *pp = p1;
210 return 0;
211}
212
213int parse_host_src_port(struct sockaddr_in *haddr,
214 struct sockaddr_in *saddr,
215 const char *input_str)
216{
217 char *str = strdup(input_str);
218 char *host_str = str;
219 char *src_str;
220 const char *src_str2;
221 char *ptr;
222
223 /*
224 * Chop off any extra arguments at the end of the string which
225 * would start with a comma, then fill in the src port information
226 * if it was provided else use the "any address" and "any port".
227 */
228 if ((ptr = strchr(str,',')))
229 *ptr = '\0';
230
231 if ((src_str = strchr(input_str,'@'))) {
232 *src_str = '\0';
233 src_str++;
234 }
235
236 if (parse_host_port(haddr, host_str) < 0)
237 goto fail;
238
239 src_str2 = src_str;
240 if (!src_str || *src_str == '\0')
241 src_str2 = ":0";
242
243 if (parse_host_port(saddr, src_str2) < 0)
244 goto fail;
245
246 free(str);
247 return(0);
248
249fail:
250 free(str);
251 return -1;
252}
253
254int parse_host_port(struct sockaddr_in *saddr, const char *str)
255{
256 char buf[512];
257 struct hostent *he;
258 const char *p, *r;
259 int port;
260
261 p = str;
262 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
263 return -1;
264 saddr->sin_family = AF_INET;
265 if (buf[0] == '\0') {
266 saddr->sin_addr.s_addr = 0;
267 } else {
cd390083 268 if (qemu_isdigit(buf[0])) {
63a01ef8
AL
269 if (!inet_aton(buf, &saddr->sin_addr))
270 return -1;
271 } else {
272 if ((he = gethostbyname(buf)) == NULL)
273 return - 1;
274 saddr->sin_addr = *(struct in_addr *)he->h_addr;
275 }
276 }
277 port = strtol(p, (char **)&r, 0);
278 if (r == p)
279 return -1;
280 saddr->sin_port = htons(port);
281 return 0;
282}
283
69d6451c
BS
284#if !defined(_WIN32) && 0
285static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
63a01ef8
AL
286{
287 const char *p;
288 int len;
289
290 len = MIN(108, strlen(str));
291 p = strchr(str, ',');
292 if (p)
293 len = MIN(len, p - str);
294
295 memset(uaddr, 0, sizeof(*uaddr));
296
297 uaddr->sun_family = AF_UNIX;
298 memcpy(uaddr->sun_path, str, len);
299
300 return 0;
301}
302#endif
303
7cb7434b
AL
304void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
305{
306 snprintf(vc->info_str, sizeof(vc->info_str),
4dda4063
AL
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
308 vc->model,
7cb7434b
AL
309 macaddr[0], macaddr[1], macaddr[2],
310 macaddr[3], macaddr[4], macaddr[5]);
311}
312
676cff29
AL
313static char *assign_name(VLANClientState *vc1, const char *model)
314{
315 VLANState *vlan;
316 char buf[256];
317 int id = 0;
318
319 for (vlan = first_vlan; vlan; vlan = vlan->next) {
320 VLANClientState *vc;
321
322 for (vc = vlan->first_client; vc; vc = vc->next)
323 if (vc != vc1 && strcmp(vc->model, model) == 0)
324 id++;
325 }
326
327 snprintf(buf, sizeof(buf), "%s.%d", model, id);
328
329 return strdup(buf);
330}
331
63a01ef8 332VLANClientState *qemu_new_vlan_client(VLANState *vlan,
bf38c1a0 333 const char *model,
7a9f6e4a 334 const char *name,
63a01ef8
AL
335 IOReadHandler *fd_read,
336 IOCanRWHandler *fd_can_read,
b946a153 337 NetCleanup *cleanup,
63a01ef8
AL
338 void *opaque)
339{
340 VLANClientState *vc, **pvc;
341 vc = qemu_mallocz(sizeof(VLANClientState));
bf38c1a0 342 vc->model = strdup(model);
7a9f6e4a
AL
343 if (name)
344 vc->name = strdup(name);
345 else
346 vc->name = assign_name(vc, model);
63a01ef8
AL
347 vc->fd_read = fd_read;
348 vc->fd_can_read = fd_can_read;
b946a153 349 vc->cleanup = cleanup;
63a01ef8
AL
350 vc->opaque = opaque;
351 vc->vlan = vlan;
352
353 vc->next = NULL;
354 pvc = &vlan->first_client;
355 while (*pvc != NULL)
356 pvc = &(*pvc)->next;
357 *pvc = vc;
358 return vc;
359}
360
361void qemu_del_vlan_client(VLANClientState *vc)
362{
363 VLANClientState **pvc = &vc->vlan->first_client;
364
365 while (*pvc != NULL)
366 if (*pvc == vc) {
367 *pvc = vc->next;
b946a153
AL
368 if (vc->cleanup) {
369 vc->cleanup(vc);
370 }
676cff29 371 free(vc->name);
bf38c1a0 372 free(vc->model);
dad35419 373 qemu_free(vc);
63a01ef8
AL
374 break;
375 } else
376 pvc = &(*pvc)->next;
377}
378
8b13c4a7
AL
379VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
380{
381 VLANClientState **pvc = &vlan->first_client;
382
383 while (*pvc != NULL)
384 if ((*pvc)->opaque == opaque)
385 return *pvc;
386 else
387 pvc = &(*pvc)->next;
388
389 return NULL;
390}
391
63a01ef8
AL
392int qemu_can_send_packet(VLANClientState *vc1)
393{
394 VLANState *vlan = vc1->vlan;
395 VLANClientState *vc;
396
397 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
398 if (vc != vc1) {
399 if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
400 return 1;
401 }
402 }
403 return 0;
404}
405
764a4d1d
AL
406static void
407qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
63a01ef8 408{
63a01ef8
AL
409 VLANClientState *vc;
410
764a4d1d
AL
411 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
412 if (vc != sender && !vc->link_down) {
413 vc->fd_read(vc->opaque, buf, size);
414 }
415 }
416}
417
418void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
419{
420 VLANState *vlan = vc->vlan;
421 VLANPacket *packet;
422
423 if (vc->link_down)
436e5e53
AL
424 return;
425
63a01ef8
AL
426#ifdef DEBUG_NET
427 printf("vlan %d send:\n", vlan->id);
428 hex_dump(stdout, buf, size);
429#endif
764a4d1d
AL
430 if (vlan->delivering) {
431 packet = qemu_malloc(sizeof(VLANPacket) + size);
432 packet->next = vlan->send_queue;
433 packet->sender = vc;
434 packet->size = size;
435 memcpy(packet->data, buf, size);
436 vlan->send_queue = packet;
437 } else {
438 vlan->delivering = 1;
439 qemu_deliver_packet(vc, buf, size);
440 while ((packet = vlan->send_queue) != NULL) {
764a4d1d 441 vlan->send_queue = packet->next;
c27ff608 442 qemu_deliver_packet(packet->sender, packet->data, packet->size);
764a4d1d 443 qemu_free(packet);
63a01ef8 444 }
764a4d1d 445 vlan->delivering = 0;
63a01ef8
AL
446 }
447}
448
fbe78f4f
AL
449static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
450 int iovcnt)
451{
452 uint8_t buffer[4096];
453 size_t offset = 0;
454 int i;
455
456 for (i = 0; i < iovcnt; i++) {
457 size_t len;
458
459 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
460 memcpy(buffer + offset, iov[i].iov_base, len);
461 offset += len;
462 }
463
464 vc->fd_read(vc->opaque, buffer, offset);
465
466 return offset;
467}
468
e0e7877a
AL
469static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
470{
471 size_t offset = 0;
472 int i;
473
474 for (i = 0; i < iovcnt; i++)
475 offset += iov[i].iov_len;
476 return offset;
477}
478
c27ff608 479ssize_t qemu_sendv_packet(VLANClientState *sender, const struct iovec *iov,
fbe78f4f
AL
480 int iovcnt)
481{
c27ff608 482 VLANState *vlan = sender->vlan;
fbe78f4f 483 VLANClientState *vc;
c27ff608 484 VLANPacket *packet;
fbe78f4f 485 ssize_t max_len = 0;
c27ff608 486 int i;
fbe78f4f 487
c27ff608 488 if (sender->link_down)
e0e7877a
AL
489 return calc_iov_length(iov, iovcnt);
490
c27ff608
JK
491 if (vlan->delivering) {
492 max_len = calc_iov_length(iov, iovcnt);
493
494 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
495 packet->next = vlan->send_queue;
496 packet->sender = sender;
497 packet->size = 0;
498 for (i = 0; i < iovcnt; i++) {
499 size_t len = iov[i].iov_len;
500
501 memcpy(packet->data + packet->size, iov[i].iov_base, len);
502 packet->size += len;
503 }
504 vlan->send_queue = packet;
505 } else {
506 vlan->delivering = 1;
fbe78f4f 507
c27ff608
JK
508 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
509 ssize_t len = 0;
fbe78f4f 510
c27ff608
JK
511 if (vc == sender) {
512 continue;
513 }
514 if (vc->link_down) {
515 len = calc_iov_length(iov, iovcnt);
516 } else if (vc->fd_readv) {
517 len = vc->fd_readv(vc->opaque, iov, iovcnt);
518 } else if (vc->fd_read) {
519 len = vc_sendv_compat(vc, iov, iovcnt);
520 }
521 max_len = MAX(max_len, len);
522 }
fbe78f4f 523
c27ff608
JK
524 while ((packet = vlan->send_queue) != NULL) {
525 vlan->send_queue = packet->next;
526 qemu_deliver_packet(packet->sender, packet->data, packet->size);
527 qemu_free(packet);
528 }
529 vlan->delivering = 0;
fbe78f4f
AL
530 }
531
532 return max_len;
533}
534
63a01ef8
AL
535#if defined(CONFIG_SLIRP)
536
537/* slirp network adapter */
538
539static int slirp_inited;
49ec9b40
AL
540static int slirp_restrict;
541static char *slirp_ip;
63a01ef8
AL
542static VLANClientState *slirp_vc;
543
544int slirp_can_output(void)
545{
546 return !slirp_vc || qemu_can_send_packet(slirp_vc);
547}
548
549void slirp_output(const uint8_t *pkt, int pkt_len)
550{
551#ifdef DEBUG_SLIRP
552 printf("slirp output:\n");
553 hex_dump(stdout, pkt, pkt_len);
554#endif
555 if (!slirp_vc)
556 return;
557 qemu_send_packet(slirp_vc, pkt, pkt_len);
558}
559
560int slirp_is_inited(void)
561{
562 return slirp_inited;
563}
564
565static void slirp_receive(void *opaque, const uint8_t *buf, int size)
566{
567#ifdef DEBUG_SLIRP
568 printf("slirp input:\n");
569 hex_dump(stdout, buf, size);
570#endif
571 slirp_input(buf, size);
572}
573
8d6249a7
AL
574static int slirp_in_use;
575
576static void net_slirp_cleanup(VLANClientState *vc)
577{
578 slirp_in_use = 0;
579}
580
7a9f6e4a 581static int net_slirp_init(VLANState *vlan, const char *model, const char *name)
63a01ef8 582{
8d6249a7
AL
583 if (slirp_in_use) {
584 /* slirp only supports a single instance so far */
585 return -1;
586 }
63a01ef8
AL
587 if (!slirp_inited) {
588 slirp_inited = 1;
49ec9b40 589 slirp_init(slirp_restrict, slirp_ip);
63a01ef8 590 }
7a9f6e4a 591 slirp_vc = qemu_new_vlan_client(vlan, model, name,
8d6249a7 592 slirp_receive, NULL, net_slirp_cleanup, NULL);
7cb7434b 593 slirp_vc->info_str[0] = '\0';
8d6249a7 594 slirp_in_use = 1;
63a01ef8
AL
595 return 0;
596}
597
1c6ed9f3
AG
598static void net_slirp_redir_print(void *opaque, int is_udp,
599 struct in_addr *laddr, u_int lport,
600 struct in_addr *faddr, u_int fport)
601{
602 Monitor *mon = (Monitor *)opaque;
603 uint32_t h_addr;
604 uint32_t g_addr;
605 char buf[16];
606
607 h_addr = ntohl(faddr->s_addr);
608 g_addr = ntohl(laddr->s_addr);
609
610 monitor_printf(mon, " %s |", is_udp ? "udp" : "tcp" );
611 snprintf(buf, 15, "%d.%d.%d.%d", (h_addr >> 24) & 0xff,
612 (h_addr >> 16) & 0xff,
613 (h_addr >> 8) & 0xff,
614 (h_addr) & 0xff);
615 monitor_printf(mon, " %15s |", buf);
616 monitor_printf(mon, " %5d |", fport);
617
618 snprintf(buf, 15, "%d.%d.%d.%d", (g_addr >> 24) & 0xff,
619 (g_addr >> 16) & 0xff,
620 (g_addr >> 8) & 0xff,
621 (g_addr) & 0xff);
622 monitor_printf(mon, " %15s |", buf);
623 monitor_printf(mon, " %5d\n", lport);
624
625}
626
627static void net_slirp_redir_list(Monitor *mon)
628{
629 if (!mon)
630 return;
631
632 monitor_printf(mon, " Prot | Host Addr | HPort | Guest Addr | GPort\n");
633 monitor_printf(mon, " | | | | \n");
634 slirp_redir_loop(net_slirp_redir_print, mon);
635}
636
c1261d8d
AG
637static void net_slirp_redir_rm(Monitor *mon, const char *port_str)
638{
639 int host_port;
640 char buf[256] = "";
641 const char *p = port_str;
642 int is_udp = 0;
643 int n;
644
645 if (!mon)
646 return;
647
648 if (!port_str || !port_str[0])
649 goto fail_syntax;
650
651 get_str_sep(buf, sizeof(buf), &p, ':');
652
653 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
654 is_udp = 0;
655 } else if (!strcmp(buf, "udp")) {
656 is_udp = 1;
657 } else {
658 goto fail_syntax;
659 }
660
661 host_port = atoi(p);
662
663 n = slirp_redir_rm(is_udp, host_port);
664
665 monitor_printf(mon, "removed %d redirections to %s port %d\n", n,
666 is_udp ? "udp" : "tcp", host_port);
667 return;
668
669 fail_syntax:
670 monitor_printf(mon, "invalid format\n");
671}
672
673void net_slirp_redir(Monitor *mon, const char *redir_str, const char *redir_opt2)
63a01ef8
AL
674{
675 int is_udp;
676 char buf[256], *r;
d4ebe193 677 const char *p, *errmsg;
63a01ef8
AL
678 struct in_addr guest_addr;
679 int host_port, guest_port;
680
681 if (!slirp_inited) {
682 slirp_inited = 1;
49ec9b40 683 slirp_init(slirp_restrict, slirp_ip);
63a01ef8
AL
684 }
685
c1261d8d
AG
686 if (!strcmp(redir_str, "remove")) {
687 net_slirp_redir_rm(mon, redir_opt2);
688 return;
689 }
690
1c6ed9f3
AG
691 if (!strcmp(redir_str, "list")) {
692 net_slirp_redir_list(mon);
693 return;
694 }
695
63a01ef8
AL
696 p = redir_str;
697 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
d4ebe193
AL
698 goto fail_syntax;
699 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
63a01ef8
AL
700 is_udp = 0;
701 } else if (!strcmp(buf, "udp")) {
702 is_udp = 1;
703 } else {
d4ebe193 704 goto fail_syntax;
63a01ef8
AL
705 }
706
707 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
d4ebe193 708 goto fail_syntax;
63a01ef8
AL
709 host_port = strtol(buf, &r, 0);
710 if (r == buf)
d4ebe193 711 goto fail_syntax;
63a01ef8
AL
712
713 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
d4ebe193 714 goto fail_syntax;
63a01ef8
AL
715 if (buf[0] == '\0') {
716 pstrcpy(buf, sizeof(buf), "10.0.2.15");
717 }
718 if (!inet_aton(buf, &guest_addr))
d4ebe193 719 goto fail_syntax;
63a01ef8
AL
720
721 guest_port = strtol(p, &r, 0);
722 if (r == p)
d4ebe193 723 goto fail_syntax;
63a01ef8
AL
724
725 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
d4ebe193
AL
726 errmsg = "could not set up redirection\n";
727 goto fail;
63a01ef8
AL
728 }
729 return;
d4ebe193
AL
730
731 fail_syntax:
732 errmsg = "invalid redirection format\n";
63a01ef8 733 fail:
d4ebe193 734 if (mon) {
8d316b00 735 monitor_printf(mon, "%s", errmsg);
d4ebe193
AL
736 } else {
737 fprintf(stderr, "qemu: %s", errmsg);
738 exit(1);
739 }
63a01ef8
AL
740}
741
742#ifndef _WIN32
743
744static char smb_dir[1024];
745
746static void erase_dir(char *dir_name)
747{
748 DIR *d;
749 struct dirent *de;
750 char filename[1024];
751
752 /* erase all the files in the directory */
511d2b14 753 if ((d = opendir(dir_name)) != NULL) {
63a01ef8
AL
754 for(;;) {
755 de = readdir(d);
756 if (!de)
757 break;
758 if (strcmp(de->d_name, ".") != 0 &&
759 strcmp(de->d_name, "..") != 0) {
760 snprintf(filename, sizeof(filename), "%s/%s",
761 smb_dir, de->d_name);
762 if (unlink(filename) != 0) /* is it a directory? */
763 erase_dir(filename);
764 }
765 }
766 closedir(d);
767 rmdir(dir_name);
768 }
769}
770
771/* automatic user mode samba server configuration */
772static void smb_exit(void)
773{
774 erase_dir(smb_dir);
775}
776
777/* automatic user mode samba server configuration */
778void net_slirp_smb(const char *exported_dir)
779{
780 char smb_conf[1024];
781 char smb_cmdline[1024];
782 FILE *f;
783
784 if (!slirp_inited) {
785 slirp_inited = 1;
49ec9b40 786 slirp_init(slirp_restrict, slirp_ip);
63a01ef8
AL
787 }
788
789 /* XXX: better tmp dir construction */
3f4cb3d3 790 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%ld", (long)getpid());
63a01ef8
AL
791 if (mkdir(smb_dir, 0700) < 0) {
792 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
793 exit(1);
794 }
795 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
796
797 f = fopen(smb_conf, "w");
798 if (!f) {
799 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
800 exit(1);
801 }
802 fprintf(f,
803 "[global]\n"
804 "private dir=%s\n"
805 "smb ports=0\n"
806 "socket address=127.0.0.1\n"
807 "pid directory=%s\n"
808 "lock directory=%s\n"
809 "log file=%s/log.smbd\n"
810 "smb passwd file=%s/smbpasswd\n"
811 "security = share\n"
812 "[qemu]\n"
813 "path=%s\n"
814 "read only=no\n"
815 "guest ok=yes\n",
816 smb_dir,
817 smb_dir,
818 smb_dir,
819 smb_dir,
820 smb_dir,
821 exported_dir
822 );
823 fclose(f);
824 atexit(smb_exit);
825
826 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
827 SMBD_COMMAND, smb_conf);
828
829 slirp_add_exec(0, smb_cmdline, 4, 139);
830}
831
832#endif /* !defined(_WIN32) */
376253ec 833void do_info_slirp(Monitor *mon)
63a01ef8
AL
834{
835 slirp_stats();
836}
837
8ca9217d
AL
838struct VMChannel {
839 CharDriverState *hd;
840 int port;
511d2b14 841};
8ca9217d
AL
842
843static int vmchannel_can_read(void *opaque)
844{
845 struct VMChannel *vmc = (struct VMChannel*)opaque;
846 return slirp_socket_can_recv(4, vmc->port);
847}
848
849static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
850{
851 struct VMChannel *vmc = (struct VMChannel*)opaque;
852 slirp_socket_recv(4, vmc->port, buf, size);
853}
854
63a01ef8
AL
855#endif /* CONFIG_SLIRP */
856
857#if !defined(_WIN32)
858
859typedef struct TAPState {
860 VLANClientState *vc;
861 int fd;
862 char down_script[1024];
973cbd37 863 char down_script_arg[128];
63a01ef8
AL
864} TAPState;
865
b946a153
AL
866static int launch_script(const char *setup_script, const char *ifname, int fd);
867
b535b7b2
AL
868static ssize_t tap_receive_iov(void *opaque, const struct iovec *iov,
869 int iovcnt)
870{
871 TAPState *s = opaque;
872 ssize_t len;
873
874 do {
875 len = writev(s->fd, iov, iovcnt);
876 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
877
878 return len;
879}
b535b7b2 880
63a01ef8
AL
881static void tap_receive(void *opaque, const uint8_t *buf, int size)
882{
883 TAPState *s = opaque;
884 int ret;
885 for(;;) {
886 ret = write(s->fd, buf, size);
887 if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
888 } else {
889 break;
890 }
891 }
892}
893
894static void tap_send(void *opaque)
895{
896 TAPState *s = opaque;
897 uint8_t buf[4096];
898 int size;
899
900#ifdef __sun__
901 struct strbuf sbuf;
902 int f = 0;
903 sbuf.maxlen = sizeof(buf);
3f4cb3d3 904 sbuf.buf = (char *)buf;
63a01ef8
AL
905 size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
906#else
907 size = read(s->fd, buf, sizeof(buf));
908#endif
909 if (size > 0) {
910 qemu_send_packet(s->vc, buf, size);
911 }
912}
913
b946a153
AL
914static void tap_cleanup(VLANClientState *vc)
915{
916 TAPState *s = vc->opaque;
917
918 if (s->down_script[0])
919 launch_script(s->down_script, s->down_script_arg, s->fd);
920
921 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
922 close(s->fd);
923 qemu_free(s);
924}
925
63a01ef8
AL
926/* fd support */
927
7a9f6e4a
AL
928static TAPState *net_tap_fd_init(VLANState *vlan,
929 const char *model,
930 const char *name,
931 int fd)
63a01ef8
AL
932{
933 TAPState *s;
934
935 s = qemu_mallocz(sizeof(TAPState));
63a01ef8 936 s->fd = fd;
b946a153
AL
937 s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive,
938 NULL, tap_cleanup, s);
b535b7b2 939 s->vc->fd_readv = tap_receive_iov;
63a01ef8 940 qemu_set_fd_handler(s->fd, tap_send, NULL, s);
7cb7434b 941 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
63a01ef8
AL
942 return s;
943}
944
179a2c19 945#if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
63a01ef8
AL
946static int tap_open(char *ifname, int ifname_size)
947{
948 int fd;
949 char *dev;
950 struct stat s;
951
952 TFR(fd = open("/dev/tap", O_RDWR));
953 if (fd < 0) {
954 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
955 return -1;
956 }
957
958 fstat(fd, &s);
959 dev = devname(s.st_rdev, S_IFCHR);
960 pstrcpy(ifname, ifname_size, dev);
961
962 fcntl(fd, F_SETFL, O_NONBLOCK);
963 return fd;
964}
965#elif defined(__sun__)
966#define TUNNEWPPA (('T'<<16) | 0x0001)
967/*
968 * Allocate TAP device, returns opened fd.
969 * Stores dev name in the first arg(must be large enough).
970 */
3f4cb3d3 971static int tap_alloc(char *dev, size_t dev_size)
63a01ef8
AL
972{
973 int tap_fd, if_fd, ppa = -1;
974 static int ip_fd = 0;
975 char *ptr;
976
977 static int arp_fd = 0;
978 int ip_muxid, arp_muxid;
979 struct strioctl strioc_if, strioc_ppa;
980 int link_type = I_PLINK;;
981 struct lifreq ifr;
982 char actual_name[32] = "";
983
984 memset(&ifr, 0x0, sizeof(ifr));
985
986 if( *dev ){
987 ptr = dev;
47398b9c 988 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
63a01ef8
AL
989 ppa = atoi(ptr);
990 }
991
992 /* Check if IP device was opened */
993 if( ip_fd )
994 close(ip_fd);
995
996 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
997 if (ip_fd < 0) {
998 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
999 return -1;
1000 }
1001
1002 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1003 if (tap_fd < 0) {
1004 syslog(LOG_ERR, "Can't open /dev/tap");
1005 return -1;
1006 }
1007
1008 /* Assign a new PPA and get its unit number. */
1009 strioc_ppa.ic_cmd = TUNNEWPPA;
1010 strioc_ppa.ic_timout = 0;
1011 strioc_ppa.ic_len = sizeof(ppa);
1012 strioc_ppa.ic_dp = (char *)&ppa;
1013 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1014 syslog (LOG_ERR, "Can't assign new interface");
1015
1016 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1017 if (if_fd < 0) {
1018 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1019 return -1;
1020 }
1021 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1022 syslog(LOG_ERR, "Can't push IP module");
1023 return -1;
1024 }
1025
1026 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1027 syslog(LOG_ERR, "Can't get flags\n");
1028
1029 snprintf (actual_name, 32, "tap%d", ppa);
1030 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1031
1032 ifr.lifr_ppa = ppa;
1033 /* Assign ppa according to the unit number returned by tun device */
1034
1035 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1036 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1037 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1038 syslog (LOG_ERR, "Can't get flags\n");
1039 /* Push arp module to if_fd */
1040 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1041 syslog (LOG_ERR, "Can't push ARP module (2)");
1042
1043 /* Push arp module to ip_fd */
1044 if (ioctl (ip_fd, I_POP, NULL) < 0)
1045 syslog (LOG_ERR, "I_POP failed\n");
1046 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1047 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1048 /* Open arp_fd */
1049 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1050 if (arp_fd < 0)
1051 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1052
1053 /* Set ifname to arp */
1054 strioc_if.ic_cmd = SIOCSLIFNAME;
1055 strioc_if.ic_timout = 0;
1056 strioc_if.ic_len = sizeof(ifr);
1057 strioc_if.ic_dp = (char *)&ifr;
1058 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1059 syslog (LOG_ERR, "Can't set ifname to arp\n");
1060 }
1061
1062 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1063 syslog(LOG_ERR, "Can't link TAP device to IP");
1064 return -1;
1065 }
1066
1067 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1068 syslog (LOG_ERR, "Can't link TAP device to ARP");
1069
1070 close (if_fd);
1071
1072 memset(&ifr, 0x0, sizeof(ifr));
1073 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1074 ifr.lifr_ip_muxid = ip_muxid;
1075 ifr.lifr_arp_muxid = arp_muxid;
1076
1077 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1078 {
1079 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1080 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1081 syslog (LOG_ERR, "Can't set multiplexor id");
1082 }
1083
1084 snprintf(dev, dev_size, "tap%d", ppa);
1085 return tap_fd;
1086}
1087
1088static int tap_open(char *ifname, int ifname_size)
1089{
1090 char dev[10]="";
1091 int fd;
1092 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1093 fprintf(stderr, "Cannot allocate TAP device\n");
1094 return -1;
1095 }
1096 pstrcpy(ifname, ifname_size, dev);
1097 fcntl(fd, F_SETFL, O_NONBLOCK);
1098 return fd;
1099}
b29fe3ed 1100#elif defined (_AIX)
1101static int tap_open(char *ifname, int ifname_size)
1102{
1103 fprintf (stderr, "no tap on AIX\n");
1104 return -1;
1105}
63a01ef8
AL
1106#else
1107static int tap_open(char *ifname, int ifname_size)
1108{
1109 struct ifreq ifr;
1110 int fd, ret;
1111
1112 TFR(fd = open("/dev/net/tun", O_RDWR));
1113 if (fd < 0) {
1114 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1115 return -1;
1116 }
1117 memset(&ifr, 0, sizeof(ifr));
1118 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1119 if (ifname[0] != '\0')
1120 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1121 else
1122 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1123 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1124 if (ret != 0) {
1125 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1126 close(fd);
1127 return -1;
1128 }
1129 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1130 fcntl(fd, F_SETFL, O_NONBLOCK);
1131 return fd;
1132}
1133#endif
1134
1135static int launch_script(const char *setup_script, const char *ifname, int fd)
1136{
1137 int pid, status;
1138 char *args[3];
1139 char **parg;
1140
1141 /* try to launch network script */
1142 pid = fork();
1143 if (pid >= 0) {
1144 if (pid == 0) {
1145 int open_max = sysconf (_SC_OPEN_MAX), i;
1146 for (i = 0; i < open_max; i++)
1147 if (i != STDIN_FILENO &&
1148 i != STDOUT_FILENO &&
1149 i != STDERR_FILENO &&
1150 i != fd)
1151 close(i);
1152
1153 parg = args;
1154 *parg++ = (char *)setup_script;
1155 *parg++ = (char *)ifname;
1156 *parg++ = NULL;
1157 execv(setup_script, args);
1158 _exit(1);
1159 }
1160 while (waitpid(pid, &status, 0) != pid);
1161 if (!WIFEXITED(status) ||
1162 WEXITSTATUS(status) != 0) {
1163 fprintf(stderr, "%s: could not launch network script\n",
1164 setup_script);
1165 return -1;
1166 }
1167 }
1168 return 0;
1169}
1170
7a9f6e4a
AL
1171static int net_tap_init(VLANState *vlan, const char *model,
1172 const char *name, const char *ifname1,
63a01ef8
AL
1173 const char *setup_script, const char *down_script)
1174{
1175 TAPState *s;
1176 int fd;
1177 char ifname[128];
1178
1179 if (ifname1 != NULL)
1180 pstrcpy(ifname, sizeof(ifname), ifname1);
1181 else
1182 ifname[0] = '\0';
1183 TFR(fd = tap_open(ifname, sizeof(ifname)));
1184 if (fd < 0)
1185 return -1;
1186
1187 if (!setup_script || !strcmp(setup_script, "no"))
1188 setup_script = "";
1189 if (setup_script[0] != '\0') {
1190 if (launch_script(setup_script, ifname, fd))
1191 return -1;
1192 }
7a9f6e4a 1193 s = net_tap_fd_init(vlan, model, name, fd);
63a01ef8 1194 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
7cb7434b
AL
1195 "ifname=%s,script=%s,downscript=%s",
1196 ifname, setup_script, down_script);
973cbd37 1197 if (down_script && strcmp(down_script, "no")) {
63a01ef8 1198 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
973cbd37
AL
1199 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1200 }
63a01ef8
AL
1201 return 0;
1202}
1203
1204#endif /* !_WIN32 */
1205
1206#if defined(CONFIG_VDE)
1207typedef struct VDEState {
1208 VLANClientState *vc;
1209 VDECONN *vde;
1210} VDEState;
1211
1212static void vde_to_qemu(void *opaque)
1213{
1214 VDEState *s = opaque;
1215 uint8_t buf[4096];
1216 int size;
1217
cc63bb0f 1218 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
63a01ef8
AL
1219 if (size > 0) {
1220 qemu_send_packet(s->vc, buf, size);
1221 }
1222}
1223
1224static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
1225{
1226 VDEState *s = opaque;
1227 int ret;
1228 for(;;) {
cc63bb0f 1229 ret = vde_send(s->vde, (const char *)buf, size, 0);
63a01ef8
AL
1230 if (ret < 0 && errno == EINTR) {
1231 } else {
1232 break;
1233 }
1234 }
1235}
1236
b946a153
AL
1237static void vde_cleanup(VLANClientState *vc)
1238{
1239 VDEState *s = vc->opaque;
1240 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1241 vde_close(s->vde);
1242 qemu_free(s);
1243}
1244
7a9f6e4a
AL
1245static int net_vde_init(VLANState *vlan, const char *model,
1246 const char *name, const char *sock,
bf38c1a0 1247 int port, const char *group, int mode)
63a01ef8
AL
1248{
1249 VDEState *s;
1250 char *init_group = strlen(group) ? (char *)group : NULL;
1251 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1252
1253 struct vde_open_args args = {
1254 .port = port,
1255 .group = init_group,
1256 .mode = mode,
1257 };
1258
1259 s = qemu_mallocz(sizeof(VDEState));
cc63bb0f 1260 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
63a01ef8
AL
1261 if (!s->vde){
1262 free(s);
1263 return -1;
1264 }
b946a153
AL
1265 s->vc = qemu_new_vlan_client(vlan, model, name, vde_from_qemu,
1266 NULL, vde_cleanup, s);
63a01ef8 1267 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
7cb7434b 1268 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
63a01ef8
AL
1269 sock, vde_datafd(s->vde));
1270 return 0;
1271}
1272#endif
1273
1274/* network connection */
1275typedef struct NetSocketState {
1276 VLANClientState *vc;
1277 int fd;
1278 int state; /* 0 = getting length, 1 = getting data */
abcd2baa
AL
1279 unsigned int index;
1280 unsigned int packet_len;
63a01ef8
AL
1281 uint8_t buf[4096];
1282 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1283} NetSocketState;
1284
1285typedef struct NetSocketListenState {
1286 VLANState *vlan;
bf38c1a0 1287 char *model;
7a9f6e4a 1288 char *name;
63a01ef8
AL
1289 int fd;
1290} NetSocketListenState;
1291
1292/* XXX: we consider we can send the whole packet without blocking */
1293static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
1294{
1295 NetSocketState *s = opaque;
1296 uint32_t len;
1297 len = htonl(size);
1298
1299 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1300 send_all(s->fd, buf, size);
1301}
1302
1303static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
1304{
1305 NetSocketState *s = opaque;
1306 sendto(s->fd, buf, size, 0,
1307 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1308}
1309
1310static void net_socket_send(void *opaque)
1311{
1312 NetSocketState *s = opaque;
abcd2baa
AL
1313 int size, err;
1314 unsigned l;
63a01ef8
AL
1315 uint8_t buf1[4096];
1316 const uint8_t *buf;
1317
1318 size = recv(s->fd, buf1, sizeof(buf1), 0);
1319 if (size < 0) {
1320 err = socket_error();
1321 if (err != EWOULDBLOCK)
1322 goto eoc;
1323 } else if (size == 0) {
1324 /* end of connection */
1325 eoc:
1326 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1327 closesocket(s->fd);
1328 return;
1329 }
1330 buf = buf1;
1331 while (size > 0) {
1332 /* reassemble a packet from the network */
1333 switch(s->state) {
1334 case 0:
1335 l = 4 - s->index;
1336 if (l > size)
1337 l = size;
1338 memcpy(s->buf + s->index, buf, l);
1339 buf += l;
1340 size -= l;
1341 s->index += l;
1342 if (s->index == 4) {
1343 /* got length */
1344 s->packet_len = ntohl(*(uint32_t *)s->buf);
1345 s->index = 0;
1346 s->state = 1;
1347 }
1348 break;
1349 case 1:
1350 l = s->packet_len - s->index;
1351 if (l > size)
1352 l = size;
abcd2baa
AL
1353 if (s->index + l <= sizeof(s->buf)) {
1354 memcpy(s->buf + s->index, buf, l);
1355 } else {
1356 fprintf(stderr, "serious error: oversized packet received,"
1357 "connection terminated.\n");
1358 s->state = 0;
1359 goto eoc;
1360 }
1361
63a01ef8
AL
1362 s->index += l;
1363 buf += l;
1364 size -= l;
1365 if (s->index >= s->packet_len) {
1366 qemu_send_packet(s->vc, s->buf, s->packet_len);
1367 s->index = 0;
1368 s->state = 0;
1369 }
1370 break;
1371 }
1372 }
1373}
1374
1375static void net_socket_send_dgram(void *opaque)
1376{
1377 NetSocketState *s = opaque;
1378 int size;
1379
1380 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1381 if (size < 0)
1382 return;
1383 if (size == 0) {
1384 /* end of connection */
1385 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1386 return;
1387 }
1388 qemu_send_packet(s->vc, s->buf, size);
1389}
1390
1391static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1392{
1393 struct ip_mreq imr;
1394 int fd;
1395 int val, ret;
1396 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1397 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1398 inet_ntoa(mcastaddr->sin_addr),
1399 (int)ntohl(mcastaddr->sin_addr.s_addr));
1400 return -1;
1401
1402 }
1403 fd = socket(PF_INET, SOCK_DGRAM, 0);
1404 if (fd < 0) {
1405 perror("socket(PF_INET, SOCK_DGRAM)");
1406 return -1;
1407 }
1408
1409 val = 1;
1410 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1411 (const char *)&val, sizeof(val));
1412 if (ret < 0) {
1413 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1414 goto fail;
1415 }
1416
1417 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1418 if (ret < 0) {
1419 perror("bind");
1420 goto fail;
1421 }
1422
1423 /* Add host to multicast group */
1424 imr.imr_multiaddr = mcastaddr->sin_addr;
1425 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1426
1427 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1428 (const char *)&imr, sizeof(struct ip_mreq));
1429 if (ret < 0) {
1430 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1431 goto fail;
1432 }
1433
1434 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1435 val = 1;
1436 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1437 (const char *)&val, sizeof(val));
1438 if (ret < 0) {
1439 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1440 goto fail;
1441 }
1442
1443 socket_set_nonblock(fd);
1444 return fd;
1445fail:
1446 if (fd >= 0)
1447 closesocket(fd);
1448 return -1;
1449}
1450
b946a153
AL
1451static void net_socket_cleanup(VLANClientState *vc)
1452{
1453 NetSocketState *s = vc->opaque;
1454 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1455 close(s->fd);
1456 qemu_free(s);
1457}
1458
7a9f6e4a
AL
1459static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1460 const char *model,
1461 const char *name,
bf38c1a0 1462 int fd, int is_connected)
63a01ef8
AL
1463{
1464 struct sockaddr_in saddr;
1465 int newfd;
1466 socklen_t saddr_len;
1467 NetSocketState *s;
1468
1469 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1470 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1471 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1472 */
1473
1474 if (is_connected) {
1475 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1476 /* must be bound */
1477 if (saddr.sin_addr.s_addr==0) {
1478 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1479 fd);
1480 return NULL;
1481 }
1482 /* clone dgram socket */
1483 newfd = net_socket_mcast_create(&saddr);
1484 if (newfd < 0) {
1485 /* error already reported by net_socket_mcast_create() */
1486 close(fd);
1487 return NULL;
1488 }
1489 /* clone newfd to fd, close newfd */
1490 dup2(newfd, fd);
1491 close(newfd);
1492
1493 } else {
1494 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1495 fd, strerror(errno));
1496 return NULL;
1497 }
1498 }
1499
1500 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8
AL
1501 s->fd = fd;
1502
b946a153
AL
1503 s->vc = qemu_new_vlan_client(vlan, model, name, net_socket_receive_dgram,
1504 NULL, net_socket_cleanup, s);
63a01ef8
AL
1505 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1506
1507 /* mcast: save bound address as dst */
1508 if (is_connected) s->dgram_dst=saddr;
1509
1510 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1511 "socket: fd=%d (%s mcast=%s:%d)",
1512 fd, is_connected? "cloned" : "",
1513 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1514 return s;
1515}
1516
1517static void net_socket_connect(void *opaque)
1518{
1519 NetSocketState *s = opaque;
1520 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1521}
1522
7a9f6e4a
AL
1523static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1524 const char *model,
1525 const char *name,
bf38c1a0 1526 int fd, int is_connected)
63a01ef8
AL
1527{
1528 NetSocketState *s;
1529 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8 1530 s->fd = fd;
b946a153
AL
1531 s->vc = qemu_new_vlan_client(vlan, model, name, net_socket_receive,
1532 NULL, net_socket_cleanup, s);
63a01ef8
AL
1533 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1534 "socket: fd=%d", fd);
1535 if (is_connected) {
1536 net_socket_connect(s);
1537 } else {
1538 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1539 }
1540 return s;
1541}
1542
7a9f6e4a
AL
1543static NetSocketState *net_socket_fd_init(VLANState *vlan,
1544 const char *model, const char *name,
bf38c1a0 1545 int fd, int is_connected)
63a01ef8
AL
1546{
1547 int so_type=-1, optlen=sizeof(so_type);
1548
1549 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1550 (socklen_t *)&optlen)< 0) {
1551 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1552 return NULL;
1553 }
1554 switch(so_type) {
1555 case SOCK_DGRAM:
7a9f6e4a 1556 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
63a01ef8 1557 case SOCK_STREAM:
7a9f6e4a 1558 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1559 default:
1560 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1561 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
7a9f6e4a 1562 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1563 }
1564 return NULL;
1565}
1566
1567static void net_socket_accept(void *opaque)
1568{
1569 NetSocketListenState *s = opaque;
1570 NetSocketState *s1;
1571 struct sockaddr_in saddr;
1572 socklen_t len;
1573 int fd;
1574
1575 for(;;) {
1576 len = sizeof(saddr);
1577 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1578 if (fd < 0 && errno != EINTR) {
1579 return;
1580 } else if (fd >= 0) {
1581 break;
1582 }
1583 }
7a9f6e4a 1584 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
63a01ef8
AL
1585 if (!s1) {
1586 closesocket(fd);
1587 } else {
1588 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1589 "socket: connection from %s:%d",
1590 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1591 }
1592}
1593
7a9f6e4a
AL
1594static int net_socket_listen_init(VLANState *vlan,
1595 const char *model,
1596 const char *name,
bf38c1a0 1597 const char *host_str)
63a01ef8
AL
1598{
1599 NetSocketListenState *s;
1600 int fd, val, ret;
1601 struct sockaddr_in saddr;
1602
1603 if (parse_host_port(&saddr, host_str) < 0)
1604 return -1;
1605
1606 s = qemu_mallocz(sizeof(NetSocketListenState));
63a01ef8
AL
1607
1608 fd = socket(PF_INET, SOCK_STREAM, 0);
1609 if (fd < 0) {
1610 perror("socket");
1611 return -1;
1612 }
1613 socket_set_nonblock(fd);
1614
1615 /* allow fast reuse */
1616 val = 1;
1617 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1618
1619 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1620 if (ret < 0) {
1621 perror("bind");
1622 return -1;
1623 }
1624 ret = listen(fd, 0);
1625 if (ret < 0) {
1626 perror("listen");
1627 return -1;
1628 }
1629 s->vlan = vlan;
bf38c1a0 1630 s->model = strdup(model);
ea053add 1631 s->name = name ? strdup(name) : NULL;
63a01ef8
AL
1632 s->fd = fd;
1633 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1634 return 0;
1635}
1636
7a9f6e4a
AL
1637static int net_socket_connect_init(VLANState *vlan,
1638 const char *model,
1639 const char *name,
bf38c1a0 1640 const char *host_str)
63a01ef8
AL
1641{
1642 NetSocketState *s;
1643 int fd, connected, ret, err;
1644 struct sockaddr_in saddr;
1645
1646 if (parse_host_port(&saddr, host_str) < 0)
1647 return -1;
1648
1649 fd = socket(PF_INET, SOCK_STREAM, 0);
1650 if (fd < 0) {
1651 perror("socket");
1652 return -1;
1653 }
1654 socket_set_nonblock(fd);
1655
1656 connected = 0;
1657 for(;;) {
1658 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1659 if (ret < 0) {
1660 err = socket_error();
1661 if (err == EINTR || err == EWOULDBLOCK) {
1662 } else if (err == EINPROGRESS) {
1663 break;
1664#ifdef _WIN32
1665 } else if (err == WSAEALREADY) {
1666 break;
1667#endif
1668 } else {
1669 perror("connect");
1670 closesocket(fd);
1671 return -1;
1672 }
1673 } else {
1674 connected = 1;
1675 break;
1676 }
1677 }
7a9f6e4a 1678 s = net_socket_fd_init(vlan, model, name, fd, connected);
63a01ef8
AL
1679 if (!s)
1680 return -1;
1681 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1682 "socket: connect to %s:%d",
1683 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1684 return 0;
1685}
1686
7a9f6e4a
AL
1687static int net_socket_mcast_init(VLANState *vlan,
1688 const char *model,
1689 const char *name,
bf38c1a0 1690 const char *host_str)
63a01ef8
AL
1691{
1692 NetSocketState *s;
1693 int fd;
1694 struct sockaddr_in saddr;
1695
1696 if (parse_host_port(&saddr, host_str) < 0)
1697 return -1;
1698
1699
1700 fd = net_socket_mcast_create(&saddr);
1701 if (fd < 0)
1702 return -1;
1703
7a9f6e4a 1704 s = net_socket_fd_init(vlan, model, name, fd, 0);
63a01ef8
AL
1705 if (!s)
1706 return -1;
1707
1708 s->dgram_dst = saddr;
1709
1710 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1711 "socket: mcast=%s:%d",
1712 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1713 return 0;
1714
1715}
1716
bb9ea79e
AL
1717typedef struct DumpState {
1718 VLANClientState *pcap_vc;
1719 int fd;
1720 int pcap_caplen;
1721} DumpState;
1722
1723#define PCAP_MAGIC 0xa1b2c3d4
1724
1725struct pcap_file_hdr {
1726 uint32_t magic;
1727 uint16_t version_major;
1728 uint16_t version_minor;
1729 int32_t thiszone;
1730 uint32_t sigfigs;
1731 uint32_t snaplen;
1732 uint32_t linktype;
1733};
1734
1735struct pcap_sf_pkthdr {
1736 struct {
1737 int32_t tv_sec;
1738 int32_t tv_usec;
1739 } ts;
1740 uint32_t caplen;
1741 uint32_t len;
1742};
1743
1744static void dump_receive(void *opaque, const uint8_t *buf, int size)
1745{
1746 DumpState *s = opaque;
1747 struct pcap_sf_pkthdr hdr;
1748 int64_t ts;
1749 int caplen;
1750
1751 /* Early return in case of previous error. */
1752 if (s->fd < 0) {
1753 return;
1754 }
1755
37cb6fc3 1756 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
bb9ea79e
AL
1757 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
1758
37cb6fc3 1759 hdr.ts.tv_sec = ts / 1000000;
bb9ea79e
AL
1760 hdr.ts.tv_usec = ts % 1000000;
1761 hdr.caplen = caplen;
1762 hdr.len = size;
1763 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
1764 write(s->fd, buf, caplen) != caplen) {
1765 qemu_log("-net dump write error - stop dump\n");
1766 close(s->fd);
1767 s->fd = -1;
1768 }
1769}
1770
1771static void net_dump_cleanup(VLANClientState *vc)
1772{
1773 DumpState *s = vc->opaque;
1774
1775 close(s->fd);
1776 qemu_free(s);
1777}
1778
1779static int net_dump_init(VLANState *vlan, const char *device,
1780 const char *name, const char *filename, int len)
1781{
1782 struct pcap_file_hdr hdr;
1783 DumpState *s;
1784
1785 s = qemu_malloc(sizeof(DumpState));
1786
1787 s->fd = open(filename, O_CREAT | O_WRONLY, 0644);
1788 if (s->fd < 0) {
1789 fprintf(stderr, "-net dump: can't open %s\n", filename);
1790 return -1;
1791 }
1792
1793 s->pcap_caplen = len;
1794
1795 hdr.magic = PCAP_MAGIC;
1796 hdr.version_major = 2;
1797 hdr.version_minor = 4;
1798 hdr.thiszone = 0;
1799 hdr.sigfigs = 0;
1800 hdr.snaplen = s->pcap_caplen;
1801 hdr.linktype = 1;
1802
1803 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
1804 perror("-net dump write error");
1805 close(s->fd);
1806 qemu_free(s);
1807 return -1;
1808 }
1809
1810 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, dump_receive, NULL,
1811 net_dump_cleanup, s);
1812 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
1813 "dump to %s (len=%d)", filename, len);
1814 return 0;
1815}
1816
63a01ef8
AL
1817/* find or alloc a new VLAN */
1818VLANState *qemu_find_vlan(int id)
1819{
1820 VLANState **pvlan, *vlan;
1821 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1822 if (vlan->id == id)
1823 return vlan;
1824 }
1825 vlan = qemu_mallocz(sizeof(VLANState));
63a01ef8
AL
1826 vlan->id = id;
1827 vlan->next = NULL;
1828 pvlan = &first_vlan;
1829 while (*pvlan != NULL)
1830 pvlan = &(*pvlan)->next;
1831 *pvlan = vlan;
1832 return vlan;
1833}
1834
7697079b
AL
1835static int nic_get_free_idx(void)
1836{
1837 int index;
1838
1839 for (index = 0; index < MAX_NICS; index++)
1840 if (!nd_table[index].used)
1841 return index;
1842 return -1;
1843}
1844
d07f22c5
AL
1845void qemu_check_nic_model(NICInfo *nd, const char *model)
1846{
1847 const char *models[2];
1848
1849 models[0] = model;
1850 models[1] = NULL;
1851
1852 qemu_check_nic_model_list(nd, models, model);
1853}
1854
1855void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1856 const char *default_model)
1857{
1858 int i, exit_status = 0;
1859
1860 if (!nd->model)
1861 nd->model = strdup(default_model);
1862
1863 if (strcmp(nd->model, "?") != 0) {
1864 for (i = 0 ; models[i]; i++)
1865 if (strcmp(nd->model, models[i]) == 0)
1866 return;
1867
1868 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1869 exit_status = 1;
1870 }
1871
1872 fprintf(stderr, "qemu: Supported NIC models: ");
1873 for (i = 0 ; models[i]; i++)
1874 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1875
1876 exit(exit_status);
1877}
1878
63a01ef8
AL
1879int net_client_init(const char *device, const char *p)
1880{
8e4416af
AL
1881 static const char * const fd_params[] = {
1882 "vlan", "name", "fd", NULL
1883 };
63a01ef8
AL
1884 char buf[1024];
1885 int vlan_id, ret;
1886 VLANState *vlan;
7a9f6e4a 1887 char *name = NULL;
63a01ef8
AL
1888
1889 vlan_id = 0;
1890 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1891 vlan_id = strtol(buf, NULL, 0);
1892 }
1893 vlan = qemu_find_vlan(vlan_id);
9036de1a 1894
7a9f6e4a
AL
1895 if (get_param_value(buf, sizeof(buf), "name", p)) {
1896 name = strdup(buf);
1897 }
63a01ef8 1898 if (!strcmp(device, "nic")) {
8e4416af
AL
1899 static const char * const nic_params[] = {
1900 "vlan", "name", "macaddr", "model", NULL
1901 };
63a01ef8
AL
1902 NICInfo *nd;
1903 uint8_t *macaddr;
7697079b 1904 int idx = nic_get_free_idx();
63a01ef8 1905
ffad4116 1906 if (check_params(nic_params, p) < 0) {
8cf07dcb 1907 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
1908 return -1;
1909 }
7697079b 1910 if (idx == -1 || nb_nics >= MAX_NICS) {
63a01ef8 1911 fprintf(stderr, "Too Many NICs\n");
771f1339
AL
1912 ret = -1;
1913 goto out;
63a01ef8 1914 }
7697079b 1915 nd = &nd_table[idx];
63a01ef8
AL
1916 macaddr = nd->macaddr;
1917 macaddr[0] = 0x52;
1918 macaddr[1] = 0x54;
1919 macaddr[2] = 0x00;
1920 macaddr[3] = 0x12;
1921 macaddr[4] = 0x34;
7697079b 1922 macaddr[5] = 0x56 + idx;
63a01ef8
AL
1923
1924 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1925 if (parse_macaddr(macaddr, buf) < 0) {
1926 fprintf(stderr, "invalid syntax for ethernet address\n");
771f1339
AL
1927 ret = -1;
1928 goto out;
63a01ef8
AL
1929 }
1930 }
1931 if (get_param_value(buf, sizeof(buf), "model", p)) {
1932 nd->model = strdup(buf);
1933 }
1934 nd->vlan = vlan;
7a9f6e4a 1935 nd->name = name;
7697079b 1936 nd->used = 1;
7a9f6e4a 1937 name = NULL;
63a01ef8
AL
1938 nb_nics++;
1939 vlan->nb_guest_devs++;
4d73cd3b 1940 ret = idx;
63a01ef8
AL
1941 } else
1942 if (!strcmp(device, "none")) {
8e4416af
AL
1943 if (*p != '\0') {
1944 fprintf(stderr, "qemu: 'none' takes no parameters\n");
1945 return -1;
1946 }
63a01ef8
AL
1947 /* does nothing. It is needed to signal that no network cards
1948 are wanted */
1949 ret = 0;
1950 } else
1951#ifdef CONFIG_SLIRP
1952 if (!strcmp(device, "user")) {
8e4416af
AL
1953 static const char * const slirp_params[] = {
1954 "vlan", "name", "hostname", "restrict", "ip", NULL
1955 };
ffad4116 1956 if (check_params(slirp_params, p) < 0) {
8cf07dcb 1957 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
1958 return -1;
1959 }
63a01ef8
AL
1960 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1961 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1962 }
49ec9b40
AL
1963 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
1964 slirp_restrict = (buf[0] == 'y') ? 1 : 0;
1965 }
1966 if (get_param_value(buf, sizeof(buf), "ip", p)) {
1967 slirp_ip = strdup(buf);
1968 }
63a01ef8 1969 vlan->nb_host_devs++;
7a9f6e4a 1970 ret = net_slirp_init(vlan, device, name);
8ca9217d
AL
1971 } else if (!strcmp(device, "channel")) {
1972 long port;
1973 char name[20], *devname;
1974 struct VMChannel *vmc;
1975
1976 port = strtol(p, &devname, 10);
1977 devname++;
1978 if (port < 1 || port > 65535) {
771f1339
AL
1979 fprintf(stderr, "vmchannel wrong port number\n");
1980 ret = -1;
1981 goto out;
8ca9217d
AL
1982 }
1983 vmc = malloc(sizeof(struct VMChannel));
1984 snprintf(name, 20, "vmchannel%ld", port);
1985 vmc->hd = qemu_chr_open(name, devname, NULL);
1986 if (!vmc->hd) {
1987 fprintf(stderr, "qemu: could not open vmchannel device"
1988 "'%s'\n", devname);
771f1339
AL
1989 ret = -1;
1990 goto out;
8ca9217d
AL
1991 }
1992 vmc->port = port;
1993 slirp_add_exec(3, vmc->hd, 4, port);
1994 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
1995 NULL, vmc);
1996 ret = 0;
63a01ef8
AL
1997 } else
1998#endif
1999#ifdef _WIN32
2000 if (!strcmp(device, "tap")) {
8e4416af
AL
2001 static const char * const tap_params[] = {
2002 "vlan", "name", "ifname", NULL
2003 };
63a01ef8 2004 char ifname[64];
8e4416af 2005
ffad4116 2006 if (check_params(tap_params, p) < 0) {
8cf07dcb 2007 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2008 return -1;
2009 }
63a01ef8
AL
2010 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2011 fprintf(stderr, "tap: no interface name\n");
771f1339
AL
2012 ret = -1;
2013 goto out;
63a01ef8
AL
2014 }
2015 vlan->nb_host_devs++;
7a9f6e4a 2016 ret = tap_win32_init(vlan, device, name, ifname);
63a01ef8 2017 } else
b29fe3ed 2018#elif defined (_AIX)
63a01ef8
AL
2019#else
2020 if (!strcmp(device, "tap")) {
2021 char ifname[64];
2022 char setup_script[1024], down_script[1024];
2023 int fd;
2024 vlan->nb_host_devs++;
2025 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
ffad4116 2026 if (check_params(fd_params, p) < 0) {
8cf07dcb 2027 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2028 return -1;
2029 }
63a01ef8
AL
2030 fd = strtol(buf, NULL, 0);
2031 fcntl(fd, F_SETFL, O_NONBLOCK);
9036de1a
AL
2032 net_tap_fd_init(vlan, device, name, fd);
2033 ret = 0;
63a01ef8 2034 } else {
8e4416af
AL
2035 static const char * const tap_params[] = {
2036 "vlan", "name", "ifname", "script", "downscript", NULL
2037 };
ffad4116 2038 if (check_params(tap_params, p) < 0) {
8cf07dcb 2039 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2040 return -1;
2041 }
63a01ef8
AL
2042 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2043 ifname[0] = '\0';
2044 }
2045 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2046 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2047 }
2048 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2049 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2050 }
7a9f6e4a 2051 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
63a01ef8
AL
2052 }
2053 } else
2054#endif
2055 if (!strcmp(device, "socket")) {
2056 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2057 int fd;
ffad4116 2058 if (check_params(fd_params, p) < 0) {
8cf07dcb 2059 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2060 return -1;
2061 }
63a01ef8
AL
2062 fd = strtol(buf, NULL, 0);
2063 ret = -1;
7a9f6e4a 2064 if (net_socket_fd_init(vlan, device, name, fd, 1))
63a01ef8
AL
2065 ret = 0;
2066 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
8e4416af
AL
2067 static const char * const listen_params[] = {
2068 "vlan", "name", "listen", NULL
2069 };
ffad4116 2070 if (check_params(listen_params, p) < 0) {
8cf07dcb 2071 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2072 return -1;
2073 }
7a9f6e4a 2074 ret = net_socket_listen_init(vlan, device, name, buf);
63a01ef8 2075 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
8e4416af
AL
2076 static const char * const connect_params[] = {
2077 "vlan", "name", "connect", NULL
2078 };
ffad4116 2079 if (check_params(connect_params, p) < 0) {
8cf07dcb 2080 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2081 return -1;
2082 }
7a9f6e4a 2083 ret = net_socket_connect_init(vlan, device, name, buf);
63a01ef8 2084 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
8e4416af
AL
2085 static const char * const mcast_params[] = {
2086 "vlan", "name", "mcast", NULL
2087 };
ffad4116 2088 if (check_params(mcast_params, p) < 0) {
8cf07dcb 2089 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2090 return -1;
2091 }
7a9f6e4a 2092 ret = net_socket_mcast_init(vlan, device, name, buf);
63a01ef8
AL
2093 } else {
2094 fprintf(stderr, "Unknown socket options: %s\n", p);
771f1339
AL
2095 ret = -1;
2096 goto out;
63a01ef8
AL
2097 }
2098 vlan->nb_host_devs++;
2099 } else
2100#ifdef CONFIG_VDE
2101 if (!strcmp(device, "vde")) {
8e4416af
AL
2102 static const char * const vde_params[] = {
2103 "vlan", "name", "sock", "port", "group", "mode", NULL
2104 };
63a01ef8
AL
2105 char vde_sock[1024], vde_group[512];
2106 int vde_port, vde_mode;
8e4416af 2107
ffad4116 2108 if (check_params(vde_params, p) < 0) {
8cf07dcb 2109 fprintf(stderr, "qemu: invalid parameter in '%s'\n", p);
8e4416af
AL
2110 return -1;
2111 }
63a01ef8
AL
2112 vlan->nb_host_devs++;
2113 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2114 vde_sock[0] = '\0';
2115 }
2116 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2117 vde_port = strtol(buf, NULL, 10);
2118 } else {
2119 vde_port = 0;
2120 }
2121 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2122 vde_group[0] = '\0';
2123 }
2124 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2125 vde_mode = strtol(buf, NULL, 8);
2126 } else {
2127 vde_mode = 0700;
2128 }
7a9f6e4a 2129 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
63a01ef8
AL
2130 } else
2131#endif
bb9ea79e
AL
2132 if (!strcmp(device, "dump")) {
2133 int len = 65536;
2134
2135 if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2136 len = strtol(buf, NULL, 0);
2137 }
2138 if (!get_param_value(buf, sizeof(buf), "file", p)) {
2139 snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2140 }
2141 ret = net_dump_init(vlan, device, name, buf, len);
2142 } else {
63a01ef8 2143 fprintf(stderr, "Unknown network device: %s\n", device);
771f1339
AL
2144 ret = -1;
2145 goto out;
63a01ef8
AL
2146 }
2147 if (ret < 0) {
2148 fprintf(stderr, "Could not initialize device '%s'\n", device);
2149 }
771f1339 2150out:
7a9f6e4a
AL
2151 if (name)
2152 free(name);
63a01ef8
AL
2153 return ret;
2154}
2155
8b13c4a7
AL
2156void net_client_uninit(NICInfo *nd)
2157{
2158 nd->vlan->nb_guest_devs--;
2159 nb_nics--;
2160 nd->used = 0;
2161 free((void *)nd->model);
2162}
2163
6f338c34
AL
2164static int net_host_check_device(const char *device)
2165{
2166 int i;
bb9ea79e 2167 const char *valid_param_list[] = { "tap", "socket", "dump"
6f338c34
AL
2168#ifdef CONFIG_SLIRP
2169 ,"user"
2170#endif
2171#ifdef CONFIG_VDE
2172 ,"vde"
2173#endif
2174 };
2175 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2176 if (!strncmp(valid_param_list[i], device,
2177 strlen(valid_param_list[i])))
2178 return 1;
2179 }
2180
2181 return 0;
2182}
2183
376253ec 2184void net_host_device_add(Monitor *mon, const char *device, const char *opts)
6f338c34
AL
2185{
2186 if (!net_host_check_device(device)) {
376253ec 2187 monitor_printf(mon, "invalid host network device %s\n", device);
6f338c34
AL
2188 return;
2189 }
206ab6e0 2190 if (net_client_init(device, opts ? opts : "") < 0) {
5c8be678
AL
2191 monitor_printf(mon, "adding host network device %s failed\n", device);
2192 }
6f338c34
AL
2193}
2194
376253ec 2195void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
6f338c34
AL
2196{
2197 VLANState *vlan;
2198 VLANClientState *vc;
2199
6f338c34 2200 vlan = qemu_find_vlan(vlan_id);
6f338c34 2201
e8f1f9db
AL
2202 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
2203 if (!strcmp(vc->name, device)) {
6f338c34 2204 break;
e8f1f9db
AL
2205 }
2206 }
6f338c34
AL
2207
2208 if (!vc) {
376253ec 2209 monitor_printf(mon, "can't find device %s\n", device);
6f338c34
AL
2210 return;
2211 }
e8f1f9db
AL
2212 if (!net_host_check_device(vc->model)) {
2213 monitor_printf(mon, "invalid host network device %s\n", device);
2214 return;
2215 }
6f338c34
AL
2216 qemu_del_vlan_client(vc);
2217}
2218
63a01ef8
AL
2219int net_client_parse(const char *str)
2220{
2221 const char *p;
2222 char *q;
2223 char device[64];
2224
2225 p = str;
2226 q = device;
2227 while (*p != '\0' && *p != ',') {
2228 if ((q - device) < sizeof(device) - 1)
2229 *q++ = *p;
2230 p++;
2231 }
2232 *q = '\0';
2233 if (*p == ',')
2234 p++;
2235
2236 return net_client_init(device, p);
2237}
2238
376253ec 2239void do_info_network(Monitor *mon)
63a01ef8
AL
2240{
2241 VLANState *vlan;
2242 VLANClientState *vc;
2243
2244 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
376253ec 2245 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
63a01ef8 2246 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
376253ec 2247 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
63a01ef8
AL
2248 }
2249}
2250
376253ec 2251int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
436e5e53
AL
2252{
2253 VLANState *vlan;
2254 VLANClientState *vc = NULL;
2255
2256 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
2257 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
2258 if (strcmp(vc->name, name) == 0)
dd5de373
EI
2259 goto done;
2260done:
436e5e53
AL
2261
2262 if (!vc) {
376253ec 2263 monitor_printf(mon, "could not find network device '%s'", name);
436e5e53
AL
2264 return 0;
2265 }
2266
2267 if (strcmp(up_or_down, "up") == 0)
2268 vc->link_down = 0;
2269 else if (strcmp(up_or_down, "down") == 0)
2270 vc->link_down = 1;
2271 else
376253ec
AL
2272 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
2273 "valid\n", up_or_down);
436e5e53 2274
34b25ca7
AL
2275 if (vc->link_status_changed)
2276 vc->link_status_changed(vc);
2277
436e5e53
AL
2278 return 1;
2279}
2280
63a01ef8
AL
2281void net_cleanup(void)
2282{
2283 VLANState *vlan;
2284
63a01ef8
AL
2285 /* close network clients */
2286 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
b946a153 2287 VLANClientState *vc = vlan->first_client;
63a01ef8 2288
b946a153
AL
2289 while (vc) {
2290 VLANClientState *next = vc->next;
63a01ef8 2291
b946a153
AL
2292 qemu_del_vlan_client(vc);
2293
2294 vc = next;
63a01ef8
AL
2295 }
2296 }
63a01ef8
AL
2297}
2298
2299void net_client_check(void)
2300{
2301 VLANState *vlan;
2302
2303 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2304 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
2305 continue;
2306 if (vlan->nb_guest_devs == 0)
2307 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
2308 if (vlan->nb_host_devs == 0)
2309 fprintf(stderr,
2310 "Warning: vlan %d is not connected to host network\n",
2311 vlan->id);
2312 }
2313}