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