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