]> git.proxmox.com Git - qemu.git/blob - net.c
net: add a vnet_hdr=on|off parameter
[qemu.git] / net.c
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 */
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
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
34
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 "tap-linux.h"
50 #endif
51 #include <arpa/inet.h>
52 #include <dirent.h>
53 #include <netdb.h>
54 #include <sys/select.h>
55 #ifdef CONFIG_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>
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
96 #if defined(__OpenBSD__)
97 #include <util.h>
98 #endif
99
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
102 #endif
103
104 #include "qemu-common.h"
105 #include "net.h"
106 #include "monitor.h"
107 #include "sysemu.h"
108 #include "qemu-timer.h"
109 #include "qemu-char.h"
110 #include "audio/audio.h"
111 #include "qemu_socket.h"
112 #include "qemu-log.h"
113 #include "qemu-config.h"
114
115 #include "slirp/libslirp.h"
116
117 static QTAILQ_HEAD(, VLANState) vlans;
118 static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
119
120 /***********************************************************/
121 /* network device redirectors */
122
123 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
124 static void hex_dump(FILE *f, const uint8_t *buf, int size)
125 {
126 int len, i, j, c;
127
128 for(i=0;i<size;i+=16) {
129 len = size - i;
130 if (len > 16)
131 len = 16;
132 fprintf(f, "%08x ", i);
133 for(j=0;j<16;j++) {
134 if (j < len)
135 fprintf(f, " %02x", buf[i+j]);
136 else
137 fprintf(f, " ");
138 }
139 fprintf(f, " ");
140 for(j=0;j<len;j++) {
141 c = buf[i+j];
142 if (c < ' ' || c > '~')
143 c = '.';
144 fprintf(f, "%c", c);
145 }
146 fprintf(f, "\n");
147 }
148 }
149 #endif
150
151 static int parse_macaddr(uint8_t *macaddr, const char *p)
152 {
153 int i;
154 char *last_char;
155 long int offset;
156
157 errno = 0;
158 offset = strtol(p, &last_char, 0);
159 if (0 == errno && '\0' == *last_char &&
160 offset >= 0 && offset <= 0xFFFFFF) {
161 macaddr[3] = (offset & 0xFF0000) >> 16;
162 macaddr[4] = (offset & 0xFF00) >> 8;
163 macaddr[5] = offset & 0xFF;
164 return 0;
165 } else {
166 for(i = 0; i < 6; i++) {
167 macaddr[i] = strtol(p, (char **)&p, 16);
168 if (i == 5) {
169 if (*p != '\0')
170 return -1;
171 } else {
172 if (*p != ':' && *p != '-')
173 return -1;
174 p++;
175 }
176 }
177 return 0;
178 }
179
180 return -1;
181 }
182
183 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
184 {
185 const char *p, *p1;
186 int len;
187 p = *pp;
188 p1 = strchr(p, sep);
189 if (!p1)
190 return -1;
191 len = p1 - p;
192 p1++;
193 if (buf_size > 0) {
194 if (len > buf_size - 1)
195 len = buf_size - 1;
196 memcpy(buf, p, len);
197 buf[len] = '\0';
198 }
199 *pp = p1;
200 return 0;
201 }
202
203 int parse_host_src_port(struct sockaddr_in *haddr,
204 struct sockaddr_in *saddr,
205 const char *input_str)
206 {
207 char *str = strdup(input_str);
208 char *host_str = str;
209 char *src_str;
210 const char *src_str2;
211 char *ptr;
212
213 /*
214 * Chop off any extra arguments at the end of the string which
215 * would start with a comma, then fill in the src port information
216 * if it was provided else use the "any address" and "any port".
217 */
218 if ((ptr = strchr(str,',')))
219 *ptr = '\0';
220
221 if ((src_str = strchr(input_str,'@'))) {
222 *src_str = '\0';
223 src_str++;
224 }
225
226 if (parse_host_port(haddr, host_str) < 0)
227 goto fail;
228
229 src_str2 = src_str;
230 if (!src_str || *src_str == '\0')
231 src_str2 = ":0";
232
233 if (parse_host_port(saddr, src_str2) < 0)
234 goto fail;
235
236 free(str);
237 return(0);
238
239 fail:
240 free(str);
241 return -1;
242 }
243
244 int parse_host_port(struct sockaddr_in *saddr, const char *str)
245 {
246 char buf[512];
247 struct hostent *he;
248 const char *p, *r;
249 int port;
250
251 p = str;
252 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
253 return -1;
254 saddr->sin_family = AF_INET;
255 if (buf[0] == '\0') {
256 saddr->sin_addr.s_addr = 0;
257 } else {
258 if (qemu_isdigit(buf[0])) {
259 if (!inet_aton(buf, &saddr->sin_addr))
260 return -1;
261 } else {
262 if ((he = gethostbyname(buf)) == NULL)
263 return - 1;
264 saddr->sin_addr = *(struct in_addr *)he->h_addr;
265 }
266 }
267 port = strtol(p, (char **)&r, 0);
268 if (r == p)
269 return -1;
270 saddr->sin_port = htons(port);
271 return 0;
272 }
273
274 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
275 {
276 snprintf(vc->info_str, sizeof(vc->info_str),
277 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
278 vc->model,
279 macaddr[0], macaddr[1], macaddr[2],
280 macaddr[3], macaddr[4], macaddr[5]);
281 }
282
283 void qemu_macaddr_default_if_unset(MACAddr *macaddr)
284 {
285 static int index = 0;
286 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
287
288 if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
289 return;
290 macaddr->a[0] = 0x52;
291 macaddr->a[1] = 0x54;
292 macaddr->a[2] = 0x00;
293 macaddr->a[3] = 0x12;
294 macaddr->a[4] = 0x34;
295 macaddr->a[5] = 0x56 + index++;
296 }
297
298 static char *assign_name(VLANClientState *vc1, const char *model)
299 {
300 VLANState *vlan;
301 char buf[256];
302 int id = 0;
303
304 QTAILQ_FOREACH(vlan, &vlans, next) {
305 VLANClientState *vc;
306
307 QTAILQ_FOREACH(vc, &vlan->clients, next) {
308 if (vc != vc1 && strcmp(vc->model, model) == 0) {
309 id++;
310 }
311 }
312 }
313
314 snprintf(buf, sizeof(buf), "%s.%d", model, id);
315
316 return qemu_strdup(buf);
317 }
318
319 static ssize_t qemu_deliver_packet(VLANClientState *sender,
320 const uint8_t *data,
321 size_t size,
322 void *opaque);
323 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
324 const struct iovec *iov,
325 int iovcnt,
326 void *opaque);
327
328 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
329 VLANClientState *peer,
330 const char *model,
331 const char *name,
332 NetCanReceive *can_receive,
333 NetReceive *receive,
334 NetReceiveIOV *receive_iov,
335 NetCleanup *cleanup,
336 void *opaque)
337 {
338 VLANClientState *vc;
339
340 vc = qemu_mallocz(sizeof(VLANClientState));
341
342 vc->model = qemu_strdup(model);
343 if (name)
344 vc->name = qemu_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
353 if (vlan) {
354 assert(!peer);
355 vc->vlan = vlan;
356 QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
357 } else {
358 if (peer) {
359 vc->peer = peer;
360 peer->peer = vc;
361 }
362 QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
363
364 vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
365 qemu_deliver_packet_iov,
366 vc);
367 }
368
369 return vc;
370 }
371
372 void qemu_del_vlan_client(VLANClientState *vc)
373 {
374 if (vc->vlan) {
375 QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
376 } else {
377 if (vc->send_queue) {
378 qemu_del_net_queue(vc->send_queue);
379 }
380 QTAILQ_REMOVE(&non_vlan_clients, vc, next);
381 if (vc->peer) {
382 vc->peer->peer = NULL;
383 }
384 }
385
386 if (vc->cleanup) {
387 vc->cleanup(vc);
388 }
389
390 qemu_free(vc->name);
391 qemu_free(vc->model);
392 qemu_free(vc);
393 }
394
395 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
396 {
397 VLANClientState *vc;
398
399 QTAILQ_FOREACH(vc, &vlan->clients, next) {
400 if (vc->opaque == opaque) {
401 return vc;
402 }
403 }
404
405 return NULL;
406 }
407
408 static VLANClientState *
409 qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
410 const char *client_str)
411 {
412 VLANState *vlan;
413 VLANClientState *vc;
414
415 vlan = qemu_find_vlan(vlan_id, 0);
416 if (!vlan) {
417 monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
418 return NULL;
419 }
420
421 QTAILQ_FOREACH(vc, &vlan->clients, next) {
422 if (!strcmp(vc->name, client_str)) {
423 break;
424 }
425 }
426 if (!vc) {
427 monitor_printf(mon, "can't find device %s on VLAN %d\n",
428 client_str, vlan_id);
429 }
430
431 return vc;
432 }
433
434 int qemu_can_send_packet(VLANClientState *sender)
435 {
436 VLANState *vlan = sender->vlan;
437 VLANClientState *vc;
438
439 if (sender->peer) {
440 if (!sender->peer->can_receive ||
441 sender->peer->can_receive(sender->peer)) {
442 return 1;
443 } else {
444 return 0;
445 }
446 }
447
448 if (!sender->vlan) {
449 return 1;
450 }
451
452 QTAILQ_FOREACH(vc, &vlan->clients, next) {
453 if (vc == sender) {
454 continue;
455 }
456
457 /* no can_receive() handler, they can always receive */
458 if (!vc->can_receive || vc->can_receive(vc)) {
459 return 1;
460 }
461 }
462 return 0;
463 }
464
465 static ssize_t qemu_deliver_packet(VLANClientState *sender,
466 const uint8_t *data,
467 size_t size,
468 void *opaque)
469 {
470 VLANClientState *vc = opaque;
471
472 if (vc->link_down) {
473 return size;
474 }
475
476 return vc->receive(vc, data, size);
477 }
478
479 static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
480 const uint8_t *buf,
481 size_t size,
482 void *opaque)
483 {
484 VLANState *vlan = opaque;
485 VLANClientState *vc;
486 int ret = -1;
487
488 QTAILQ_FOREACH(vc, &vlan->clients, next) {
489 ssize_t len;
490
491 if (vc == sender) {
492 continue;
493 }
494
495 if (vc->link_down) {
496 ret = size;
497 continue;
498 }
499
500 len = vc->receive(vc, buf, size);
501
502 ret = (ret >= 0) ? ret : len;
503 }
504
505 return ret;
506 }
507
508 void qemu_purge_queued_packets(VLANClientState *vc)
509 {
510 NetQueue *queue;
511
512 if (!vc->peer && !vc->vlan) {
513 return;
514 }
515
516 if (vc->peer) {
517 queue = vc->peer->send_queue;
518 } else {
519 queue = vc->vlan->send_queue;
520 }
521
522 qemu_net_queue_purge(queue, vc);
523 }
524
525 void qemu_flush_queued_packets(VLANClientState *vc)
526 {
527 NetQueue *queue;
528
529 if (vc->vlan) {
530 queue = vc->vlan->send_queue;
531 } else {
532 queue = vc->send_queue;
533 }
534
535 qemu_net_queue_flush(queue);
536 }
537
538 ssize_t qemu_send_packet_async(VLANClientState *sender,
539 const uint8_t *buf, int size,
540 NetPacketSent *sent_cb)
541 {
542 NetQueue *queue;
543
544 #ifdef DEBUG_NET
545 printf("qemu_send_packet_async:\n");
546 hex_dump(stdout, buf, size);
547 #endif
548
549 if (sender->link_down || (!sender->peer && !sender->vlan)) {
550 return size;
551 }
552
553 if (sender->peer) {
554 queue = sender->peer->send_queue;
555 } else {
556 queue = sender->vlan->send_queue;
557 }
558
559 return qemu_net_queue_send(queue, sender, buf, size, sent_cb);
560 }
561
562 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
563 {
564 qemu_send_packet_async(vc, buf, size, NULL);
565 }
566
567 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
568 int iovcnt)
569 {
570 uint8_t buffer[4096];
571 size_t offset = 0;
572 int i;
573
574 for (i = 0; i < iovcnt; i++) {
575 size_t len;
576
577 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
578 memcpy(buffer + offset, iov[i].iov_base, len);
579 offset += len;
580 }
581
582 return vc->receive(vc, buffer, offset);
583 }
584
585 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
586 {
587 size_t offset = 0;
588 int i;
589
590 for (i = 0; i < iovcnt; i++)
591 offset += iov[i].iov_len;
592 return offset;
593 }
594
595 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
596 const struct iovec *iov,
597 int iovcnt,
598 void *opaque)
599 {
600 VLANClientState *vc = opaque;
601
602 if (vc->link_down) {
603 return calc_iov_length(iov, iovcnt);
604 }
605
606 if (vc->receive_iov) {
607 return vc->receive_iov(vc, iov, iovcnt);
608 } else {
609 return vc_sendv_compat(vc, iov, iovcnt);
610 }
611 }
612
613 static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
614 const struct iovec *iov,
615 int iovcnt,
616 void *opaque)
617 {
618 VLANState *vlan = opaque;
619 VLANClientState *vc;
620 ssize_t ret = -1;
621
622 QTAILQ_FOREACH(vc, &vlan->clients, next) {
623 ssize_t len;
624
625 if (vc == sender) {
626 continue;
627 }
628
629 if (vc->link_down) {
630 ret = calc_iov_length(iov, iovcnt);
631 continue;
632 }
633
634 if (vc->receive_iov) {
635 len = vc->receive_iov(vc, iov, iovcnt);
636 } else {
637 len = vc_sendv_compat(vc, iov, iovcnt);
638 }
639
640 ret = (ret >= 0) ? ret : len;
641 }
642
643 return ret;
644 }
645
646 ssize_t qemu_sendv_packet_async(VLANClientState *sender,
647 const struct iovec *iov, int iovcnt,
648 NetPacketSent *sent_cb)
649 {
650 NetQueue *queue;
651
652 if (sender->link_down || (!sender->peer && !sender->vlan)) {
653 return calc_iov_length(iov, iovcnt);
654 }
655
656 if (sender->peer) {
657 queue = sender->peer->send_queue;
658 } else {
659 queue = sender->vlan->send_queue;
660 }
661
662 return qemu_net_queue_send_iov(queue, sender, iov, iovcnt, sent_cb);
663 }
664
665 ssize_t
666 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
667 {
668 return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
669 }
670
671 #if defined(CONFIG_SLIRP)
672
673 /* slirp network adapter */
674
675 #define SLIRP_CFG_HOSTFWD 1
676 #define SLIRP_CFG_LEGACY 2
677
678 struct slirp_config_str {
679 struct slirp_config_str *next;
680 int flags;
681 char str[1024];
682 int legacy_format;
683 };
684
685 typedef struct SlirpState {
686 QTAILQ_ENTRY(SlirpState) entry;
687 VLANClientState *vc;
688 Slirp *slirp;
689 #ifndef _WIN32
690 char smb_dir[128];
691 #endif
692 } SlirpState;
693
694 static struct slirp_config_str *slirp_configs;
695 const char *legacy_tftp_prefix;
696 const char *legacy_bootp_filename;
697 static QTAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks =
698 QTAILQ_HEAD_INITIALIZER(slirp_stacks);
699
700 static int slirp_hostfwd(SlirpState *s, const char *redir_str,
701 int legacy_format);
702 static int slirp_guestfwd(SlirpState *s, const char *config_str,
703 int legacy_format);
704
705 #ifndef _WIN32
706 static const char *legacy_smb_export;
707
708 static int slirp_smb(SlirpState *s, const char *exported_dir,
709 struct in_addr vserver_addr);
710 static void slirp_smb_cleanup(SlirpState *s);
711 #else
712 static inline void slirp_smb_cleanup(SlirpState *s) { }
713 #endif
714
715 int slirp_can_output(void *opaque)
716 {
717 SlirpState *s = opaque;
718
719 return qemu_can_send_packet(s->vc);
720 }
721
722 void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
723 {
724 SlirpState *s = opaque;
725
726 #ifdef DEBUG_SLIRP
727 printf("slirp output:\n");
728 hex_dump(stdout, pkt, pkt_len);
729 #endif
730 qemu_send_packet(s->vc, pkt, pkt_len);
731 }
732
733 static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
734 {
735 SlirpState *s = vc->opaque;
736
737 #ifdef DEBUG_SLIRP
738 printf("slirp input:\n");
739 hex_dump(stdout, buf, size);
740 #endif
741 slirp_input(s->slirp, buf, size);
742 return size;
743 }
744
745 static void net_slirp_cleanup(VLANClientState *vc)
746 {
747 SlirpState *s = vc->opaque;
748
749 slirp_cleanup(s->slirp);
750 slirp_smb_cleanup(s);
751 QTAILQ_REMOVE(&slirp_stacks, s, entry);
752 qemu_free(s);
753 }
754
755 static int net_slirp_init(VLANState *vlan, const char *model,
756 const char *name, int restricted,
757 const char *vnetwork, const char *vhost,
758 const char *vhostname, const char *tftp_export,
759 const char *bootfile, const char *vdhcp_start,
760 const char *vnameserver, const char *smb_export,
761 const char *vsmbserver)
762 {
763 /* default settings according to historic slirp */
764 struct in_addr net = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
765 struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
766 struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
767 struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
768 struct in_addr dns = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
769 #ifndef _WIN32
770 struct in_addr smbsrv = { .s_addr = 0 };
771 #endif
772 SlirpState *s;
773 char buf[20];
774 uint32_t addr;
775 int shift;
776 char *end;
777 struct slirp_config_str *config;
778
779 if (!tftp_export) {
780 tftp_export = legacy_tftp_prefix;
781 }
782 if (!bootfile) {
783 bootfile = legacy_bootp_filename;
784 }
785
786 if (vnetwork) {
787 if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) {
788 if (!inet_aton(vnetwork, &net)) {
789 return -1;
790 }
791 addr = ntohl(net.s_addr);
792 if (!(addr & 0x80000000)) {
793 mask.s_addr = htonl(0xff000000); /* class A */
794 } else if ((addr & 0xfff00000) == 0xac100000) {
795 mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */
796 } else if ((addr & 0xc0000000) == 0x80000000) {
797 mask.s_addr = htonl(0xffff0000); /* class B */
798 } else if ((addr & 0xffff0000) == 0xc0a80000) {
799 mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */
800 } else if ((addr & 0xffff0000) == 0xc6120000) {
801 mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */
802 } else if ((addr & 0xe0000000) == 0xe0000000) {
803 mask.s_addr = htonl(0xffffff00); /* class C */
804 } else {
805 mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */
806 }
807 } else {
808 if (!inet_aton(buf, &net)) {
809 return -1;
810 }
811 shift = strtol(vnetwork, &end, 10);
812 if (*end != '\0') {
813 if (!inet_aton(vnetwork, &mask)) {
814 return -1;
815 }
816 } else if (shift < 4 || shift > 32) {
817 return -1;
818 } else {
819 mask.s_addr = htonl(0xffffffff << (32 - shift));
820 }
821 }
822 net.s_addr &= mask.s_addr;
823 host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr);
824 dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr);
825 dns.s_addr = net.s_addr | (htonl(0x0203) & ~mask.s_addr);
826 }
827
828 if (vhost && !inet_aton(vhost, &host)) {
829 return -1;
830 }
831 if ((host.s_addr & mask.s_addr) != net.s_addr) {
832 return -1;
833 }
834
835 if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) {
836 return -1;
837 }
838 if ((dhcp.s_addr & mask.s_addr) != net.s_addr ||
839 dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) {
840 return -1;
841 }
842
843 if (vnameserver && !inet_aton(vnameserver, &dns)) {
844 return -1;
845 }
846 if ((dns.s_addr & mask.s_addr) != net.s_addr ||
847 dns.s_addr == host.s_addr) {
848 return -1;
849 }
850
851 #ifndef _WIN32
852 if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) {
853 return -1;
854 }
855 #endif
856
857 s = qemu_mallocz(sizeof(SlirpState));
858 s->slirp = slirp_init(restricted, net, mask, host, vhostname,
859 tftp_export, bootfile, dhcp, dns, s);
860 QTAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
861
862 for (config = slirp_configs; config; config = config->next) {
863 if (config->flags & SLIRP_CFG_HOSTFWD) {
864 if (slirp_hostfwd(s, config->str,
865 config->flags & SLIRP_CFG_LEGACY) < 0)
866 return -1;
867 } else {
868 if (slirp_guestfwd(s, config->str,
869 config->flags & SLIRP_CFG_LEGACY) < 0)
870 return -1;
871 }
872 }
873 #ifndef _WIN32
874 if (!smb_export) {
875 smb_export = legacy_smb_export;
876 }
877 if (smb_export) {
878 if (slirp_smb(s, smb_export, smbsrv) < 0)
879 return -1;
880 }
881 #endif
882
883 s->vc = qemu_new_vlan_client(vlan, NULL, model, name, NULL,
884 slirp_receive, NULL,
885 net_slirp_cleanup, s);
886 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
887 "net=%s, restricted=%c", inet_ntoa(net), restricted ? 'y' : 'n');
888 return 0;
889 }
890
891 static SlirpState *slirp_lookup(Monitor *mon, const char *vlan,
892 const char *stack)
893 {
894 VLANClientState *vc;
895
896 if (vlan) {
897 vc = qemu_find_vlan_client_by_name(mon, strtol(vlan, NULL, 0), stack);
898 if (!vc) {
899 return NULL;
900 }
901 if (strcmp(vc->model, "user")) {
902 monitor_printf(mon, "invalid device specified\n");
903 return NULL;
904 }
905 return vc->opaque;
906 } else {
907 if (QTAILQ_EMPTY(&slirp_stacks)) {
908 monitor_printf(mon, "user mode network stack not in use\n");
909 return NULL;
910 }
911 return QTAILQ_FIRST(&slirp_stacks);
912 }
913 }
914
915 void net_slirp_hostfwd_remove(Monitor *mon, const QDict *qdict)
916 {
917 struct in_addr host_addr = { .s_addr = INADDR_ANY };
918 int host_port;
919 char buf[256] = "";
920 const char *src_str, *p;
921 SlirpState *s;
922 int is_udp = 0;
923 int err;
924 const char *arg1 = qdict_get_str(qdict, "arg1");
925 const char *arg2 = qdict_get_try_str(qdict, "arg2");
926 const char *arg3 = qdict_get_try_str(qdict, "arg3");
927
928 if (arg2) {
929 s = slirp_lookup(mon, arg1, arg2);
930 src_str = arg3;
931 } else {
932 s = slirp_lookup(mon, NULL, NULL);
933 src_str = arg1;
934 }
935 if (!s) {
936 return;
937 }
938
939 if (!src_str || !src_str[0])
940 goto fail_syntax;
941
942 p = src_str;
943 get_str_sep(buf, sizeof(buf), &p, ':');
944
945 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
946 is_udp = 0;
947 } else if (!strcmp(buf, "udp")) {
948 is_udp = 1;
949 } else {
950 goto fail_syntax;
951 }
952
953 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
954 goto fail_syntax;
955 }
956 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
957 goto fail_syntax;
958 }
959
960 host_port = atoi(p);
961
962 err = slirp_remove_hostfwd(QTAILQ_FIRST(&slirp_stacks)->slirp, is_udp,
963 host_addr, host_port);
964
965 monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
966 err ? "removed" : "not found");
967 return;
968
969 fail_syntax:
970 monitor_printf(mon, "invalid format\n");
971 }
972
973 static int slirp_hostfwd(SlirpState *s, const char *redir_str,
974 int legacy_format)
975 {
976 struct in_addr host_addr = { .s_addr = INADDR_ANY };
977 struct in_addr guest_addr = { .s_addr = 0 };
978 int host_port, guest_port;
979 const char *p;
980 char buf[256];
981 int is_udp;
982 char *end;
983
984 p = redir_str;
985 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
986 goto fail_syntax;
987 }
988 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
989 is_udp = 0;
990 } else if (!strcmp(buf, "udp")) {
991 is_udp = 1;
992 } else {
993 goto fail_syntax;
994 }
995
996 if (!legacy_format) {
997 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
998 goto fail_syntax;
999 }
1000 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
1001 goto fail_syntax;
1002 }
1003 }
1004
1005 if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) {
1006 goto fail_syntax;
1007 }
1008 host_port = strtol(buf, &end, 0);
1009 if (*end != '\0' || host_port < 1 || host_port > 65535) {
1010 goto fail_syntax;
1011 }
1012
1013 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1014 goto fail_syntax;
1015 }
1016 if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
1017 goto fail_syntax;
1018 }
1019
1020 guest_port = strtol(p, &end, 0);
1021 if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
1022 goto fail_syntax;
1023 }
1024
1025 if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
1026 guest_port) < 0) {
1027 qemu_error("could not set up host forwarding rule '%s'\n",
1028 redir_str);
1029 return -1;
1030 }
1031 return 0;
1032
1033 fail_syntax:
1034 qemu_error("invalid host forwarding rule '%s'\n", redir_str);
1035 return -1;
1036 }
1037
1038 void net_slirp_hostfwd_add(Monitor *mon, const QDict *qdict)
1039 {
1040 const char *redir_str;
1041 SlirpState *s;
1042 const char *arg1 = qdict_get_str(qdict, "arg1");
1043 const char *arg2 = qdict_get_try_str(qdict, "arg2");
1044 const char *arg3 = qdict_get_try_str(qdict, "arg3");
1045
1046 if (arg2) {
1047 s = slirp_lookup(mon, arg1, arg2);
1048 redir_str = arg3;
1049 } else {
1050 s = slirp_lookup(mon, NULL, NULL);
1051 redir_str = arg1;
1052 }
1053 if (s) {
1054 slirp_hostfwd(s, redir_str, 0);
1055 }
1056
1057 }
1058
1059 int net_slirp_redir(const char *redir_str)
1060 {
1061 struct slirp_config_str *config;
1062
1063 if (QTAILQ_EMPTY(&slirp_stacks)) {
1064 config = qemu_malloc(sizeof(*config));
1065 pstrcpy(config->str, sizeof(config->str), redir_str);
1066 config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY;
1067 config->next = slirp_configs;
1068 slirp_configs = config;
1069 return 0;
1070 }
1071
1072 return slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks), redir_str, 1);
1073 }
1074
1075 #ifndef _WIN32
1076
1077 /* automatic user mode samba server configuration */
1078 static void slirp_smb_cleanup(SlirpState *s)
1079 {
1080 char cmd[128];
1081
1082 if (s->smb_dir[0] != '\0') {
1083 snprintf(cmd, sizeof(cmd), "rm -rf %s", s->smb_dir);
1084 system(cmd);
1085 s->smb_dir[0] = '\0';
1086 }
1087 }
1088
1089 static int slirp_smb(SlirpState* s, const char *exported_dir,
1090 struct in_addr vserver_addr)
1091 {
1092 static int instance;
1093 char smb_conf[128];
1094 char smb_cmdline[128];
1095 FILE *f;
1096
1097 snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
1098 (long)getpid(), instance++);
1099 if (mkdir(s->smb_dir, 0700) < 0) {
1100 qemu_error("could not create samba server dir '%s'\n", s->smb_dir);
1101 return -1;
1102 }
1103 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", s->smb_dir, "smb.conf");
1104
1105 f = fopen(smb_conf, "w");
1106 if (!f) {
1107 slirp_smb_cleanup(s);
1108 qemu_error("could not create samba server configuration file '%s'\n",
1109 smb_conf);
1110 return -1;
1111 }
1112 fprintf(f,
1113 "[global]\n"
1114 "private dir=%s\n"
1115 "smb ports=0\n"
1116 "socket address=127.0.0.1\n"
1117 "pid directory=%s\n"
1118 "lock directory=%s\n"
1119 "log file=%s/log.smbd\n"
1120 "smb passwd file=%s/smbpasswd\n"
1121 "security = share\n"
1122 "[qemu]\n"
1123 "path=%s\n"
1124 "read only=no\n"
1125 "guest ok=yes\n",
1126 s->smb_dir,
1127 s->smb_dir,
1128 s->smb_dir,
1129 s->smb_dir,
1130 s->smb_dir,
1131 exported_dir
1132 );
1133 fclose(f);
1134
1135 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
1136 SMBD_COMMAND, smb_conf);
1137
1138 if (slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 139) < 0) {
1139 slirp_smb_cleanup(s);
1140 qemu_error("conflicting/invalid smbserver address\n");
1141 return -1;
1142 }
1143 return 0;
1144 }
1145
1146 /* automatic user mode samba server configuration (legacy interface) */
1147 int net_slirp_smb(const char *exported_dir)
1148 {
1149 struct in_addr vserver_addr = { .s_addr = 0 };
1150
1151 if (legacy_smb_export) {
1152 fprintf(stderr, "-smb given twice\n");
1153 return -1;
1154 }
1155 legacy_smb_export = exported_dir;
1156 if (!QTAILQ_EMPTY(&slirp_stacks)) {
1157 return slirp_smb(QTAILQ_FIRST(&slirp_stacks), exported_dir,
1158 vserver_addr);
1159 }
1160 return 0;
1161 }
1162
1163 #endif /* !defined(_WIN32) */
1164
1165 struct GuestFwd {
1166 CharDriverState *hd;
1167 struct in_addr server;
1168 int port;
1169 Slirp *slirp;
1170 };
1171
1172 static int guestfwd_can_read(void *opaque)
1173 {
1174 struct GuestFwd *fwd = opaque;
1175 return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
1176 }
1177
1178 static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
1179 {
1180 struct GuestFwd *fwd = opaque;
1181 slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
1182 }
1183
1184 static int slirp_guestfwd(SlirpState *s, const char *config_str,
1185 int legacy_format)
1186 {
1187 struct in_addr server = { .s_addr = 0 };
1188 struct GuestFwd *fwd;
1189 const char *p;
1190 char buf[128];
1191 char *end;
1192 int port;
1193
1194 p = config_str;
1195 if (legacy_format) {
1196 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1197 goto fail_syntax;
1198 }
1199 } else {
1200 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1201 goto fail_syntax;
1202 }
1203 if (strcmp(buf, "tcp") && buf[0] != '\0') {
1204 goto fail_syntax;
1205 }
1206 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1207 goto fail_syntax;
1208 }
1209 if (buf[0] != '\0' && !inet_aton(buf, &server)) {
1210 goto fail_syntax;
1211 }
1212 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
1213 goto fail_syntax;
1214 }
1215 }
1216 port = strtol(buf, &end, 10);
1217 if (*end != '\0' || port < 1 || port > 65535) {
1218 goto fail_syntax;
1219 }
1220
1221 fwd = qemu_malloc(sizeof(struct GuestFwd));
1222 snprintf(buf, sizeof(buf), "guestfwd.tcp:%d", port);
1223 fwd->hd = qemu_chr_open(buf, p, NULL);
1224 if (!fwd->hd) {
1225 qemu_error("could not open guest forwarding device '%s'\n", buf);
1226 qemu_free(fwd);
1227 return -1;
1228 }
1229
1230 if (slirp_add_exec(s->slirp, 3, fwd->hd, &server, port) < 0) {
1231 qemu_error("conflicting/invalid host:port in guest forwarding "
1232 "rule '%s'\n", config_str);
1233 qemu_free(fwd);
1234 return -1;
1235 }
1236 fwd->server = server;
1237 fwd->port = port;
1238 fwd->slirp = s->slirp;
1239
1240 qemu_chr_add_handlers(fwd->hd, guestfwd_can_read, guestfwd_read,
1241 NULL, fwd);
1242 return 0;
1243
1244 fail_syntax:
1245 qemu_error("invalid guest forwarding rule '%s'\n", config_str);
1246 return -1;
1247 }
1248
1249 void do_info_usernet(Monitor *mon)
1250 {
1251 SlirpState *s;
1252
1253 QTAILQ_FOREACH(s, &slirp_stacks, entry) {
1254 monitor_printf(mon, "VLAN %d (%s):\n", s->vc->vlan->id, s->vc->name);
1255 slirp_connection_info(s->slirp, mon);
1256 }
1257 }
1258
1259 #endif /* CONFIG_SLIRP */
1260
1261 #if !defined(_WIN32)
1262
1263 /* Maximum GSO packet size (64k) plus plenty of room for
1264 * the ethernet and virtio_net headers
1265 */
1266 #define TAP_BUFSIZE (4096 + 65536)
1267
1268 typedef struct TAPState {
1269 VLANClientState *vc;
1270 int fd;
1271 char down_script[1024];
1272 char down_script_arg[128];
1273 uint8_t buf[TAP_BUFSIZE];
1274 unsigned int read_poll : 1;
1275 unsigned int write_poll : 1;
1276 unsigned int has_vnet_hdr : 1;
1277 } TAPState;
1278
1279 static int launch_script(const char *setup_script, const char *ifname, int fd);
1280
1281 static int tap_can_send(void *opaque);
1282 static void tap_send(void *opaque);
1283 static void tap_writable(void *opaque);
1284
1285 static void tap_update_fd_handler(TAPState *s)
1286 {
1287 qemu_set_fd_handler2(s->fd,
1288 s->read_poll ? tap_can_send : NULL,
1289 s->read_poll ? tap_send : NULL,
1290 s->write_poll ? tap_writable : NULL,
1291 s);
1292 }
1293
1294 static void tap_read_poll(TAPState *s, int enable)
1295 {
1296 s->read_poll = !!enable;
1297 tap_update_fd_handler(s);
1298 }
1299
1300 static void tap_write_poll(TAPState *s, int enable)
1301 {
1302 s->write_poll = !!enable;
1303 tap_update_fd_handler(s);
1304 }
1305
1306 static void tap_writable(void *opaque)
1307 {
1308 TAPState *s = opaque;
1309
1310 tap_write_poll(s, 0);
1311
1312 qemu_flush_queued_packets(s->vc);
1313 }
1314
1315 static ssize_t tap_write_packet(TAPState *s, const struct iovec *iov, int iovcnt)
1316 {
1317 ssize_t len;
1318
1319 do {
1320 len = writev(s->fd, iov, iovcnt);
1321 } while (len == -1 && errno == EINTR);
1322
1323 if (len == -1 && errno == EAGAIN) {
1324 tap_write_poll(s, 1);
1325 return 0;
1326 }
1327
1328 return len;
1329 }
1330
1331 static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
1332 int iovcnt)
1333 {
1334 TAPState *s = vc->opaque;
1335 const struct iovec *iovp = iov;
1336 struct iovec iov_copy[iovcnt + 1];
1337 struct virtio_net_hdr hdr = { 0, };
1338
1339 if (s->has_vnet_hdr) {
1340 iov_copy[0].iov_base = &hdr;
1341 iov_copy[0].iov_len = sizeof(hdr);
1342 memcpy(&iov_copy[1], iov, iovcnt * sizeof(*iov));
1343 iovp = iov_copy;
1344 iovcnt++;
1345 }
1346
1347 return tap_write_packet(s, iovp, iovcnt);
1348 }
1349
1350 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1351 {
1352 TAPState *s = vc->opaque;
1353 struct iovec iov[2];
1354 int iovcnt = 0;
1355 struct virtio_net_hdr hdr = { 0, };
1356
1357 if (s->has_vnet_hdr) {
1358 iov[iovcnt].iov_base = &hdr;
1359 iov[iovcnt].iov_len = sizeof(hdr);
1360 iovcnt++;
1361 }
1362
1363 iov[iovcnt].iov_base = (char *)buf;
1364 iov[iovcnt].iov_len = size;
1365 iovcnt++;
1366
1367 return tap_write_packet(s, iov, iovcnt);
1368 }
1369
1370 static int tap_can_send(void *opaque)
1371 {
1372 TAPState *s = opaque;
1373
1374 return qemu_can_send_packet(s->vc);
1375 }
1376
1377 #ifdef __sun__
1378 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1379 {
1380 struct strbuf sbuf;
1381 int f = 0;
1382
1383 sbuf.maxlen = maxlen;
1384 sbuf.buf = (char *)buf;
1385
1386 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
1387 }
1388 #else
1389 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1390 {
1391 return read(tapfd, buf, maxlen);
1392 }
1393 #endif
1394
1395 static void tap_send_completed(VLANClientState *vc, ssize_t len)
1396 {
1397 TAPState *s = vc->opaque;
1398 tap_read_poll(s, 1);
1399 }
1400
1401 static void tap_send(void *opaque)
1402 {
1403 TAPState *s = opaque;
1404 int size;
1405
1406 do {
1407 uint8_t *buf = s->buf;
1408
1409 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1410 if (size <= 0) {
1411 break;
1412 }
1413
1414 if (s->has_vnet_hdr) {
1415 buf += sizeof(struct virtio_net_hdr);
1416 size -= sizeof(struct virtio_net_hdr);
1417 }
1418
1419 size = qemu_send_packet_async(s->vc, buf, size, tap_send_completed);
1420 if (size == 0) {
1421 tap_read_poll(s, 0);
1422 }
1423 } while (size > 0);
1424 }
1425
1426 /* sndbuf should be set to a value lower than the tx queue
1427 * capacity of any destination network interface.
1428 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1429 * a good default, given a 1500 byte MTU.
1430 */
1431 #define TAP_DEFAULT_SNDBUF 1024*1024
1432
1433 static int tap_set_sndbuf(TAPState *s, QemuOpts *opts)
1434 {
1435 int sndbuf;
1436
1437 sndbuf = qemu_opt_get_size(opts, "sndbuf", TAP_DEFAULT_SNDBUF);
1438 if (!sndbuf) {
1439 sndbuf = INT_MAX;
1440 }
1441
1442 if (ioctl(s->fd, TUNSETSNDBUF, &sndbuf) == -1 && qemu_opt_get(opts, "sndbuf")) {
1443 qemu_error("TUNSETSNDBUF ioctl failed: %s\n", strerror(errno));
1444 return -1;
1445 }
1446 return 0;
1447 }
1448
1449 static int tap_probe_vnet_hdr(int fd)
1450 {
1451 struct ifreq ifr;
1452
1453 if (ioctl(fd, TUNGETIFF, &ifr) != 0) {
1454 qemu_error("TUNGETIFF ioctl() failed: %s\n", strerror(errno));
1455 return 0;
1456 }
1457
1458 return ifr.ifr_flags & IFF_VNET_HDR;
1459 }
1460
1461 static void tap_cleanup(VLANClientState *vc)
1462 {
1463 TAPState *s = vc->opaque;
1464
1465 qemu_purge_queued_packets(vc);
1466
1467 if (s->down_script[0])
1468 launch_script(s->down_script, s->down_script_arg, s->fd);
1469
1470 tap_read_poll(s, 0);
1471 tap_write_poll(s, 0);
1472 close(s->fd);
1473 qemu_free(s);
1474 }
1475
1476 /* fd support */
1477
1478 static TAPState *net_tap_fd_init(VLANState *vlan,
1479 const char *model,
1480 const char *name,
1481 int fd,
1482 int vnet_hdr)
1483 {
1484 TAPState *s;
1485
1486 s = qemu_mallocz(sizeof(TAPState));
1487 s->fd = fd;
1488 s->has_vnet_hdr = vnet_hdr != 0;
1489 s->vc = qemu_new_vlan_client(vlan, NULL, model, name, NULL,
1490 tap_receive, tap_receive_iov,
1491 tap_cleanup, s);
1492 tap_read_poll(s, 1);
1493 return s;
1494 }
1495
1496 #if defined (CONFIG_BSD) || defined (__FreeBSD_kernel__)
1497 static int tap_open(char *ifname, int ifname_size,
1498 int *vnet_hdr, int vnet_hdr_required)
1499 {
1500 int fd;
1501 char *dev;
1502 struct stat s;
1503
1504 TFR(fd = open("/dev/tap", O_RDWR));
1505 if (fd < 0) {
1506 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1507 return -1;
1508 }
1509
1510 fstat(fd, &s);
1511 dev = devname(s.st_rdev, S_IFCHR);
1512 pstrcpy(ifname, ifname_size, dev);
1513
1514 fcntl(fd, F_SETFL, O_NONBLOCK);
1515 return fd;
1516 }
1517 #elif defined(__sun__)
1518 #define TUNNEWPPA (('T'<<16) | 0x0001)
1519 /*
1520 * Allocate TAP device, returns opened fd.
1521 * Stores dev name in the first arg(must be large enough).
1522 */
1523 static int tap_alloc(char *dev, size_t dev_size)
1524 {
1525 int tap_fd, if_fd, ppa = -1;
1526 static int ip_fd = 0;
1527 char *ptr;
1528
1529 static int arp_fd = 0;
1530 int ip_muxid, arp_muxid;
1531 struct strioctl strioc_if, strioc_ppa;
1532 int link_type = I_PLINK;;
1533 struct lifreq ifr;
1534 char actual_name[32] = "";
1535
1536 memset(&ifr, 0x0, sizeof(ifr));
1537
1538 if( *dev ){
1539 ptr = dev;
1540 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
1541 ppa = atoi(ptr);
1542 }
1543
1544 /* Check if IP device was opened */
1545 if( ip_fd )
1546 close(ip_fd);
1547
1548 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1549 if (ip_fd < 0) {
1550 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1551 return -1;
1552 }
1553
1554 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1555 if (tap_fd < 0) {
1556 syslog(LOG_ERR, "Can't open /dev/tap");
1557 return -1;
1558 }
1559
1560 /* Assign a new PPA and get its unit number. */
1561 strioc_ppa.ic_cmd = TUNNEWPPA;
1562 strioc_ppa.ic_timout = 0;
1563 strioc_ppa.ic_len = sizeof(ppa);
1564 strioc_ppa.ic_dp = (char *)&ppa;
1565 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1566 syslog (LOG_ERR, "Can't assign new interface");
1567
1568 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1569 if (if_fd < 0) {
1570 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1571 return -1;
1572 }
1573 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1574 syslog(LOG_ERR, "Can't push IP module");
1575 return -1;
1576 }
1577
1578 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1579 syslog(LOG_ERR, "Can't get flags\n");
1580
1581 snprintf (actual_name, 32, "tap%d", ppa);
1582 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1583
1584 ifr.lifr_ppa = ppa;
1585 /* Assign ppa according to the unit number returned by tun device */
1586
1587 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1588 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1589 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1590 syslog (LOG_ERR, "Can't get flags\n");
1591 /* Push arp module to if_fd */
1592 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1593 syslog (LOG_ERR, "Can't push ARP module (2)");
1594
1595 /* Push arp module to ip_fd */
1596 if (ioctl (ip_fd, I_POP, NULL) < 0)
1597 syslog (LOG_ERR, "I_POP failed\n");
1598 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1599 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1600 /* Open arp_fd */
1601 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1602 if (arp_fd < 0)
1603 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1604
1605 /* Set ifname to arp */
1606 strioc_if.ic_cmd = SIOCSLIFNAME;
1607 strioc_if.ic_timout = 0;
1608 strioc_if.ic_len = sizeof(ifr);
1609 strioc_if.ic_dp = (char *)&ifr;
1610 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1611 syslog (LOG_ERR, "Can't set ifname to arp\n");
1612 }
1613
1614 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1615 syslog(LOG_ERR, "Can't link TAP device to IP");
1616 return -1;
1617 }
1618
1619 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1620 syslog (LOG_ERR, "Can't link TAP device to ARP");
1621
1622 close (if_fd);
1623
1624 memset(&ifr, 0x0, sizeof(ifr));
1625 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1626 ifr.lifr_ip_muxid = ip_muxid;
1627 ifr.lifr_arp_muxid = arp_muxid;
1628
1629 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1630 {
1631 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1632 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1633 syslog (LOG_ERR, "Can't set multiplexor id");
1634 }
1635
1636 snprintf(dev, dev_size, "tap%d", ppa);
1637 return tap_fd;
1638 }
1639
1640 static int tap_open(char *ifname, int ifname_size,
1641 int *vnet_hdr, int vnet_hdr_required)
1642 {
1643 char dev[10]="";
1644 int fd;
1645 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1646 fprintf(stderr, "Cannot allocate TAP device\n");
1647 return -1;
1648 }
1649 pstrcpy(ifname, ifname_size, dev);
1650 fcntl(fd, F_SETFL, O_NONBLOCK);
1651 return fd;
1652 }
1653 #elif defined (_AIX)
1654 static int tap_open(char *ifname, int ifname_size,
1655 int *vnet_hdr, int vnet_hdr_required)
1656 {
1657 fprintf (stderr, "no tap on AIX\n");
1658 return -1;
1659 }
1660 #else
1661 static int tap_open(char *ifname, int ifname_size,
1662 int *vnet_hdr, int vnet_hdr_required)
1663 {
1664 struct ifreq ifr;
1665 int fd, ret;
1666
1667 TFR(fd = open("/dev/net/tun", O_RDWR));
1668 if (fd < 0) {
1669 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1670 return -1;
1671 }
1672 memset(&ifr, 0, sizeof(ifr));
1673 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1674
1675 if (*vnet_hdr) {
1676 unsigned int features;
1677
1678 if (ioctl(fd, TUNGETFEATURES, &features) == 0 &&
1679 features & IFF_VNET_HDR) {
1680 *vnet_hdr = 1;
1681 ifr.ifr_flags |= IFF_VNET_HDR;
1682 }
1683
1684 if (vnet_hdr_required && !*vnet_hdr) {
1685 qemu_error("vnet_hdr=1 requested, but no kernel "
1686 "support for IFF_VNET_HDR available");
1687 close(fd);
1688 return -1;
1689 }
1690 }
1691
1692 if (ifname[0] != '\0')
1693 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1694 else
1695 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1696 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1697 if (ret != 0) {
1698 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1699 close(fd);
1700 return -1;
1701 }
1702 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1703 fcntl(fd, F_SETFL, O_NONBLOCK);
1704 return fd;
1705 }
1706 #endif
1707
1708 static int launch_script(const char *setup_script, const char *ifname, int fd)
1709 {
1710 sigset_t oldmask, mask;
1711 int pid, status;
1712 char *args[3];
1713 char **parg;
1714
1715 sigemptyset(&mask);
1716 sigaddset(&mask, SIGCHLD);
1717 sigprocmask(SIG_BLOCK, &mask, &oldmask);
1718
1719 /* try to launch network script */
1720 pid = fork();
1721 if (pid == 0) {
1722 int open_max = sysconf(_SC_OPEN_MAX), i;
1723
1724 for (i = 0; i < open_max; i++) {
1725 if (i != STDIN_FILENO &&
1726 i != STDOUT_FILENO &&
1727 i != STDERR_FILENO &&
1728 i != fd) {
1729 close(i);
1730 }
1731 }
1732 parg = args;
1733 *parg++ = (char *)setup_script;
1734 *parg++ = (char *)ifname;
1735 *parg++ = NULL;
1736 execv(setup_script, args);
1737 _exit(1);
1738 } else if (pid > 0) {
1739 while (waitpid(pid, &status, 0) != pid) {
1740 /* loop */
1741 }
1742 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1743
1744 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1745 return 0;
1746 }
1747 }
1748 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1749 return -1;
1750 }
1751
1752 static int net_tap_init(QemuOpts *opts, int *vnet_hdr)
1753 {
1754 int fd, vnet_hdr_required;
1755 char ifname[128] = {0,};
1756 const char *setup_script;
1757
1758 if (qemu_opt_get(opts, "ifname")) {
1759 pstrcpy(ifname, sizeof(ifname), qemu_opt_get(opts, "ifname"));
1760 }
1761
1762 *vnet_hdr = qemu_opt_get_bool(opts, "vnet_hdr", 1);
1763 if (qemu_opt_get(opts, "vnet_hdr")) {
1764 vnet_hdr_required = *vnet_hdr;
1765 } else {
1766 vnet_hdr_required = 0;
1767 }
1768
1769 TFR(fd = tap_open(ifname, sizeof(ifname), vnet_hdr, vnet_hdr_required));
1770 if (fd < 0) {
1771 return -1;
1772 }
1773
1774 setup_script = qemu_opt_get(opts, "script");
1775 if (setup_script &&
1776 setup_script[0] != '\0' &&
1777 strcmp(setup_script, "no") != 0 &&
1778 launch_script(setup_script, ifname, fd)) {
1779 close(fd);
1780 return -1;
1781 }
1782
1783 qemu_opt_set(opts, "ifname", ifname);
1784
1785 return fd;
1786 }
1787
1788 #endif /* !_WIN32 */
1789
1790 #if defined(CONFIG_VDE)
1791 typedef struct VDEState {
1792 VLANClientState *vc;
1793 VDECONN *vde;
1794 } VDEState;
1795
1796 static void vde_to_qemu(void *opaque)
1797 {
1798 VDEState *s = opaque;
1799 uint8_t buf[4096];
1800 int size;
1801
1802 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
1803 if (size > 0) {
1804 qemu_send_packet(s->vc, buf, size);
1805 }
1806 }
1807
1808 static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1809 {
1810 VDEState *s = vc->opaque;
1811 ssize_t ret;
1812
1813 do {
1814 ret = vde_send(s->vde, (const char *)buf, size, 0);
1815 } while (ret < 0 && errno == EINTR);
1816
1817 return ret;
1818 }
1819
1820 static void vde_cleanup(VLANClientState *vc)
1821 {
1822 VDEState *s = vc->opaque;
1823 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1824 vde_close(s->vde);
1825 qemu_free(s);
1826 }
1827
1828 static int net_vde_init(VLANState *vlan, const char *model,
1829 const char *name, const char *sock,
1830 int port, const char *group, int mode)
1831 {
1832 VDEState *s;
1833 char *init_group = (char *)group;
1834 char *init_sock = (char *)sock;
1835
1836 struct vde_open_args args = {
1837 .port = port,
1838 .group = init_group,
1839 .mode = mode,
1840 };
1841
1842 s = qemu_mallocz(sizeof(VDEState));
1843 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
1844 if (!s->vde){
1845 free(s);
1846 return -1;
1847 }
1848 s->vc = qemu_new_vlan_client(vlan, NULL, model, name, NULL,
1849 vde_receive, NULL,
1850 vde_cleanup, s);
1851 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1852 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1853 sock, vde_datafd(s->vde));
1854 return 0;
1855 }
1856 #endif
1857
1858 /* network connection */
1859 typedef struct NetSocketState {
1860 VLANClientState *vc;
1861 int fd;
1862 int state; /* 0 = getting length, 1 = getting data */
1863 unsigned int index;
1864 unsigned int packet_len;
1865 uint8_t buf[4096];
1866 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1867 } NetSocketState;
1868
1869 typedef struct NetSocketListenState {
1870 VLANState *vlan;
1871 char *model;
1872 char *name;
1873 int fd;
1874 } NetSocketListenState;
1875
1876 /* XXX: we consider we can send the whole packet without blocking */
1877 static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1878 {
1879 NetSocketState *s = vc->opaque;
1880 uint32_t len;
1881 len = htonl(size);
1882
1883 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1884 return send_all(s->fd, buf, size);
1885 }
1886
1887 static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
1888 {
1889 NetSocketState *s = vc->opaque;
1890
1891 return sendto(s->fd, (const void *)buf, size, 0,
1892 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1893 }
1894
1895 static void net_socket_send(void *opaque)
1896 {
1897 NetSocketState *s = opaque;
1898 int size, err;
1899 unsigned l;
1900 uint8_t buf1[4096];
1901 const uint8_t *buf;
1902
1903 size = recv(s->fd, (void *)buf1, sizeof(buf1), 0);
1904 if (size < 0) {
1905 err = socket_error();
1906 if (err != EWOULDBLOCK)
1907 goto eoc;
1908 } else if (size == 0) {
1909 /* end of connection */
1910 eoc:
1911 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1912 closesocket(s->fd);
1913 return;
1914 }
1915 buf = buf1;
1916 while (size > 0) {
1917 /* reassemble a packet from the network */
1918 switch(s->state) {
1919 case 0:
1920 l = 4 - s->index;
1921 if (l > size)
1922 l = size;
1923 memcpy(s->buf + s->index, buf, l);
1924 buf += l;
1925 size -= l;
1926 s->index += l;
1927 if (s->index == 4) {
1928 /* got length */
1929 s->packet_len = ntohl(*(uint32_t *)s->buf);
1930 s->index = 0;
1931 s->state = 1;
1932 }
1933 break;
1934 case 1:
1935 l = s->packet_len - s->index;
1936 if (l > size)
1937 l = size;
1938 if (s->index + l <= sizeof(s->buf)) {
1939 memcpy(s->buf + s->index, buf, l);
1940 } else {
1941 fprintf(stderr, "serious error: oversized packet received,"
1942 "connection terminated.\n");
1943 s->state = 0;
1944 goto eoc;
1945 }
1946
1947 s->index += l;
1948 buf += l;
1949 size -= l;
1950 if (s->index >= s->packet_len) {
1951 qemu_send_packet(s->vc, s->buf, s->packet_len);
1952 s->index = 0;
1953 s->state = 0;
1954 }
1955 break;
1956 }
1957 }
1958 }
1959
1960 static void net_socket_send_dgram(void *opaque)
1961 {
1962 NetSocketState *s = opaque;
1963 int size;
1964
1965 size = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
1966 if (size < 0)
1967 return;
1968 if (size == 0) {
1969 /* end of connection */
1970 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1971 return;
1972 }
1973 qemu_send_packet(s->vc, s->buf, size);
1974 }
1975
1976 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1977 {
1978 struct ip_mreq imr;
1979 int fd;
1980 int val, ret;
1981 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1982 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1983 inet_ntoa(mcastaddr->sin_addr),
1984 (int)ntohl(mcastaddr->sin_addr.s_addr));
1985 return -1;
1986
1987 }
1988 fd = socket(PF_INET, SOCK_DGRAM, 0);
1989 if (fd < 0) {
1990 perror("socket(PF_INET, SOCK_DGRAM)");
1991 return -1;
1992 }
1993
1994 val = 1;
1995 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1996 (const char *)&val, sizeof(val));
1997 if (ret < 0) {
1998 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1999 goto fail;
2000 }
2001
2002 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
2003 if (ret < 0) {
2004 perror("bind");
2005 goto fail;
2006 }
2007
2008 /* Add host to multicast group */
2009 imr.imr_multiaddr = mcastaddr->sin_addr;
2010 imr.imr_interface.s_addr = htonl(INADDR_ANY);
2011
2012 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
2013 (const char *)&imr, sizeof(struct ip_mreq));
2014 if (ret < 0) {
2015 perror("setsockopt(IP_ADD_MEMBERSHIP)");
2016 goto fail;
2017 }
2018
2019 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2020 val = 1;
2021 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
2022 (const char *)&val, sizeof(val));
2023 if (ret < 0) {
2024 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2025 goto fail;
2026 }
2027
2028 socket_set_nonblock(fd);
2029 return fd;
2030 fail:
2031 if (fd >= 0)
2032 closesocket(fd);
2033 return -1;
2034 }
2035
2036 static void net_socket_cleanup(VLANClientState *vc)
2037 {
2038 NetSocketState *s = vc->opaque;
2039 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2040 close(s->fd);
2041 qemu_free(s);
2042 }
2043
2044 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
2045 const char *model,
2046 const char *name,
2047 int fd, int is_connected)
2048 {
2049 struct sockaddr_in saddr;
2050 int newfd;
2051 socklen_t saddr_len;
2052 NetSocketState *s;
2053
2054 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2055 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
2056 * by ONLY ONE process: we must "clone" this dgram socket --jjo
2057 */
2058
2059 if (is_connected) {
2060 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
2061 /* must be bound */
2062 if (saddr.sin_addr.s_addr==0) {
2063 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2064 fd);
2065 return NULL;
2066 }
2067 /* clone dgram socket */
2068 newfd = net_socket_mcast_create(&saddr);
2069 if (newfd < 0) {
2070 /* error already reported by net_socket_mcast_create() */
2071 close(fd);
2072 return NULL;
2073 }
2074 /* clone newfd to fd, close newfd */
2075 dup2(newfd, fd);
2076 close(newfd);
2077
2078 } else {
2079 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2080 fd, strerror(errno));
2081 return NULL;
2082 }
2083 }
2084
2085 s = qemu_mallocz(sizeof(NetSocketState));
2086 s->fd = fd;
2087
2088 s->vc = qemu_new_vlan_client(vlan, NULL, model, name, NULL,
2089 net_socket_receive_dgram, NULL,
2090 net_socket_cleanup, s);
2091 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2092
2093 /* mcast: save bound address as dst */
2094 if (is_connected) s->dgram_dst=saddr;
2095
2096 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2097 "socket: fd=%d (%s mcast=%s:%d)",
2098 fd, is_connected? "cloned" : "",
2099 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2100 return s;
2101 }
2102
2103 static void net_socket_connect(void *opaque)
2104 {
2105 NetSocketState *s = opaque;
2106 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2107 }
2108
2109 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
2110 const char *model,
2111 const char *name,
2112 int fd, int is_connected)
2113 {
2114 NetSocketState *s;
2115 s = qemu_mallocz(sizeof(NetSocketState));
2116 s->fd = fd;
2117 s->vc = qemu_new_vlan_client(vlan, NULL, model, name, NULL,
2118 net_socket_receive, NULL,
2119 net_socket_cleanup, s);
2120 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2121 "socket: fd=%d", fd);
2122 if (is_connected) {
2123 net_socket_connect(s);
2124 } else {
2125 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2126 }
2127 return s;
2128 }
2129
2130 static NetSocketState *net_socket_fd_init(VLANState *vlan,
2131 const char *model, const char *name,
2132 int fd, int is_connected)
2133 {
2134 int so_type = -1, optlen=sizeof(so_type);
2135
2136 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
2137 (socklen_t *)&optlen)< 0) {
2138 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
2139 return NULL;
2140 }
2141 switch(so_type) {
2142 case SOCK_DGRAM:
2143 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
2144 case SOCK_STREAM:
2145 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2146 default:
2147 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2148 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
2149 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2150 }
2151 return NULL;
2152 }
2153
2154 static void net_socket_accept(void *opaque)
2155 {
2156 NetSocketListenState *s = opaque;
2157 NetSocketState *s1;
2158 struct sockaddr_in saddr;
2159 socklen_t len;
2160 int fd;
2161
2162 for(;;) {
2163 len = sizeof(saddr);
2164 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2165 if (fd < 0 && errno != EINTR) {
2166 return;
2167 } else if (fd >= 0) {
2168 break;
2169 }
2170 }
2171 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
2172 if (!s1) {
2173 closesocket(fd);
2174 } else {
2175 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2176 "socket: connection from %s:%d",
2177 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2178 }
2179 }
2180
2181 static int net_socket_listen_init(VLANState *vlan,
2182 const char *model,
2183 const char *name,
2184 const char *host_str)
2185 {
2186 NetSocketListenState *s;
2187 int fd, val, ret;
2188 struct sockaddr_in saddr;
2189
2190 if (parse_host_port(&saddr, host_str) < 0)
2191 return -1;
2192
2193 s = qemu_mallocz(sizeof(NetSocketListenState));
2194
2195 fd = socket(PF_INET, SOCK_STREAM, 0);
2196 if (fd < 0) {
2197 perror("socket");
2198 return -1;
2199 }
2200 socket_set_nonblock(fd);
2201
2202 /* allow fast reuse */
2203 val = 1;
2204 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2205
2206 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2207 if (ret < 0) {
2208 perror("bind");
2209 return -1;
2210 }
2211 ret = listen(fd, 0);
2212 if (ret < 0) {
2213 perror("listen");
2214 return -1;
2215 }
2216 s->vlan = vlan;
2217 s->model = qemu_strdup(model);
2218 s->name = name ? qemu_strdup(name) : NULL;
2219 s->fd = fd;
2220 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2221 return 0;
2222 }
2223
2224 static int net_socket_connect_init(VLANState *vlan,
2225 const char *model,
2226 const char *name,
2227 const char *host_str)
2228 {
2229 NetSocketState *s;
2230 int fd, connected, ret, err;
2231 struct sockaddr_in saddr;
2232
2233 if (parse_host_port(&saddr, host_str) < 0)
2234 return -1;
2235
2236 fd = socket(PF_INET, SOCK_STREAM, 0);
2237 if (fd < 0) {
2238 perror("socket");
2239 return -1;
2240 }
2241 socket_set_nonblock(fd);
2242
2243 connected = 0;
2244 for(;;) {
2245 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2246 if (ret < 0) {
2247 err = socket_error();
2248 if (err == EINTR || err == EWOULDBLOCK) {
2249 } else if (err == EINPROGRESS) {
2250 break;
2251 #ifdef _WIN32
2252 } else if (err == WSAEALREADY) {
2253 break;
2254 #endif
2255 } else {
2256 perror("connect");
2257 closesocket(fd);
2258 return -1;
2259 }
2260 } else {
2261 connected = 1;
2262 break;
2263 }
2264 }
2265 s = net_socket_fd_init(vlan, model, name, fd, connected);
2266 if (!s)
2267 return -1;
2268 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2269 "socket: connect to %s:%d",
2270 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2271 return 0;
2272 }
2273
2274 static int net_socket_mcast_init(VLANState *vlan,
2275 const char *model,
2276 const char *name,
2277 const char *host_str)
2278 {
2279 NetSocketState *s;
2280 int fd;
2281 struct sockaddr_in saddr;
2282
2283 if (parse_host_port(&saddr, host_str) < 0)
2284 return -1;
2285
2286
2287 fd = net_socket_mcast_create(&saddr);
2288 if (fd < 0)
2289 return -1;
2290
2291 s = net_socket_fd_init(vlan, model, name, fd, 0);
2292 if (!s)
2293 return -1;
2294
2295 s->dgram_dst = saddr;
2296
2297 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2298 "socket: mcast=%s:%d",
2299 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2300 return 0;
2301
2302 }
2303
2304 typedef struct DumpState {
2305 VLANClientState *pcap_vc;
2306 int fd;
2307 int pcap_caplen;
2308 } DumpState;
2309
2310 #define PCAP_MAGIC 0xa1b2c3d4
2311
2312 struct pcap_file_hdr {
2313 uint32_t magic;
2314 uint16_t version_major;
2315 uint16_t version_minor;
2316 int32_t thiszone;
2317 uint32_t sigfigs;
2318 uint32_t snaplen;
2319 uint32_t linktype;
2320 };
2321
2322 struct pcap_sf_pkthdr {
2323 struct {
2324 int32_t tv_sec;
2325 int32_t tv_usec;
2326 } ts;
2327 uint32_t caplen;
2328 uint32_t len;
2329 };
2330
2331 static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
2332 {
2333 DumpState *s = vc->opaque;
2334 struct pcap_sf_pkthdr hdr;
2335 int64_t ts;
2336 int caplen;
2337
2338 /* Early return in case of previous error. */
2339 if (s->fd < 0) {
2340 return size;
2341 }
2342
2343 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, get_ticks_per_sec());
2344 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
2345
2346 hdr.ts.tv_sec = ts / 1000000;
2347 hdr.ts.tv_usec = ts % 1000000;
2348 hdr.caplen = caplen;
2349 hdr.len = size;
2350 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
2351 write(s->fd, buf, caplen) != caplen) {
2352 qemu_log("-net dump write error - stop dump\n");
2353 close(s->fd);
2354 s->fd = -1;
2355 }
2356
2357 return size;
2358 }
2359
2360 static void net_dump_cleanup(VLANClientState *vc)
2361 {
2362 DumpState *s = vc->opaque;
2363
2364 close(s->fd);
2365 qemu_free(s);
2366 }
2367
2368 static int net_dump_init(VLANState *vlan, const char *device,
2369 const char *name, const char *filename, int len)
2370 {
2371 struct pcap_file_hdr hdr;
2372 DumpState *s;
2373
2374 s = qemu_malloc(sizeof(DumpState));
2375
2376 s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
2377 if (s->fd < 0) {
2378 qemu_error("-net dump: can't open %s\n", filename);
2379 return -1;
2380 }
2381
2382 s->pcap_caplen = len;
2383
2384 hdr.magic = PCAP_MAGIC;
2385 hdr.version_major = 2;
2386 hdr.version_minor = 4;
2387 hdr.thiszone = 0;
2388 hdr.sigfigs = 0;
2389 hdr.snaplen = s->pcap_caplen;
2390 hdr.linktype = 1;
2391
2392 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
2393 qemu_error("-net dump write error: %s\n", strerror(errno));
2394 close(s->fd);
2395 qemu_free(s);
2396 return -1;
2397 }
2398
2399 s->pcap_vc = qemu_new_vlan_client(vlan, NULL, device, name, NULL,
2400 dump_receive, NULL,
2401 net_dump_cleanup, s);
2402 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
2403 "dump to %s (len=%d)", filename, len);
2404 return 0;
2405 }
2406
2407 /* find or alloc a new VLAN */
2408 VLANState *qemu_find_vlan(int id, int allocate)
2409 {
2410 VLANState *vlan;
2411
2412 QTAILQ_FOREACH(vlan, &vlans, next) {
2413 if (vlan->id == id) {
2414 return vlan;
2415 }
2416 }
2417
2418 if (!allocate) {
2419 return NULL;
2420 }
2421
2422 vlan = qemu_mallocz(sizeof(VLANState));
2423 vlan->id = id;
2424 QTAILQ_INIT(&vlan->clients);
2425
2426 vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
2427 qemu_vlan_deliver_packet_iov,
2428 vlan);
2429
2430 QTAILQ_INSERT_TAIL(&vlans, vlan, next);
2431
2432 return vlan;
2433 }
2434
2435 VLANClientState *qemu_find_netdev(const char *id)
2436 {
2437 VLANClientState *vc;
2438
2439 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
2440 if (!strcmp(vc->name, id)) {
2441 return vc;
2442 }
2443 }
2444
2445 return NULL;
2446 }
2447
2448 static int nic_get_free_idx(void)
2449 {
2450 int index;
2451
2452 for (index = 0; index < MAX_NICS; index++)
2453 if (!nd_table[index].used)
2454 return index;
2455 return -1;
2456 }
2457
2458 int qemu_show_nic_models(const char *arg, const char *const *models)
2459 {
2460 int i;
2461
2462 if (!arg || strcmp(arg, "?"))
2463 return 0;
2464
2465 fprintf(stderr, "qemu: Supported NIC models: ");
2466 for (i = 0 ; models[i]; i++)
2467 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
2468 return 1;
2469 }
2470
2471 void qemu_check_nic_model(NICInfo *nd, const char *model)
2472 {
2473 const char *models[2];
2474
2475 models[0] = model;
2476 models[1] = NULL;
2477
2478 if (qemu_show_nic_models(nd->model, models))
2479 exit(0);
2480 if (qemu_find_nic_model(nd, models, model) < 0)
2481 exit(1);
2482 }
2483
2484 int qemu_find_nic_model(NICInfo *nd, const char * const *models,
2485 const char *default_model)
2486 {
2487 int i;
2488
2489 if (!nd->model)
2490 nd->model = qemu_strdup(default_model);
2491
2492 for (i = 0 ; models[i]; i++) {
2493 if (strcmp(nd->model, models[i]) == 0)
2494 return i;
2495 }
2496
2497 qemu_error("qemu: Unsupported NIC model: %s\n", nd->model);
2498 return -1;
2499 }
2500
2501 static int net_handle_fd_param(Monitor *mon, const char *param)
2502 {
2503 if (!qemu_isdigit(param[0])) {
2504 int fd;
2505
2506 fd = monitor_get_fd(mon, param);
2507 if (fd == -1) {
2508 qemu_error("No file descriptor named %s found", param);
2509 return -1;
2510 }
2511
2512 return fd;
2513 } else {
2514 return strtol(param, NULL, 0);
2515 }
2516 }
2517
2518 static int net_init_nic(QemuOpts *opts,
2519 Monitor *mon,
2520 const char *name,
2521 VLANState *vlan)
2522 {
2523 int idx;
2524 NICInfo *nd;
2525 const char *netdev;
2526
2527 idx = nic_get_free_idx();
2528 if (idx == -1 || nb_nics >= MAX_NICS) {
2529 qemu_error("Too Many NICs\n");
2530 return -1;
2531 }
2532
2533 nd = &nd_table[idx];
2534
2535 memset(nd, 0, sizeof(*nd));
2536
2537 if ((netdev = qemu_opt_get(opts, "netdev"))) {
2538 nd->netdev = qemu_find_netdev(netdev);
2539 if (!nd->netdev) {
2540 qemu_error("netdev '%s' not found\n", netdev);
2541 return -1;
2542 }
2543 } else {
2544 assert(vlan);
2545 nd->vlan = vlan;
2546 }
2547 if (name) {
2548 nd->name = qemu_strdup(name);
2549 }
2550 if (qemu_opt_get(opts, "model")) {
2551 nd->model = qemu_strdup(qemu_opt_get(opts, "model"));
2552 }
2553 if (qemu_opt_get(opts, "addr")) {
2554 nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
2555 }
2556
2557 nd->macaddr[0] = 0x52;
2558 nd->macaddr[1] = 0x54;
2559 nd->macaddr[2] = 0x00;
2560 nd->macaddr[3] = 0x12;
2561 nd->macaddr[4] = 0x34;
2562 nd->macaddr[5] = 0x56 + idx;
2563
2564 if (qemu_opt_get(opts, "macaddr") &&
2565 parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
2566 qemu_error("invalid syntax for ethernet address\n");
2567 return -1;
2568 }
2569
2570 nd->nvectors = qemu_opt_get_number(opts, "vectors", NIC_NVECTORS_UNSPECIFIED);
2571 if (nd->nvectors != NIC_NVECTORS_UNSPECIFIED &&
2572 (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
2573 qemu_error("invalid # of vectors: %d\n", nd->nvectors);
2574 return -1;
2575 }
2576
2577 nd->used = 1;
2578 if (vlan) {
2579 nd->vlan->nb_guest_devs++;
2580 }
2581 nb_nics++;
2582
2583 return idx;
2584 }
2585
2586 #if defined(CONFIG_SLIRP)
2587 static int net_init_slirp_configs(const char *name, const char *value, void *opaque)
2588 {
2589 struct slirp_config_str *config;
2590
2591 if (strcmp(name, "hostfwd") != 0 && strcmp(name, "guestfwd") != 0) {
2592 return 0;
2593 }
2594
2595 config = qemu_mallocz(sizeof(*config));
2596
2597 pstrcpy(config->str, sizeof(config->str), value);
2598
2599 if (!strcmp(name, "hostfwd")) {
2600 config->flags = SLIRP_CFG_HOSTFWD;
2601 }
2602
2603 config->next = slirp_configs;
2604 slirp_configs = config;
2605
2606 return 0;
2607 }
2608
2609 static int net_init_slirp(QemuOpts *opts,
2610 Monitor *mon,
2611 const char *name,
2612 VLANState *vlan)
2613 {
2614 struct slirp_config_str *config;
2615 const char *vhost;
2616 const char *vhostname;
2617 const char *vdhcp_start;
2618 const char *vnamesrv;
2619 const char *tftp_export;
2620 const char *bootfile;
2621 const char *smb_export;
2622 const char *vsmbsrv;
2623 char *vnet = NULL;
2624 int restricted = 0;
2625 int ret;
2626
2627 vhost = qemu_opt_get(opts, "host");
2628 vhostname = qemu_opt_get(opts, "hostname");
2629 vdhcp_start = qemu_opt_get(opts, "dhcpstart");
2630 vnamesrv = qemu_opt_get(opts, "dns");
2631 tftp_export = qemu_opt_get(opts, "tftp");
2632 bootfile = qemu_opt_get(opts, "bootfile");
2633 smb_export = qemu_opt_get(opts, "smb");
2634 vsmbsrv = qemu_opt_get(opts, "smbserver");
2635
2636 if (qemu_opt_get(opts, "ip")) {
2637 const char *ip = qemu_opt_get(opts, "ip");
2638 int l = strlen(ip) + strlen("/24") + 1;
2639
2640 vnet = qemu_malloc(l);
2641
2642 /* emulate legacy ip= parameter */
2643 pstrcpy(vnet, l, ip);
2644 pstrcat(vnet, l, "/24");
2645 }
2646
2647 if (qemu_opt_get(opts, "net")) {
2648 if (vnet) {
2649 qemu_free(vnet);
2650 }
2651 vnet = qemu_strdup(qemu_opt_get(opts, "net"));
2652 }
2653
2654 if (qemu_opt_get(opts, "restrict") &&
2655 qemu_opt_get(opts, "restrict")[0] == 'y') {
2656 restricted = 1;
2657 }
2658
2659 qemu_opt_foreach(opts, net_init_slirp_configs, NULL, 0);
2660
2661 ret = net_slirp_init(vlan, "user", name, restricted, vnet, vhost,
2662 vhostname, tftp_export, bootfile, vdhcp_start,
2663 vnamesrv, smb_export, vsmbsrv);
2664
2665 while (slirp_configs) {
2666 config = slirp_configs;
2667 slirp_configs = config->next;
2668 qemu_free(config);
2669 }
2670
2671 if (ret != -1 && vlan) {
2672 vlan->nb_host_devs++;
2673 }
2674
2675 qemu_free(vnet);
2676
2677 return ret;
2678 }
2679 #endif /* CONFIG_SLIRP */
2680
2681 #ifdef _WIN32
2682 static int net_init_tap_win32(QemuOpts *opts,
2683 Monitor *mon,
2684 const char *name,
2685 VLANState *vlan)
2686 {
2687 const char *ifname;
2688
2689 ifname = qemu_opt_get(opts, "ifname");
2690
2691 if (!ifname) {
2692 qemu_error("tap: no interface name\n");
2693 return -1;
2694 }
2695
2696 if (tap_win32_init(vlan, "tap", name, ifname) == -1) {
2697 return -1;
2698 }
2699
2700 if (vlan) {
2701 vlan->nb_host_devs++;
2702 }
2703
2704 return 0;
2705 }
2706 #elif !defined(_AIX)
2707 static int net_init_tap(QemuOpts *opts,
2708 Monitor *mon,
2709 const char *name,
2710 VLANState *vlan)
2711 {
2712 TAPState *s;
2713 int fd, vnet_hdr;
2714
2715 if (qemu_opt_get(opts, "fd")) {
2716 if (qemu_opt_get(opts, "ifname") ||
2717 qemu_opt_get(opts, "script") ||
2718 qemu_opt_get(opts, "downscript") ||
2719 qemu_opt_get(opts, "vnet_hdr")) {
2720 qemu_error("ifname=, script=, downscript= and vnet_hdr= is invalid with fd=\n");
2721 return -1;
2722 }
2723
2724 fd = net_handle_fd_param(mon, qemu_opt_get(opts, "fd"));
2725 if (fd == -1) {
2726 return -1;
2727 }
2728
2729 fcntl(fd, F_SETFL, O_NONBLOCK);
2730
2731 vnet_hdr = tap_probe_vnet_hdr(fd);
2732 } else {
2733 if (!qemu_opt_get(opts, "script")) {
2734 qemu_opt_set(opts, "script", DEFAULT_NETWORK_SCRIPT);
2735 }
2736
2737 if (!qemu_opt_get(opts, "downscript")) {
2738 qemu_opt_set(opts, "downscript", DEFAULT_NETWORK_DOWN_SCRIPT);
2739 }
2740
2741 fd = net_tap_init(opts, &vnet_hdr);
2742 }
2743
2744 s = net_tap_fd_init(vlan, "tap", name, fd, vnet_hdr);
2745 if (!s) {
2746 close(fd);
2747 return -1;
2748 }
2749
2750 if (tap_set_sndbuf(s, opts) < 0) {
2751 return -1;
2752 }
2753
2754 if (qemu_opt_get(opts, "fd")) {
2755 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
2756 } else {
2757 const char *ifname, *script, *downscript;
2758
2759 ifname = qemu_opt_get(opts, "ifname");
2760 script = qemu_opt_get(opts, "script");
2761 downscript = qemu_opt_get(opts, "downscript");
2762
2763 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2764 "ifname=%s,script=%s,downscript=%s",
2765 ifname, script, downscript);
2766
2767 if (strcmp(downscript, "no") != 0) {
2768 snprintf(s->down_script, sizeof(s->down_script), "%s", downscript);
2769 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
2770 }
2771 }
2772
2773 if (vlan) {
2774 vlan->nb_host_devs++;
2775 }
2776
2777 return 0;
2778 }
2779 #endif
2780
2781 static int net_init_socket(QemuOpts *opts,
2782 Monitor *mon,
2783 const char *name,
2784 VLANState *vlan)
2785 {
2786 if (qemu_opt_get(opts, "fd")) {
2787 int fd;
2788
2789 if (qemu_opt_get(opts, "listen") ||
2790 qemu_opt_get(opts, "connect") ||
2791 qemu_opt_get(opts, "mcast")) {
2792 qemu_error("listen=, connect= and mcast= is invalid with fd=\n");
2793 return -1;
2794 }
2795
2796 fd = net_handle_fd_param(mon, qemu_opt_get(opts, "fd"));
2797 if (fd == -1) {
2798 return -1;
2799 }
2800
2801 if (!net_socket_fd_init(vlan, "socket", name, fd, 1)) {
2802 close(fd);
2803 return -1;
2804 }
2805 } else if (qemu_opt_get(opts, "listen")) {
2806 const char *listen;
2807
2808 if (qemu_opt_get(opts, "fd") ||
2809 qemu_opt_get(opts, "connect") ||
2810 qemu_opt_get(opts, "mcast")) {
2811 qemu_error("fd=, connect= and mcast= is invalid with listen=\n");
2812 return -1;
2813 }
2814
2815 listen = qemu_opt_get(opts, "listen");
2816
2817 if (net_socket_listen_init(vlan, "socket", name, listen) == -1) {
2818 return -1;
2819 }
2820 } else if (qemu_opt_get(opts, "connect")) {
2821 const char *connect;
2822
2823 if (qemu_opt_get(opts, "fd") ||
2824 qemu_opt_get(opts, "listen") ||
2825 qemu_opt_get(opts, "mcast")) {
2826 qemu_error("fd=, listen= and mcast= is invalid with connect=\n");
2827 return -1;
2828 }
2829
2830 connect = qemu_opt_get(opts, "connect");
2831
2832 if (net_socket_connect_init(vlan, "socket", name, connect) == -1) {
2833 return -1;
2834 }
2835 } else if (qemu_opt_get(opts, "mcast")) {
2836 const char *mcast;
2837
2838 if (qemu_opt_get(opts, "fd") ||
2839 qemu_opt_get(opts, "connect") ||
2840 qemu_opt_get(opts, "listen")) {
2841 qemu_error("fd=, connect= and listen= is invalid with mcast=\n");
2842 return -1;
2843 }
2844
2845 mcast = qemu_opt_get(opts, "mcast");
2846
2847 if (net_socket_mcast_init(vlan, "socket", name, mcast) == -1) {
2848 return -1;
2849 }
2850 } else {
2851 qemu_error("-socket requires fd=, listen=, connect= or mcast=\n");
2852 return -1;
2853 }
2854
2855 if (vlan) {
2856 vlan->nb_host_devs++;
2857 }
2858
2859 return 0;
2860 }
2861
2862 #ifdef CONFIG_VDE
2863 static int net_init_vde(QemuOpts *opts,
2864 Monitor *mon,
2865 const char *name,
2866 VLANState *vlan)
2867 {
2868 const char *sock;
2869 const char *group;
2870 int port, mode;
2871
2872 sock = qemu_opt_get(opts, "sock");
2873 group = qemu_opt_get(opts, "group");
2874
2875 port = qemu_opt_get_number(opts, "port", 0);
2876 mode = qemu_opt_get_number(opts, "mode", 0700);
2877
2878 if (net_vde_init(vlan, "vde", name, sock, port, group, mode) == -1) {
2879 return -1;
2880 }
2881
2882 if (vlan) {
2883 vlan->nb_host_devs++;
2884 }
2885
2886 return 0;
2887 }
2888 #endif
2889
2890 static int net_init_dump(QemuOpts *opts,
2891 Monitor *mon,
2892 const char *name,
2893 VLANState *vlan)
2894 {
2895 int len;
2896 const char *file;
2897 char def_file[128];
2898
2899 assert(vlan);
2900
2901 file = qemu_opt_get(opts, "file");
2902 if (!file) {
2903 snprintf(def_file, sizeof(def_file), "qemu-vlan%d.pcap", vlan->id);
2904 file = def_file;
2905 }
2906
2907 len = qemu_opt_get_size(opts, "len", 65536);
2908
2909 return net_dump_init(vlan, "dump", name, file, len);
2910 }
2911
2912 #define NET_COMMON_PARAMS_DESC \
2913 { \
2914 .name = "type", \
2915 .type = QEMU_OPT_STRING, \
2916 .help = "net client type (nic, tap etc.)", \
2917 }, { \
2918 .name = "vlan", \
2919 .type = QEMU_OPT_NUMBER, \
2920 .help = "vlan number", \
2921 }, { \
2922 .name = "name", \
2923 .type = QEMU_OPT_STRING, \
2924 .help = "identifier for monitor commands", \
2925 }
2926
2927 typedef int (*net_client_init_func)(QemuOpts *opts,
2928 Monitor *mon,
2929 const char *name,
2930 VLANState *vlan);
2931
2932 /* magic number, but compiler will warn if too small */
2933 #define NET_MAX_DESC 20
2934
2935 static struct {
2936 const char *type;
2937 net_client_init_func init;
2938 QemuOptDesc desc[NET_MAX_DESC];
2939 } net_client_types[] = {
2940 {
2941 .type = "none",
2942 .desc = {
2943 NET_COMMON_PARAMS_DESC,
2944 { /* end of list */ }
2945 },
2946 }, {
2947 .type = "nic",
2948 .init = net_init_nic,
2949 .desc = {
2950 NET_COMMON_PARAMS_DESC,
2951 {
2952 .name = "netdev",
2953 .type = QEMU_OPT_STRING,
2954 .help = "id of -netdev to connect to",
2955 },
2956 {
2957 .name = "macaddr",
2958 .type = QEMU_OPT_STRING,
2959 .help = "MAC address",
2960 }, {
2961 .name = "model",
2962 .type = QEMU_OPT_STRING,
2963 .help = "device model (e1000, rtl8139, virtio etc.)",
2964 }, {
2965 .name = "addr",
2966 .type = QEMU_OPT_STRING,
2967 .help = "PCI device address",
2968 }, {
2969 .name = "vectors",
2970 .type = QEMU_OPT_NUMBER,
2971 .help = "number of MSI-x vectors, 0 to disable MSI-X",
2972 },
2973 { /* end of list */ }
2974 },
2975 #ifdef CONFIG_SLIRP
2976 }, {
2977 .type = "user",
2978 .init = net_init_slirp,
2979 .desc = {
2980 NET_COMMON_PARAMS_DESC,
2981 {
2982 .name = "hostname",
2983 .type = QEMU_OPT_STRING,
2984 .help = "client hostname reported by the builtin DHCP server",
2985 }, {
2986 .name = "restrict",
2987 .type = QEMU_OPT_STRING,
2988 .help = "isolate the guest from the host (y|yes|n|no)",
2989 }, {
2990 .name = "ip",
2991 .type = QEMU_OPT_STRING,
2992 .help = "legacy parameter, use net= instead",
2993 }, {
2994 .name = "net",
2995 .type = QEMU_OPT_STRING,
2996 .help = "IP address and optional netmask",
2997 }, {
2998 .name = "host",
2999 .type = QEMU_OPT_STRING,
3000 .help = "guest-visible address of the host",
3001 }, {
3002 .name = "tftp",
3003 .type = QEMU_OPT_STRING,
3004 .help = "root directory of the built-in TFTP server",
3005 }, {
3006 .name = "bootfile",
3007 .type = QEMU_OPT_STRING,
3008 .help = "BOOTP filename, for use with tftp=",
3009 }, {
3010 .name = "dhcpstart",
3011 .type = QEMU_OPT_STRING,
3012 .help = "the first of the 16 IPs the built-in DHCP server can assign",
3013 }, {
3014 .name = "dns",
3015 .type = QEMU_OPT_STRING,
3016 .help = "guest-visible address of the virtual nameserver",
3017 }, {
3018 .name = "smb",
3019 .type = QEMU_OPT_STRING,
3020 .help = "root directory of the built-in SMB server",
3021 }, {
3022 .name = "smbserver",
3023 .type = QEMU_OPT_STRING,
3024 .help = "IP address of the built-in SMB server",
3025 }, {
3026 .name = "hostfwd",
3027 .type = QEMU_OPT_STRING,
3028 .help = "guest port number to forward incoming TCP or UDP connections",
3029 }, {
3030 .name = "guestfwd",
3031 .type = QEMU_OPT_STRING,
3032 .help = "IP address and port to forward guest TCP connections",
3033 },
3034 { /* end of list */ }
3035 },
3036 #endif
3037 #ifdef _WIN32
3038 }, {
3039 .type = "tap",
3040 .init = net_init_tap_win32,
3041 .desc = {
3042 NET_COMMON_PARAMS_DESC,
3043 {
3044 .name = "ifname",
3045 .type = QEMU_OPT_STRING,
3046 .help = "interface name",
3047 },
3048 { /* end of list */ }
3049 },
3050 #elif !defined(_AIX)
3051 }, {
3052 .type = "tap",
3053 .init = net_init_tap,
3054 .desc = {
3055 NET_COMMON_PARAMS_DESC,
3056 {
3057 .name = "fd",
3058 .type = QEMU_OPT_STRING,
3059 .help = "file descriptor of an already opened tap",
3060 }, {
3061 .name = "ifname",
3062 .type = QEMU_OPT_STRING,
3063 .help = "interface name",
3064 }, {
3065 .name = "script",
3066 .type = QEMU_OPT_STRING,
3067 .help = "script to initialize the interface",
3068 }, {
3069 .name = "downscript",
3070 .type = QEMU_OPT_STRING,
3071 .help = "script to shut down the interface",
3072 }, {
3073 .name = "sndbuf",
3074 .type = QEMU_OPT_SIZE,
3075 .help = "send buffer limit"
3076 }, {
3077 .name = "vnet_hdr",
3078 .type = QEMU_OPT_BOOL,
3079 .help = "enable the IFF_VNET_HDR flag on the tap interface"
3080 },
3081 { /* end of list */ }
3082 },
3083 #endif
3084 }, {
3085 .type = "socket",
3086 .init = net_init_socket,
3087 .desc = {
3088 NET_COMMON_PARAMS_DESC,
3089 {
3090 .name = "fd",
3091 .type = QEMU_OPT_STRING,
3092 .help = "file descriptor of an already opened socket",
3093 }, {
3094 .name = "listen",
3095 .type = QEMU_OPT_STRING,
3096 .help = "port number, and optional hostname, to listen on",
3097 }, {
3098 .name = "connect",
3099 .type = QEMU_OPT_STRING,
3100 .help = "port number, and optional hostname, to connect to",
3101 }, {
3102 .name = "mcast",
3103 .type = QEMU_OPT_STRING,
3104 .help = "UDP multicast address and port number",
3105 },
3106 { /* end of list */ }
3107 },
3108 #ifdef CONFIG_VDE
3109 }, {
3110 .type = "vde",
3111 .init = net_init_vde,
3112 .desc = {
3113 NET_COMMON_PARAMS_DESC,
3114 {
3115 .name = "sock",
3116 .type = QEMU_OPT_STRING,
3117 .help = "socket path",
3118 }, {
3119 .name = "port",
3120 .type = QEMU_OPT_NUMBER,
3121 .help = "port number",
3122 }, {
3123 .name = "group",
3124 .type = QEMU_OPT_STRING,
3125 .help = "group owner of socket",
3126 }, {
3127 .name = "mode",
3128 .type = QEMU_OPT_NUMBER,
3129 .help = "permissions for socket",
3130 },
3131 { /* end of list */ }
3132 },
3133 #endif
3134 }, {
3135 .type = "dump",
3136 .init = net_init_dump,
3137 .desc = {
3138 NET_COMMON_PARAMS_DESC,
3139 {
3140 .name = "len",
3141 .type = QEMU_OPT_SIZE,
3142 .help = "per-packet size limit (64k default)",
3143 }, {
3144 .name = "file",
3145 .type = QEMU_OPT_STRING,
3146 .help = "dump file path (default is qemu-vlan0.pcap)",
3147 },
3148 { /* end of list */ }
3149 },
3150 },
3151 { /* end of list */ }
3152 };
3153
3154 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
3155 {
3156 const char *name;
3157 const char *type;
3158 int i;
3159
3160 type = qemu_opt_get(opts, "type");
3161 if (!type) {
3162 qemu_error("No type specified for -net\n");
3163 return -1;
3164 }
3165
3166 if (is_netdev) {
3167 if (strcmp(type, "tap") != 0 &&
3168 #ifdef CONFIG_SLIRP
3169 strcmp(type, "user") != 0 &&
3170 #endif
3171 #ifdef CONFIG_VDE
3172 strcmp(type, "vde") != 0 &&
3173 #endif
3174 strcmp(type, "socket") != 0) {
3175 qemu_error("The '%s' network backend type is not valid with -netdev\n",
3176 type);
3177 return -1;
3178 }
3179
3180 if (qemu_opt_get(opts, "vlan")) {
3181 qemu_error("The 'vlan' parameter is not valid with -netdev\n");
3182 return -1;
3183 }
3184 if (qemu_opt_get(opts, "name")) {
3185 qemu_error("The 'name' parameter is not valid with -netdev\n");
3186 return -1;
3187 }
3188 if (!qemu_opts_id(opts)) {
3189 qemu_error("The id= parameter is required with -netdev\n");
3190 return -1;
3191 }
3192 }
3193
3194 name = qemu_opts_id(opts);
3195 if (!name) {
3196 name = qemu_opt_get(opts, "name");
3197 }
3198
3199 for (i = 0; net_client_types[i].type != NULL; i++) {
3200 if (!strcmp(net_client_types[i].type, type)) {
3201 VLANState *vlan = NULL;
3202
3203 if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
3204 return -1;
3205 }
3206
3207 /* Do not add to a vlan if it's a -netdev or a nic with a
3208 * netdev= parameter. */
3209 if (!(is_netdev ||
3210 (strcmp(type, "nic") == 0 && qemu_opt_get(opts, "netdev")))) {
3211 vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
3212 }
3213
3214 if (net_client_types[i].init) {
3215 return net_client_types[i].init(opts, mon, name, vlan);
3216 } else {
3217 return 0;
3218 }
3219 }
3220 }
3221
3222 qemu_error("Invalid -net type '%s'\n", type);
3223 return -1;
3224 }
3225
3226 void net_client_uninit(NICInfo *nd)
3227 {
3228 if (nd->vlan) {
3229 nd->vlan->nb_guest_devs--;
3230 }
3231 nb_nics--;
3232
3233 qemu_free(nd->model);
3234 qemu_free(nd->name);
3235 qemu_free(nd->devaddr);
3236
3237 nd->used = 0;
3238 }
3239
3240 static int net_host_check_device(const char *device)
3241 {
3242 int i;
3243 const char *valid_param_list[] = { "tap", "socket", "dump"
3244 #ifdef CONFIG_SLIRP
3245 ,"user"
3246 #endif
3247 #ifdef CONFIG_VDE
3248 ,"vde"
3249 #endif
3250 };
3251 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
3252 if (!strncmp(valid_param_list[i], device,
3253 strlen(valid_param_list[i])))
3254 return 1;
3255 }
3256
3257 return 0;
3258 }
3259
3260 void net_host_device_add(Monitor *mon, const QDict *qdict)
3261 {
3262 const char *device = qdict_get_str(qdict, "device");
3263 const char *opts_str = qdict_get_try_str(qdict, "opts");
3264 QemuOpts *opts;
3265
3266 if (!net_host_check_device(device)) {
3267 monitor_printf(mon, "invalid host network device %s\n", device);
3268 return;
3269 }
3270
3271 opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", NULL);
3272 if (!opts) {
3273 monitor_printf(mon, "parsing network options '%s' failed\n",
3274 opts_str ? opts_str : "");
3275 return;
3276 }
3277
3278 qemu_opt_set(opts, "type", device);
3279
3280 if (net_client_init(mon, opts, 0) < 0) {
3281 monitor_printf(mon, "adding host network device %s failed\n", device);
3282 }
3283 }
3284
3285 void net_host_device_remove(Monitor *mon, const QDict *qdict)
3286 {
3287 VLANClientState *vc;
3288 int vlan_id = qdict_get_int(qdict, "vlan_id");
3289 const char *device = qdict_get_str(qdict, "device");
3290
3291 vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
3292 if (!vc) {
3293 return;
3294 }
3295 if (!net_host_check_device(vc->model)) {
3296 monitor_printf(mon, "invalid host network device %s\n", device);
3297 return;
3298 }
3299 qemu_del_vlan_client(vc);
3300 }
3301
3302 void net_set_boot_mask(int net_boot_mask)
3303 {
3304 int i;
3305
3306 /* Only the first four NICs may be bootable */
3307 net_boot_mask = net_boot_mask & 0xF;
3308
3309 for (i = 0; i < nb_nics; i++) {
3310 if (net_boot_mask & (1 << i)) {
3311 nd_table[i].bootable = 1;
3312 net_boot_mask &= ~(1 << i);
3313 }
3314 }
3315
3316 if (net_boot_mask) {
3317 fprintf(stderr, "Cannot boot from non-existent NIC\n");
3318 exit(1);
3319 }
3320 }
3321
3322 void do_info_network(Monitor *mon)
3323 {
3324 VLANState *vlan;
3325
3326 QTAILQ_FOREACH(vlan, &vlans, next) {
3327 VLANClientState *vc;
3328
3329 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
3330
3331 QTAILQ_FOREACH(vc, &vlan->clients, next) {
3332 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
3333 }
3334 }
3335 }
3336
3337 void do_set_link(Monitor *mon, const QDict *qdict)
3338 {
3339 VLANState *vlan;
3340 VLANClientState *vc = NULL;
3341 const char *name = qdict_get_str(qdict, "name");
3342 const char *up_or_down = qdict_get_str(qdict, "up_or_down");
3343
3344 QTAILQ_FOREACH(vlan, &vlans, next) {
3345 QTAILQ_FOREACH(vc, &vlan->clients, next) {
3346 if (strcmp(vc->name, name) == 0) {
3347 goto done;
3348 }
3349 }
3350 }
3351 done:
3352
3353 if (!vc) {
3354 monitor_printf(mon, "could not find network device '%s'\n", name);
3355 return;
3356 }
3357
3358 if (strcmp(up_or_down, "up") == 0)
3359 vc->link_down = 0;
3360 else if (strcmp(up_or_down, "down") == 0)
3361 vc->link_down = 1;
3362 else
3363 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
3364 "valid\n", up_or_down);
3365
3366 if (vc->link_status_changed)
3367 vc->link_status_changed(vc);
3368 }
3369
3370 void net_cleanup(void)
3371 {
3372 VLANState *vlan;
3373 VLANClientState *vc, *next_vc;
3374
3375 QTAILQ_FOREACH(vlan, &vlans, next) {
3376 QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
3377 qemu_del_vlan_client(vc);
3378 }
3379 }
3380
3381 QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
3382 qemu_del_vlan_client(vc);
3383 }
3384 }
3385
3386 static void net_check_clients(void)
3387 {
3388 VLANState *vlan;
3389
3390 QTAILQ_FOREACH(vlan, &vlans, next) {
3391 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
3392 continue;
3393 if (vlan->nb_guest_devs == 0)
3394 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
3395 if (vlan->nb_host_devs == 0)
3396 fprintf(stderr,
3397 "Warning: vlan %d is not connected to host network\n",
3398 vlan->id);
3399 }
3400 }
3401
3402 static int net_init_client(QemuOpts *opts, void *dummy)
3403 {
3404 if (net_client_init(NULL, opts, 0) < 0)
3405 return -1;
3406 return 0;
3407 }
3408
3409 static int net_init_netdev(QemuOpts *opts, void *dummy)
3410 {
3411 return net_client_init(NULL, opts, 1);
3412 }
3413
3414 int net_init_clients(void)
3415 {
3416 if (QTAILQ_EMPTY(&qemu_net_opts.head)) {
3417 /* if no clients, we use a default config */
3418 qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
3419 #ifdef CONFIG_SLIRP
3420 qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
3421 #endif
3422 }
3423
3424 QTAILQ_INIT(&vlans);
3425 QTAILQ_INIT(&non_vlan_clients);
3426
3427 if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
3428 return -1;
3429
3430 if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
3431 return -1;
3432 }
3433
3434 net_check_clients();
3435
3436 return 0;
3437 }
3438
3439 int net_client_parse(QemuOptsList *opts_list, const char *optarg)
3440 {
3441 #if defined(CONFIG_SLIRP)
3442 /* handle legacy -net channel,port:chr */
3443 if (!strcmp(opts_list->name, "net") &&
3444 !strncmp(optarg, "channel,", strlen("channel,"))) {
3445 int ret;
3446
3447 optarg += strlen("channel,");
3448
3449 if (QTAILQ_EMPTY(&slirp_stacks)) {
3450 struct slirp_config_str *config;
3451
3452 config = qemu_malloc(sizeof(*config));
3453 pstrcpy(config->str, sizeof(config->str), optarg);
3454 config->flags = SLIRP_CFG_LEGACY;
3455 config->next = slirp_configs;
3456 slirp_configs = config;
3457 ret = 0;
3458 } else {
3459 ret = slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks), optarg, 1);
3460 }
3461
3462 return ret;
3463 }
3464 #endif
3465 if (!qemu_opts_parse(opts_list, optarg, "type")) {
3466 return -1;
3467 }
3468
3469 return 0;
3470 }