Regenerate bios for multiple smbios calls fix
[qemu-kvm/fedora.git] / net.c
blobdf6691cc045c2539f75e620733647b59bc1c82a0
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
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>
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
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>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
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>
52 #include <dirent.h>
53 #include <netdb.h>
54 #include <sys/select.h>
55 #ifdef HOST_BSD
56 #include <sys/stat.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
58 #include <libutil.h>
59 #else
60 #include <util.h>
61 #endif
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
64 #else
65 #ifdef __linux__
66 #include <pty.h>
67 #include <malloc.h>
68 #include <linux/rtc.h>
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"
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
96 #if defined(__OpenBSD__)
97 #include <util.h>
98 #endif
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
102 #endif
104 #ifdef _WIN32
105 #include <windows.h>
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
113 // FIXME: #include "qemu-kvm.h"
114 #include "qemu-common.h"
115 #include "net.h"
116 #include "monitor.h"
117 #include "sysemu.h"
118 #include "qemu-timer.h"
119 #include "qemu-char.h"
120 #include "audio/audio.h"
121 #include "qemu_socket.h"
122 #include "qemu-log.h"
124 #include "slirp/libslirp.h"
127 static VLANState *first_vlan;
129 /***********************************************************/
130 /* network device redirectors */
132 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
133 static void hex_dump(FILE *f, const uint8_t *buf, int size)
135 int len, i, j, c;
137 for(i=0;i<size;i+=16) {
138 len = size - i;
139 if (len > 16)
140 len = 16;
141 fprintf(f, "%08x ", i);
142 for(j=0;j<16;j++) {
143 if (j < len)
144 fprintf(f, " %02x", buf[i+j]);
145 else
146 fprintf(f, " ");
148 fprintf(f, " ");
149 for(j=0;j<len;j++) {
150 c = buf[i+j];
151 if (c < ' ' || c > '~')
152 c = '.';
153 fprintf(f, "%c", c);
155 fprintf(f, "\n");
158 #endif
160 static int parse_macaddr(uint8_t *macaddr, const char *p)
162 int i;
163 char *last_char;
164 long int offset;
166 errno = 0;
167 offset = strtol(p, &last_char, 0);
168 if (0 == errno && '\0' == *last_char &&
169 offset >= 0 && offset <= 0xFFFFFF) {
170 macaddr[3] = (offset & 0xFF0000) >> 16;
171 macaddr[4] = (offset & 0xFF00) >> 8;
172 macaddr[5] = offset & 0xFF;
173 return 0;
174 } else {
175 for(i = 0; i < 6; i++) {
176 macaddr[i] = strtol(p, (char **)&p, 16);
177 if (i == 5) {
178 if (*p != '\0')
179 return -1;
180 } else {
181 if (*p != ':' && *p != '-')
182 return -1;
183 p++;
186 return 0;
189 return -1;
192 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
194 const char *p, *p1;
195 int len;
196 p = *pp;
197 p1 = strchr(p, sep);
198 if (!p1)
199 return -1;
200 len = p1 - p;
201 p1++;
202 if (buf_size > 0) {
203 if (len > buf_size - 1)
204 len = buf_size - 1;
205 memcpy(buf, p, len);
206 buf[len] = '\0';
208 *pp = p1;
209 return 0;
212 int parse_host_src_port(struct sockaddr_in *haddr,
213 struct sockaddr_in *saddr,
214 const char *input_str)
216 char *str = strdup(input_str);
217 char *host_str = str;
218 char *src_str;
219 const char *src_str2;
220 char *ptr;
223 * Chop off any extra arguments at the end of the string which
224 * would start with a comma, then fill in the src port information
225 * if it was provided else use the "any address" and "any port".
227 if ((ptr = strchr(str,',')))
228 *ptr = '\0';
230 if ((src_str = strchr(input_str,'@'))) {
231 *src_str = '\0';
232 src_str++;
235 if (parse_host_port(haddr, host_str) < 0)
236 goto fail;
238 src_str2 = src_str;
239 if (!src_str || *src_str == '\0')
240 src_str2 = ":0";
242 if (parse_host_port(saddr, src_str2) < 0)
243 goto fail;
245 free(str);
246 return(0);
248 fail:
249 free(str);
250 return -1;
253 int parse_host_port(struct sockaddr_in *saddr, const char *str)
255 char buf[512];
256 struct hostent *he;
257 const char *p, *r;
258 int port;
260 p = str;
261 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
262 return -1;
263 saddr->sin_family = AF_INET;
264 if (buf[0] == '\0') {
265 saddr->sin_addr.s_addr = 0;
266 } else {
267 if (qemu_isdigit(buf[0])) {
268 if (!inet_aton(buf, &saddr->sin_addr))
269 return -1;
270 } else {
271 if ((he = gethostbyname(buf)) == NULL)
272 return - 1;
273 saddr->sin_addr = *(struct in_addr *)he->h_addr;
276 port = strtol(p, (char **)&r, 0);
277 if (r == p)
278 return -1;
279 saddr->sin_port = htons(port);
280 return 0;
283 #if !defined(_WIN32) && 0
284 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
286 const char *p;
287 int len;
289 len = MIN(108, strlen(str));
290 p = strchr(str, ',');
291 if (p)
292 len = MIN(len, p - str);
294 memset(uaddr, 0, sizeof(*uaddr));
296 uaddr->sun_family = AF_UNIX;
297 memcpy(uaddr->sun_path, str, len);
299 return 0;
301 #endif
303 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
305 snprintf(vc->info_str, sizeof(vc->info_str),
306 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
307 vc->model,
308 macaddr[0], macaddr[1], macaddr[2],
309 macaddr[3], macaddr[4], macaddr[5]);
312 static char *assign_name(VLANClientState *vc1, const char *model)
314 VLANState *vlan;
315 char buf[256];
316 int id = 0;
318 for (vlan = first_vlan; vlan; vlan = vlan->next) {
319 VLANClientState *vc;
321 for (vc = vlan->first_client; vc; vc = vc->next)
322 if (vc != vc1 && strcmp(vc->model, model) == 0)
323 id++;
326 snprintf(buf, sizeof(buf), "%s.%d", model, id);
328 return strdup(buf);
331 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
332 const char *model,
333 const char *name,
334 NetCanReceive *can_receive,
335 NetReceive *receive,
336 NetReceiveIOV *receive_iov,
337 NetCleanup *cleanup,
338 void *opaque)
340 VLANClientState *vc, **pvc;
341 vc = qemu_mallocz(sizeof(VLANClientState));
342 vc->model = strdup(model);
343 if (name)
344 vc->name = strdup(name);
345 else
346 vc->name = assign_name(vc, model);
347 vc->can_receive = can_receive;
348 vc->receive = receive;
349 vc->receive_iov = receive_iov;
350 vc->cleanup = cleanup;
351 vc->opaque = opaque;
352 vc->vlan = vlan;
354 vc->next = NULL;
355 pvc = &vlan->first_client;
356 while (*pvc != NULL)
357 pvc = &(*pvc)->next;
358 *pvc = vc;
359 return vc;
362 void qemu_del_vlan_client(VLANClientState *vc)
364 VLANClientState **pvc = &vc->vlan->first_client;
366 while (*pvc != NULL)
367 if (*pvc == vc) {
368 *pvc = vc->next;
369 if (vc->cleanup) {
370 vc->cleanup(vc);
372 free(vc->name);
373 free(vc->model);
374 qemu_free(vc);
375 break;
376 } else
377 pvc = &(*pvc)->next;
380 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
382 VLANClientState **pvc = &vlan->first_client;
384 while (*pvc != NULL)
385 if ((*pvc)->opaque == opaque)
386 return *pvc;
387 else
388 pvc = &(*pvc)->next;
390 return NULL;
393 static VLANClientState *
394 qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
395 const char *client_str)
397 VLANState *vlan;
398 VLANClientState *vc;
400 vlan = qemu_find_vlan(vlan_id, 0);
401 if (!vlan) {
402 monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
403 return NULL;
406 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
407 if (!strcmp(vc->name, client_str)) {
408 break;
411 if (!vc) {
412 monitor_printf(mon, "can't find device %s on VLAN %d\n",
413 client_str, vlan_id);
416 return vc;
419 int qemu_can_send_packet(VLANClientState *sender)
421 VLANState *vlan = sender->vlan;
422 VLANClientState *vc;
424 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
425 if (vc == sender) {
426 continue;
429 /* no can_receive() handler, they can always receive */
430 if (!vc->can_receive || vc->can_receive(vc)) {
431 return 1;
434 return 0;
437 static int
438 qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size, int raw)
440 VLANClientState *vc;
441 int ret = -1;
443 sender->vlan->delivering = 1;
445 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
446 ssize_t len;
448 if (vc == sender) {
449 continue;
452 if (vc->link_down) {
453 ret = size;
454 continue;
457 if (raw && vc->receive_raw) {
458 len = vc->receive_raw(vc, buf, size);
459 } else {
460 len = vc->receive(vc, buf, size);
463 ret = (ret >= 0) ? ret : len;
466 sender->vlan->delivering = 0;
468 return ret;
471 void qemu_purge_queued_packets(VLANClientState *vc)
473 VLANPacket **pp = &vc->vlan->send_queue;
475 while (*pp != NULL) {
476 VLANPacket *packet = *pp;
478 if (packet->sender == vc) {
479 *pp = packet->next;
480 qemu_free(packet);
481 } else {
482 pp = &packet->next;
487 void qemu_flush_queued_packets(VLANClientState *vc)
489 VLANPacket *packet;
491 while ((packet = vc->vlan->send_queue) != NULL) {
492 int ret;
494 vc->vlan->send_queue = packet->next;
496 ret = qemu_deliver_packet(packet->sender, packet->data,
497 packet->size, packet->raw);
498 if (ret == 0 && packet->sent_cb != NULL) {
499 packet->next = vc->vlan->send_queue;
500 vc->vlan->send_queue = packet;
501 break;
504 if (packet->sent_cb)
505 packet->sent_cb(packet->sender, ret);
507 qemu_free(packet);
511 static void qemu_enqueue_packet(VLANClientState *sender,
512 const uint8_t *buf, int size, int raw,
513 NetPacketSent *sent_cb)
515 VLANPacket *packet;
517 packet = qemu_malloc(sizeof(VLANPacket) + size);
518 packet->next = sender->vlan->send_queue;
519 packet->sender = sender;
520 packet->size = size;
521 packet->raw = raw;
522 packet->sent_cb = sent_cb;
523 memcpy(packet->data, buf, size);
524 sender->vlan->send_queue = packet;
527 static ssize_t qemu_send_packet_async2(VLANClientState *sender,
528 const uint8_t *buf, int size, int raw,
529 NetPacketSent *sent_cb)
531 int ret;
533 if (sender->link_down) {
534 return size;
537 #ifdef DEBUG_NET
538 printf("vlan %d send:\n", sender->vlan->id);
539 hex_dump(stdout, buf, size);
540 #endif
542 if (sender->vlan->delivering) {
543 qemu_enqueue_packet(sender, buf, size, raw, NULL);
544 return size;
547 ret = qemu_deliver_packet(sender, buf, size, raw);
548 if (ret == 0 && sent_cb != NULL) {
549 qemu_enqueue_packet(sender, buf, size, raw, sent_cb);
550 return 0;
553 qemu_flush_queued_packets(sender);
555 return ret;
558 ssize_t qemu_send_packet_async(VLANClientState *sender,
559 const uint8_t *buf, int size,
560 NetPacketSent *sent_cb)
562 return qemu_send_packet_async2(sender, buf, size, 0, sent_cb);
565 ssize_t qemu_send_packet(VLANClientState *sender, const uint8_t *buf, int size)
567 return qemu_send_packet_async2(sender, buf, size, 0, NULL);
570 ssize_t qemu_send_packet_raw(VLANClientState *sender, const uint8_t *buf, int size)
572 return qemu_send_packet_async2(sender, buf, size, 1, NULL);
575 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
576 int iovcnt)
578 uint8_t buffer[4096];
579 size_t offset = 0;
580 int i;
582 for (i = 0; i < iovcnt; i++) {
583 size_t len;
585 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
586 memcpy(buffer + offset, iov[i].iov_base, len);
587 offset += len;
590 return vc->receive(vc, buffer, offset);
593 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
595 size_t offset = 0;
596 int i;
598 for (i = 0; i < iovcnt; i++)
599 offset += iov[i].iov_len;
600 return offset;
603 static int qemu_deliver_packet_iov(VLANClientState *sender,
604 const struct iovec *iov, int iovcnt)
606 VLANClientState *vc;
607 int ret = -1;
609 sender->vlan->delivering = 1;
611 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
612 ssize_t len;
614 if (vc == sender) {
615 continue;
618 if (vc->link_down) {
619 ret = calc_iov_length(iov, iovcnt);
620 continue;
623 if (vc->receive_iov) {
624 len = vc->receive_iov(vc, iov, iovcnt);
625 } else {
626 len = vc_sendv_compat(vc, iov, iovcnt);
629 ret = (ret >= 0) ? ret : len;
632 sender->vlan->delivering = 0;
634 return ret;
637 static ssize_t qemu_enqueue_packet_iov(VLANClientState *sender,
638 const struct iovec *iov, int iovcnt,
639 NetPacketSent *sent_cb)
641 VLANPacket *packet;
642 size_t max_len = 0;
643 int i;
645 max_len = calc_iov_length(iov, iovcnt);
647 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
648 packet->next = sender->vlan->send_queue;
649 packet->sender = sender;
650 packet->sent_cb = sent_cb;
651 packet->size = 0;
652 packet->raw = 0;
654 for (i = 0; i < iovcnt; i++) {
655 size_t len = iov[i].iov_len;
657 memcpy(packet->data + packet->size, iov[i].iov_base, len);
658 packet->size += len;
661 sender->vlan->send_queue = packet;
663 return packet->size;
666 ssize_t qemu_sendv_packet_async(VLANClientState *sender,
667 const struct iovec *iov, int iovcnt,
668 NetPacketSent *sent_cb)
670 int ret;
672 if (sender->link_down) {
673 return calc_iov_length(iov, iovcnt);
676 if (sender->vlan->delivering) {
677 return qemu_enqueue_packet_iov(sender, iov, iovcnt, NULL);
680 ret = qemu_deliver_packet_iov(sender, iov, iovcnt);
681 if (ret == 0 && sent_cb != NULL) {
682 qemu_enqueue_packet_iov(sender, iov, iovcnt, sent_cb);
683 return 0;
686 qemu_flush_queued_packets(sender);
688 return ret;
691 ssize_t
692 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
694 return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
697 static void config_error(Monitor *mon, const char *fmt, ...)
699 va_list ap;
701 va_start(ap, fmt);
702 if (mon) {
703 monitor_vprintf(mon, fmt, ap);
704 } else {
705 fprintf(stderr, "qemu: ");
706 vfprintf(stderr, fmt, ap);
707 exit(1);
709 va_end(ap);
712 #if defined(CONFIG_SLIRP)
714 /* slirp network adapter */
716 #define SLIRP_CFG_HOSTFWD 1
717 #define SLIRP_CFG_LEGACY 2
719 struct slirp_config_str {
720 struct slirp_config_str *next;
721 int flags;
722 char str[1024];
723 int legacy_format;
726 typedef struct SlirpState {
727 TAILQ_ENTRY(SlirpState) entry;
728 VLANClientState *vc;
729 Slirp *slirp;
730 #ifndef _WIN32
731 char smb_dir[128];
732 #endif
733 } SlirpState;
735 static struct slirp_config_str *slirp_configs;
736 const char *legacy_tftp_prefix;
737 const char *legacy_bootp_filename;
738 static TAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks =
739 TAILQ_HEAD_INITIALIZER(slirp_stacks);
741 static void slirp_hostfwd(SlirpState *s, Monitor *mon, const char *redir_str,
742 int legacy_format);
743 static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str,
744 int legacy_format);
746 #ifndef _WIN32
747 static const char *legacy_smb_export;
749 static void slirp_smb(SlirpState *s, Monitor *mon, const char *exported_dir,
750 struct in_addr vserver_addr);
751 static void slirp_smb_cleanup(SlirpState *s);
752 #else
753 static inline void slirp_smb_cleanup(SlirpState *s) { }
754 #endif
756 int slirp_can_output(void *opaque)
758 SlirpState *s = opaque;
760 return qemu_can_send_packet(s->vc);
763 void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
765 SlirpState *s = opaque;
767 #ifdef DEBUG_SLIRP
768 printf("slirp output:\n");
769 hex_dump(stdout, pkt, pkt_len);
770 #endif
771 qemu_send_packet(s->vc, pkt, pkt_len);
774 static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
776 SlirpState *s = vc->opaque;
778 #ifdef DEBUG_SLIRP
779 printf("slirp input:\n");
780 hex_dump(stdout, buf, size);
781 #endif
782 slirp_input(s->slirp, buf, size);
783 return size;
786 static void net_slirp_cleanup(VLANClientState *vc)
788 SlirpState *s = vc->opaque;
790 slirp_cleanup(s->slirp);
791 slirp_smb_cleanup(s);
792 TAILQ_REMOVE(&slirp_stacks, s, entry);
793 qemu_free(s);
796 static int net_slirp_init(Monitor *mon, VLANState *vlan, const char *model,
797 const char *name, int restricted,
798 const char *vnetwork, const char *vhost,
799 const char *vhostname, const char *tftp_export,
800 const char *bootfile, const char *vdhcp_start,
801 const char *vnameserver, const char *smb_export,
802 const char *vsmbserver)
804 /* default settings according to historic slirp */
805 struct in_addr net = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
806 struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
807 struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
808 struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
809 struct in_addr dns = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
810 #ifndef _WIN32
811 struct in_addr smbsrv = { .s_addr = 0 };
812 #endif
813 SlirpState *s;
814 char buf[20];
815 uint32_t addr;
816 int shift;
817 char *end;
819 if (!tftp_export) {
820 tftp_export = legacy_tftp_prefix;
822 if (!bootfile) {
823 bootfile = legacy_bootp_filename;
826 if (vnetwork) {
827 if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) {
828 if (!inet_aton(vnetwork, &net)) {
829 return -1;
831 addr = ntohl(net.s_addr);
832 if (!(addr & 0x80000000)) {
833 mask.s_addr = htonl(0xff000000); /* class A */
834 } else if ((addr & 0xfff00000) == 0xac100000) {
835 mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */
836 } else if ((addr & 0xc0000000) == 0x80000000) {
837 mask.s_addr = htonl(0xffff0000); /* class B */
838 } else if ((addr & 0xffff0000) == 0xc0a80000) {
839 mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */
840 } else if ((addr & 0xffff0000) == 0xc6120000) {
841 mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */
842 } else if ((addr & 0xe0000000) == 0xe0000000) {
843 mask.s_addr = htonl(0xffffff00); /* class C */
844 } else {
845 mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */
847 } else {
848 if (!inet_aton(buf, &net)) {
849 return -1;
851 shift = strtol(vnetwork, &end, 10);
852 if (*end != '\0') {
853 if (!inet_aton(vnetwork, &mask)) {
854 return -1;
856 } else if (shift < 4 || shift > 32) {
857 return -1;
858 } else {
859 mask.s_addr = htonl(0xffffffff << (32 - shift));
862 net.s_addr &= mask.s_addr;
863 host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr);
864 dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr);
865 dns.s_addr = net.s_addr | (htonl(0x0203) & ~mask.s_addr);
868 if (vhost && !inet_aton(vhost, &host)) {
869 return -1;
871 if ((host.s_addr & mask.s_addr) != net.s_addr) {
872 return -1;
875 if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) {
876 return -1;
878 if ((dhcp.s_addr & mask.s_addr) != net.s_addr ||
879 dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) {
880 return -1;
883 if (vnameserver && !inet_aton(vnameserver, &dns)) {
884 return -1;
886 if ((dns.s_addr & mask.s_addr) != net.s_addr ||
887 dns.s_addr == host.s_addr) {
888 return -1;
891 #ifndef _WIN32
892 if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) {
893 return -1;
895 #endif
897 s = qemu_mallocz(sizeof(SlirpState));
898 s->slirp = slirp_init(restricted, net, mask, host, vhostname,
899 tftp_export, bootfile, dhcp, dns, s);
900 TAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
902 while (slirp_configs) {
903 struct slirp_config_str *config = slirp_configs;
905 if (config->flags & SLIRP_CFG_HOSTFWD) {
906 slirp_hostfwd(s, mon, config->str,
907 config->flags & SLIRP_CFG_LEGACY);
908 } else {
909 slirp_guestfwd(s, mon, config->str,
910 config->flags & SLIRP_CFG_LEGACY);
912 slirp_configs = config->next;
913 qemu_free(config);
915 #ifndef _WIN32
916 if (!smb_export) {
917 smb_export = legacy_smb_export;
919 if (smb_export) {
920 slirp_smb(s, mon, smb_export, smbsrv);
922 #endif
924 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive, NULL,
925 net_slirp_cleanup, s);
926 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
927 "net=%s, restricted=%c", inet_ntoa(net), restricted ? 'y' : 'n');
928 return 0;
931 static SlirpState *slirp_lookup(Monitor *mon, const char *vlan,
932 const char *stack)
934 VLANClientState *vc;
936 if (vlan) {
937 vc = qemu_find_vlan_client_by_name(mon, strtol(vlan, NULL, 0), stack);
938 if (!vc) {
939 return NULL;
941 if (strcmp(vc->model, "user")) {
942 monitor_printf(mon, "invalid device specified\n");
943 return NULL;
945 return vc->opaque;
946 } else {
947 if (TAILQ_EMPTY(&slirp_stacks)) {
948 monitor_printf(mon, "user mode network stack not in use\n");
949 return NULL;
951 return TAILQ_FIRST(&slirp_stacks);
955 void net_slirp_hostfwd_remove(Monitor *mon, const char *arg1,
956 const char *arg2, const char *arg3)
958 struct in_addr host_addr = { .s_addr = INADDR_ANY };
959 int host_port;
960 char buf[256] = "";
961 const char *src_str, *p;
962 SlirpState *s;
963 int is_udp = 0;
964 int err;
966 if (arg2) {
967 s = slirp_lookup(mon, arg1, arg2);
968 src_str = arg3;
969 } else {
970 s = slirp_lookup(mon, NULL, NULL);
971 src_str = arg1;
973 if (!s) {
974 return;
977 if (!src_str || !src_str[0])
978 goto fail_syntax;
980 p = src_str;
981 get_str_sep(buf, sizeof(buf), &p, ':');
983 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
984 is_udp = 0;
985 } else if (!strcmp(buf, "udp")) {
986 is_udp = 1;
987 } else {
988 goto fail_syntax;
991 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
992 goto fail_syntax;
994 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
995 goto fail_syntax;
998 host_port = atoi(p);
1000 err = slirp_remove_hostfwd(TAILQ_FIRST(&slirp_stacks)->slirp, is_udp,
1001 host_addr, host_port);
1003 monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
1004 err ? "removed" : "not found");
1005 return;
1007 fail_syntax:
1008 monitor_printf(mon, "invalid format\n");
1011 static void slirp_hostfwd(SlirpState *s, Monitor *mon, const char *redir_str,
1012 int legacy_format)
1014 struct in_addr host_addr = { .s_addr = INADDR_ANY };
1015 struct in_addr guest_addr = { .s_addr = 0 };
1016 int host_port, guest_port;
1017 const char *p;
1018 char buf[256];
1019 int is_udp;
1020 char *end;
1022 p = redir_str;
1023 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1024 goto fail_syntax;
1026 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
1027 is_udp = 0;
1028 } else if (!strcmp(buf, "udp")) {
1029 is_udp = 1;
1030 } else {
1031 goto fail_syntax;
1034 if (!legacy_format) {
1035 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1036 goto fail_syntax;
1038 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
1039 goto fail_syntax;
1043 if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) {
1044 goto fail_syntax;
1046 host_port = strtol(buf, &end, 0);
1047 if (*end != '\0' || host_port < 1 || host_port > 65535) {
1048 goto fail_syntax;
1051 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1052 goto fail_syntax;
1054 if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
1055 goto fail_syntax;
1058 guest_port = strtol(p, &end, 0);
1059 if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
1060 goto fail_syntax;
1063 if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
1064 guest_port) < 0) {
1065 config_error(mon, "could not set up host forwarding rule '%s'\n",
1066 redir_str);
1068 return;
1070 fail_syntax:
1071 config_error(mon, "invalid host forwarding rule '%s'\n", redir_str);
1074 void net_slirp_hostfwd_add(Monitor *mon, const char *arg1,
1075 const char *arg2, const char *arg3)
1077 const char *redir_str;
1078 SlirpState *s;
1080 if (arg2) {
1081 s = slirp_lookup(mon, arg1, arg2);
1082 redir_str = arg3;
1083 } else {
1084 s = slirp_lookup(mon, NULL, NULL);
1085 redir_str = arg1;
1087 if (s) {
1088 slirp_hostfwd(s, mon, redir_str, 0);
1093 void net_slirp_redir(const char *redir_str)
1095 struct slirp_config_str *config;
1097 if (TAILQ_EMPTY(&slirp_stacks)) {
1098 config = qemu_malloc(sizeof(*config));
1099 pstrcpy(config->str, sizeof(config->str), redir_str);
1100 config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY;
1101 config->next = slirp_configs;
1102 slirp_configs = config;
1103 return;
1106 slirp_hostfwd(TAILQ_FIRST(&slirp_stacks), NULL, redir_str, 1);
1109 #ifndef _WIN32
1111 /* automatic user mode samba server configuration */
1112 static void slirp_smb_cleanup(SlirpState *s)
1114 char cmd[128];
1116 if (s->smb_dir[0] != '\0') {
1117 snprintf(cmd, sizeof(cmd), "rm -rf %s", s->smb_dir);
1118 system(cmd);
1119 s->smb_dir[0] = '\0';
1123 static void slirp_smb(SlirpState* s, Monitor *mon, const char *exported_dir,
1124 struct in_addr vserver_addr)
1126 static int instance;
1127 char smb_conf[128];
1128 char smb_cmdline[128];
1129 FILE *f;
1131 snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
1132 (long)getpid(), instance++);
1133 if (mkdir(s->smb_dir, 0700) < 0) {
1134 config_error(mon, "could not create samba server dir '%s'\n",
1135 s->smb_dir);
1136 return;
1138 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", s->smb_dir, "smb.conf");
1140 f = fopen(smb_conf, "w");
1141 if (!f) {
1142 slirp_smb_cleanup(s);
1143 config_error(mon, "could not create samba server "
1144 "configuration file '%s'\n", smb_conf);
1145 return;
1147 fprintf(f,
1148 "[global]\n"
1149 "private dir=%s\n"
1150 "smb ports=0\n"
1151 "socket address=127.0.0.1\n"
1152 "pid directory=%s\n"
1153 "lock directory=%s\n"
1154 "log file=%s/log.smbd\n"
1155 "smb passwd file=%s/smbpasswd\n"
1156 "security = share\n"
1157 "[qemu]\n"
1158 "path=%s\n"
1159 "read only=no\n"
1160 "guest ok=yes\n",
1161 s->smb_dir,
1162 s->smb_dir,
1163 s->smb_dir,
1164 s->smb_dir,
1165 s->smb_dir,
1166 exported_dir
1168 fclose(f);
1170 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
1171 SMBD_COMMAND, smb_conf);
1173 if (slirp_add_exec(s->slirp, 0, smb_cmdline, vserver_addr, 139) < 0) {
1174 slirp_smb_cleanup(s);
1175 config_error(mon, "conflicting/invalid smbserver address\n");
1179 /* automatic user mode samba server configuration (legacy interface) */
1180 void net_slirp_smb(const char *exported_dir)
1182 struct in_addr vserver_addr = { .s_addr = 0 };
1184 if (legacy_smb_export) {
1185 fprintf(stderr, "-smb given twice\n");
1186 exit(1);
1188 legacy_smb_export = exported_dir;
1189 if (!TAILQ_EMPTY(&slirp_stacks)) {
1190 slirp_smb(TAILQ_FIRST(&slirp_stacks), NULL, exported_dir,
1191 vserver_addr);
1195 #endif /* !defined(_WIN32) */
1197 struct GuestFwd {
1198 CharDriverState *hd;
1199 struct in_addr server;
1200 int port;
1201 Slirp *slirp;
1204 static int guestfwd_can_read(void *opaque)
1206 struct GuestFwd *fwd = opaque;
1207 return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
1210 static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
1212 struct GuestFwd *fwd = opaque;
1213 slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
1216 static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str,
1217 int legacy_format)
1219 struct in_addr server = { .s_addr = 0 };
1220 struct GuestFwd *fwd;
1221 const char *p;
1222 char buf[128];
1223 char *end;
1224 int port;
1226 p = config_str;
1227 if (legacy_format) {
1228 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1229 goto fail_syntax;
1231 } else {
1232 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1233 goto fail_syntax;
1235 if (strcmp(buf, "tcp") && buf[0] != '\0') {
1236 goto fail_syntax;
1238 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1239 goto fail_syntax;
1241 if (buf[0] != '\0' && !inet_aton(buf, &server)) {
1242 goto fail_syntax;
1244 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
1245 goto fail_syntax;
1248 port = strtol(buf, &end, 10);
1249 if (*end != '\0' || port < 1 || port > 65535) {
1250 goto fail_syntax;
1253 fwd = qemu_malloc(sizeof(struct GuestFwd));
1254 snprintf(buf, sizeof(buf), "guestfwd.tcp:%d", port);
1255 fwd->hd = qemu_chr_open(buf, p, NULL);
1256 if (!fwd->hd) {
1257 config_error(mon, "could not open guest forwarding device '%s'\n",
1258 buf);
1259 qemu_free(fwd);
1260 return;
1262 fwd->server = server;
1263 fwd->port = port;
1264 fwd->slirp = s->slirp;
1266 if (slirp_add_exec(s->slirp, 3, fwd->hd, server, port) < 0) {
1267 config_error(mon, "conflicting/invalid host:port in guest forwarding "
1268 "rule '%s'\n", config_str);
1269 qemu_free(fwd);
1270 return;
1272 qemu_chr_add_handlers(fwd->hd, guestfwd_can_read, guestfwd_read,
1273 NULL, fwd);
1274 return;
1276 fail_syntax:
1277 config_error(mon, "invalid guest forwarding rule '%s'\n", config_str);
1280 void do_info_usernet(Monitor *mon)
1282 SlirpState *s;
1284 TAILQ_FOREACH(s, &slirp_stacks, entry) {
1285 monitor_printf(mon, "VLAN %d (%s):\n", s->vc->vlan->id, s->vc->name);
1286 slirp_connection_info(s->slirp, mon);
1290 #endif /* CONFIG_SLIRP */
1292 #ifdef _WIN32
1294 int tap_has_vnet_hdr(void *opaque)
1296 return 0;
1299 void tap_using_vnet_hdr(void *opaque, int using_vnet_hdr)
1303 #else /* !defined(_WIN32) */
1305 /* Maximum GSO packet size (64k) plus plenty of room for
1306 * the ethernet and virtio_net headers
1308 #define TAP_BUFSIZE (4096 + 65536)
1310 #ifdef IFF_VNET_HDR
1311 #include <linux/virtio_net.h>
1312 #endif
1314 typedef struct TAPState {
1315 VLANClientState *vc;
1316 int fd;
1317 char down_script[1024];
1318 char down_script_arg[128];
1319 uint8_t buf[TAP_BUFSIZE];
1320 unsigned int read_poll : 1;
1321 unsigned int write_poll : 1;
1322 unsigned int has_vnet_hdr : 1;
1323 unsigned int using_vnet_hdr : 1;
1324 } TAPState;
1326 static int launch_script(const char *setup_script, const char *ifname, int fd);
1328 static int tap_can_send(void *opaque);
1329 static void tap_send(void *opaque);
1330 static void tap_writable(void *opaque);
1332 static void tap_update_fd_handler(TAPState *s)
1334 qemu_set_fd_handler2(s->fd,
1335 s->read_poll ? tap_can_send : NULL,
1336 s->read_poll ? tap_send : NULL,
1337 s->write_poll ? tap_writable : NULL,
1341 static void tap_read_poll(TAPState *s, int enable)
1343 s->read_poll = !!enable;
1344 tap_update_fd_handler(s);
1347 static void tap_write_poll(TAPState *s, int enable)
1349 s->write_poll = !!enable;
1350 tap_update_fd_handler(s);
1353 static void tap_writable(void *opaque)
1355 TAPState *s = opaque;
1357 tap_write_poll(s, 0);
1359 qemu_flush_queued_packets(s->vc);
1362 static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
1363 int iovcnt)
1365 TAPState *s = vc->opaque;
1366 ssize_t len;
1368 do {
1369 len = writev(s->fd, iov, iovcnt);
1370 } while (len == -1 && errno == EINTR);
1372 if (len == -1 && errno == EAGAIN) {
1373 tap_write_poll(s, 1);
1374 return 0;
1377 return len;
1380 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1382 struct iovec iov[2];
1383 int i = 0;
1385 #ifdef IFF_VNET_HDR
1386 TAPState *s = vc->opaque;
1387 struct virtio_net_hdr hdr = { 0, };
1389 if (s->has_vnet_hdr && !s->using_vnet_hdr) {
1390 iov[i].iov_base = &hdr;
1391 iov[i].iov_len = sizeof(hdr);
1392 i++;
1394 #endif
1396 iov[i].iov_base = (char *) buf;
1397 iov[i].iov_len = size;
1398 i++;
1400 return tap_receive_iov(vc, iov, i);
1403 static ssize_t tap_receive_raw(VLANClientState *vc, const uint8_t *buf, size_t size)
1405 struct iovec iov[2];
1406 int i = 0;
1408 #ifdef IFF_VNET_HDR
1409 TAPState *s = vc->opaque;
1410 struct virtio_net_hdr hdr = { 0, };
1412 if (s->has_vnet_hdr && s->using_vnet_hdr) {
1413 iov[i].iov_base = &hdr;
1414 iov[i].iov_len = sizeof(hdr);
1415 i++;
1417 #endif
1419 iov[i].iov_base = (char *) buf;
1420 iov[i].iov_len = size;
1421 i++;
1423 return tap_receive_iov(vc, iov, i);
1426 static int tap_can_send(void *opaque)
1428 TAPState *s = opaque;
1430 return qemu_can_send_packet(s->vc);
1433 #ifdef __sun__
1434 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1436 struct strbuf sbuf;
1437 int f = 0;
1439 sbuf.maxlen = maxlen;
1440 sbuf.buf = (char *)buf;
1442 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
1444 #else
1445 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1447 return read(tapfd, buf, maxlen);
1449 #endif
1451 static void tap_send_completed(VLANClientState *vc, ssize_t len)
1453 TAPState *s = vc->opaque;
1454 tap_read_poll(s, 1);
1457 static void tap_send(void *opaque)
1459 TAPState *s = opaque;
1460 int size;
1462 do {
1463 uint8_t *buf = s->buf;
1465 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1466 if (size <= 0) {
1467 break;
1470 #ifdef IFF_VNET_HDR
1471 if (s->has_vnet_hdr && !s->using_vnet_hdr) {
1472 buf += sizeof(struct virtio_net_hdr);
1473 size -= sizeof(struct virtio_net_hdr);
1475 #endif
1477 size = qemu_send_packet_async(s->vc, buf, size, tap_send_completed);
1478 if (size == 0) {
1479 tap_read_poll(s, 0);
1481 } while (size > 0);
1484 #ifdef TUNSETSNDBUF
1485 /* sndbuf should be set to a value lower than the tx queue
1486 * capacity of any destination network interface.
1487 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1488 * a good default, given a 1500 byte MTU.
1490 #define TAP_DEFAULT_SNDBUF 1024*1024
1492 static void tap_set_sndbuf(TAPState *s, const char *sndbuf_str, Monitor *mon)
1494 int sndbuf = TAP_DEFAULT_SNDBUF;
1496 if (sndbuf_str) {
1497 sndbuf = atoi(sndbuf_str);
1500 if (!sndbuf) {
1501 sndbuf = INT_MAX;
1504 if (ioctl(s->fd, TUNSETSNDBUF, &sndbuf) == -1 && sndbuf_str) {
1505 config_error(mon, "TUNSETSNDBUF ioctl failed: %s\n",
1506 strerror(errno));
1509 #else
1510 static void tap_set_sndbuf(TAPState *s, const char *sndbuf_str, Monitor *mon)
1512 if (sndbuf_str) {
1513 config_error(mon, "No '-net tap,sndbuf=<nbytes>' support available\n");
1516 #endif /* TUNSETSNDBUF */
1518 int tap_has_vnet_hdr(void *opaque)
1520 VLANClientState *vc = opaque;
1521 TAPState *s = vc->opaque;
1523 return s ? s->has_vnet_hdr : 0;
1526 void tap_using_vnet_hdr(void *opaque, int using_vnet_hdr)
1528 VLANClientState *vc = opaque;
1529 TAPState *s = vc->opaque;
1531 if (!s || !s->has_vnet_hdr)
1532 return;
1534 s->using_vnet_hdr = using_vnet_hdr != 0;
1537 static int tap_probe_vnet_hdr(int fd)
1539 #if defined(TUNGETIFF) && defined(IFF_VNET_HDR)
1540 struct ifreq ifr;
1542 if (ioctl(fd, TUNGETIFF, &ifr) != 0) {
1543 fprintf(stderr, "TUNGETIFF ioctl() failed: %s\n", strerror(errno));
1544 return 0;
1547 return ifr.ifr_flags & IFF_VNET_HDR;
1548 #else
1549 return 0;
1550 #endif
1553 #ifdef TUNSETOFFLOAD
1554 static void tap_set_offload(VLANClientState *vc, int csum, int tso4, int tso6,
1555 int ecn)
1557 TAPState *s = vc->opaque;
1558 unsigned int offload = 0;
1560 if (csum) {
1561 offload |= TUN_F_CSUM;
1562 if (tso4)
1563 offload |= TUN_F_TSO4;
1564 if (tso6)
1565 offload |= TUN_F_TSO6;
1566 if ((tso4 || tso6) && ecn)
1567 offload |= TUN_F_TSO_ECN;
1570 if (ioctl(s->fd, TUNSETOFFLOAD, offload) != 0)
1571 fprintf(stderr, "TUNSETOFFLOAD ioctl() failed: %s\n",
1572 strerror(errno));
1574 #endif /* TUNSETOFFLOAD */
1576 static void tap_cleanup(VLANClientState *vc)
1578 TAPState *s = vc->opaque;
1580 qemu_purge_queued_packets(vc);
1582 if (s->down_script[0])
1583 launch_script(s->down_script, s->down_script_arg, s->fd);
1585 tap_read_poll(s, 0);
1586 tap_write_poll(s, 0);
1587 close(s->fd);
1588 qemu_free(s);
1591 /* fd support */
1593 static TAPState *net_tap_fd_init(VLANState *vlan,
1594 const char *model,
1595 const char *name,
1596 int fd,
1597 int vnet_hdr)
1599 TAPState *s;
1601 s = qemu_mallocz(sizeof(TAPState));
1602 s->fd = fd;
1603 s->has_vnet_hdr = vnet_hdr != 0;
1604 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1605 tap_receive_iov, tap_cleanup, s);
1606 s->vc->receive_raw = tap_receive_raw;
1607 #ifdef TUNSETOFFLOAD
1608 s->vc->set_offload = tap_set_offload;
1609 tap_set_offload(s->vc, 0, 0, 0, 0);
1610 #endif
1611 tap_read_poll(s, 1);
1612 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
1613 return s;
1616 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
1617 static int tap_open(char *ifname, int ifname_size)
1619 int fd;
1620 char *dev;
1621 struct stat s;
1623 TFR(fd = open("/dev/tap", O_RDWR));
1624 if (fd < 0) {
1625 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1626 return -1;
1629 fstat(fd, &s);
1630 dev = devname(s.st_rdev, S_IFCHR);
1631 pstrcpy(ifname, ifname_size, dev);
1633 fcntl(fd, F_SETFL, O_NONBLOCK);
1634 return fd;
1636 #elif defined(__sun__)
1637 #define TUNNEWPPA (('T'<<16) | 0x0001)
1639 * Allocate TAP device, returns opened fd.
1640 * Stores dev name in the first arg(must be large enough).
1642 static int tap_alloc(char *dev, size_t dev_size)
1644 int tap_fd, if_fd, ppa = -1;
1645 static int ip_fd = 0;
1646 char *ptr;
1648 static int arp_fd = 0;
1649 int ip_muxid, arp_muxid;
1650 struct strioctl strioc_if, strioc_ppa;
1651 int link_type = I_PLINK;;
1652 struct lifreq ifr;
1653 char actual_name[32] = "";
1655 memset(&ifr, 0x0, sizeof(ifr));
1657 if( *dev ){
1658 ptr = dev;
1659 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
1660 ppa = atoi(ptr);
1663 /* Check if IP device was opened */
1664 if( ip_fd )
1665 close(ip_fd);
1667 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1668 if (ip_fd < 0) {
1669 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1670 return -1;
1673 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1674 if (tap_fd < 0) {
1675 syslog(LOG_ERR, "Can't open /dev/tap");
1676 return -1;
1679 /* Assign a new PPA and get its unit number. */
1680 strioc_ppa.ic_cmd = TUNNEWPPA;
1681 strioc_ppa.ic_timout = 0;
1682 strioc_ppa.ic_len = sizeof(ppa);
1683 strioc_ppa.ic_dp = (char *)&ppa;
1684 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1685 syslog (LOG_ERR, "Can't assign new interface");
1687 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1688 if (if_fd < 0) {
1689 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1690 return -1;
1692 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1693 syslog(LOG_ERR, "Can't push IP module");
1694 return -1;
1697 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1698 syslog(LOG_ERR, "Can't get flags\n");
1700 snprintf (actual_name, 32, "tap%d", ppa);
1701 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1703 ifr.lifr_ppa = ppa;
1704 /* Assign ppa according to the unit number returned by tun device */
1706 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1707 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1708 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1709 syslog (LOG_ERR, "Can't get flags\n");
1710 /* Push arp module to if_fd */
1711 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1712 syslog (LOG_ERR, "Can't push ARP module (2)");
1714 /* Push arp module to ip_fd */
1715 if (ioctl (ip_fd, I_POP, NULL) < 0)
1716 syslog (LOG_ERR, "I_POP failed\n");
1717 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1718 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1719 /* Open arp_fd */
1720 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1721 if (arp_fd < 0)
1722 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1724 /* Set ifname to arp */
1725 strioc_if.ic_cmd = SIOCSLIFNAME;
1726 strioc_if.ic_timout = 0;
1727 strioc_if.ic_len = sizeof(ifr);
1728 strioc_if.ic_dp = (char *)&ifr;
1729 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1730 syslog (LOG_ERR, "Can't set ifname to arp\n");
1733 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1734 syslog(LOG_ERR, "Can't link TAP device to IP");
1735 return -1;
1738 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1739 syslog (LOG_ERR, "Can't link TAP device to ARP");
1741 close (if_fd);
1743 memset(&ifr, 0x0, sizeof(ifr));
1744 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1745 ifr.lifr_ip_muxid = ip_muxid;
1746 ifr.lifr_arp_muxid = arp_muxid;
1748 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1750 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1751 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1752 syslog (LOG_ERR, "Can't set multiplexor id");
1755 snprintf(dev, dev_size, "tap%d", ppa);
1756 return tap_fd;
1759 static int tap_open(char *ifname, int ifname_size, int *vnet_hdr)
1761 char dev[10]="";
1762 int fd;
1763 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1764 fprintf(stderr, "Cannot allocate TAP device\n");
1765 return -1;
1767 pstrcpy(ifname, ifname_size, dev);
1768 fcntl(fd, F_SETFL, O_NONBLOCK);
1769 return fd;
1771 #elif defined (_AIX)
1772 static int tap_open(char *ifname, int ifname_size)
1774 fprintf (stderr, "no tap on AIX\n");
1775 return -1;
1777 #else
1778 static int tap_open(char *ifname, int ifname_size, int *vnet_hdr)
1780 struct ifreq ifr;
1781 int fd, ret;
1783 TFR(fd = open("/dev/net/tun", O_RDWR));
1784 if (fd < 0) {
1785 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1786 return -1;
1788 memset(&ifr, 0, sizeof(ifr));
1789 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1791 #if defined(TUNGETFEATURES) && defined(IFF_VNET_HDR)
1793 unsigned int features;
1795 if (ioctl(fd, TUNGETFEATURES, &features) == 0 &&
1796 features & IFF_VNET_HDR) {
1797 *vnet_hdr = 1;
1798 ifr.ifr_flags |= IFF_VNET_HDR;
1801 #endif
1803 if (ifname[0] != '\0')
1804 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1805 else
1806 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1807 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1808 if (ret != 0) {
1809 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1810 close(fd);
1811 return -1;
1813 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1814 fcntl(fd, F_SETFL, O_NONBLOCK);
1815 return fd;
1817 #endif
1819 static int launch_script(const char *setup_script, const char *ifname, int fd)
1821 sigset_t oldmask, mask;
1822 int pid, status;
1823 char *args[3];
1824 char **parg;
1826 sigemptyset(&mask);
1827 sigaddset(&mask, SIGCHLD);
1828 sigprocmask(SIG_BLOCK, &mask, &oldmask);
1830 /* try to launch network script */
1831 pid = fork();
1832 if (pid == 0) {
1833 int open_max = sysconf(_SC_OPEN_MAX), i;
1835 for (i = 0; i < open_max; i++) {
1836 if (i != STDIN_FILENO &&
1837 i != STDOUT_FILENO &&
1838 i != STDERR_FILENO &&
1839 i != fd) {
1840 close(i);
1843 parg = args;
1844 *parg++ = (char *)setup_script;
1845 *parg++ = (char *)ifname;
1846 *parg++ = NULL;
1847 execv(setup_script, args);
1848 _exit(1);
1849 } else if (pid > 0) {
1850 while (waitpid(pid, &status, 0) != pid) {
1851 /* loop */
1853 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1855 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1856 return 0;
1859 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1860 return -1;
1863 static TAPState *net_tap_init(VLANState *vlan, const char *model,
1864 const char *name, const char *ifname1,
1865 const char *setup_script, const char *down_script)
1867 TAPState *s;
1868 int fd;
1869 int vnet_hdr;
1870 char ifname[128];
1872 if (ifname1 != NULL)
1873 pstrcpy(ifname, sizeof(ifname), ifname1);
1874 else
1875 ifname[0] = '\0';
1876 vnet_hdr = 0;
1877 TFR(fd = tap_open(ifname, sizeof(ifname), &vnet_hdr));
1878 if (fd < 0)
1879 return NULL;
1881 if (!setup_script || !strcmp(setup_script, "no"))
1882 setup_script = "";
1883 if (setup_script[0] != '\0' &&
1884 launch_script(setup_script, ifname, fd)) {
1885 return NULL;
1887 s = net_tap_fd_init(vlan, model, name, fd, vnet_hdr);
1888 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1889 "ifname=%s,script=%s,downscript=%s",
1890 ifname, setup_script, down_script);
1891 if (down_script && strcmp(down_script, "no")) {
1892 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
1893 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1895 return s;
1898 #endif /* !_WIN32 */
1900 #if defined(CONFIG_VDE)
1901 typedef struct VDEState {
1902 VLANClientState *vc;
1903 VDECONN *vde;
1904 } VDEState;
1906 static void vde_to_qemu(void *opaque)
1908 VDEState *s = opaque;
1909 uint8_t buf[4096];
1910 int size;
1912 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
1913 if (size > 0) {
1914 qemu_send_packet(s->vc, buf, size);
1918 static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1920 VDEState *s = vc->opaque;
1921 ssize_t ret;
1923 do {
1924 ret = vde_send(s->vde, (const char *)buf, size, 0);
1925 } while (ret < 0 && errno == EINTR);
1927 return ret;
1930 static void vde_cleanup(VLANClientState *vc)
1932 VDEState *s = vc->opaque;
1933 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1934 vde_close(s->vde);
1935 qemu_free(s);
1938 static int net_vde_init(VLANState *vlan, const char *model,
1939 const char *name, const char *sock,
1940 int port, const char *group, int mode)
1942 VDEState *s;
1943 char *init_group = strlen(group) ? (char *)group : NULL;
1944 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1946 struct vde_open_args args = {
1947 .port = port,
1948 .group = init_group,
1949 .mode = mode,
1952 s = qemu_mallocz(sizeof(VDEState));
1953 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
1954 if (!s->vde){
1955 free(s);
1956 return -1;
1958 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
1959 NULL, vde_cleanup, s);
1960 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1961 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1962 sock, vde_datafd(s->vde));
1963 return 0;
1965 #endif
1967 /* network connection */
1968 typedef struct NetSocketState {
1969 VLANClientState *vc;
1970 int fd;
1971 int state; /* 0 = getting length, 1 = getting data */
1972 unsigned int index;
1973 unsigned int packet_len;
1974 uint8_t buf[4096];
1975 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1976 } NetSocketState;
1978 typedef struct NetSocketListenState {
1979 VLANState *vlan;
1980 char *model;
1981 char *name;
1982 int fd;
1983 } NetSocketListenState;
1985 /* XXX: we consider we can send the whole packet without blocking */
1986 static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1988 NetSocketState *s = vc->opaque;
1989 uint32_t len;
1990 len = htonl(size);
1992 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1993 return send_all(s->fd, buf, size);
1996 static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
1998 NetSocketState *s = vc->opaque;
2000 return sendto(s->fd, (const void *)buf, size, 0,
2001 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
2004 static void net_socket_send(void *opaque)
2006 NetSocketState *s = opaque;
2007 int size, err;
2008 unsigned l;
2009 uint8_t buf1[4096];
2010 const uint8_t *buf;
2012 size = recv(s->fd, (void *)buf1, sizeof(buf1), 0);
2013 if (size < 0) {
2014 err = socket_error();
2015 if (err != EWOULDBLOCK)
2016 goto eoc;
2017 } else if (size == 0) {
2018 /* end of connection */
2019 eoc:
2020 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2021 closesocket(s->fd);
2022 return;
2024 buf = buf1;
2025 while (size > 0) {
2026 /* reassemble a packet from the network */
2027 switch(s->state) {
2028 case 0:
2029 l = 4 - s->index;
2030 if (l > size)
2031 l = size;
2032 memcpy(s->buf + s->index, buf, l);
2033 buf += l;
2034 size -= l;
2035 s->index += l;
2036 if (s->index == 4) {
2037 /* got length */
2038 s->packet_len = ntohl(*(uint32_t *)s->buf);
2039 s->index = 0;
2040 s->state = 1;
2042 break;
2043 case 1:
2044 l = s->packet_len - s->index;
2045 if (l > size)
2046 l = size;
2047 if (s->index + l <= sizeof(s->buf)) {
2048 memcpy(s->buf + s->index, buf, l);
2049 } else {
2050 fprintf(stderr, "serious error: oversized packet received,"
2051 "connection terminated.\n");
2052 s->state = 0;
2053 goto eoc;
2056 s->index += l;
2057 buf += l;
2058 size -= l;
2059 if (s->index >= s->packet_len) {
2060 qemu_send_packet(s->vc, s->buf, s->packet_len);
2061 s->index = 0;
2062 s->state = 0;
2064 break;
2069 static void net_socket_send_dgram(void *opaque)
2071 NetSocketState *s = opaque;
2072 int size;
2074 size = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
2075 if (size < 0)
2076 return;
2077 if (size == 0) {
2078 /* end of connection */
2079 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2080 return;
2082 qemu_send_packet(s->vc, s->buf, size);
2085 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
2087 struct ip_mreq imr;
2088 int fd;
2089 int val, ret;
2090 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
2091 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
2092 inet_ntoa(mcastaddr->sin_addr),
2093 (int)ntohl(mcastaddr->sin_addr.s_addr));
2094 return -1;
2097 fd = socket(PF_INET, SOCK_DGRAM, 0);
2098 if (fd < 0) {
2099 perror("socket(PF_INET, SOCK_DGRAM)");
2100 return -1;
2103 val = 1;
2104 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
2105 (const char *)&val, sizeof(val));
2106 if (ret < 0) {
2107 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
2108 goto fail;
2111 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
2112 if (ret < 0) {
2113 perror("bind");
2114 goto fail;
2117 /* Add host to multicast group */
2118 imr.imr_multiaddr = mcastaddr->sin_addr;
2119 imr.imr_interface.s_addr = htonl(INADDR_ANY);
2121 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
2122 (const char *)&imr, sizeof(struct ip_mreq));
2123 if (ret < 0) {
2124 perror("setsockopt(IP_ADD_MEMBERSHIP)");
2125 goto fail;
2128 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2129 val = 1;
2130 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
2131 (const char *)&val, sizeof(val));
2132 if (ret < 0) {
2133 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2134 goto fail;
2137 socket_set_nonblock(fd);
2138 return fd;
2139 fail:
2140 if (fd >= 0)
2141 closesocket(fd);
2142 return -1;
2145 static void net_socket_cleanup(VLANClientState *vc)
2147 NetSocketState *s = vc->opaque;
2148 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2149 close(s->fd);
2150 qemu_free(s);
2153 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
2154 const char *model,
2155 const char *name,
2156 int fd, int is_connected)
2158 struct sockaddr_in saddr;
2159 int newfd;
2160 socklen_t saddr_len;
2161 NetSocketState *s;
2163 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2164 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
2165 * by ONLY ONE process: we must "clone" this dgram socket --jjo
2168 if (is_connected) {
2169 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
2170 /* must be bound */
2171 if (saddr.sin_addr.s_addr==0) {
2172 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2173 fd);
2174 return NULL;
2176 /* clone dgram socket */
2177 newfd = net_socket_mcast_create(&saddr);
2178 if (newfd < 0) {
2179 /* error already reported by net_socket_mcast_create() */
2180 close(fd);
2181 return NULL;
2183 /* clone newfd to fd, close newfd */
2184 dup2(newfd, fd);
2185 close(newfd);
2187 } else {
2188 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2189 fd, strerror(errno));
2190 return NULL;
2194 s = qemu_mallocz(sizeof(NetSocketState));
2195 s->fd = fd;
2197 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
2198 NULL, net_socket_cleanup, s);
2199 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2201 /* mcast: save bound address as dst */
2202 if (is_connected) s->dgram_dst=saddr;
2204 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2205 "socket: fd=%d (%s mcast=%s:%d)",
2206 fd, is_connected? "cloned" : "",
2207 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2208 return s;
2211 static void net_socket_connect(void *opaque)
2213 NetSocketState *s = opaque;
2214 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2217 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
2218 const char *model,
2219 const char *name,
2220 int fd, int is_connected)
2222 NetSocketState *s;
2223 s = qemu_mallocz(sizeof(NetSocketState));
2224 s->fd = fd;
2225 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
2226 NULL, net_socket_cleanup, s);
2227 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2228 "socket: fd=%d", fd);
2229 if (is_connected) {
2230 net_socket_connect(s);
2231 } else {
2232 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2234 return s;
2237 static NetSocketState *net_socket_fd_init(VLANState *vlan,
2238 const char *model, const char *name,
2239 int fd, int is_connected)
2241 int so_type=-1, optlen=sizeof(so_type);
2243 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
2244 (socklen_t *)&optlen)< 0) {
2245 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
2246 return NULL;
2248 switch(so_type) {
2249 case SOCK_DGRAM:
2250 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
2251 case SOCK_STREAM:
2252 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2253 default:
2254 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2255 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
2256 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2258 return NULL;
2261 static void net_socket_accept(void *opaque)
2263 NetSocketListenState *s = opaque;
2264 NetSocketState *s1;
2265 struct sockaddr_in saddr;
2266 socklen_t len;
2267 int fd;
2269 for(;;) {
2270 len = sizeof(saddr);
2271 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2272 if (fd < 0 && errno != EINTR) {
2273 return;
2274 } else if (fd >= 0) {
2275 break;
2278 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
2279 if (!s1) {
2280 closesocket(fd);
2281 } else {
2282 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2283 "socket: connection from %s:%d",
2284 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2288 static int net_socket_listen_init(VLANState *vlan,
2289 const char *model,
2290 const char *name,
2291 const char *host_str)
2293 NetSocketListenState *s;
2294 int fd, val, ret;
2295 struct sockaddr_in saddr;
2297 if (parse_host_port(&saddr, host_str) < 0)
2298 return -1;
2300 s = qemu_mallocz(sizeof(NetSocketListenState));
2302 fd = socket(PF_INET, SOCK_STREAM, 0);
2303 if (fd < 0) {
2304 perror("socket");
2305 return -1;
2307 socket_set_nonblock(fd);
2309 /* allow fast reuse */
2310 val = 1;
2311 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2313 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2314 if (ret < 0) {
2315 perror("bind");
2316 return -1;
2318 ret = listen(fd, 0);
2319 if (ret < 0) {
2320 perror("listen");
2321 return -1;
2323 s->vlan = vlan;
2324 s->model = strdup(model);
2325 s->name = name ? strdup(name) : NULL;
2326 s->fd = fd;
2327 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2328 return 0;
2331 static int net_socket_connect_init(VLANState *vlan,
2332 const char *model,
2333 const char *name,
2334 const char *host_str)
2336 NetSocketState *s;
2337 int fd, connected, ret, err;
2338 struct sockaddr_in saddr;
2340 if (parse_host_port(&saddr, host_str) < 0)
2341 return -1;
2343 fd = socket(PF_INET, SOCK_STREAM, 0);
2344 if (fd < 0) {
2345 perror("socket");
2346 return -1;
2348 socket_set_nonblock(fd);
2350 connected = 0;
2351 for(;;) {
2352 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2353 if (ret < 0) {
2354 err = socket_error();
2355 if (err == EINTR || err == EWOULDBLOCK) {
2356 } else if (err == EINPROGRESS) {
2357 break;
2358 #ifdef _WIN32
2359 } else if (err == WSAEALREADY) {
2360 break;
2361 #endif
2362 } else {
2363 perror("connect");
2364 closesocket(fd);
2365 return -1;
2367 } else {
2368 connected = 1;
2369 break;
2372 s = net_socket_fd_init(vlan, model, name, fd, connected);
2373 if (!s)
2374 return -1;
2375 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2376 "socket: connect to %s:%d",
2377 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2378 return 0;
2381 static int net_socket_mcast_init(VLANState *vlan,
2382 const char *model,
2383 const char *name,
2384 const char *host_str)
2386 NetSocketState *s;
2387 int fd;
2388 struct sockaddr_in saddr;
2390 if (parse_host_port(&saddr, host_str) < 0)
2391 return -1;
2394 fd = net_socket_mcast_create(&saddr);
2395 if (fd < 0)
2396 return -1;
2398 s = net_socket_fd_init(vlan, model, name, fd, 0);
2399 if (!s)
2400 return -1;
2402 s->dgram_dst = saddr;
2404 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2405 "socket: mcast=%s:%d",
2406 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2407 return 0;
2411 typedef struct DumpState {
2412 VLANClientState *pcap_vc;
2413 int fd;
2414 int pcap_caplen;
2415 } DumpState;
2417 #define PCAP_MAGIC 0xa1b2c3d4
2419 struct pcap_file_hdr {
2420 uint32_t magic;
2421 uint16_t version_major;
2422 uint16_t version_minor;
2423 int32_t thiszone;
2424 uint32_t sigfigs;
2425 uint32_t snaplen;
2426 uint32_t linktype;
2429 struct pcap_sf_pkthdr {
2430 struct {
2431 int32_t tv_sec;
2432 int32_t tv_usec;
2433 } ts;
2434 uint32_t caplen;
2435 uint32_t len;
2438 static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
2440 DumpState *s = vc->opaque;
2441 struct pcap_sf_pkthdr hdr;
2442 int64_t ts;
2443 int caplen;
2445 /* Early return in case of previous error. */
2446 if (s->fd < 0) {
2447 return size;
2450 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
2451 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
2453 hdr.ts.tv_sec = ts / 1000000;
2454 hdr.ts.tv_usec = ts % 1000000;
2455 hdr.caplen = caplen;
2456 hdr.len = size;
2457 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
2458 write(s->fd, buf, caplen) != caplen) {
2459 qemu_log("-net dump write error - stop dump\n");
2460 close(s->fd);
2461 s->fd = -1;
2464 return size;
2467 static void net_dump_cleanup(VLANClientState *vc)
2469 DumpState *s = vc->opaque;
2471 close(s->fd);
2472 qemu_free(s);
2475 static int net_dump_init(Monitor *mon, VLANState *vlan, const char *device,
2476 const char *name, const char *filename, int len)
2478 struct pcap_file_hdr hdr;
2479 DumpState *s;
2481 s = qemu_malloc(sizeof(DumpState));
2483 s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
2484 if (s->fd < 0) {
2485 config_error(mon, "-net dump: can't open %s\n", filename);
2486 return -1;
2489 s->pcap_caplen = len;
2491 hdr.magic = PCAP_MAGIC;
2492 hdr.version_major = 2;
2493 hdr.version_minor = 4;
2494 hdr.thiszone = 0;
2495 hdr.sigfigs = 0;
2496 hdr.snaplen = s->pcap_caplen;
2497 hdr.linktype = 1;
2499 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
2500 config_error(mon, "-net dump write error: %s\n", strerror(errno));
2501 close(s->fd);
2502 qemu_free(s);
2503 return -1;
2506 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
2507 net_dump_cleanup, s);
2508 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
2509 "dump to %s (len=%d)", filename, len);
2510 return 0;
2513 /* find or alloc a new VLAN */
2514 VLANState *qemu_find_vlan(int id, int allocate)
2516 VLANState **pvlan, *vlan;
2517 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2518 if (vlan->id == id)
2519 return vlan;
2521 if (!allocate) {
2522 return NULL;
2524 vlan = qemu_mallocz(sizeof(VLANState));
2525 vlan->id = id;
2526 vlan->next = NULL;
2527 pvlan = &first_vlan;
2528 while (*pvlan != NULL)
2529 pvlan = &(*pvlan)->next;
2530 *pvlan = vlan;
2531 return vlan;
2534 static int nic_get_free_idx(void)
2536 int index;
2538 for (index = 0; index < MAX_NICS; index++)
2539 if (!nd_table[index].used)
2540 return index;
2541 return -1;
2544 void qemu_check_nic_model(NICInfo *nd, const char *model)
2546 const char *models[2];
2548 models[0] = model;
2549 models[1] = NULL;
2551 qemu_check_nic_model_list(nd, models, model);
2554 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
2555 const char *default_model)
2557 int i, exit_status = 0;
2559 if (!nd->model)
2560 nd->model = strdup(default_model);
2562 if (strcmp(nd->model, "?") != 0) {
2563 for (i = 0 ; models[i]; i++)
2564 if (strcmp(nd->model, models[i]) == 0)
2565 return;
2567 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
2568 exit_status = 1;
2571 fprintf(stderr, "qemu: Supported NIC models: ");
2572 for (i = 0 ; models[i]; i++)
2573 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
2575 exit(exit_status);
2578 int net_client_init(Monitor *mon, const char *device, const char *p)
2580 char buf[1024];
2581 int vlan_id, ret;
2582 VLANState *vlan;
2583 char *name = NULL;
2585 vlan_id = 0;
2586 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
2587 vlan_id = strtol(buf, NULL, 0);
2589 vlan = qemu_find_vlan(vlan_id, 1);
2591 if (get_param_value(buf, sizeof(buf), "name", p)) {
2592 name = qemu_strdup(buf);
2594 if (!strcmp(device, "nic")) {
2595 static const char * const nic_params[] = {
2596 "vlan", "name", "macaddr", "model", "addr", "vectors", NULL
2598 NICInfo *nd;
2599 uint8_t *macaddr;
2600 int idx = nic_get_free_idx();
2602 if (check_params(buf, sizeof(buf), nic_params, p) < 0) {
2603 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2604 ret = -1;
2605 goto out;
2607 if (idx == -1 || nb_nics >= MAX_NICS) {
2608 config_error(mon, "Too Many NICs\n");
2609 ret = -1;
2610 goto out;
2612 nd = &nd_table[idx];
2613 macaddr = nd->macaddr;
2614 macaddr[0] = 0x52;
2615 macaddr[1] = 0x54;
2616 macaddr[2] = 0x00;
2617 macaddr[3] = 0x12;
2618 macaddr[4] = 0x34;
2619 macaddr[5] = 0x56 + idx;
2621 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2622 if (parse_macaddr(macaddr, buf) < 0) {
2623 config_error(mon, "invalid syntax for ethernet address\n");
2624 ret = -1;
2625 goto out;
2628 if (get_param_value(buf, sizeof(buf), "model", p)) {
2629 nd->model = strdup(buf);
2631 if (get_param_value(buf, sizeof(buf), "addr", p)) {
2632 nd->devaddr = strdup(buf);
2634 nd->nvectors = NIC_NVECTORS_UNSPECIFIED;
2635 if (get_param_value(buf, sizeof(buf), "vectors", p)) {
2636 char *endptr;
2637 long vectors = strtol(buf, &endptr, 0);
2638 if (*endptr) {
2639 config_error(mon, "invalid syntax for # of vectors\n");
2640 ret = -1;
2641 goto out;
2643 if (vectors < 0 || vectors > 0x7ffffff) {
2644 config_error(mon, "invalid # of vectors\n");
2645 ret = -1;
2646 goto out;
2648 nd->nvectors = vectors;
2650 nd->vlan = vlan;
2651 nd->name = name;
2652 nd->used = 1;
2653 name = NULL;
2654 nb_nics++;
2655 vlan->nb_guest_devs++;
2656 ret = idx;
2657 } else
2658 if (!strcmp(device, "none")) {
2659 if (*p != '\0') {
2660 config_error(mon, "'none' takes no parameters\n");
2661 ret = -1;
2662 goto out;
2664 /* does nothing. It is needed to signal that no network cards
2665 are wanted */
2666 ret = 0;
2667 } else
2668 #ifdef CONFIG_SLIRP
2669 if (!strcmp(device, "user")) {
2670 static const char * const slirp_params[] = {
2671 "vlan", "name", "hostname", "restrict", "ip", "net", "host",
2672 "tftp", "bootfile", "dhcpstart", "dns", "smb", "smbserver",
2673 "hostfwd", "guestfwd", NULL
2675 struct slirp_config_str *config;
2676 int restricted = 0;
2677 char *vnet = NULL;
2678 char *vhost = NULL;
2679 char *vhostname = NULL;
2680 char *tftp_export = NULL;
2681 char *bootfile = NULL;
2682 char *vdhcp_start = NULL;
2683 char *vnamesrv = NULL;
2684 char *smb_export = NULL;
2685 char *vsmbsrv = NULL;
2686 const char *q;
2688 if (check_params(buf, sizeof(buf), slirp_params, p) < 0) {
2689 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2690 ret = -1;
2691 goto out;
2693 if (get_param_value(buf, sizeof(buf), "ip", p)) {
2694 int vnet_buflen = strlen(buf) + strlen("/24") + 1;
2695 /* emulate legacy parameter */
2696 vnet = qemu_malloc(vnet_buflen);
2697 pstrcpy(vnet, vnet_buflen, buf);
2698 pstrcat(vnet, vnet_buflen, "/24");
2700 if (get_param_value(buf, sizeof(buf), "net", p)) {
2701 vnet = qemu_strdup(buf);
2703 if (get_param_value(buf, sizeof(buf), "host", p)) {
2704 vhost = qemu_strdup(buf);
2706 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
2707 vhostname = qemu_strdup(buf);
2709 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
2710 restricted = (buf[0] == 'y') ? 1 : 0;
2712 if (get_param_value(buf, sizeof(buf), "dhcpstart", p)) {
2713 vdhcp_start = qemu_strdup(buf);
2715 if (get_param_value(buf, sizeof(buf), "dns", p)) {
2716 vnamesrv = qemu_strdup(buf);
2718 if (get_param_value(buf, sizeof(buf), "tftp", p)) {
2719 tftp_export = qemu_strdup(buf);
2721 if (get_param_value(buf, sizeof(buf), "bootfile", p)) {
2722 bootfile = qemu_strdup(buf);
2724 if (get_param_value(buf, sizeof(buf), "smb", p)) {
2725 smb_export = qemu_strdup(buf);
2726 if (get_param_value(buf, sizeof(buf), "smbserver", p)) {
2727 vsmbsrv = qemu_strdup(buf);
2730 q = p;
2731 while (1) {
2732 config = qemu_malloc(sizeof(*config));
2733 if (!get_next_param_value(config->str, sizeof(config->str),
2734 "hostfwd", &q)) {
2735 break;
2737 config->flags = SLIRP_CFG_HOSTFWD;
2738 config->next = slirp_configs;
2739 slirp_configs = config;
2740 config = NULL;
2742 q = p;
2743 while (1) {
2744 config = qemu_malloc(sizeof(*config));
2745 if (!get_next_param_value(config->str, sizeof(config->str),
2746 "guestfwd", &q)) {
2747 break;
2749 config->flags = 0;
2750 config->next = slirp_configs;
2751 slirp_configs = config;
2752 config = NULL;
2754 qemu_free(config);
2755 vlan->nb_host_devs++;
2756 ret = net_slirp_init(mon, vlan, device, name, restricted, vnet, vhost,
2757 vhostname, tftp_export, bootfile, vdhcp_start,
2758 vnamesrv, smb_export, vsmbsrv);
2759 qemu_free(vnet);
2760 qemu_free(vhost);
2761 qemu_free(vhostname);
2762 qemu_free(tftp_export);
2763 qemu_free(bootfile);
2764 qemu_free(vdhcp_start);
2765 qemu_free(vnamesrv);
2766 qemu_free(smb_export);
2767 qemu_free(vsmbsrv);
2768 } else if (!strcmp(device, "channel")) {
2769 if (TAILQ_EMPTY(&slirp_stacks)) {
2770 struct slirp_config_str *config;
2772 config = qemu_malloc(sizeof(*config));
2773 pstrcpy(config->str, sizeof(config->str), p);
2774 config->flags = SLIRP_CFG_LEGACY;
2775 config->next = slirp_configs;
2776 slirp_configs = config;
2777 } else {
2778 slirp_guestfwd(TAILQ_FIRST(&slirp_stacks), mon, p, 1);
2780 ret = 0;
2781 } else
2782 #endif
2783 #ifdef _WIN32
2784 if (!strcmp(device, "tap")) {
2785 static const char * const tap_params[] = {
2786 "vlan", "name", "ifname", NULL
2788 char ifname[64];
2790 if (check_params(buf, sizeof(buf), tap_params, p) < 0) {
2791 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2792 ret = -1;
2793 goto out;
2795 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2796 config_error(mon, "tap: no interface name\n");
2797 ret = -1;
2798 goto out;
2800 vlan->nb_host_devs++;
2801 ret = tap_win32_init(vlan, device, name, ifname);
2802 } else
2803 #elif defined (_AIX)
2804 #else
2805 if (!strcmp(device, "tap")) {
2806 char ifname[64], chkbuf[64];
2807 char setup_script[1024], down_script[1024];
2808 TAPState *s;
2809 int fd;
2810 vlan->nb_host_devs++;
2811 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2812 static const char * const fd_params[] = {
2813 "vlan", "name", "fd", "sndbuf", NULL
2815 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2816 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2817 ret = -1;
2818 goto out;
2820 fd = strtol(buf, NULL, 0);
2821 fcntl(fd, F_SETFL, O_NONBLOCK);
2822 s = net_tap_fd_init(vlan, device, name, fd, tap_probe_vnet_hdr(fd));
2823 } else {
2824 static const char * const tap_params[] = {
2825 "vlan", "name", "ifname", "script", "downscript", "sndbuf", NULL
2827 if (check_params(chkbuf, sizeof(chkbuf), tap_params, p) < 0) {
2828 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2829 ret = -1;
2830 goto out;
2832 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2833 ifname[0] = '\0';
2835 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2836 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2838 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2839 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2841 s = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
2843 if (s != NULL) {
2844 const char *sndbuf_str = NULL;
2845 if (get_param_value(buf, sizeof(buf), "sndbuf", p)) {
2846 sndbuf_str = buf;
2848 tap_set_sndbuf(s, sndbuf_str, mon);
2849 ret = 0;
2850 } else {
2851 ret = -1;
2853 } else
2854 #endif
2855 if (!strcmp(device, "socket")) {
2856 char chkbuf[64];
2857 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2858 static const char * const fd_params[] = {
2859 "vlan", "name", "fd", NULL
2861 int fd;
2862 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2863 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2864 ret = -1;
2865 goto out;
2867 fd = strtol(buf, NULL, 0);
2868 ret = -1;
2869 if (net_socket_fd_init(vlan, device, name, fd, 1))
2870 ret = 0;
2871 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
2872 static const char * const listen_params[] = {
2873 "vlan", "name", "listen", NULL
2875 if (check_params(chkbuf, sizeof(chkbuf), listen_params, p) < 0) {
2876 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2877 ret = -1;
2878 goto out;
2880 ret = net_socket_listen_init(vlan, device, name, buf);
2881 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
2882 static const char * const connect_params[] = {
2883 "vlan", "name", "connect", NULL
2885 if (check_params(chkbuf, sizeof(chkbuf), connect_params, p) < 0) {
2886 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2887 ret = -1;
2888 goto out;
2890 ret = net_socket_connect_init(vlan, device, name, buf);
2891 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
2892 static const char * const mcast_params[] = {
2893 "vlan", "name", "mcast", NULL
2895 if (check_params(chkbuf, sizeof(chkbuf), mcast_params, p) < 0) {
2896 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2897 ret = -1;
2898 goto out;
2900 ret = net_socket_mcast_init(vlan, device, name, buf);
2901 } else {
2902 config_error(mon, "Unknown socket options: %s\n", p);
2903 ret = -1;
2904 goto out;
2906 vlan->nb_host_devs++;
2907 } else
2908 #ifdef CONFIG_VDE
2909 if (!strcmp(device, "vde")) {
2910 static const char * const vde_params[] = {
2911 "vlan", "name", "sock", "port", "group", "mode", NULL
2913 char vde_sock[1024], vde_group[512];
2914 int vde_port, vde_mode;
2916 if (check_params(buf, sizeof(buf), vde_params, p) < 0) {
2917 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2918 ret = -1;
2919 goto out;
2921 vlan->nb_host_devs++;
2922 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2923 vde_sock[0] = '\0';
2925 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2926 vde_port = strtol(buf, NULL, 10);
2927 } else {
2928 vde_port = 0;
2930 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2931 vde_group[0] = '\0';
2933 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2934 vde_mode = strtol(buf, NULL, 8);
2935 } else {
2936 vde_mode = 0700;
2938 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
2939 } else
2940 #endif
2941 if (!strcmp(device, "dump")) {
2942 int len = 65536;
2944 if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2945 len = strtol(buf, NULL, 0);
2947 if (!get_param_value(buf, sizeof(buf), "file", p)) {
2948 snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2950 ret = net_dump_init(mon, vlan, device, name, buf, len);
2951 } else {
2952 config_error(mon, "Unknown network device: %s\n", device);
2953 ret = -1;
2954 goto out;
2956 if (ret < 0) {
2957 config_error(mon, "Could not initialize device '%s'\n", device);
2959 out:
2960 qemu_free(name);
2961 return ret;
2964 void net_client_uninit(NICInfo *nd)
2966 nd->vlan->nb_guest_devs--;
2967 nb_nics--;
2968 nd->used = 0;
2969 free((void *)nd->model);
2972 static int net_host_check_device(const char *device)
2974 int i;
2975 const char *valid_param_list[] = { "tap", "socket", "dump"
2976 #ifdef CONFIG_SLIRP
2977 ,"user"
2978 #endif
2979 #ifdef CONFIG_VDE
2980 ,"vde"
2981 #endif
2983 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2984 if (!strncmp(valid_param_list[i], device,
2985 strlen(valid_param_list[i])))
2986 return 1;
2989 return 0;
2992 void net_host_device_add(Monitor *mon, const char *device, const char *opts)
2994 if (!net_host_check_device(device)) {
2995 monitor_printf(mon, "invalid host network device %s\n", device);
2996 return;
2998 if (net_client_init(mon, device, opts ? opts : "") < 0) {
2999 monitor_printf(mon, "adding host network device %s failed\n", device);
3003 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
3005 VLANClientState *vc;
3007 vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
3008 if (!vc) {
3009 return;
3011 if (!net_host_check_device(vc->model)) {
3012 monitor_printf(mon, "invalid host network device %s\n", device);
3013 return;
3015 qemu_del_vlan_client(vc);
3018 int net_client_parse(const char *str)
3020 const char *p;
3021 char *q;
3022 char device[64];
3024 p = str;
3025 q = device;
3026 while (*p != '\0' && *p != ',') {
3027 if ((q - device) < sizeof(device) - 1)
3028 *q++ = *p;
3029 p++;
3031 *q = '\0';
3032 if (*p == ',')
3033 p++;
3035 return net_client_init(NULL, device, p);
3038 void net_set_boot_mask(int net_boot_mask)
3040 int i;
3042 /* Only the first four NICs may be bootable */
3043 net_boot_mask = net_boot_mask & 0xF;
3045 for (i = 0; i < nb_nics; i++) {
3046 if (net_boot_mask & (1 << i)) {
3047 nd_table[i].bootable = 1;
3048 net_boot_mask &= ~(1 << i);
3052 if (net_boot_mask) {
3053 fprintf(stderr, "Cannot boot from non-existent NIC\n");
3054 exit(1);
3058 void do_info_network(Monitor *mon)
3060 VLANState *vlan;
3061 VLANClientState *vc;
3063 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
3064 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
3065 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
3066 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
3070 int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
3072 VLANState *vlan;
3073 VLANClientState *vc = NULL;
3075 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
3076 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
3077 if (strcmp(vc->name, name) == 0)
3078 goto done;
3079 done:
3081 if (!vc) {
3082 monitor_printf(mon, "could not find network device '%s'", name);
3083 return 0;
3086 if (strcmp(up_or_down, "up") == 0)
3087 vc->link_down = 0;
3088 else if (strcmp(up_or_down, "down") == 0)
3089 vc->link_down = 1;
3090 else
3091 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
3092 "valid\n", up_or_down);
3094 if (vc->link_status_changed)
3095 vc->link_status_changed(vc);
3097 return 1;
3100 void net_cleanup(void)
3102 VLANState *vlan;
3104 /* close network clients */
3105 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
3106 VLANClientState *vc = vlan->first_client;
3108 while (vc) {
3109 VLANClientState *next = vc->next;
3111 qemu_del_vlan_client(vc);
3113 vc = next;
3118 void net_client_check(void)
3120 VLANState *vlan;
3122 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
3123 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
3124 continue;
3125 if (vlan->nb_guest_devs == 0)
3126 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
3127 if (vlan->nb_host_devs == 0)
3128 fprintf(stderr,
3129 "Warning: vlan %d is not connected to host network\n",
3130 vlan->id);