]> git.proxmox.com Git - qemu.git/blame - net.c
net: add qemu_purge_queued_packets()
[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,
cda9046b
MM
335 NetCanReceive *can_receive,
336 NetReceive *receive,
337 NetReceiveIOV *receive_iov,
b946a153 338 NetCleanup *cleanup,
63a01ef8
AL
339 void *opaque)
340{
341 VLANClientState *vc, **pvc;
342 vc = qemu_mallocz(sizeof(VLANClientState));
bf38c1a0 343 vc->model = strdup(model);
7a9f6e4a
AL
344 if (name)
345 vc->name = strdup(name);
346 else
347 vc->name = assign_name(vc, model);
cda9046b
MM
348 vc->can_receive = can_receive;
349 vc->receive = receive;
350 vc->receive_iov = receive_iov;
b946a153 351 vc->cleanup = cleanup;
63a01ef8
AL
352 vc->opaque = opaque;
353 vc->vlan = vlan;
354
355 vc->next = NULL;
356 pvc = &vlan->first_client;
357 while (*pvc != NULL)
358 pvc = &(*pvc)->next;
359 *pvc = vc;
360 return vc;
361}
362
363void qemu_del_vlan_client(VLANClientState *vc)
364{
365 VLANClientState **pvc = &vc->vlan->first_client;
366
367 while (*pvc != NULL)
368 if (*pvc == vc) {
369 *pvc = vc->next;
b946a153
AL
370 if (vc->cleanup) {
371 vc->cleanup(vc);
372 }
676cff29 373 free(vc->name);
bf38c1a0 374 free(vc->model);
dad35419 375 qemu_free(vc);
63a01ef8
AL
376 break;
377 } else
378 pvc = &(*pvc)->next;
379}
380
8b13c4a7
AL
381VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
382{
383 VLANClientState **pvc = &vlan->first_client;
384
385 while (*pvc != NULL)
386 if ((*pvc)->opaque == opaque)
387 return *pvc;
388 else
389 pvc = &(*pvc)->next;
390
391 return NULL;
392}
393
2e1e0641 394int qemu_can_send_packet(VLANClientState *sender)
63a01ef8 395{
2e1e0641 396 VLANState *vlan = sender->vlan;
63a01ef8
AL
397 VLANClientState *vc;
398
2e1e0641
MM
399 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
400 if (vc == sender) {
401 continue;
402 }
403
cda9046b 404 /* no can_receive() handler, they can always receive */
e3f5ec2b 405 if (!vc->can_receive || vc->can_receive(vc)) {
2e1e0641 406 return 1;
63a01ef8
AL
407 }
408 }
409 return 0;
410}
411
3e021d40 412static int
764a4d1d 413qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
63a01ef8 414{
63a01ef8 415 VLANClientState *vc;
3e021d40 416 int ret = -1;
63a01ef8 417
e94667b9
MM
418 sender->vlan->delivering = 1;
419
764a4d1d 420 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
3e021d40
MM
421 ssize_t len;
422
423 if (vc == sender) {
424 continue;
764a4d1d 425 }
3e021d40
MM
426
427 if (vc->link_down) {
428 ret = size;
429 continue;
430 }
431
432 len = vc->receive(vc, buf, size);
433
434 ret = (ret >= 0) ? ret : len;
764a4d1d 435 }
3e021d40 436
e94667b9
MM
437 sender->vlan->delivering = 0;
438
3e021d40 439 return ret;
764a4d1d
AL
440}
441
8cad5516
MM
442void qemu_purge_queued_packets(VLANClientState *vc)
443{
444 VLANPacket **pp = &vc->vlan->send_queue;
445
446 while (*pp != NULL) {
447 VLANPacket *packet = *pp;
448
449 if (packet->sender == vc) {
450 *pp = packet->next;
451 qemu_free(packet);
452 } else {
453 pp = &packet->next;
454 }
455 }
456}
457
f3b6c7fc 458void qemu_flush_queued_packets(VLANClientState *vc)
e94667b9
MM
459{
460 VLANPacket *packet;
461
462 while ((packet = vc->vlan->send_queue) != NULL) {
f3b6c7fc
MM
463 int ret;
464
e94667b9 465 vc->vlan->send_queue = packet->next;
f3b6c7fc
MM
466
467 ret = qemu_deliver_packet(packet->sender, packet->data, packet->size);
468 if (ret == 0 && packet->sent_cb != NULL) {
469 packet->next = vc->vlan->send_queue;
470 vc->vlan->send_queue = packet;
471 break;
472 }
473
474 if (packet->sent_cb)
475 packet->sent_cb(packet->sender);
476
e94667b9
MM
477 qemu_free(packet);
478 }
479}
480
f3b6c7fc
MM
481static void qemu_enqueue_packet(VLANClientState *sender,
482 const uint8_t *buf, int size,
483 NetPacketSent *sent_cb)
e94667b9
MM
484{
485 VLANPacket *packet;
486
487 packet = qemu_malloc(sizeof(VLANPacket) + size);
488 packet->next = sender->vlan->send_queue;
489 packet->sender = sender;
490 packet->size = size;
f3b6c7fc 491 packet->sent_cb = sent_cb;
e94667b9
MM
492 memcpy(packet->data, buf, size);
493 sender->vlan->send_queue = packet;
494}
495
f3b6c7fc
MM
496ssize_t qemu_send_packet_async(VLANClientState *sender,
497 const uint8_t *buf, int size,
498 NetPacketSent *sent_cb)
764a4d1d 499{
f3b6c7fc 500 int ret;
764a4d1d 501
f3b6c7fc
MM
502 if (sender->link_down) {
503 return size;
504 }
436e5e53 505
63a01ef8 506#ifdef DEBUG_NET
f3b6c7fc 507 printf("vlan %d send:\n", sender->vlan->id);
63a01ef8
AL
508 hex_dump(stdout, buf, size);
509#endif
f3b6c7fc
MM
510
511 if (sender->vlan->delivering) {
512 qemu_enqueue_packet(sender, buf, size, NULL);
513 return size;
514 }
515
516 ret = qemu_deliver_packet(sender, buf, size);
517 if (ret == 0 && sent_cb != NULL) {
518 qemu_enqueue_packet(sender, buf, size, sent_cb);
519 return 0;
63a01ef8 520 }
e94667b9 521
f3b6c7fc
MM
522 qemu_flush_queued_packets(sender);
523
524 return ret;
525}
526
527void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
528{
529 qemu_send_packet_async(vc, buf, size, NULL);
63a01ef8
AL
530}
531
fbe78f4f
AL
532static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
533 int iovcnt)
534{
535 uint8_t buffer[4096];
536 size_t offset = 0;
537 int i;
538
539 for (i = 0; i < iovcnt; i++) {
540 size_t len;
541
542 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
543 memcpy(buffer + offset, iov[i].iov_base, len);
544 offset += len;
545 }
546
f3b6c7fc 547 return vc->receive(vc, buffer, offset);
fbe78f4f
AL
548}
549
e0e7877a
AL
550static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
551{
552 size_t offset = 0;
553 int i;
554
555 for (i = 0; i < iovcnt; i++)
556 offset += iov[i].iov_len;
557 return offset;
558}
559
e94667b9
MM
560static int qemu_deliver_packet_iov(VLANClientState *sender,
561 const struct iovec *iov, int iovcnt)
fbe78f4f 562{
fbe78f4f 563 VLANClientState *vc;
e94667b9
MM
564 int ret = -1;
565
566 sender->vlan->delivering = 1;
567
568 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
569 ssize_t len;
570
571 if (vc == sender) {
572 continue;
573 }
574
575 if (vc->link_down) {
576 ret = calc_iov_length(iov, iovcnt);
577 continue;
578 }
579
580 if (vc->receive_iov) {
581 len = vc->receive_iov(vc, iov, iovcnt);
582 } else {
583 len = vc_sendv_compat(vc, iov, iovcnt);
584 }
585
586 ret = (ret >= 0) ? ret : len;
587 }
588
589 sender->vlan->delivering = 0;
590
591 return ret;
592}
593
594static ssize_t qemu_enqueue_packet_iov(VLANClientState *sender,
f3b6c7fc
MM
595 const struct iovec *iov, int iovcnt,
596 NetPacketSent *sent_cb)
e94667b9 597{
c27ff608 598 VLANPacket *packet;
e94667b9 599 size_t max_len = 0;
c27ff608 600 int i;
fbe78f4f 601
e94667b9 602 max_len = calc_iov_length(iov, iovcnt);
e0e7877a 603
e94667b9
MM
604 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
605 packet->next = sender->vlan->send_queue;
606 packet->sender = sender;
f3b6c7fc 607 packet->sent_cb = sent_cb;
e94667b9 608 packet->size = 0;
c27ff608 609
e94667b9
MM
610 for (i = 0; i < iovcnt; i++) {
611 size_t len = iov[i].iov_len;
c27ff608 612
e94667b9
MM
613 memcpy(packet->data + packet->size, iov[i].iov_base, len);
614 packet->size += len;
615 }
fbe78f4f 616
e94667b9 617 sender->vlan->send_queue = packet;
fbe78f4f 618
e94667b9
MM
619 return packet->size;
620}
fbe78f4f 621
f3b6c7fc
MM
622ssize_t qemu_sendv_packet_async(VLANClientState *sender,
623 const struct iovec *iov, int iovcnt,
624 NetPacketSent *sent_cb)
e94667b9
MM
625{
626 int ret;
627
628 if (sender->link_down) {
629 return calc_iov_length(iov, iovcnt);
630 }
631
632 if (sender->vlan->delivering) {
f3b6c7fc 633 return qemu_enqueue_packet_iov(sender, iov, iovcnt, NULL);
fbe78f4f
AL
634 }
635
e94667b9 636 ret = qemu_deliver_packet_iov(sender, iov, iovcnt);
f3b6c7fc
MM
637 if (ret == 0 && sent_cb != NULL) {
638 qemu_enqueue_packet_iov(sender, iov, iovcnt, sent_cb);
639 return 0;
640 }
e94667b9
MM
641
642 qemu_flush_queued_packets(sender);
643
644 return ret;
fbe78f4f
AL
645}
646
f3b6c7fc
MM
647ssize_t
648qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
649{
650 return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
651}
652
10ae5a7a
JK
653static void config_error(Monitor *mon, const char *fmt, ...)
654{
655 va_list ap;
656
657 va_start(ap, fmt);
658 if (mon) {
659 monitor_vprintf(mon, fmt, ap);
660 } else {
661 fprintf(stderr, "qemu: ");
662 vfprintf(stderr, fmt, ap);
663 exit(1);
664 }
665 va_end(ap);
666}
667
63a01ef8
AL
668#if defined(CONFIG_SLIRP)
669
670/* slirp network adapter */
671
b8e8af38
JK
672struct slirp_config_str {
673 struct slirp_config_str *next;
674 const char *str;
675};
676
63a01ef8 677static int slirp_inited;
b8e8af38
JK
678static struct slirp_config_str *slirp_redirs;
679#ifndef _WIN32
680static const char *slirp_smb_export;
681#endif
63a01ef8
AL
682static VLANClientState *slirp_vc;
683
c5b76b38 684#ifndef _WIN32
b8e8af38 685static void slirp_smb(const char *exported_dir);
c5b76b38 686#endif
b8e8af38
JK
687static void slirp_redirection(Monitor *mon, const char *redir_str);
688
63a01ef8
AL
689int slirp_can_output(void)
690{
691 return !slirp_vc || qemu_can_send_packet(slirp_vc);
692}
693
694void slirp_output(const uint8_t *pkt, int pkt_len)
695{
696#ifdef DEBUG_SLIRP
697 printf("slirp output:\n");
698 hex_dump(stdout, pkt, pkt_len);
699#endif
700 if (!slirp_vc)
701 return;
702 qemu_send_packet(slirp_vc, pkt, pkt_len);
703}
704
705int slirp_is_inited(void)
706{
707 return slirp_inited;
708}
709
4f1c942b 710static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8
AL
711{
712#ifdef DEBUG_SLIRP
713 printf("slirp input:\n");
714 hex_dump(stdout, buf, size);
715#endif
716 slirp_input(buf, size);
4f1c942b 717 return size;
63a01ef8
AL
718}
719
8d6249a7
AL
720static int slirp_in_use;
721
722static void net_slirp_cleanup(VLANClientState *vc)
723{
724 slirp_in_use = 0;
725}
726
b8e8af38
JK
727static int net_slirp_init(VLANState *vlan, const char *model, const char *name,
728 int restricted, const char *ip)
63a01ef8 729{
8d6249a7
AL
730 if (slirp_in_use) {
731 /* slirp only supports a single instance so far */
732 return -1;
733 }
63a01ef8
AL
734 if (!slirp_inited) {
735 slirp_inited = 1;
b8e8af38
JK
736 slirp_init(restricted, ip);
737
738 while (slirp_redirs) {
739 struct slirp_config_str *config = slirp_redirs;
740
741 slirp_redirection(NULL, config->str);
742 slirp_redirs = config->next;
743 qemu_free(config);
744 }
745#ifndef _WIN32
746 if (slirp_smb_export) {
747 slirp_smb(slirp_smb_export);
748 }
749#endif
63a01ef8 750 }
b8e8af38 751
463af534 752 slirp_vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive,
b8e8af38 753 NULL, net_slirp_cleanup, NULL);
7cb7434b 754 slirp_vc->info_str[0] = '\0';
8d6249a7 755 slirp_in_use = 1;
63a01ef8
AL
756 return 0;
757}
758
1c6ed9f3
AG
759static void net_slirp_redir_print(void *opaque, int is_udp,
760 struct in_addr *laddr, u_int lport,
761 struct in_addr *faddr, u_int fport)
762{
763 Monitor *mon = (Monitor *)opaque;
764 uint32_t h_addr;
765 uint32_t g_addr;
766 char buf[16];
767
768 h_addr = ntohl(faddr->s_addr);
769 g_addr = ntohl(laddr->s_addr);
770
771 monitor_printf(mon, " %s |", is_udp ? "udp" : "tcp" );
772 snprintf(buf, 15, "%d.%d.%d.%d", (h_addr >> 24) & 0xff,
773 (h_addr >> 16) & 0xff,
774 (h_addr >> 8) & 0xff,
775 (h_addr) & 0xff);
776 monitor_printf(mon, " %15s |", buf);
777 monitor_printf(mon, " %5d |", fport);
778
779 snprintf(buf, 15, "%d.%d.%d.%d", (g_addr >> 24) & 0xff,
780 (g_addr >> 16) & 0xff,
781 (g_addr >> 8) & 0xff,
782 (g_addr) & 0xff);
783 monitor_printf(mon, " %15s |", buf);
784 monitor_printf(mon, " %5d\n", lport);
785
786}
787
788static void net_slirp_redir_list(Monitor *mon)
789{
790 if (!mon)
791 return;
792
793 monitor_printf(mon, " Prot | Host Addr | HPort | Guest Addr | GPort\n");
794 monitor_printf(mon, " | | | | \n");
795 slirp_redir_loop(net_slirp_redir_print, mon);
796}
797
c1261d8d
AG
798static void net_slirp_redir_rm(Monitor *mon, const char *port_str)
799{
800 int host_port;
801 char buf[256] = "";
802 const char *p = port_str;
803 int is_udp = 0;
804 int n;
805
806 if (!mon)
807 return;
808
809 if (!port_str || !port_str[0])
810 goto fail_syntax;
811
812 get_str_sep(buf, sizeof(buf), &p, ':');
813
814 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
815 is_udp = 0;
816 } else if (!strcmp(buf, "udp")) {
817 is_udp = 1;
818 } else {
819 goto fail_syntax;
820 }
821
822 host_port = atoi(p);
823
824 n = slirp_redir_rm(is_udp, host_port);
825
826 monitor_printf(mon, "removed %d redirections to %s port %d\n", n,
827 is_udp ? "udp" : "tcp", host_port);
828 return;
829
830 fail_syntax:
831 monitor_printf(mon, "invalid format\n");
832}
833
b8e8af38 834static void slirp_redirection(Monitor *mon, const char *redir_str)
63a01ef8 835{
63a01ef8
AL
836 struct in_addr guest_addr;
837 int host_port, guest_port;
b8e8af38
JK
838 const char *p;
839 char buf[256], *r;
840 int is_udp;
1c6ed9f3 841
63a01ef8 842 p = redir_str;
b8e8af38 843 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 844 goto fail_syntax;
b8e8af38 845 }
d4ebe193 846 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
63a01ef8
AL
847 is_udp = 0;
848 } else if (!strcmp(buf, "udp")) {
849 is_udp = 1;
850 } else {
d4ebe193 851 goto fail_syntax;
63a01ef8
AL
852 }
853
b8e8af38 854 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 855 goto fail_syntax;
b8e8af38 856 }
63a01ef8 857 host_port = strtol(buf, &r, 0);
b8e8af38 858 if (r == buf) {
d4ebe193 859 goto fail_syntax;
b8e8af38 860 }
63a01ef8 861
b8e8af38 862 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 863 goto fail_syntax;
b8e8af38 864 }
63a01ef8
AL
865 if (buf[0] == '\0') {
866 pstrcpy(buf, sizeof(buf), "10.0.2.15");
867 }
b8e8af38 868 if (!inet_aton(buf, &guest_addr)) {
d4ebe193 869 goto fail_syntax;
b8e8af38 870 }
63a01ef8
AL
871
872 guest_port = strtol(p, &r, 0);
b8e8af38 873 if (r == p) {
d4ebe193 874 goto fail_syntax;
b8e8af38 875 }
63a01ef8
AL
876
877 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
10ae5a7a 878 config_error(mon, "could not set up redirection '%s'\n", redir_str);
63a01ef8
AL
879 }
880 return;
d4ebe193
AL
881
882 fail_syntax:
10ae5a7a 883 config_error(mon, "invalid redirection format '%s'\n", redir_str);
63a01ef8
AL
884}
885
b8e8af38
JK
886void net_slirp_redir(Monitor *mon, const char *redir_str, const char *redir_opt2)
887{
888 struct slirp_config_str *config;
889
890 if (!slirp_inited) {
891 if (mon) {
892 monitor_printf(mon, "user mode network stack not in use\n");
893 } else {
894 config = qemu_malloc(sizeof(*config));
895 config->str = redir_str;
896 config->next = slirp_redirs;
897 slirp_redirs = config;
898 }
899 return;
900 }
901
902 if (!strcmp(redir_str, "remove")) {
903 net_slirp_redir_rm(mon, redir_opt2);
904 return;
905 }
906
907 if (!strcmp(redir_str, "list")) {
908 net_slirp_redir_list(mon);
909 return;
910 }
911
912 slirp_redirection(mon, redir_str);
913}
914
63a01ef8
AL
915#ifndef _WIN32
916
917static char smb_dir[1024];
918
919static void erase_dir(char *dir_name)
920{
921 DIR *d;
922 struct dirent *de;
923 char filename[1024];
924
925 /* erase all the files in the directory */
511d2b14 926 if ((d = opendir(dir_name)) != NULL) {
63a01ef8
AL
927 for(;;) {
928 de = readdir(d);
929 if (!de)
930 break;
931 if (strcmp(de->d_name, ".") != 0 &&
932 strcmp(de->d_name, "..") != 0) {
933 snprintf(filename, sizeof(filename), "%s/%s",
934 smb_dir, de->d_name);
935 if (unlink(filename) != 0) /* is it a directory? */
936 erase_dir(filename);
937 }
938 }
939 closedir(d);
940 rmdir(dir_name);
941 }
942}
943
944/* automatic user mode samba server configuration */
945static void smb_exit(void)
946{
947 erase_dir(smb_dir);
948}
949
b8e8af38 950static void slirp_smb(const char *exported_dir)
63a01ef8
AL
951{
952 char smb_conf[1024];
953 char smb_cmdline[1024];
954 FILE *f;
955
63a01ef8 956 /* XXX: better tmp dir construction */
3f4cb3d3 957 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%ld", (long)getpid());
63a01ef8
AL
958 if (mkdir(smb_dir, 0700) < 0) {
959 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
960 exit(1);
961 }
962 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
963
964 f = fopen(smb_conf, "w");
965 if (!f) {
966 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
967 exit(1);
968 }
969 fprintf(f,
970 "[global]\n"
971 "private dir=%s\n"
972 "smb ports=0\n"
973 "socket address=127.0.0.1\n"
974 "pid directory=%s\n"
975 "lock directory=%s\n"
976 "log file=%s/log.smbd\n"
977 "smb passwd file=%s/smbpasswd\n"
978 "security = share\n"
979 "[qemu]\n"
980 "path=%s\n"
981 "read only=no\n"
982 "guest ok=yes\n",
983 smb_dir,
984 smb_dir,
985 smb_dir,
986 smb_dir,
987 smb_dir,
988 exported_dir
989 );
990 fclose(f);
991 atexit(smb_exit);
992
993 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
994 SMBD_COMMAND, smb_conf);
995
996 slirp_add_exec(0, smb_cmdline, 4, 139);
997}
998
b8e8af38
JK
999/* automatic user mode samba server configuration */
1000void net_slirp_smb(const char *exported_dir)
1001{
1002 if (slirp_smb_export) {
1003 fprintf(stderr, "-smb given twice\n");
1004 exit(1);
1005 }
1006 slirp_smb_export = exported_dir;
1007 if (slirp_inited) {
1008 slirp_smb(exported_dir);
1009 }
1010}
1011
63a01ef8 1012#endif /* !defined(_WIN32) */
b8e8af38 1013
376253ec 1014void do_info_slirp(Monitor *mon)
63a01ef8
AL
1015{
1016 slirp_stats();
1017}
1018
8ca9217d
AL
1019struct VMChannel {
1020 CharDriverState *hd;
1021 int port;
511d2b14 1022};
8ca9217d
AL
1023
1024static int vmchannel_can_read(void *opaque)
1025{
1026 struct VMChannel *vmc = (struct VMChannel*)opaque;
1027 return slirp_socket_can_recv(4, vmc->port);
1028}
1029
1030static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
1031{
1032 struct VMChannel *vmc = (struct VMChannel*)opaque;
1033 slirp_socket_recv(4, vmc->port, buf, size);
1034}
1035
63a01ef8
AL
1036#endif /* CONFIG_SLIRP */
1037
1038#if !defined(_WIN32)
1039
1040typedef struct TAPState {
1041 VLANClientState *vc;
1042 int fd;
1043 char down_script[1024];
973cbd37 1044 char down_script_arg[128];
5b01e886 1045 uint8_t buf[4096];
63a01ef8
AL
1046} TAPState;
1047
b946a153
AL
1048static int launch_script(const char *setup_script, const char *ifname, int fd);
1049
e3f5ec2b 1050static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
b535b7b2
AL
1051 int iovcnt)
1052{
e3f5ec2b 1053 TAPState *s = vc->opaque;
b535b7b2
AL
1054 ssize_t len;
1055
1056 do {
1057 len = writev(s->fd, iov, iovcnt);
1058 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
1059
1060 return len;
1061}
b535b7b2 1062
4f1c942b 1063static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1064{
e3f5ec2b 1065 TAPState *s = vc->opaque;
4f1c942b
MM
1066 ssize_t len;
1067
1068 do {
1069 len = write(s->fd, buf, size);
1070 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
1071
1072 return len;
63a01ef8
AL
1073}
1074
3471b757
MM
1075static int tap_can_send(void *opaque)
1076{
1077 TAPState *s = opaque;
1078
1079 return qemu_can_send_packet(s->vc);
1080}
1081
63a01ef8 1082#ifdef __sun__
5a6d8815
MM
1083static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1084{
63a01ef8
AL
1085 struct strbuf sbuf;
1086 int f = 0;
5a6d8815
MM
1087
1088 sbuf.maxlen = maxlen;
3f4cb3d3 1089 sbuf.buf = (char *)buf;
5a6d8815
MM
1090
1091 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
1092}
63a01ef8 1093#else
5a6d8815
MM
1094static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1095{
1096 return read(tapfd, buf, maxlen);
1097}
63a01ef8 1098#endif
5a6d8815 1099
e19eb224
MM
1100static void tap_send(void *opaque);
1101
1102static void tap_send_completed(VLANClientState *vc)
1103{
1104 TAPState *s = vc->opaque;
1105
1106 qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
1107}
1108
5a6d8815
MM
1109static void tap_send(void *opaque)
1110{
1111 TAPState *s = opaque;
5a6d8815
MM
1112 int size;
1113
e19eb224
MM
1114 do {
1115 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1116 if (size <= 0) {
1117 break;
1118 }
1119
1120 size = qemu_send_packet_async(s->vc, s->buf, size, tap_send_completed);
1121 if (size == 0) {
1122 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
1123 }
1124 } while (size > 0);
63a01ef8
AL
1125}
1126
b946a153
AL
1127static void tap_cleanup(VLANClientState *vc)
1128{
1129 TAPState *s = vc->opaque;
1130
1131 if (s->down_script[0])
1132 launch_script(s->down_script, s->down_script_arg, s->fd);
1133
1134 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1135 close(s->fd);
1136 qemu_free(s);
1137}
1138
63a01ef8
AL
1139/* fd support */
1140
7a9f6e4a
AL
1141static TAPState *net_tap_fd_init(VLANState *vlan,
1142 const char *model,
1143 const char *name,
1144 int fd)
63a01ef8
AL
1145{
1146 TAPState *s;
1147
1148 s = qemu_mallocz(sizeof(TAPState));
63a01ef8 1149 s->fd = fd;
463af534
MM
1150 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1151 tap_receive_iov, tap_cleanup, s);
3471b757 1152 qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
7cb7434b 1153 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
63a01ef8
AL
1154 return s;
1155}
1156
179a2c19 1157#if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
63a01ef8
AL
1158static int tap_open(char *ifname, int ifname_size)
1159{
1160 int fd;
1161 char *dev;
1162 struct stat s;
1163
1164 TFR(fd = open("/dev/tap", O_RDWR));
1165 if (fd < 0) {
1166 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1167 return -1;
1168 }
1169
1170 fstat(fd, &s);
1171 dev = devname(s.st_rdev, S_IFCHR);
1172 pstrcpy(ifname, ifname_size, dev);
1173
1174 fcntl(fd, F_SETFL, O_NONBLOCK);
1175 return fd;
1176}
1177#elif defined(__sun__)
1178#define TUNNEWPPA (('T'<<16) | 0x0001)
1179/*
1180 * Allocate TAP device, returns opened fd.
1181 * Stores dev name in the first arg(must be large enough).
1182 */
3f4cb3d3 1183static int tap_alloc(char *dev, size_t dev_size)
63a01ef8
AL
1184{
1185 int tap_fd, if_fd, ppa = -1;
1186 static int ip_fd = 0;
1187 char *ptr;
1188
1189 static int arp_fd = 0;
1190 int ip_muxid, arp_muxid;
1191 struct strioctl strioc_if, strioc_ppa;
1192 int link_type = I_PLINK;;
1193 struct lifreq ifr;
1194 char actual_name[32] = "";
1195
1196 memset(&ifr, 0x0, sizeof(ifr));
1197
1198 if( *dev ){
1199 ptr = dev;
47398b9c 1200 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
63a01ef8
AL
1201 ppa = atoi(ptr);
1202 }
1203
1204 /* Check if IP device was opened */
1205 if( ip_fd )
1206 close(ip_fd);
1207
1208 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1209 if (ip_fd < 0) {
1210 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1211 return -1;
1212 }
1213
1214 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1215 if (tap_fd < 0) {
1216 syslog(LOG_ERR, "Can't open /dev/tap");
1217 return -1;
1218 }
1219
1220 /* Assign a new PPA and get its unit number. */
1221 strioc_ppa.ic_cmd = TUNNEWPPA;
1222 strioc_ppa.ic_timout = 0;
1223 strioc_ppa.ic_len = sizeof(ppa);
1224 strioc_ppa.ic_dp = (char *)&ppa;
1225 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1226 syslog (LOG_ERR, "Can't assign new interface");
1227
1228 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1229 if (if_fd < 0) {
1230 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1231 return -1;
1232 }
1233 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1234 syslog(LOG_ERR, "Can't push IP module");
1235 return -1;
1236 }
1237
1238 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1239 syslog(LOG_ERR, "Can't get flags\n");
1240
1241 snprintf (actual_name, 32, "tap%d", ppa);
1242 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1243
1244 ifr.lifr_ppa = ppa;
1245 /* Assign ppa according to the unit number returned by tun device */
1246
1247 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1248 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1249 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1250 syslog (LOG_ERR, "Can't get flags\n");
1251 /* Push arp module to if_fd */
1252 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1253 syslog (LOG_ERR, "Can't push ARP module (2)");
1254
1255 /* Push arp module to ip_fd */
1256 if (ioctl (ip_fd, I_POP, NULL) < 0)
1257 syslog (LOG_ERR, "I_POP failed\n");
1258 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1259 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1260 /* Open arp_fd */
1261 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1262 if (arp_fd < 0)
1263 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1264
1265 /* Set ifname to arp */
1266 strioc_if.ic_cmd = SIOCSLIFNAME;
1267 strioc_if.ic_timout = 0;
1268 strioc_if.ic_len = sizeof(ifr);
1269 strioc_if.ic_dp = (char *)&ifr;
1270 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1271 syslog (LOG_ERR, "Can't set ifname to arp\n");
1272 }
1273
1274 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1275 syslog(LOG_ERR, "Can't link TAP device to IP");
1276 return -1;
1277 }
1278
1279 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1280 syslog (LOG_ERR, "Can't link TAP device to ARP");
1281
1282 close (if_fd);
1283
1284 memset(&ifr, 0x0, sizeof(ifr));
1285 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1286 ifr.lifr_ip_muxid = ip_muxid;
1287 ifr.lifr_arp_muxid = arp_muxid;
1288
1289 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1290 {
1291 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1292 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1293 syslog (LOG_ERR, "Can't set multiplexor id");
1294 }
1295
1296 snprintf(dev, dev_size, "tap%d", ppa);
1297 return tap_fd;
1298}
1299
1300static int tap_open(char *ifname, int ifname_size)
1301{
1302 char dev[10]="";
1303 int fd;
1304 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1305 fprintf(stderr, "Cannot allocate TAP device\n");
1306 return -1;
1307 }
1308 pstrcpy(ifname, ifname_size, dev);
1309 fcntl(fd, F_SETFL, O_NONBLOCK);
1310 return fd;
1311}
b29fe3ed 1312#elif defined (_AIX)
1313static int tap_open(char *ifname, int ifname_size)
1314{
1315 fprintf (stderr, "no tap on AIX\n");
1316 return -1;
1317}
63a01ef8
AL
1318#else
1319static int tap_open(char *ifname, int ifname_size)
1320{
1321 struct ifreq ifr;
1322 int fd, ret;
1323
1324 TFR(fd = open("/dev/net/tun", O_RDWR));
1325 if (fd < 0) {
1326 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1327 return -1;
1328 }
1329 memset(&ifr, 0, sizeof(ifr));
1330 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1331 if (ifname[0] != '\0')
1332 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1333 else
1334 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1335 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1336 if (ret != 0) {
1337 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1338 close(fd);
1339 return -1;
1340 }
1341 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1342 fcntl(fd, F_SETFL, O_NONBLOCK);
1343 return fd;
1344}
1345#endif
1346
1347static int launch_script(const char *setup_script, const char *ifname, int fd)
1348{
7c3370d4 1349 sigset_t oldmask, mask;
63a01ef8
AL
1350 int pid, status;
1351 char *args[3];
1352 char **parg;
1353
7c3370d4
JK
1354 sigemptyset(&mask);
1355 sigaddset(&mask, SIGCHLD);
1356 sigprocmask(SIG_BLOCK, &mask, &oldmask);
1357
1358 /* try to launch network script */
1359 pid = fork();
1360 if (pid == 0) {
1361 int open_max = sysconf(_SC_OPEN_MAX), i;
1362
1363 for (i = 0; i < open_max; i++) {
1364 if (i != STDIN_FILENO &&
1365 i != STDOUT_FILENO &&
1366 i != STDERR_FILENO &&
1367 i != fd) {
1368 close(i);
63a01ef8
AL
1369 }
1370 }
7c3370d4
JK
1371 parg = args;
1372 *parg++ = (char *)setup_script;
1373 *parg++ = (char *)ifname;
1374 *parg++ = NULL;
1375 execv(setup_script, args);
1376 _exit(1);
1377 } else if (pid > 0) {
1378 while (waitpid(pid, &status, 0) != pid) {
1379 /* loop */
1380 }
1381 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1382
1383 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1384 return 0;
1385 }
1386 }
1387 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1388 return -1;
63a01ef8
AL
1389}
1390
7a9f6e4a
AL
1391static int net_tap_init(VLANState *vlan, const char *model,
1392 const char *name, const char *ifname1,
63a01ef8
AL
1393 const char *setup_script, const char *down_script)
1394{
1395 TAPState *s;
1396 int fd;
1397 char ifname[128];
1398
1399 if (ifname1 != NULL)
1400 pstrcpy(ifname, sizeof(ifname), ifname1);
1401 else
1402 ifname[0] = '\0';
1403 TFR(fd = tap_open(ifname, sizeof(ifname)));
1404 if (fd < 0)
1405 return -1;
1406
1407 if (!setup_script || !strcmp(setup_script, "no"))
1408 setup_script = "";
1409 if (setup_script[0] != '\0') {
1410 if (launch_script(setup_script, ifname, fd))
1411 return -1;
1412 }
7a9f6e4a 1413 s = net_tap_fd_init(vlan, model, name, fd);
63a01ef8 1414 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
7cb7434b
AL
1415 "ifname=%s,script=%s,downscript=%s",
1416 ifname, setup_script, down_script);
973cbd37 1417 if (down_script && strcmp(down_script, "no")) {
63a01ef8 1418 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
973cbd37
AL
1419 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1420 }
63a01ef8
AL
1421 return 0;
1422}
1423
1424#endif /* !_WIN32 */
1425
1426#if defined(CONFIG_VDE)
1427typedef struct VDEState {
1428 VLANClientState *vc;
1429 VDECONN *vde;
1430} VDEState;
1431
1432static void vde_to_qemu(void *opaque)
1433{
1434 VDEState *s = opaque;
1435 uint8_t buf[4096];
1436 int size;
1437
cc63bb0f 1438 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
63a01ef8
AL
1439 if (size > 0) {
1440 qemu_send_packet(s->vc, buf, size);
1441 }
1442}
1443
4f1c942b 1444static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1445{
e3f5ec2b 1446 VDEState *s = vc->opaque;
068daedd 1447 ssize_t ret;
4f1c942b
MM
1448
1449 do {
1450 ret = vde_send(s->vde, (const char *)buf, size, 0);
1451 } while (ret < 0 && errno == EINTR);
1452
1453 return ret;
63a01ef8
AL
1454}
1455
b946a153
AL
1456static void vde_cleanup(VLANClientState *vc)
1457{
1458 VDEState *s = vc->opaque;
1459 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1460 vde_close(s->vde);
1461 qemu_free(s);
1462}
1463
7a9f6e4a
AL
1464static int net_vde_init(VLANState *vlan, const char *model,
1465 const char *name, const char *sock,
bf38c1a0 1466 int port, const char *group, int mode)
63a01ef8
AL
1467{
1468 VDEState *s;
1469 char *init_group = strlen(group) ? (char *)group : NULL;
1470 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1471
1472 struct vde_open_args args = {
1473 .port = port,
1474 .group = init_group,
1475 .mode = mode,
1476 };
1477
1478 s = qemu_mallocz(sizeof(VDEState));
cc63bb0f 1479 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
63a01ef8
AL
1480 if (!s->vde){
1481 free(s);
1482 return -1;
1483 }
e3f5ec2b 1484 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
b946a153 1485 NULL, vde_cleanup, s);
63a01ef8 1486 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
7cb7434b 1487 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
63a01ef8
AL
1488 sock, vde_datafd(s->vde));
1489 return 0;
1490}
1491#endif
1492
1493/* network connection */
1494typedef struct NetSocketState {
1495 VLANClientState *vc;
1496 int fd;
1497 int state; /* 0 = getting length, 1 = getting data */
abcd2baa
AL
1498 unsigned int index;
1499 unsigned int packet_len;
63a01ef8
AL
1500 uint8_t buf[4096];
1501 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1502} NetSocketState;
1503
1504typedef struct NetSocketListenState {
1505 VLANState *vlan;
bf38c1a0 1506 char *model;
7a9f6e4a 1507 char *name;
63a01ef8
AL
1508 int fd;
1509} NetSocketListenState;
1510
1511/* XXX: we consider we can send the whole packet without blocking */
4f1c942b 1512static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1513{
e3f5ec2b 1514 NetSocketState *s = vc->opaque;
63a01ef8
AL
1515 uint32_t len;
1516 len = htonl(size);
1517
1518 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
4f1c942b 1519 return send_all(s->fd, buf, size);
63a01ef8
AL
1520}
1521
4f1c942b 1522static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1523{
e3f5ec2b 1524 NetSocketState *s = vc->opaque;
4f1c942b 1525
70503264 1526 return sendto(s->fd, (const void *)buf, size, 0,
4f1c942b 1527 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
63a01ef8
AL
1528}
1529
1530static void net_socket_send(void *opaque)
1531{
1532 NetSocketState *s = opaque;
abcd2baa
AL
1533 int size, err;
1534 unsigned l;
63a01ef8
AL
1535 uint8_t buf1[4096];
1536 const uint8_t *buf;
1537
c5b76b38 1538 size = recv(s->fd, (void *)buf1, sizeof(buf1), 0);
63a01ef8
AL
1539 if (size < 0) {
1540 err = socket_error();
1541 if (err != EWOULDBLOCK)
1542 goto eoc;
1543 } else if (size == 0) {
1544 /* end of connection */
1545 eoc:
1546 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1547 closesocket(s->fd);
1548 return;
1549 }
1550 buf = buf1;
1551 while (size > 0) {
1552 /* reassemble a packet from the network */
1553 switch(s->state) {
1554 case 0:
1555 l = 4 - s->index;
1556 if (l > size)
1557 l = size;
1558 memcpy(s->buf + s->index, buf, l);
1559 buf += l;
1560 size -= l;
1561 s->index += l;
1562 if (s->index == 4) {
1563 /* got length */
1564 s->packet_len = ntohl(*(uint32_t *)s->buf);
1565 s->index = 0;
1566 s->state = 1;
1567 }
1568 break;
1569 case 1:
1570 l = s->packet_len - s->index;
1571 if (l > size)
1572 l = size;
abcd2baa
AL
1573 if (s->index + l <= sizeof(s->buf)) {
1574 memcpy(s->buf + s->index, buf, l);
1575 } else {
1576 fprintf(stderr, "serious error: oversized packet received,"
1577 "connection terminated.\n");
1578 s->state = 0;
1579 goto eoc;
1580 }
1581
63a01ef8
AL
1582 s->index += l;
1583 buf += l;
1584 size -= l;
1585 if (s->index >= s->packet_len) {
1586 qemu_send_packet(s->vc, s->buf, s->packet_len);
1587 s->index = 0;
1588 s->state = 0;
1589 }
1590 break;
1591 }
1592 }
1593}
1594
1595static void net_socket_send_dgram(void *opaque)
1596{
1597 NetSocketState *s = opaque;
1598 int size;
1599
c5b76b38 1600 size = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
63a01ef8
AL
1601 if (size < 0)
1602 return;
1603 if (size == 0) {
1604 /* end of connection */
1605 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1606 return;
1607 }
1608 qemu_send_packet(s->vc, s->buf, size);
1609}
1610
1611static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1612{
1613 struct ip_mreq imr;
1614 int fd;
1615 int val, ret;
1616 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1617 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1618 inet_ntoa(mcastaddr->sin_addr),
1619 (int)ntohl(mcastaddr->sin_addr.s_addr));
1620 return -1;
1621
1622 }
1623 fd = socket(PF_INET, SOCK_DGRAM, 0);
1624 if (fd < 0) {
1625 perror("socket(PF_INET, SOCK_DGRAM)");
1626 return -1;
1627 }
1628
1629 val = 1;
1630 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1631 (const char *)&val, sizeof(val));
1632 if (ret < 0) {
1633 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1634 goto fail;
1635 }
1636
1637 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1638 if (ret < 0) {
1639 perror("bind");
1640 goto fail;
1641 }
1642
1643 /* Add host to multicast group */
1644 imr.imr_multiaddr = mcastaddr->sin_addr;
1645 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1646
1647 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1648 (const char *)&imr, sizeof(struct ip_mreq));
1649 if (ret < 0) {
1650 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1651 goto fail;
1652 }
1653
1654 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1655 val = 1;
1656 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1657 (const char *)&val, sizeof(val));
1658 if (ret < 0) {
1659 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1660 goto fail;
1661 }
1662
1663 socket_set_nonblock(fd);
1664 return fd;
1665fail:
1666 if (fd >= 0)
1667 closesocket(fd);
1668 return -1;
1669}
1670
b946a153
AL
1671static void net_socket_cleanup(VLANClientState *vc)
1672{
1673 NetSocketState *s = vc->opaque;
1674 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1675 close(s->fd);
1676 qemu_free(s);
1677}
1678
7a9f6e4a
AL
1679static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1680 const char *model,
1681 const char *name,
bf38c1a0 1682 int fd, int is_connected)
63a01ef8
AL
1683{
1684 struct sockaddr_in saddr;
1685 int newfd;
1686 socklen_t saddr_len;
1687 NetSocketState *s;
1688
1689 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1690 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1691 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1692 */
1693
1694 if (is_connected) {
1695 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1696 /* must be bound */
1697 if (saddr.sin_addr.s_addr==0) {
1698 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1699 fd);
1700 return NULL;
1701 }
1702 /* clone dgram socket */
1703 newfd = net_socket_mcast_create(&saddr);
1704 if (newfd < 0) {
1705 /* error already reported by net_socket_mcast_create() */
1706 close(fd);
1707 return NULL;
1708 }
1709 /* clone newfd to fd, close newfd */
1710 dup2(newfd, fd);
1711 close(newfd);
1712
1713 } else {
1714 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1715 fd, strerror(errno));
1716 return NULL;
1717 }
1718 }
1719
1720 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8
AL
1721 s->fd = fd;
1722
463af534 1723 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
b946a153 1724 NULL, net_socket_cleanup, s);
63a01ef8
AL
1725 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1726
1727 /* mcast: save bound address as dst */
1728 if (is_connected) s->dgram_dst=saddr;
1729
1730 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1731 "socket: fd=%d (%s mcast=%s:%d)",
1732 fd, is_connected? "cloned" : "",
1733 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1734 return s;
1735}
1736
1737static void net_socket_connect(void *opaque)
1738{
1739 NetSocketState *s = opaque;
1740 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1741}
1742
7a9f6e4a
AL
1743static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1744 const char *model,
1745 const char *name,
bf38c1a0 1746 int fd, int is_connected)
63a01ef8
AL
1747{
1748 NetSocketState *s;
1749 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8 1750 s->fd = fd;
463af534 1751 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
b946a153 1752 NULL, net_socket_cleanup, s);
63a01ef8
AL
1753 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1754 "socket: fd=%d", fd);
1755 if (is_connected) {
1756 net_socket_connect(s);
1757 } else {
1758 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1759 }
1760 return s;
1761}
1762
7a9f6e4a
AL
1763static NetSocketState *net_socket_fd_init(VLANState *vlan,
1764 const char *model, const char *name,
bf38c1a0 1765 int fd, int is_connected)
63a01ef8
AL
1766{
1767 int so_type=-1, optlen=sizeof(so_type);
1768
1769 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1770 (socklen_t *)&optlen)< 0) {
1771 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1772 return NULL;
1773 }
1774 switch(so_type) {
1775 case SOCK_DGRAM:
7a9f6e4a 1776 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
63a01ef8 1777 case SOCK_STREAM:
7a9f6e4a 1778 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1779 default:
1780 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1781 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
7a9f6e4a 1782 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1783 }
1784 return NULL;
1785}
1786
1787static void net_socket_accept(void *opaque)
1788{
1789 NetSocketListenState *s = opaque;
1790 NetSocketState *s1;
1791 struct sockaddr_in saddr;
1792 socklen_t len;
1793 int fd;
1794
1795 for(;;) {
1796 len = sizeof(saddr);
1797 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1798 if (fd < 0 && errno != EINTR) {
1799 return;
1800 } else if (fd >= 0) {
1801 break;
1802 }
1803 }
7a9f6e4a 1804 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
63a01ef8
AL
1805 if (!s1) {
1806 closesocket(fd);
1807 } else {
1808 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1809 "socket: connection from %s:%d",
1810 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1811 }
1812}
1813
7a9f6e4a
AL
1814static int net_socket_listen_init(VLANState *vlan,
1815 const char *model,
1816 const char *name,
bf38c1a0 1817 const char *host_str)
63a01ef8
AL
1818{
1819 NetSocketListenState *s;
1820 int fd, val, ret;
1821 struct sockaddr_in saddr;
1822
1823 if (parse_host_port(&saddr, host_str) < 0)
1824 return -1;
1825
1826 s = qemu_mallocz(sizeof(NetSocketListenState));
63a01ef8
AL
1827
1828 fd = socket(PF_INET, SOCK_STREAM, 0);
1829 if (fd < 0) {
1830 perror("socket");
1831 return -1;
1832 }
1833 socket_set_nonblock(fd);
1834
1835 /* allow fast reuse */
1836 val = 1;
1837 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1838
1839 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1840 if (ret < 0) {
1841 perror("bind");
1842 return -1;
1843 }
1844 ret = listen(fd, 0);
1845 if (ret < 0) {
1846 perror("listen");
1847 return -1;
1848 }
1849 s->vlan = vlan;
bf38c1a0 1850 s->model = strdup(model);
ea053add 1851 s->name = name ? strdup(name) : NULL;
63a01ef8
AL
1852 s->fd = fd;
1853 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1854 return 0;
1855}
1856
7a9f6e4a
AL
1857static int net_socket_connect_init(VLANState *vlan,
1858 const char *model,
1859 const char *name,
bf38c1a0 1860 const char *host_str)
63a01ef8
AL
1861{
1862 NetSocketState *s;
1863 int fd, connected, ret, err;
1864 struct sockaddr_in saddr;
1865
1866 if (parse_host_port(&saddr, host_str) < 0)
1867 return -1;
1868
1869 fd = socket(PF_INET, SOCK_STREAM, 0);
1870 if (fd < 0) {
1871 perror("socket");
1872 return -1;
1873 }
1874 socket_set_nonblock(fd);
1875
1876 connected = 0;
1877 for(;;) {
1878 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1879 if (ret < 0) {
1880 err = socket_error();
1881 if (err == EINTR || err == EWOULDBLOCK) {
1882 } else if (err == EINPROGRESS) {
1883 break;
1884#ifdef _WIN32
1885 } else if (err == WSAEALREADY) {
1886 break;
1887#endif
1888 } else {
1889 perror("connect");
1890 closesocket(fd);
1891 return -1;
1892 }
1893 } else {
1894 connected = 1;
1895 break;
1896 }
1897 }
7a9f6e4a 1898 s = net_socket_fd_init(vlan, model, name, fd, connected);
63a01ef8
AL
1899 if (!s)
1900 return -1;
1901 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1902 "socket: connect to %s:%d",
1903 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1904 return 0;
1905}
1906
7a9f6e4a
AL
1907static int net_socket_mcast_init(VLANState *vlan,
1908 const char *model,
1909 const char *name,
bf38c1a0 1910 const char *host_str)
63a01ef8
AL
1911{
1912 NetSocketState *s;
1913 int fd;
1914 struct sockaddr_in saddr;
1915
1916 if (parse_host_port(&saddr, host_str) < 0)
1917 return -1;
1918
1919
1920 fd = net_socket_mcast_create(&saddr);
1921 if (fd < 0)
1922 return -1;
1923
7a9f6e4a 1924 s = net_socket_fd_init(vlan, model, name, fd, 0);
63a01ef8
AL
1925 if (!s)
1926 return -1;
1927
1928 s->dgram_dst = saddr;
1929
1930 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1931 "socket: mcast=%s:%d",
1932 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1933 return 0;
1934
1935}
1936
bb9ea79e
AL
1937typedef struct DumpState {
1938 VLANClientState *pcap_vc;
1939 int fd;
1940 int pcap_caplen;
1941} DumpState;
1942
1943#define PCAP_MAGIC 0xa1b2c3d4
1944
1945struct pcap_file_hdr {
1946 uint32_t magic;
1947 uint16_t version_major;
1948 uint16_t version_minor;
1949 int32_t thiszone;
1950 uint32_t sigfigs;
1951 uint32_t snaplen;
1952 uint32_t linktype;
1953};
1954
1955struct pcap_sf_pkthdr {
1956 struct {
1957 int32_t tv_sec;
1958 int32_t tv_usec;
1959 } ts;
1960 uint32_t caplen;
1961 uint32_t len;
1962};
1963
4f1c942b 1964static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
bb9ea79e 1965{
e3f5ec2b 1966 DumpState *s = vc->opaque;
bb9ea79e
AL
1967 struct pcap_sf_pkthdr hdr;
1968 int64_t ts;
1969 int caplen;
1970
1971 /* Early return in case of previous error. */
1972 if (s->fd < 0) {
4f1c942b 1973 return size;
bb9ea79e
AL
1974 }
1975
37cb6fc3 1976 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
bb9ea79e
AL
1977 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
1978
37cb6fc3 1979 hdr.ts.tv_sec = ts / 1000000;
bb9ea79e
AL
1980 hdr.ts.tv_usec = ts % 1000000;
1981 hdr.caplen = caplen;
1982 hdr.len = size;
1983 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
1984 write(s->fd, buf, caplen) != caplen) {
1985 qemu_log("-net dump write error - stop dump\n");
1986 close(s->fd);
1987 s->fd = -1;
1988 }
4f1c942b
MM
1989
1990 return size;
bb9ea79e
AL
1991}
1992
1993static void net_dump_cleanup(VLANClientState *vc)
1994{
1995 DumpState *s = vc->opaque;
1996
1997 close(s->fd);
1998 qemu_free(s);
1999}
2000
10ae5a7a 2001static int net_dump_init(Monitor *mon, VLANState *vlan, const char *device,
bb9ea79e
AL
2002 const char *name, const char *filename, int len)
2003{
2004 struct pcap_file_hdr hdr;
2005 DumpState *s;
2006
2007 s = qemu_malloc(sizeof(DumpState));
2008
024431b3 2009 s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
bb9ea79e 2010 if (s->fd < 0) {
10ae5a7a 2011 config_error(mon, "-net dump: can't open %s\n", filename);
bb9ea79e
AL
2012 return -1;
2013 }
2014
2015 s->pcap_caplen = len;
2016
2017 hdr.magic = PCAP_MAGIC;
2018 hdr.version_major = 2;
2019 hdr.version_minor = 4;
2020 hdr.thiszone = 0;
2021 hdr.sigfigs = 0;
2022 hdr.snaplen = s->pcap_caplen;
2023 hdr.linktype = 1;
2024
2025 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
10ae5a7a 2026 config_error(mon, "-net dump write error: %s\n", strerror(errno));
bb9ea79e
AL
2027 close(s->fd);
2028 qemu_free(s);
2029 return -1;
2030 }
2031
463af534 2032 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
bb9ea79e
AL
2033 net_dump_cleanup, s);
2034 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
2035 "dump to %s (len=%d)", filename, len);
2036 return 0;
2037}
2038
63a01ef8
AL
2039/* find or alloc a new VLAN */
2040VLANState *qemu_find_vlan(int id)
2041{
2042 VLANState **pvlan, *vlan;
2043 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2044 if (vlan->id == id)
2045 return vlan;
2046 }
2047 vlan = qemu_mallocz(sizeof(VLANState));
63a01ef8
AL
2048 vlan->id = id;
2049 vlan->next = NULL;
2050 pvlan = &first_vlan;
2051 while (*pvlan != NULL)
2052 pvlan = &(*pvlan)->next;
2053 *pvlan = vlan;
2054 return vlan;
2055}
2056
7697079b
AL
2057static int nic_get_free_idx(void)
2058{
2059 int index;
2060
2061 for (index = 0; index < MAX_NICS; index++)
2062 if (!nd_table[index].used)
2063 return index;
2064 return -1;
2065}
2066
d07f22c5
AL
2067void qemu_check_nic_model(NICInfo *nd, const char *model)
2068{
2069 const char *models[2];
2070
2071 models[0] = model;
2072 models[1] = NULL;
2073
2074 qemu_check_nic_model_list(nd, models, model);
2075}
2076
2077void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
2078 const char *default_model)
2079{
2080 int i, exit_status = 0;
2081
2082 if (!nd->model)
2083 nd->model = strdup(default_model);
2084
2085 if (strcmp(nd->model, "?") != 0) {
2086 for (i = 0 ; models[i]; i++)
2087 if (strcmp(nd->model, models[i]) == 0)
2088 return;
2089
2090 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
2091 exit_status = 1;
2092 }
2093
2094 fprintf(stderr, "qemu: Supported NIC models: ");
2095 for (i = 0 ; models[i]; i++)
2096 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
2097
2098 exit(exit_status);
2099}
2100
10ae5a7a 2101int net_client_init(Monitor *mon, const char *device, const char *p)
63a01ef8 2102{
8e4416af
AL
2103 static const char * const fd_params[] = {
2104 "vlan", "name", "fd", NULL
2105 };
63a01ef8
AL
2106 char buf[1024];
2107 int vlan_id, ret;
2108 VLANState *vlan;
7a9f6e4a 2109 char *name = NULL;
63a01ef8
AL
2110
2111 vlan_id = 0;
2112 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
2113 vlan_id = strtol(buf, NULL, 0);
2114 }
2115 vlan = qemu_find_vlan(vlan_id);
9036de1a 2116
7a9f6e4a 2117 if (get_param_value(buf, sizeof(buf), "name", p)) {
10ae5a7a 2118 name = qemu_strdup(buf);
7a9f6e4a 2119 }
63a01ef8 2120 if (!strcmp(device, "nic")) {
8e4416af 2121 static const char * const nic_params[] = {
5607c388 2122 "vlan", "name", "macaddr", "model", "addr", NULL
8e4416af 2123 };
63a01ef8
AL
2124 NICInfo *nd;
2125 uint8_t *macaddr;
7697079b 2126 int idx = nic_get_free_idx();
63a01ef8 2127
0aa7a205 2128 if (check_params(buf, sizeof(buf), nic_params, p) < 0) {
10ae5a7a
JK
2129 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2130 ret = -1;
2131 goto out;
8e4416af 2132 }
7697079b 2133 if (idx == -1 || nb_nics >= MAX_NICS) {
10ae5a7a 2134 config_error(mon, "Too Many NICs\n");
771f1339
AL
2135 ret = -1;
2136 goto out;
63a01ef8 2137 }
7697079b 2138 nd = &nd_table[idx];
63a01ef8
AL
2139 macaddr = nd->macaddr;
2140 macaddr[0] = 0x52;
2141 macaddr[1] = 0x54;
2142 macaddr[2] = 0x00;
2143 macaddr[3] = 0x12;
2144 macaddr[4] = 0x34;
7697079b 2145 macaddr[5] = 0x56 + idx;
63a01ef8
AL
2146
2147 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2148 if (parse_macaddr(macaddr, buf) < 0) {
10ae5a7a 2149 config_error(mon, "invalid syntax for ethernet address\n");
771f1339
AL
2150 ret = -1;
2151 goto out;
63a01ef8
AL
2152 }
2153 }
2154 if (get_param_value(buf, sizeof(buf), "model", p)) {
2155 nd->model = strdup(buf);
2156 }
5607c388
MA
2157 if (get_param_value(buf, sizeof(buf), "addr", p)) {
2158 nd->devaddr = strdup(buf);
2159 }
63a01ef8 2160 nd->vlan = vlan;
7a9f6e4a 2161 nd->name = name;
7697079b 2162 nd->used = 1;
7a9f6e4a 2163 name = NULL;
63a01ef8
AL
2164 nb_nics++;
2165 vlan->nb_guest_devs++;
4d73cd3b 2166 ret = idx;
63a01ef8
AL
2167 } else
2168 if (!strcmp(device, "none")) {
8e4416af 2169 if (*p != '\0') {
10ae5a7a
JK
2170 config_error(mon, "'none' takes no parameters\n");
2171 ret = -1;
2172 goto out;
8e4416af 2173 }
63a01ef8
AL
2174 /* does nothing. It is needed to signal that no network cards
2175 are wanted */
2176 ret = 0;
2177 } else
2178#ifdef CONFIG_SLIRP
2179 if (!strcmp(device, "user")) {
8e4416af
AL
2180 static const char * const slirp_params[] = {
2181 "vlan", "name", "hostname", "restrict", "ip", NULL
2182 };
b8e8af38
JK
2183 int restricted = 0;
2184 char *ip = NULL;
2185
0aa7a205 2186 if (check_params(buf, sizeof(buf), slirp_params, p) < 0) {
10ae5a7a
JK
2187 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2188 ret = -1;
2189 goto out;
8e4416af 2190 }
63a01ef8
AL
2191 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
2192 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
2193 }
49ec9b40 2194 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
b8e8af38 2195 restricted = (buf[0] == 'y') ? 1 : 0;
49ec9b40
AL
2196 }
2197 if (get_param_value(buf, sizeof(buf), "ip", p)) {
b8e8af38 2198 ip = qemu_strdup(buf);
49ec9b40 2199 }
63a01ef8 2200 vlan->nb_host_devs++;
b8e8af38
JK
2201 ret = net_slirp_init(vlan, device, name, restricted, ip);
2202 qemu_free(ip);
8ca9217d
AL
2203 } else if (!strcmp(device, "channel")) {
2204 long port;
2205 char name[20], *devname;
2206 struct VMChannel *vmc;
2207
2208 port = strtol(p, &devname, 10);
2209 devname++;
2210 if (port < 1 || port > 65535) {
10ae5a7a 2211 config_error(mon, "vmchannel wrong port number\n");
771f1339
AL
2212 ret = -1;
2213 goto out;
8ca9217d
AL
2214 }
2215 vmc = malloc(sizeof(struct VMChannel));
2216 snprintf(name, 20, "vmchannel%ld", port);
2217 vmc->hd = qemu_chr_open(name, devname, NULL);
2218 if (!vmc->hd) {
10ae5a7a
JK
2219 config_error(mon, "could not open vmchannel device '%s'\n",
2220 devname);
771f1339
AL
2221 ret = -1;
2222 goto out;
8ca9217d
AL
2223 }
2224 vmc->port = port;
2225 slirp_add_exec(3, vmc->hd, 4, port);
2226 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
2227 NULL, vmc);
2228 ret = 0;
63a01ef8
AL
2229 } else
2230#endif
2231#ifdef _WIN32
2232 if (!strcmp(device, "tap")) {
8e4416af
AL
2233 static const char * const tap_params[] = {
2234 "vlan", "name", "ifname", NULL
2235 };
63a01ef8 2236 char ifname[64];
8e4416af 2237
0aa7a205 2238 if (check_params(buf, sizeof(buf), tap_params, p) < 0) {
10ae5a7a
JK
2239 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2240 ret = -1;
2241 goto out;
8e4416af 2242 }
63a01ef8 2243 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
10ae5a7a 2244 config_error(mon, "tap: no interface name\n");
771f1339
AL
2245 ret = -1;
2246 goto out;
63a01ef8
AL
2247 }
2248 vlan->nb_host_devs++;
7a9f6e4a 2249 ret = tap_win32_init(vlan, device, name, ifname);
63a01ef8 2250 } else
b29fe3ed 2251#elif defined (_AIX)
63a01ef8
AL
2252#else
2253 if (!strcmp(device, "tap")) {
0aa7a205 2254 char ifname[64], chkbuf[64];
63a01ef8
AL
2255 char setup_script[1024], down_script[1024];
2256 int fd;
2257 vlan->nb_host_devs++;
2258 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
0aa7a205 2259 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
10ae5a7a
JK
2260 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2261 ret = -1;
2262 goto out;
8e4416af 2263 }
63a01ef8
AL
2264 fd = strtol(buf, NULL, 0);
2265 fcntl(fd, F_SETFL, O_NONBLOCK);
9036de1a
AL
2266 net_tap_fd_init(vlan, device, name, fd);
2267 ret = 0;
63a01ef8 2268 } else {
8e4416af
AL
2269 static const char * const tap_params[] = {
2270 "vlan", "name", "ifname", "script", "downscript", NULL
2271 };
0aa7a205 2272 if (check_params(chkbuf, sizeof(chkbuf), tap_params, p) < 0) {
10ae5a7a
JK
2273 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2274 ret = -1;
2275 goto out;
8e4416af 2276 }
63a01ef8
AL
2277 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2278 ifname[0] = '\0';
2279 }
2280 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2281 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2282 }
2283 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2284 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2285 }
7a9f6e4a 2286 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
63a01ef8
AL
2287 }
2288 } else
2289#endif
2290 if (!strcmp(device, "socket")) {
0aa7a205 2291 char chkbuf[64];
63a01ef8
AL
2292 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2293 int fd;
0aa7a205 2294 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
10ae5a7a
JK
2295 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2296 ret = -1;
2297 goto out;
8e4416af 2298 }
63a01ef8
AL
2299 fd = strtol(buf, NULL, 0);
2300 ret = -1;
7a9f6e4a 2301 if (net_socket_fd_init(vlan, device, name, fd, 1))
63a01ef8
AL
2302 ret = 0;
2303 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
8e4416af
AL
2304 static const char * const listen_params[] = {
2305 "vlan", "name", "listen", NULL
2306 };
0aa7a205 2307 if (check_params(chkbuf, sizeof(chkbuf), listen_params, p) < 0) {
10ae5a7a
JK
2308 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2309 ret = -1;
2310 goto out;
8e4416af 2311 }
7a9f6e4a 2312 ret = net_socket_listen_init(vlan, device, name, buf);
63a01ef8 2313 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
8e4416af
AL
2314 static const char * const connect_params[] = {
2315 "vlan", "name", "connect", NULL
2316 };
0aa7a205 2317 if (check_params(chkbuf, sizeof(chkbuf), connect_params, p) < 0) {
10ae5a7a
JK
2318 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2319 ret = -1;
2320 goto out;
8e4416af 2321 }
7a9f6e4a 2322 ret = net_socket_connect_init(vlan, device, name, buf);
63a01ef8 2323 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
8e4416af
AL
2324 static const char * const mcast_params[] = {
2325 "vlan", "name", "mcast", NULL
2326 };
0aa7a205 2327 if (check_params(chkbuf, sizeof(chkbuf), mcast_params, p) < 0) {
10ae5a7a
JK
2328 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2329 ret = -1;
2330 goto out;
8e4416af 2331 }
7a9f6e4a 2332 ret = net_socket_mcast_init(vlan, device, name, buf);
63a01ef8 2333 } else {
10ae5a7a 2334 config_error(mon, "Unknown socket options: %s\n", p);
771f1339
AL
2335 ret = -1;
2336 goto out;
63a01ef8
AL
2337 }
2338 vlan->nb_host_devs++;
2339 } else
2340#ifdef CONFIG_VDE
2341 if (!strcmp(device, "vde")) {
8e4416af
AL
2342 static const char * const vde_params[] = {
2343 "vlan", "name", "sock", "port", "group", "mode", NULL
2344 };
63a01ef8
AL
2345 char vde_sock[1024], vde_group[512];
2346 int vde_port, vde_mode;
8e4416af 2347
0aa7a205 2348 if (check_params(buf, sizeof(buf), vde_params, p) < 0) {
10ae5a7a
JK
2349 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2350 ret = -1;
2351 goto out;
8e4416af 2352 }
63a01ef8
AL
2353 vlan->nb_host_devs++;
2354 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2355 vde_sock[0] = '\0';
2356 }
2357 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2358 vde_port = strtol(buf, NULL, 10);
2359 } else {
2360 vde_port = 0;
2361 }
2362 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2363 vde_group[0] = '\0';
2364 }
2365 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2366 vde_mode = strtol(buf, NULL, 8);
2367 } else {
2368 vde_mode = 0700;
2369 }
7a9f6e4a 2370 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
63a01ef8
AL
2371 } else
2372#endif
bb9ea79e
AL
2373 if (!strcmp(device, "dump")) {
2374 int len = 65536;
2375
2376 if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2377 len = strtol(buf, NULL, 0);
2378 }
2379 if (!get_param_value(buf, sizeof(buf), "file", p)) {
2380 snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2381 }
10ae5a7a 2382 ret = net_dump_init(mon, vlan, device, name, buf, len);
bb9ea79e 2383 } else {
10ae5a7a 2384 config_error(mon, "Unknown network device: %s\n", device);
771f1339
AL
2385 ret = -1;
2386 goto out;
63a01ef8
AL
2387 }
2388 if (ret < 0) {
10ae5a7a 2389 config_error(mon, "Could not initialize device '%s'\n", device);
63a01ef8 2390 }
771f1339 2391out:
10ae5a7a 2392 qemu_free(name);
63a01ef8
AL
2393 return ret;
2394}
2395
8b13c4a7
AL
2396void net_client_uninit(NICInfo *nd)
2397{
2398 nd->vlan->nb_guest_devs--;
2399 nb_nics--;
2400 nd->used = 0;
2401 free((void *)nd->model);
2402}
2403
6f338c34
AL
2404static int net_host_check_device(const char *device)
2405{
2406 int i;
bb9ea79e 2407 const char *valid_param_list[] = { "tap", "socket", "dump"
6f338c34
AL
2408#ifdef CONFIG_SLIRP
2409 ,"user"
2410#endif
2411#ifdef CONFIG_VDE
2412 ,"vde"
2413#endif
2414 };
2415 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2416 if (!strncmp(valid_param_list[i], device,
2417 strlen(valid_param_list[i])))
2418 return 1;
2419 }
2420
2421 return 0;
2422}
2423
376253ec 2424void net_host_device_add(Monitor *mon, const char *device, const char *opts)
6f338c34
AL
2425{
2426 if (!net_host_check_device(device)) {
376253ec 2427 monitor_printf(mon, "invalid host network device %s\n", device);
6f338c34
AL
2428 return;
2429 }
10ae5a7a 2430 if (net_client_init(mon, device, opts ? opts : "") < 0) {
5c8be678
AL
2431 monitor_printf(mon, "adding host network device %s failed\n", device);
2432 }
6f338c34
AL
2433}
2434
376253ec 2435void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
6f338c34
AL
2436{
2437 VLANState *vlan;
2438 VLANClientState *vc;
2439
6f338c34 2440 vlan = qemu_find_vlan(vlan_id);
6f338c34 2441
e8f1f9db
AL
2442 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
2443 if (!strcmp(vc->name, device)) {
6f338c34 2444 break;
e8f1f9db
AL
2445 }
2446 }
6f338c34
AL
2447
2448 if (!vc) {
376253ec 2449 monitor_printf(mon, "can't find device %s\n", device);
6f338c34
AL
2450 return;
2451 }
e8f1f9db
AL
2452 if (!net_host_check_device(vc->model)) {
2453 monitor_printf(mon, "invalid host network device %s\n", device);
2454 return;
2455 }
6f338c34
AL
2456 qemu_del_vlan_client(vc);
2457}
2458
63a01ef8
AL
2459int net_client_parse(const char *str)
2460{
2461 const char *p;
2462 char *q;
2463 char device[64];
2464
2465 p = str;
2466 q = device;
2467 while (*p != '\0' && *p != ',') {
2468 if ((q - device) < sizeof(device) - 1)
2469 *q++ = *p;
2470 p++;
2471 }
2472 *q = '\0';
2473 if (*p == ',')
2474 p++;
2475
10ae5a7a 2476 return net_client_init(NULL, device, p);
63a01ef8
AL
2477}
2478
406c8df3
GC
2479void net_set_boot_mask(int net_boot_mask)
2480{
2481 int i;
2482
2483 /* Only the first four NICs may be bootable */
2484 net_boot_mask = net_boot_mask & 0xF;
2485
2486 for (i = 0; i < nb_nics; i++) {
2487 if (net_boot_mask & (1 << i)) {
2488 nd_table[i].bootable = 1;
2489 net_boot_mask &= ~(1 << i);
2490 }
2491 }
2492
2493 if (net_boot_mask) {
2494 fprintf(stderr, "Cannot boot from non-existent NIC\n");
2495 exit(1);
2496 }
2497}
2498
376253ec 2499void do_info_network(Monitor *mon)
63a01ef8
AL
2500{
2501 VLANState *vlan;
2502 VLANClientState *vc;
2503
2504 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
376253ec 2505 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
63a01ef8 2506 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
376253ec 2507 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
63a01ef8
AL
2508 }
2509}
2510
376253ec 2511int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
436e5e53
AL
2512{
2513 VLANState *vlan;
2514 VLANClientState *vc = NULL;
2515
2516 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
2517 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
2518 if (strcmp(vc->name, name) == 0)
dd5de373
EI
2519 goto done;
2520done:
436e5e53
AL
2521
2522 if (!vc) {
376253ec 2523 monitor_printf(mon, "could not find network device '%s'", name);
436e5e53
AL
2524 return 0;
2525 }
2526
2527 if (strcmp(up_or_down, "up") == 0)
2528 vc->link_down = 0;
2529 else if (strcmp(up_or_down, "down") == 0)
2530 vc->link_down = 1;
2531 else
376253ec
AL
2532 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
2533 "valid\n", up_or_down);
436e5e53 2534
34b25ca7
AL
2535 if (vc->link_status_changed)
2536 vc->link_status_changed(vc);
2537
436e5e53
AL
2538 return 1;
2539}
2540
63a01ef8
AL
2541void net_cleanup(void)
2542{
2543 VLANState *vlan;
2544
63a01ef8
AL
2545 /* close network clients */
2546 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
b946a153 2547 VLANClientState *vc = vlan->first_client;
63a01ef8 2548
b946a153
AL
2549 while (vc) {
2550 VLANClientState *next = vc->next;
63a01ef8 2551
b946a153
AL
2552 qemu_del_vlan_client(vc);
2553
2554 vc = next;
63a01ef8
AL
2555 }
2556 }
63a01ef8
AL
2557}
2558
2559void net_client_check(void)
2560{
2561 VLANState *vlan;
2562
2563 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2564 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
2565 continue;
2566 if (vlan->nb_guest_devs == 0)
2567 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
2568 if (vlan->nb_host_devs == 0)
2569 fprintf(stderr,
2570 "Warning: vlan %d is not connected to host network\n",
2571 vlan->id);
2572 }
2573}