]> git.proxmox.com Git - qemu.git/blame - net.c
Don't fail PCI hotplug if no NIC model is supplied (Mark McLoughlin)
[qemu.git] / net.c
CommitLineData
63a01ef8
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
63a01ef8
AL
24#include <unistd.h>
25#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
28#include <errno.h>
29#include <sys/time.h>
30#include <zlib.h>
31
179a2c19 32/* Needed early for HOST_BSD etc. */
d40cdb10
BS
33#include "config-host.h"
34
63a01ef8
AL
35#ifndef _WIN32
36#include <sys/times.h>
37#include <sys/wait.h>
38#include <termios.h>
39#include <sys/mman.h>
40#include <sys/ioctl.h>
24646c7e 41#include <sys/resource.h>
63a01ef8
AL
42#include <sys/socket.h>
43#include <netinet/in.h>
24646c7e
BS
44#include <net/if.h>
45#ifdef __NetBSD__
46#include <net/if_tap.h>
47#endif
48#ifdef __linux__
49#include <linux/if_tun.h>
50#endif
51#include <arpa/inet.h>
63a01ef8
AL
52#include <dirent.h>
53#include <netdb.h>
54#include <sys/select.h>
179a2c19 55#ifdef HOST_BSD
63a01ef8 56#include <sys/stat.h>
c5e97233 57#if defined(__FreeBSD__) || defined(__DragonFly__)
63a01ef8 58#include <libutil.h>
24646c7e
BS
59#else
60#include <util.h>
63a01ef8
AL
61#endif
62#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63#include <freebsd/stdlib.h>
64#else
65#ifdef __linux__
63a01ef8
AL
66#include <pty.h>
67#include <malloc.h>
68#include <linux/rtc.h>
69
70/* For the benefit of older linux systems which don't supply it,
71 we use a local copy of hpet.h. */
72/* #include <linux/hpet.h> */
73#include "hpet.h"
74
75#include <linux/ppdev.h>
76#include <linux/parport.h>
77#endif
78#ifdef __sun__
79#include <sys/stat.h>
80#include <sys/ethernet.h>
81#include <sys/sockio.h>
82#include <netinet/arp.h>
83#include <netinet/in.h>
84#include <netinet/in_systm.h>
85#include <netinet/ip.h>
86#include <netinet/ip_icmp.h> // must come after ip.h
87#include <netinet/udp.h>
88#include <netinet/tcp.h>
89#include <net/if.h>
90#include <syslog.h>
91#include <stropts.h>
92#endif
93#endif
94#endif
95
63a01ef8
AL
96#if defined(__OpenBSD__)
97#include <util.h>
98#endif
99
100#if defined(CONFIG_VDE)
101#include <libvdeplug.h>
102#endif
103
104#ifdef _WIN32
49dc768d 105#include <windows.h>
63a01ef8
AL
106#include <malloc.h>
107#include <sys/timeb.h>
108#include <mmsystem.h>
109#define getopt_long_only getopt_long
110#define memalign(align, size) malloc(size)
111#endif
112
511d2b14
BS
113#include "qemu-common.h"
114#include "net.h"
115#include "monitor.h"
116#include "sysemu.h"
117#include "qemu-timer.h"
118#include "qemu-char.h"
119#include "audio/audio.h"
120#include "qemu_socket.h"
121
122#if defined(CONFIG_SLIRP)
123#include "libslirp.h"
124#endif
125
126
63a01ef8
AL
127static VLANState *first_vlan;
128
129/***********************************************************/
130/* network device redirectors */
131
132#if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
133static void hex_dump(FILE *f, const uint8_t *buf, int size)
134{
135 int len, i, j, c;
136
137 for(i=0;i<size;i+=16) {
138 len = size - i;
139 if (len > 16)
140 len = 16;
141 fprintf(f, "%08x ", i);
142 for(j=0;j<16;j++) {
143 if (j < len)
144 fprintf(f, " %02x", buf[i+j]);
145 else
146 fprintf(f, " ");
147 }
148 fprintf(f, " ");
149 for(j=0;j<len;j++) {
150 c = buf[i+j];
151 if (c < ' ' || c > '~')
152 c = '.';
153 fprintf(f, "%c", c);
154 }
155 fprintf(f, "\n");
156 }
157}
158#endif
159
160static int parse_macaddr(uint8_t *macaddr, const char *p)
161{
162 int i;
163 char *last_char;
164 long int offset;
165
166 errno = 0;
167 offset = strtol(p, &last_char, 0);
168 if (0 == errno && '\0' == *last_char &&
169 offset >= 0 && offset <= 0xFFFFFF) {
170 macaddr[3] = (offset & 0xFF0000) >> 16;
171 macaddr[4] = (offset & 0xFF00) >> 8;
172 macaddr[5] = offset & 0xFF;
173 return 0;
174 } else {
175 for(i = 0; i < 6; i++) {
176 macaddr[i] = strtol(p, (char **)&p, 16);
177 if (i == 5) {
178 if (*p != '\0')
179 return -1;
180 } else {
181 if (*p != ':' && *p != '-')
182 return -1;
183 p++;
184 }
185 }
186 return 0;
187 }
188
189 return -1;
190}
191
192static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
193{
194 const char *p, *p1;
195 int len;
196 p = *pp;
197 p1 = strchr(p, sep);
198 if (!p1)
199 return -1;
200 len = p1 - p;
201 p1++;
202 if (buf_size > 0) {
203 if (len > buf_size - 1)
204 len = buf_size - 1;
205 memcpy(buf, p, len);
206 buf[len] = '\0';
207 }
208 *pp = p1;
209 return 0;
210}
211
212int parse_host_src_port(struct sockaddr_in *haddr,
213 struct sockaddr_in *saddr,
214 const char *input_str)
215{
216 char *str = strdup(input_str);
217 char *host_str = str;
218 char *src_str;
219 const char *src_str2;
220 char *ptr;
221
222 /*
223 * Chop off any extra arguments at the end of the string which
224 * would start with a comma, then fill in the src port information
225 * if it was provided else use the "any address" and "any port".
226 */
227 if ((ptr = strchr(str,',')))
228 *ptr = '\0';
229
230 if ((src_str = strchr(input_str,'@'))) {
231 *src_str = '\0';
232 src_str++;
233 }
234
235 if (parse_host_port(haddr, host_str) < 0)
236 goto fail;
237
238 src_str2 = src_str;
239 if (!src_str || *src_str == '\0')
240 src_str2 = ":0";
241
242 if (parse_host_port(saddr, src_str2) < 0)
243 goto fail;
244
245 free(str);
246 return(0);
247
248fail:
249 free(str);
250 return -1;
251}
252
253int parse_host_port(struct sockaddr_in *saddr, const char *str)
254{
255 char buf[512];
256 struct hostent *he;
257 const char *p, *r;
258 int port;
259
260 p = str;
261 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
262 return -1;
263 saddr->sin_family = AF_INET;
264 if (buf[0] == '\0') {
265 saddr->sin_addr.s_addr = 0;
266 } else {
cd390083 267 if (qemu_isdigit(buf[0])) {
63a01ef8
AL
268 if (!inet_aton(buf, &saddr->sin_addr))
269 return -1;
270 } else {
271 if ((he = gethostbyname(buf)) == NULL)
272 return - 1;
273 saddr->sin_addr = *(struct in_addr *)he->h_addr;
274 }
275 }
276 port = strtol(p, (char **)&r, 0);
277 if (r == p)
278 return -1;
279 saddr->sin_port = htons(port);
280 return 0;
281}
282
69d6451c
BS
283#if !defined(_WIN32) && 0
284static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
63a01ef8
AL
285{
286 const char *p;
287 int len;
288
289 len = MIN(108, strlen(str));
290 p = strchr(str, ',');
291 if (p)
292 len = MIN(len, p - str);
293
294 memset(uaddr, 0, sizeof(*uaddr));
295
296 uaddr->sun_family = AF_UNIX;
297 memcpy(uaddr->sun_path, str, len);
298
299 return 0;
300}
301#endif
302
7cb7434b
AL
303void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
304{
305 snprintf(vc->info_str, sizeof(vc->info_str),
4dda4063
AL
306 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
307 vc->model,
7cb7434b
AL
308 macaddr[0], macaddr[1], macaddr[2],
309 macaddr[3], macaddr[4], macaddr[5]);
310}
311
676cff29
AL
312static char *assign_name(VLANClientState *vc1, const char *model)
313{
314 VLANState *vlan;
315 char buf[256];
316 int id = 0;
317
318 for (vlan = first_vlan; vlan; vlan = vlan->next) {
319 VLANClientState *vc;
320
321 for (vc = vlan->first_client; vc; vc = vc->next)
322 if (vc != vc1 && strcmp(vc->model, model) == 0)
323 id++;
324 }
325
326 snprintf(buf, sizeof(buf), "%s.%d", model, id);
327
328 return strdup(buf);
329}
330
63a01ef8 331VLANClientState *qemu_new_vlan_client(VLANState *vlan,
bf38c1a0 332 const char *model,
7a9f6e4a 333 const char *name,
63a01ef8
AL
334 IOReadHandler *fd_read,
335 IOCanRWHandler *fd_can_read,
336 void *opaque)
337{
338 VLANClientState *vc, **pvc;
339 vc = qemu_mallocz(sizeof(VLANClientState));
bf38c1a0 340 vc->model = strdup(model);
7a9f6e4a
AL
341 if (name)
342 vc->name = strdup(name);
343 else
344 vc->name = assign_name(vc, model);
63a01ef8
AL
345 vc->fd_read = fd_read;
346 vc->fd_can_read = fd_can_read;
347 vc->opaque = opaque;
348 vc->vlan = vlan;
349
350 vc->next = NULL;
351 pvc = &vlan->first_client;
352 while (*pvc != NULL)
353 pvc = &(*pvc)->next;
354 *pvc = vc;
355 return vc;
356}
357
358void qemu_del_vlan_client(VLANClientState *vc)
359{
360 VLANClientState **pvc = &vc->vlan->first_client;
361
362 while (*pvc != NULL)
363 if (*pvc == vc) {
364 *pvc = vc->next;
676cff29 365 free(vc->name);
bf38c1a0 366 free(vc->model);
63a01ef8
AL
367 free(vc);
368 break;
369 } else
370 pvc = &(*pvc)->next;
371}
372
8b13c4a7
AL
373VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
374{
375 VLANClientState **pvc = &vlan->first_client;
376
377 while (*pvc != NULL)
378 if ((*pvc)->opaque == opaque)
379 return *pvc;
380 else
381 pvc = &(*pvc)->next;
382
383 return NULL;
384}
385
63a01ef8
AL
386int qemu_can_send_packet(VLANClientState *vc1)
387{
388 VLANState *vlan = vc1->vlan;
389 VLANClientState *vc;
390
391 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
392 if (vc != vc1) {
393 if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
394 return 1;
395 }
396 }
397 return 0;
398}
399
400void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
401{
402 VLANState *vlan = vc1->vlan;
403 VLANClientState *vc;
404
436e5e53
AL
405 if (vc1->link_down)
406 return;
407
63a01ef8
AL
408#ifdef DEBUG_NET
409 printf("vlan %d send:\n", vlan->id);
410 hex_dump(stdout, buf, size);
411#endif
412 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
436e5e53 413 if (vc != vc1 && !vc->link_down) {
63a01ef8
AL
414 vc->fd_read(vc->opaque, buf, size);
415 }
416 }
417}
418
fbe78f4f
AL
419static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
420 int iovcnt)
421{
422 uint8_t buffer[4096];
423 size_t offset = 0;
424 int i;
425
426 for (i = 0; i < iovcnt; i++) {
427 size_t len;
428
429 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
430 memcpy(buffer + offset, iov[i].iov_base, len);
431 offset += len;
432 }
433
434 vc->fd_read(vc->opaque, buffer, offset);
435
436 return offset;
437}
438
e0e7877a
AL
439static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
440{
441 size_t offset = 0;
442 int i;
443
444 for (i = 0; i < iovcnt; i++)
445 offset += iov[i].iov_len;
446 return offset;
447}
448
fbe78f4f
AL
449ssize_t qemu_sendv_packet(VLANClientState *vc1, const struct iovec *iov,
450 int iovcnt)
451{
452 VLANState *vlan = vc1->vlan;
453 VLANClientState *vc;
454 ssize_t max_len = 0;
455
e0e7877a
AL
456 if (vc1->link_down)
457 return calc_iov_length(iov, iovcnt);
458
fbe78f4f
AL
459 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
460 ssize_t len = 0;
461
462 if (vc == vc1)
463 continue;
464
e0e7877a
AL
465 if (vc->link_down)
466 len = calc_iov_length(iov, iovcnt);
fbe78f4f
AL
467 if (vc->fd_readv)
468 len = vc->fd_readv(vc->opaque, iov, iovcnt);
469 else if (vc->fd_read)
470 len = vc_sendv_compat(vc, iov, iovcnt);
471
472 max_len = MAX(max_len, len);
473 }
474
475 return max_len;
476}
477
63a01ef8
AL
478#if defined(CONFIG_SLIRP)
479
480/* slirp network adapter */
481
482static int slirp_inited;
49ec9b40
AL
483static int slirp_restrict;
484static char *slirp_ip;
63a01ef8
AL
485static VLANClientState *slirp_vc;
486
487int slirp_can_output(void)
488{
489 return !slirp_vc || qemu_can_send_packet(slirp_vc);
490}
491
492void slirp_output(const uint8_t *pkt, int pkt_len)
493{
494#ifdef DEBUG_SLIRP
495 printf("slirp output:\n");
496 hex_dump(stdout, pkt, pkt_len);
497#endif
498 if (!slirp_vc)
499 return;
500 qemu_send_packet(slirp_vc, pkt, pkt_len);
501}
502
503int slirp_is_inited(void)
504{
505 return slirp_inited;
506}
507
508static void slirp_receive(void *opaque, const uint8_t *buf, int size)
509{
510#ifdef DEBUG_SLIRP
511 printf("slirp input:\n");
512 hex_dump(stdout, buf, size);
513#endif
514 slirp_input(buf, size);
515}
516
7a9f6e4a 517static int net_slirp_init(VLANState *vlan, const char *model, const char *name)
63a01ef8
AL
518{
519 if (!slirp_inited) {
520 slirp_inited = 1;
49ec9b40 521 slirp_init(slirp_restrict, slirp_ip);
63a01ef8 522 }
7a9f6e4a 523 slirp_vc = qemu_new_vlan_client(vlan, model, name,
63a01ef8 524 slirp_receive, NULL, NULL);
7cb7434b 525 slirp_vc->info_str[0] = '\0';
63a01ef8
AL
526 return 0;
527}
528
529void net_slirp_redir(const char *redir_str)
530{
531 int is_udp;
532 char buf[256], *r;
533 const char *p;
534 struct in_addr guest_addr;
535 int host_port, guest_port;
536
537 if (!slirp_inited) {
538 slirp_inited = 1;
49ec9b40 539 slirp_init(slirp_restrict, slirp_ip);
63a01ef8
AL
540 }
541
542 p = redir_str;
543 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
544 goto fail;
545 if (!strcmp(buf, "tcp")) {
546 is_udp = 0;
547 } else if (!strcmp(buf, "udp")) {
548 is_udp = 1;
549 } else {
550 goto fail;
551 }
552
553 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
554 goto fail;
555 host_port = strtol(buf, &r, 0);
556 if (r == buf)
557 goto fail;
558
559 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
560 goto fail;
561 if (buf[0] == '\0') {
562 pstrcpy(buf, sizeof(buf), "10.0.2.15");
563 }
564 if (!inet_aton(buf, &guest_addr))
565 goto fail;
566
567 guest_port = strtol(p, &r, 0);
568 if (r == p)
569 goto fail;
570
571 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
572 fprintf(stderr, "qemu: could not set up redirection\n");
573 exit(1);
574 }
575 return;
576 fail:
577 fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
578 exit(1);
579}
580
581#ifndef _WIN32
582
583static char smb_dir[1024];
584
585static void erase_dir(char *dir_name)
586{
587 DIR *d;
588 struct dirent *de;
589 char filename[1024];
590
591 /* erase all the files in the directory */
511d2b14 592 if ((d = opendir(dir_name)) != NULL) {
63a01ef8
AL
593 for(;;) {
594 de = readdir(d);
595 if (!de)
596 break;
597 if (strcmp(de->d_name, ".") != 0 &&
598 strcmp(de->d_name, "..") != 0) {
599 snprintf(filename, sizeof(filename), "%s/%s",
600 smb_dir, de->d_name);
601 if (unlink(filename) != 0) /* is it a directory? */
602 erase_dir(filename);
603 }
604 }
605 closedir(d);
606 rmdir(dir_name);
607 }
608}
609
610/* automatic user mode samba server configuration */
611static void smb_exit(void)
612{
613 erase_dir(smb_dir);
614}
615
616/* automatic user mode samba server configuration */
617void net_slirp_smb(const char *exported_dir)
618{
619 char smb_conf[1024];
620 char smb_cmdline[1024];
621 FILE *f;
622
623 if (!slirp_inited) {
624 slirp_inited = 1;
49ec9b40 625 slirp_init(slirp_restrict, slirp_ip);
63a01ef8
AL
626 }
627
628 /* XXX: better tmp dir construction */
3f4cb3d3 629 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%ld", (long)getpid());
63a01ef8
AL
630 if (mkdir(smb_dir, 0700) < 0) {
631 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
632 exit(1);
633 }
634 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
635
636 f = fopen(smb_conf, "w");
637 if (!f) {
638 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
639 exit(1);
640 }
641 fprintf(f,
642 "[global]\n"
643 "private dir=%s\n"
644 "smb ports=0\n"
645 "socket address=127.0.0.1\n"
646 "pid directory=%s\n"
647 "lock directory=%s\n"
648 "log file=%s/log.smbd\n"
649 "smb passwd file=%s/smbpasswd\n"
650 "security = share\n"
651 "[qemu]\n"
652 "path=%s\n"
653 "read only=no\n"
654 "guest ok=yes\n",
655 smb_dir,
656 smb_dir,
657 smb_dir,
658 smb_dir,
659 smb_dir,
660 exported_dir
661 );
662 fclose(f);
663 atexit(smb_exit);
664
665 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
666 SMBD_COMMAND, smb_conf);
667
668 slirp_add_exec(0, smb_cmdline, 4, 139);
669}
670
671#endif /* !defined(_WIN32) */
376253ec 672void do_info_slirp(Monitor *mon)
63a01ef8
AL
673{
674 slirp_stats();
675}
676
8ca9217d
AL
677struct VMChannel {
678 CharDriverState *hd;
679 int port;
511d2b14 680};
8ca9217d
AL
681
682static int vmchannel_can_read(void *opaque)
683{
684 struct VMChannel *vmc = (struct VMChannel*)opaque;
685 return slirp_socket_can_recv(4, vmc->port);
686}
687
688static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
689{
690 struct VMChannel *vmc = (struct VMChannel*)opaque;
691 slirp_socket_recv(4, vmc->port, buf, size);
692}
693
63a01ef8
AL
694#endif /* CONFIG_SLIRP */
695
696#if !defined(_WIN32)
697
698typedef struct TAPState {
699 VLANClientState *vc;
700 int fd;
701 char down_script[1024];
973cbd37 702 char down_script_arg[128];
63a01ef8
AL
703} TAPState;
704
b535b7b2
AL
705static ssize_t tap_receive_iov(void *opaque, const struct iovec *iov,
706 int iovcnt)
707{
708 TAPState *s = opaque;
709 ssize_t len;
710
711 do {
712 len = writev(s->fd, iov, iovcnt);
713 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
714
715 return len;
716}
b535b7b2 717
63a01ef8
AL
718static void tap_receive(void *opaque, const uint8_t *buf, int size)
719{
720 TAPState *s = opaque;
721 int ret;
722 for(;;) {
723 ret = write(s->fd, buf, size);
724 if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
725 } else {
726 break;
727 }
728 }
729}
730
731static void tap_send(void *opaque)
732{
733 TAPState *s = opaque;
734 uint8_t buf[4096];
735 int size;
736
737#ifdef __sun__
738 struct strbuf sbuf;
739 int f = 0;
740 sbuf.maxlen = sizeof(buf);
3f4cb3d3 741 sbuf.buf = (char *)buf;
63a01ef8
AL
742 size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
743#else
744 size = read(s->fd, buf, sizeof(buf));
745#endif
746 if (size > 0) {
747 qemu_send_packet(s->vc, buf, size);
748 }
749}
750
751/* fd support */
752
7a9f6e4a
AL
753static TAPState *net_tap_fd_init(VLANState *vlan,
754 const char *model,
755 const char *name,
756 int fd)
63a01ef8
AL
757{
758 TAPState *s;
759
760 s = qemu_mallocz(sizeof(TAPState));
63a01ef8 761 s->fd = fd;
7a9f6e4a 762 s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive, NULL, s);
b535b7b2 763 s->vc->fd_readv = tap_receive_iov;
63a01ef8 764 qemu_set_fd_handler(s->fd, tap_send, NULL, s);
7cb7434b 765 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
63a01ef8
AL
766 return s;
767}
768
179a2c19 769#if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
63a01ef8
AL
770static int tap_open(char *ifname, int ifname_size)
771{
772 int fd;
773 char *dev;
774 struct stat s;
775
776 TFR(fd = open("/dev/tap", O_RDWR));
777 if (fd < 0) {
778 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
779 return -1;
780 }
781
782 fstat(fd, &s);
783 dev = devname(s.st_rdev, S_IFCHR);
784 pstrcpy(ifname, ifname_size, dev);
785
786 fcntl(fd, F_SETFL, O_NONBLOCK);
787 return fd;
788}
789#elif defined(__sun__)
790#define TUNNEWPPA (('T'<<16) | 0x0001)
791/*
792 * Allocate TAP device, returns opened fd.
793 * Stores dev name in the first arg(must be large enough).
794 */
3f4cb3d3 795static int tap_alloc(char *dev, size_t dev_size)
63a01ef8
AL
796{
797 int tap_fd, if_fd, ppa = -1;
798 static int ip_fd = 0;
799 char *ptr;
800
801 static int arp_fd = 0;
802 int ip_muxid, arp_muxid;
803 struct strioctl strioc_if, strioc_ppa;
804 int link_type = I_PLINK;;
805 struct lifreq ifr;
806 char actual_name[32] = "";
807
808 memset(&ifr, 0x0, sizeof(ifr));
809
810 if( *dev ){
811 ptr = dev;
47398b9c 812 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
63a01ef8
AL
813 ppa = atoi(ptr);
814 }
815
816 /* Check if IP device was opened */
817 if( ip_fd )
818 close(ip_fd);
819
820 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
821 if (ip_fd < 0) {
822 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
823 return -1;
824 }
825
826 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
827 if (tap_fd < 0) {
828 syslog(LOG_ERR, "Can't open /dev/tap");
829 return -1;
830 }
831
832 /* Assign a new PPA and get its unit number. */
833 strioc_ppa.ic_cmd = TUNNEWPPA;
834 strioc_ppa.ic_timout = 0;
835 strioc_ppa.ic_len = sizeof(ppa);
836 strioc_ppa.ic_dp = (char *)&ppa;
837 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
838 syslog (LOG_ERR, "Can't assign new interface");
839
840 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
841 if (if_fd < 0) {
842 syslog(LOG_ERR, "Can't open /dev/tap (2)");
843 return -1;
844 }
845 if(ioctl(if_fd, I_PUSH, "ip") < 0){
846 syslog(LOG_ERR, "Can't push IP module");
847 return -1;
848 }
849
850 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
851 syslog(LOG_ERR, "Can't get flags\n");
852
853 snprintf (actual_name, 32, "tap%d", ppa);
854 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
855
856 ifr.lifr_ppa = ppa;
857 /* Assign ppa according to the unit number returned by tun device */
858
859 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
860 syslog (LOG_ERR, "Can't set PPA %d", ppa);
861 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
862 syslog (LOG_ERR, "Can't get flags\n");
863 /* Push arp module to if_fd */
864 if (ioctl (if_fd, I_PUSH, "arp") < 0)
865 syslog (LOG_ERR, "Can't push ARP module (2)");
866
867 /* Push arp module to ip_fd */
868 if (ioctl (ip_fd, I_POP, NULL) < 0)
869 syslog (LOG_ERR, "I_POP failed\n");
870 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
871 syslog (LOG_ERR, "Can't push ARP module (3)\n");
872 /* Open arp_fd */
873 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
874 if (arp_fd < 0)
875 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
876
877 /* Set ifname to arp */
878 strioc_if.ic_cmd = SIOCSLIFNAME;
879 strioc_if.ic_timout = 0;
880 strioc_if.ic_len = sizeof(ifr);
881 strioc_if.ic_dp = (char *)&ifr;
882 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
883 syslog (LOG_ERR, "Can't set ifname to arp\n");
884 }
885
886 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
887 syslog(LOG_ERR, "Can't link TAP device to IP");
888 return -1;
889 }
890
891 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
892 syslog (LOG_ERR, "Can't link TAP device to ARP");
893
894 close (if_fd);
895
896 memset(&ifr, 0x0, sizeof(ifr));
897 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
898 ifr.lifr_ip_muxid = ip_muxid;
899 ifr.lifr_arp_muxid = arp_muxid;
900
901 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
902 {
903 ioctl (ip_fd, I_PUNLINK , arp_muxid);
904 ioctl (ip_fd, I_PUNLINK, ip_muxid);
905 syslog (LOG_ERR, "Can't set multiplexor id");
906 }
907
908 snprintf(dev, dev_size, "tap%d", ppa);
909 return tap_fd;
910}
911
912static int tap_open(char *ifname, int ifname_size)
913{
914 char dev[10]="";
915 int fd;
916 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
917 fprintf(stderr, "Cannot allocate TAP device\n");
918 return -1;
919 }
920 pstrcpy(ifname, ifname_size, dev);
921 fcntl(fd, F_SETFL, O_NONBLOCK);
922 return fd;
923}
b29fe3ed 924#elif defined (_AIX)
925static int tap_open(char *ifname, int ifname_size)
926{
927 fprintf (stderr, "no tap on AIX\n");
928 return -1;
929}
63a01ef8
AL
930#else
931static int tap_open(char *ifname, int ifname_size)
932{
933 struct ifreq ifr;
934 int fd, ret;
935
936 TFR(fd = open("/dev/net/tun", O_RDWR));
937 if (fd < 0) {
938 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
939 return -1;
940 }
941 memset(&ifr, 0, sizeof(ifr));
942 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
943 if (ifname[0] != '\0')
944 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
945 else
946 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
947 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
948 if (ret != 0) {
949 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
950 close(fd);
951 return -1;
952 }
953 pstrcpy(ifname, ifname_size, ifr.ifr_name);
954 fcntl(fd, F_SETFL, O_NONBLOCK);
955 return fd;
956}
957#endif
958
959static int launch_script(const char *setup_script, const char *ifname, int fd)
960{
961 int pid, status;
962 char *args[3];
963 char **parg;
964
965 /* try to launch network script */
966 pid = fork();
967 if (pid >= 0) {
968 if (pid == 0) {
969 int open_max = sysconf (_SC_OPEN_MAX), i;
970 for (i = 0; i < open_max; i++)
971 if (i != STDIN_FILENO &&
972 i != STDOUT_FILENO &&
973 i != STDERR_FILENO &&
974 i != fd)
975 close(i);
976
977 parg = args;
978 *parg++ = (char *)setup_script;
979 *parg++ = (char *)ifname;
980 *parg++ = NULL;
981 execv(setup_script, args);
982 _exit(1);
983 }
984 while (waitpid(pid, &status, 0) != pid);
985 if (!WIFEXITED(status) ||
986 WEXITSTATUS(status) != 0) {
987 fprintf(stderr, "%s: could not launch network script\n",
988 setup_script);
989 return -1;
990 }
991 }
992 return 0;
993}
994
7a9f6e4a
AL
995static int net_tap_init(VLANState *vlan, const char *model,
996 const char *name, const char *ifname1,
63a01ef8
AL
997 const char *setup_script, const char *down_script)
998{
999 TAPState *s;
1000 int fd;
1001 char ifname[128];
1002
1003 if (ifname1 != NULL)
1004 pstrcpy(ifname, sizeof(ifname), ifname1);
1005 else
1006 ifname[0] = '\0';
1007 TFR(fd = tap_open(ifname, sizeof(ifname)));
1008 if (fd < 0)
1009 return -1;
1010
1011 if (!setup_script || !strcmp(setup_script, "no"))
1012 setup_script = "";
1013 if (setup_script[0] != '\0') {
1014 if (launch_script(setup_script, ifname, fd))
1015 return -1;
1016 }
7a9f6e4a 1017 s = net_tap_fd_init(vlan, model, name, fd);
63a01ef8
AL
1018 if (!s)
1019 return -1;
1020 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
7cb7434b
AL
1021 "ifname=%s,script=%s,downscript=%s",
1022 ifname, setup_script, down_script);
973cbd37 1023 if (down_script && strcmp(down_script, "no")) {
63a01ef8 1024 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
973cbd37
AL
1025 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1026 }
63a01ef8
AL
1027 return 0;
1028}
1029
1030#endif /* !_WIN32 */
1031
1032#if defined(CONFIG_VDE)
1033typedef struct VDEState {
1034 VLANClientState *vc;
1035 VDECONN *vde;
1036} VDEState;
1037
1038static void vde_to_qemu(void *opaque)
1039{
1040 VDEState *s = opaque;
1041 uint8_t buf[4096];
1042 int size;
1043
1044 size = vde_recv(s->vde, buf, sizeof(buf), 0);
1045 if (size > 0) {
1046 qemu_send_packet(s->vc, buf, size);
1047 }
1048}
1049
1050static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
1051{
1052 VDEState *s = opaque;
1053 int ret;
1054 for(;;) {
1055 ret = vde_send(s->vde, buf, size, 0);
1056 if (ret < 0 && errno == EINTR) {
1057 } else {
1058 break;
1059 }
1060 }
1061}
1062
7a9f6e4a
AL
1063static int net_vde_init(VLANState *vlan, const char *model,
1064 const char *name, const char *sock,
bf38c1a0 1065 int port, const char *group, int mode)
63a01ef8
AL
1066{
1067 VDEState *s;
1068 char *init_group = strlen(group) ? (char *)group : NULL;
1069 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1070
1071 struct vde_open_args args = {
1072 .port = port,
1073 .group = init_group,
1074 .mode = mode,
1075 };
1076
1077 s = qemu_mallocz(sizeof(VDEState));
63a01ef8
AL
1078 s->vde = vde_open(init_sock, "QEMU", &args);
1079 if (!s->vde){
1080 free(s);
1081 return -1;
1082 }
7a9f6e4a 1083 s->vc = qemu_new_vlan_client(vlan, model, name, vde_from_qemu, NULL, s);
63a01ef8 1084 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
7cb7434b 1085 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
63a01ef8
AL
1086 sock, vde_datafd(s->vde));
1087 return 0;
1088}
1089#endif
1090
1091/* network connection */
1092typedef struct NetSocketState {
1093 VLANClientState *vc;
1094 int fd;
1095 int state; /* 0 = getting length, 1 = getting data */
abcd2baa
AL
1096 unsigned int index;
1097 unsigned int packet_len;
63a01ef8
AL
1098 uint8_t buf[4096];
1099 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1100} NetSocketState;
1101
1102typedef struct NetSocketListenState {
1103 VLANState *vlan;
bf38c1a0 1104 char *model;
7a9f6e4a 1105 char *name;
63a01ef8
AL
1106 int fd;
1107} NetSocketListenState;
1108
1109/* XXX: we consider we can send the whole packet without blocking */
1110static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
1111{
1112 NetSocketState *s = opaque;
1113 uint32_t len;
1114 len = htonl(size);
1115
1116 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1117 send_all(s->fd, buf, size);
1118}
1119
1120static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
1121{
1122 NetSocketState *s = opaque;
1123 sendto(s->fd, buf, size, 0,
1124 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1125}
1126
1127static void net_socket_send(void *opaque)
1128{
1129 NetSocketState *s = opaque;
abcd2baa
AL
1130 int size, err;
1131 unsigned l;
63a01ef8
AL
1132 uint8_t buf1[4096];
1133 const uint8_t *buf;
1134
1135 size = recv(s->fd, buf1, sizeof(buf1), 0);
1136 if (size < 0) {
1137 err = socket_error();
1138 if (err != EWOULDBLOCK)
1139 goto eoc;
1140 } else if (size == 0) {
1141 /* end of connection */
1142 eoc:
1143 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1144 closesocket(s->fd);
1145 return;
1146 }
1147 buf = buf1;
1148 while (size > 0) {
1149 /* reassemble a packet from the network */
1150 switch(s->state) {
1151 case 0:
1152 l = 4 - s->index;
1153 if (l > size)
1154 l = size;
1155 memcpy(s->buf + s->index, buf, l);
1156 buf += l;
1157 size -= l;
1158 s->index += l;
1159 if (s->index == 4) {
1160 /* got length */
1161 s->packet_len = ntohl(*(uint32_t *)s->buf);
1162 s->index = 0;
1163 s->state = 1;
1164 }
1165 break;
1166 case 1:
1167 l = s->packet_len - s->index;
1168 if (l > size)
1169 l = size;
abcd2baa
AL
1170 if (s->index + l <= sizeof(s->buf)) {
1171 memcpy(s->buf + s->index, buf, l);
1172 } else {
1173 fprintf(stderr, "serious error: oversized packet received,"
1174 "connection terminated.\n");
1175 s->state = 0;
1176 goto eoc;
1177 }
1178
63a01ef8
AL
1179 s->index += l;
1180 buf += l;
1181 size -= l;
1182 if (s->index >= s->packet_len) {
1183 qemu_send_packet(s->vc, s->buf, s->packet_len);
1184 s->index = 0;
1185 s->state = 0;
1186 }
1187 break;
1188 }
1189 }
1190}
1191
1192static void net_socket_send_dgram(void *opaque)
1193{
1194 NetSocketState *s = opaque;
1195 int size;
1196
1197 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1198 if (size < 0)
1199 return;
1200 if (size == 0) {
1201 /* end of connection */
1202 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1203 return;
1204 }
1205 qemu_send_packet(s->vc, s->buf, size);
1206}
1207
1208static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1209{
1210 struct ip_mreq imr;
1211 int fd;
1212 int val, ret;
1213 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1214 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1215 inet_ntoa(mcastaddr->sin_addr),
1216 (int)ntohl(mcastaddr->sin_addr.s_addr));
1217 return -1;
1218
1219 }
1220 fd = socket(PF_INET, SOCK_DGRAM, 0);
1221 if (fd < 0) {
1222 perror("socket(PF_INET, SOCK_DGRAM)");
1223 return -1;
1224 }
1225
1226 val = 1;
1227 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1228 (const char *)&val, sizeof(val));
1229 if (ret < 0) {
1230 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1231 goto fail;
1232 }
1233
1234 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1235 if (ret < 0) {
1236 perror("bind");
1237 goto fail;
1238 }
1239
1240 /* Add host to multicast group */
1241 imr.imr_multiaddr = mcastaddr->sin_addr;
1242 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1243
1244 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1245 (const char *)&imr, sizeof(struct ip_mreq));
1246 if (ret < 0) {
1247 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1248 goto fail;
1249 }
1250
1251 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1252 val = 1;
1253 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1254 (const char *)&val, sizeof(val));
1255 if (ret < 0) {
1256 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1257 goto fail;
1258 }
1259
1260 socket_set_nonblock(fd);
1261 return fd;
1262fail:
1263 if (fd >= 0)
1264 closesocket(fd);
1265 return -1;
1266}
1267
7a9f6e4a
AL
1268static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1269 const char *model,
1270 const char *name,
bf38c1a0 1271 int fd, int is_connected)
63a01ef8
AL
1272{
1273 struct sockaddr_in saddr;
1274 int newfd;
1275 socklen_t saddr_len;
1276 NetSocketState *s;
1277
1278 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1279 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1280 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1281 */
1282
1283 if (is_connected) {
1284 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1285 /* must be bound */
1286 if (saddr.sin_addr.s_addr==0) {
1287 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1288 fd);
1289 return NULL;
1290 }
1291 /* clone dgram socket */
1292 newfd = net_socket_mcast_create(&saddr);
1293 if (newfd < 0) {
1294 /* error already reported by net_socket_mcast_create() */
1295 close(fd);
1296 return NULL;
1297 }
1298 /* clone newfd to fd, close newfd */
1299 dup2(newfd, fd);
1300 close(newfd);
1301
1302 } else {
1303 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1304 fd, strerror(errno));
1305 return NULL;
1306 }
1307 }
1308
1309 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8
AL
1310 s->fd = fd;
1311
7a9f6e4a 1312 s->vc = qemu_new_vlan_client(vlan, model, name, net_socket_receive_dgram, NULL, s);
63a01ef8
AL
1313 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1314
1315 /* mcast: save bound address as dst */
1316 if (is_connected) s->dgram_dst=saddr;
1317
1318 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1319 "socket: fd=%d (%s mcast=%s:%d)",
1320 fd, is_connected? "cloned" : "",
1321 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1322 return s;
1323}
1324
1325static void net_socket_connect(void *opaque)
1326{
1327 NetSocketState *s = opaque;
1328 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1329}
1330
7a9f6e4a
AL
1331static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1332 const char *model,
1333 const char *name,
bf38c1a0 1334 int fd, int is_connected)
63a01ef8
AL
1335{
1336 NetSocketState *s;
1337 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8 1338 s->fd = fd;
7a9f6e4a 1339 s->vc = qemu_new_vlan_client(vlan, model, name,
63a01ef8
AL
1340 net_socket_receive, NULL, s);
1341 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1342 "socket: fd=%d", fd);
1343 if (is_connected) {
1344 net_socket_connect(s);
1345 } else {
1346 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1347 }
1348 return s;
1349}
1350
7a9f6e4a
AL
1351static NetSocketState *net_socket_fd_init(VLANState *vlan,
1352 const char *model, const char *name,
bf38c1a0 1353 int fd, int is_connected)
63a01ef8
AL
1354{
1355 int so_type=-1, optlen=sizeof(so_type);
1356
1357 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1358 (socklen_t *)&optlen)< 0) {
1359 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1360 return NULL;
1361 }
1362 switch(so_type) {
1363 case SOCK_DGRAM:
7a9f6e4a 1364 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
63a01ef8 1365 case SOCK_STREAM:
7a9f6e4a 1366 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1367 default:
1368 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1369 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
7a9f6e4a 1370 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1371 }
1372 return NULL;
1373}
1374
1375static void net_socket_accept(void *opaque)
1376{
1377 NetSocketListenState *s = opaque;
1378 NetSocketState *s1;
1379 struct sockaddr_in saddr;
1380 socklen_t len;
1381 int fd;
1382
1383 for(;;) {
1384 len = sizeof(saddr);
1385 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1386 if (fd < 0 && errno != EINTR) {
1387 return;
1388 } else if (fd >= 0) {
1389 break;
1390 }
1391 }
7a9f6e4a 1392 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
63a01ef8
AL
1393 if (!s1) {
1394 closesocket(fd);
1395 } else {
1396 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1397 "socket: connection from %s:%d",
1398 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1399 }
1400}
1401
7a9f6e4a
AL
1402static int net_socket_listen_init(VLANState *vlan,
1403 const char *model,
1404 const char *name,
bf38c1a0 1405 const char *host_str)
63a01ef8
AL
1406{
1407 NetSocketListenState *s;
1408 int fd, val, ret;
1409 struct sockaddr_in saddr;
1410
1411 if (parse_host_port(&saddr, host_str) < 0)
1412 return -1;
1413
1414 s = qemu_mallocz(sizeof(NetSocketListenState));
63a01ef8
AL
1415
1416 fd = socket(PF_INET, SOCK_STREAM, 0);
1417 if (fd < 0) {
1418 perror("socket");
1419 return -1;
1420 }
1421 socket_set_nonblock(fd);
1422
1423 /* allow fast reuse */
1424 val = 1;
1425 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1426
1427 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1428 if (ret < 0) {
1429 perror("bind");
1430 return -1;
1431 }
1432 ret = listen(fd, 0);
1433 if (ret < 0) {
1434 perror("listen");
1435 return -1;
1436 }
1437 s->vlan = vlan;
bf38c1a0 1438 s->model = strdup(model);
7a9f6e4a 1439 s->name = strdup(name);
63a01ef8
AL
1440 s->fd = fd;
1441 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1442 return 0;
1443}
1444
7a9f6e4a
AL
1445static int net_socket_connect_init(VLANState *vlan,
1446 const char *model,
1447 const char *name,
bf38c1a0 1448 const char *host_str)
63a01ef8
AL
1449{
1450 NetSocketState *s;
1451 int fd, connected, ret, err;
1452 struct sockaddr_in saddr;
1453
1454 if (parse_host_port(&saddr, host_str) < 0)
1455 return -1;
1456
1457 fd = socket(PF_INET, SOCK_STREAM, 0);
1458 if (fd < 0) {
1459 perror("socket");
1460 return -1;
1461 }
1462 socket_set_nonblock(fd);
1463
1464 connected = 0;
1465 for(;;) {
1466 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1467 if (ret < 0) {
1468 err = socket_error();
1469 if (err == EINTR || err == EWOULDBLOCK) {
1470 } else if (err == EINPROGRESS) {
1471 break;
1472#ifdef _WIN32
1473 } else if (err == WSAEALREADY) {
1474 break;
1475#endif
1476 } else {
1477 perror("connect");
1478 closesocket(fd);
1479 return -1;
1480 }
1481 } else {
1482 connected = 1;
1483 break;
1484 }
1485 }
7a9f6e4a 1486 s = net_socket_fd_init(vlan, model, name, fd, connected);
63a01ef8
AL
1487 if (!s)
1488 return -1;
1489 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1490 "socket: connect to %s:%d",
1491 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1492 return 0;
1493}
1494
7a9f6e4a
AL
1495static int net_socket_mcast_init(VLANState *vlan,
1496 const char *model,
1497 const char *name,
bf38c1a0 1498 const char *host_str)
63a01ef8
AL
1499{
1500 NetSocketState *s;
1501 int fd;
1502 struct sockaddr_in saddr;
1503
1504 if (parse_host_port(&saddr, host_str) < 0)
1505 return -1;
1506
1507
1508 fd = net_socket_mcast_create(&saddr);
1509 if (fd < 0)
1510 return -1;
1511
7a9f6e4a 1512 s = net_socket_fd_init(vlan, model, name, fd, 0);
63a01ef8
AL
1513 if (!s)
1514 return -1;
1515
1516 s->dgram_dst = saddr;
1517
1518 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1519 "socket: mcast=%s:%d",
1520 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1521 return 0;
1522
1523}
1524
1525/* find or alloc a new VLAN */
1526VLANState *qemu_find_vlan(int id)
1527{
1528 VLANState **pvlan, *vlan;
1529 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1530 if (vlan->id == id)
1531 return vlan;
1532 }
1533 vlan = qemu_mallocz(sizeof(VLANState));
63a01ef8
AL
1534 vlan->id = id;
1535 vlan->next = NULL;
1536 pvlan = &first_vlan;
1537 while (*pvlan != NULL)
1538 pvlan = &(*pvlan)->next;
1539 *pvlan = vlan;
1540 return vlan;
1541}
1542
7697079b
AL
1543static int nic_get_free_idx(void)
1544{
1545 int index;
1546
1547 for (index = 0; index < MAX_NICS; index++)
1548 if (!nd_table[index].used)
1549 return index;
1550 return -1;
1551}
1552
d07f22c5
AL
1553void qemu_check_nic_model(NICInfo *nd, const char *model)
1554{
1555 const char *models[2];
1556
1557 models[0] = model;
1558 models[1] = NULL;
1559
1560 qemu_check_nic_model_list(nd, models, model);
1561}
1562
1563void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1564 const char *default_model)
1565{
1566 int i, exit_status = 0;
1567
1568 if (!nd->model)
1569 nd->model = strdup(default_model);
1570
1571 if (strcmp(nd->model, "?") != 0) {
1572 for (i = 0 ; models[i]; i++)
1573 if (strcmp(nd->model, models[i]) == 0)
1574 return;
1575
1576 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1577 exit_status = 1;
1578 }
1579
1580 fprintf(stderr, "qemu: Supported NIC models: ");
1581 for (i = 0 ; models[i]; i++)
1582 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1583
1584 exit(exit_status);
1585}
1586
63a01ef8
AL
1587int net_client_init(const char *device, const char *p)
1588{
1589 char buf[1024];
1590 int vlan_id, ret;
1591 VLANState *vlan;
7a9f6e4a 1592 char *name = NULL;
63a01ef8
AL
1593
1594 vlan_id = 0;
1595 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1596 vlan_id = strtol(buf, NULL, 0);
1597 }
1598 vlan = qemu_find_vlan(vlan_id);
1599 if (!vlan) {
1600 fprintf(stderr, "Could not create vlan %d\n", vlan_id);
1601 return -1;
1602 }
7a9f6e4a
AL
1603 if (get_param_value(buf, sizeof(buf), "name", p)) {
1604 name = strdup(buf);
1605 }
63a01ef8
AL
1606 if (!strcmp(device, "nic")) {
1607 NICInfo *nd;
1608 uint8_t *macaddr;
7697079b 1609 int idx = nic_get_free_idx();
63a01ef8 1610
7697079b 1611 if (idx == -1 || nb_nics >= MAX_NICS) {
63a01ef8 1612 fprintf(stderr, "Too Many NICs\n");
771f1339
AL
1613 ret = -1;
1614 goto out;
63a01ef8 1615 }
7697079b 1616 nd = &nd_table[idx];
63a01ef8
AL
1617 macaddr = nd->macaddr;
1618 macaddr[0] = 0x52;
1619 macaddr[1] = 0x54;
1620 macaddr[2] = 0x00;
1621 macaddr[3] = 0x12;
1622 macaddr[4] = 0x34;
7697079b 1623 macaddr[5] = 0x56 + idx;
63a01ef8
AL
1624
1625 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1626 if (parse_macaddr(macaddr, buf) < 0) {
1627 fprintf(stderr, "invalid syntax for ethernet address\n");
771f1339
AL
1628 ret = -1;
1629 goto out;
63a01ef8
AL
1630 }
1631 }
1632 if (get_param_value(buf, sizeof(buf), "model", p)) {
1633 nd->model = strdup(buf);
1634 }
1635 nd->vlan = vlan;
7a9f6e4a 1636 nd->name = name;
7697079b 1637 nd->used = 1;
7a9f6e4a 1638 name = NULL;
63a01ef8
AL
1639 nb_nics++;
1640 vlan->nb_guest_devs++;
4d73cd3b 1641 ret = idx;
63a01ef8
AL
1642 } else
1643 if (!strcmp(device, "none")) {
1644 /* does nothing. It is needed to signal that no network cards
1645 are wanted */
1646 ret = 0;
1647 } else
1648#ifdef CONFIG_SLIRP
1649 if (!strcmp(device, "user")) {
1650 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1651 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1652 }
49ec9b40
AL
1653 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
1654 slirp_restrict = (buf[0] == 'y') ? 1 : 0;
1655 }
1656 if (get_param_value(buf, sizeof(buf), "ip", p)) {
1657 slirp_ip = strdup(buf);
1658 }
63a01ef8 1659 vlan->nb_host_devs++;
7a9f6e4a 1660 ret = net_slirp_init(vlan, device, name);
8ca9217d
AL
1661 } else if (!strcmp(device, "channel")) {
1662 long port;
1663 char name[20], *devname;
1664 struct VMChannel *vmc;
1665
1666 port = strtol(p, &devname, 10);
1667 devname++;
1668 if (port < 1 || port > 65535) {
771f1339
AL
1669 fprintf(stderr, "vmchannel wrong port number\n");
1670 ret = -1;
1671 goto out;
8ca9217d
AL
1672 }
1673 vmc = malloc(sizeof(struct VMChannel));
1674 snprintf(name, 20, "vmchannel%ld", port);
1675 vmc->hd = qemu_chr_open(name, devname, NULL);
1676 if (!vmc->hd) {
1677 fprintf(stderr, "qemu: could not open vmchannel device"
1678 "'%s'\n", devname);
771f1339
AL
1679 ret = -1;
1680 goto out;
8ca9217d
AL
1681 }
1682 vmc->port = port;
1683 slirp_add_exec(3, vmc->hd, 4, port);
1684 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
1685 NULL, vmc);
1686 ret = 0;
63a01ef8
AL
1687 } else
1688#endif
1689#ifdef _WIN32
1690 if (!strcmp(device, "tap")) {
1691 char ifname[64];
1692 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1693 fprintf(stderr, "tap: no interface name\n");
771f1339
AL
1694 ret = -1;
1695 goto out;
63a01ef8
AL
1696 }
1697 vlan->nb_host_devs++;
7a9f6e4a 1698 ret = tap_win32_init(vlan, device, name, ifname);
63a01ef8 1699 } else
b29fe3ed 1700#elif defined (_AIX)
63a01ef8
AL
1701#else
1702 if (!strcmp(device, "tap")) {
1703 char ifname[64];
1704 char setup_script[1024], down_script[1024];
1705 int fd;
1706 vlan->nb_host_devs++;
1707 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1708 fd = strtol(buf, NULL, 0);
1709 fcntl(fd, F_SETFL, O_NONBLOCK);
1710 ret = -1;
7a9f6e4a 1711 if (net_tap_fd_init(vlan, device, name, fd))
63a01ef8
AL
1712 ret = 0;
1713 } else {
1714 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1715 ifname[0] = '\0';
1716 }
1717 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
1718 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
1719 }
1720 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
1721 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
1722 }
7a9f6e4a 1723 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
63a01ef8
AL
1724 }
1725 } else
1726#endif
1727 if (!strcmp(device, "socket")) {
1728 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1729 int fd;
1730 fd = strtol(buf, NULL, 0);
1731 ret = -1;
7a9f6e4a 1732 if (net_socket_fd_init(vlan, device, name, fd, 1))
63a01ef8
AL
1733 ret = 0;
1734 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
7a9f6e4a 1735 ret = net_socket_listen_init(vlan, device, name, buf);
63a01ef8 1736 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
7a9f6e4a 1737 ret = net_socket_connect_init(vlan, device, name, buf);
63a01ef8 1738 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
7a9f6e4a 1739 ret = net_socket_mcast_init(vlan, device, name, buf);
63a01ef8
AL
1740 } else {
1741 fprintf(stderr, "Unknown socket options: %s\n", p);
771f1339
AL
1742 ret = -1;
1743 goto out;
63a01ef8
AL
1744 }
1745 vlan->nb_host_devs++;
1746 } else
1747#ifdef CONFIG_VDE
1748 if (!strcmp(device, "vde")) {
1749 char vde_sock[1024], vde_group[512];
1750 int vde_port, vde_mode;
1751 vlan->nb_host_devs++;
1752 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
1753 vde_sock[0] = '\0';
1754 }
1755 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
1756 vde_port = strtol(buf, NULL, 10);
1757 } else {
1758 vde_port = 0;
1759 }
1760 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
1761 vde_group[0] = '\0';
1762 }
1763 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
1764 vde_mode = strtol(buf, NULL, 8);
1765 } else {
1766 vde_mode = 0700;
1767 }
7a9f6e4a 1768 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
63a01ef8
AL
1769 } else
1770#endif
1771 {
1772 fprintf(stderr, "Unknown network device: %s\n", device);
771f1339
AL
1773 ret = -1;
1774 goto out;
63a01ef8
AL
1775 }
1776 if (ret < 0) {
1777 fprintf(stderr, "Could not initialize device '%s'\n", device);
1778 }
771f1339 1779out:
7a9f6e4a
AL
1780 if (name)
1781 free(name);
63a01ef8
AL
1782 return ret;
1783}
1784
8b13c4a7
AL
1785void net_client_uninit(NICInfo *nd)
1786{
1787 nd->vlan->nb_guest_devs--;
1788 nb_nics--;
1789 nd->used = 0;
1790 free((void *)nd->model);
1791}
1792
6f338c34
AL
1793static int net_host_check_device(const char *device)
1794{
1795 int i;
1796 const char *valid_param_list[] = { "tap", "socket"
1797#ifdef CONFIG_SLIRP
1798 ,"user"
1799#endif
1800#ifdef CONFIG_VDE
1801 ,"vde"
1802#endif
1803 };
1804 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1805 if (!strncmp(valid_param_list[i], device,
1806 strlen(valid_param_list[i])))
1807 return 1;
1808 }
1809
1810 return 0;
1811}
1812
376253ec 1813void net_host_device_add(Monitor *mon, const char *device, const char *opts)
6f338c34
AL
1814{
1815 if (!net_host_check_device(device)) {
376253ec 1816 monitor_printf(mon, "invalid host network device %s\n", device);
6f338c34
AL
1817 return;
1818 }
1819 net_client_init(device, opts);
1820}
1821
376253ec 1822void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
6f338c34
AL
1823{
1824 VLANState *vlan;
1825 VLANClientState *vc;
1826
6f338c34
AL
1827 vlan = qemu_find_vlan(vlan_id);
1828 if (!vlan) {
376253ec 1829 monitor_printf(mon, "can't find vlan %d\n", vlan_id);
6f338c34
AL
1830 return;
1831 }
1832
1833 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1834 if (!strcmp(vc->name, device))
1835 break;
1836
1837 if (!vc) {
376253ec 1838 monitor_printf(mon, "can't find device %s\n", device);
6f338c34
AL
1839 return;
1840 }
1841 qemu_del_vlan_client(vc);
1842}
1843
63a01ef8
AL
1844int net_client_parse(const char *str)
1845{
1846 const char *p;
1847 char *q;
1848 char device[64];
1849
1850 p = str;
1851 q = device;
1852 while (*p != '\0' && *p != ',') {
1853 if ((q - device) < sizeof(device) - 1)
1854 *q++ = *p;
1855 p++;
1856 }
1857 *q = '\0';
1858 if (*p == ',')
1859 p++;
1860
1861 return net_client_init(device, p);
1862}
1863
376253ec 1864void do_info_network(Monitor *mon)
63a01ef8
AL
1865{
1866 VLANState *vlan;
1867 VLANClientState *vc;
1868
1869 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
376253ec 1870 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
63a01ef8 1871 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
376253ec 1872 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
63a01ef8
AL
1873 }
1874}
1875
376253ec 1876int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
436e5e53
AL
1877{
1878 VLANState *vlan;
1879 VLANClientState *vc = NULL;
1880
1881 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
1882 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
1883 if (strcmp(vc->name, name) == 0)
dd5de373
EI
1884 goto done;
1885done:
436e5e53
AL
1886
1887 if (!vc) {
376253ec 1888 monitor_printf(mon, "could not find network device '%s'", name);
436e5e53
AL
1889 return 0;
1890 }
1891
1892 if (strcmp(up_or_down, "up") == 0)
1893 vc->link_down = 0;
1894 else if (strcmp(up_or_down, "down") == 0)
1895 vc->link_down = 1;
1896 else
376253ec
AL
1897 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
1898 "valid\n", up_or_down);
436e5e53 1899
34b25ca7
AL
1900 if (vc->link_status_changed)
1901 vc->link_status_changed(vc);
1902
436e5e53
AL
1903 return 1;
1904}
1905
63a01ef8
AL
1906void net_cleanup(void)
1907{
b9e82a59 1908#if !defined(_WIN32)
63a01ef8
AL
1909 VLANState *vlan;
1910
63a01ef8
AL
1911 /* close network clients */
1912 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1913 VLANClientState *vc;
1914
1915 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1916 if (vc->fd_read == tap_receive) {
63a01ef8
AL
1917 TAPState *s = vc->opaque;
1918
973cbd37
AL
1919 if (s->down_script[0])
1920 launch_script(s->down_script, s->down_script_arg, s->fd);
63a01ef8
AL
1921 }
1922#if defined(CONFIG_VDE)
1923 if (vc->fd_read == vde_from_qemu) {
1924 VDEState *s = vc->opaque;
1925 vde_close(s->vde);
1926 }
1927#endif
1928 }
1929 }
1930#endif
1931}
1932
1933void net_client_check(void)
1934{
1935 VLANState *vlan;
1936
1937 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1938 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
1939 continue;
1940 if (vlan->nb_guest_devs == 0)
1941 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1942 if (vlan->nb_host_devs == 0)
1943 fprintf(stderr,
1944 "Warning: vlan %d is not connected to host network\n",
1945 vlan->id);
1946 }
1947}