]> Git Repo - qemu.git/blame - net.c
net: return status from qemu_deliver_packet()
[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"
bb9ea79e 121#include "qemu-log.h"
511d2b14
BS
122
123#if defined(CONFIG_SLIRP)
124#include "libslirp.h"
125#endif
126
127
63a01ef8
AL
128static VLANState *first_vlan;
129
130/***********************************************************/
131/* network device redirectors */
132
133#if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
134static void hex_dump(FILE *f, const uint8_t *buf, int size)
135{
136 int len, i, j, c;
137
138 for(i=0;i<size;i+=16) {
139 len = size - i;
140 if (len > 16)
141 len = 16;
142 fprintf(f, "%08x ", i);
143 for(j=0;j<16;j++) {
144 if (j < len)
145 fprintf(f, " %02x", buf[i+j]);
146 else
147 fprintf(f, " ");
148 }
149 fprintf(f, " ");
150 for(j=0;j<len;j++) {
151 c = buf[i+j];
152 if (c < ' ' || c > '~')
153 c = '.';
154 fprintf(f, "%c", c);
155 }
156 fprintf(f, "\n");
157 }
158}
159#endif
160
161static int parse_macaddr(uint8_t *macaddr, const char *p)
162{
163 int i;
164 char *last_char;
165 long int offset;
166
167 errno = 0;
168 offset = strtol(p, &last_char, 0);
169 if (0 == errno && '\0' == *last_char &&
170 offset >= 0 && offset <= 0xFFFFFF) {
171 macaddr[3] = (offset & 0xFF0000) >> 16;
172 macaddr[4] = (offset & 0xFF00) >> 8;
173 macaddr[5] = offset & 0xFF;
174 return 0;
175 } else {
176 for(i = 0; i < 6; i++) {
177 macaddr[i] = strtol(p, (char **)&p, 16);
178 if (i == 5) {
179 if (*p != '\0')
180 return -1;
181 } else {
182 if (*p != ':' && *p != '-')
183 return -1;
184 p++;
185 }
186 }
187 return 0;
188 }
189
190 return -1;
191}
192
193static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
194{
195 const char *p, *p1;
196 int len;
197 p = *pp;
198 p1 = strchr(p, sep);
199 if (!p1)
200 return -1;
201 len = p1 - p;
202 p1++;
203 if (buf_size > 0) {
204 if (len > buf_size - 1)
205 len = buf_size - 1;
206 memcpy(buf, p, len);
207 buf[len] = '\0';
208 }
209 *pp = p1;
210 return 0;
211}
212
213int parse_host_src_port(struct sockaddr_in *haddr,
214 struct sockaddr_in *saddr,
215 const char *input_str)
216{
217 char *str = strdup(input_str);
218 char *host_str = str;
219 char *src_str;
220 const char *src_str2;
221 char *ptr;
222
223 /*
224 * Chop off any extra arguments at the end of the string which
225 * would start with a comma, then fill in the src port information
226 * if it was provided else use the "any address" and "any port".
227 */
228 if ((ptr = strchr(str,',')))
229 *ptr = '\0';
230
231 if ((src_str = strchr(input_str,'@'))) {
232 *src_str = '\0';
233 src_str++;
234 }
235
236 if (parse_host_port(haddr, host_str) < 0)
237 goto fail;
238
239 src_str2 = src_str;
240 if (!src_str || *src_str == '\0')
241 src_str2 = ":0";
242
243 if (parse_host_port(saddr, src_str2) < 0)
244 goto fail;
245
246 free(str);
247 return(0);
248
249fail:
250 free(str);
251 return -1;
252}
253
254int parse_host_port(struct sockaddr_in *saddr, const char *str)
255{
256 char buf[512];
257 struct hostent *he;
258 const char *p, *r;
259 int port;
260
261 p = str;
262 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
263 return -1;
264 saddr->sin_family = AF_INET;
265 if (buf[0] == '\0') {
266 saddr->sin_addr.s_addr = 0;
267 } else {
cd390083 268 if (qemu_isdigit(buf[0])) {
63a01ef8
AL
269 if (!inet_aton(buf, &saddr->sin_addr))
270 return -1;
271 } else {
272 if ((he = gethostbyname(buf)) == NULL)
273 return - 1;
274 saddr->sin_addr = *(struct in_addr *)he->h_addr;
275 }
276 }
277 port = strtol(p, (char **)&r, 0);
278 if (r == p)
279 return -1;
280 saddr->sin_port = htons(port);
281 return 0;
282}
283
69d6451c
BS
284#if !defined(_WIN32) && 0
285static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
63a01ef8
AL
286{
287 const char *p;
288 int len;
289
290 len = MIN(108, strlen(str));
291 p = strchr(str, ',');
292 if (p)
293 len = MIN(len, p - str);
294
295 memset(uaddr, 0, sizeof(*uaddr));
296
297 uaddr->sun_family = AF_UNIX;
298 memcpy(uaddr->sun_path, str, len);
299
300 return 0;
301}
302#endif
303
7cb7434b
AL
304void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
305{
306 snprintf(vc->info_str, sizeof(vc->info_str),
4dda4063
AL
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
308 vc->model,
7cb7434b
AL
309 macaddr[0], macaddr[1], macaddr[2],
310 macaddr[3], macaddr[4], macaddr[5]);
311}
312
676cff29
AL
313static char *assign_name(VLANClientState *vc1, const char *model)
314{
315 VLANState *vlan;
316 char buf[256];
317 int id = 0;
318
319 for (vlan = first_vlan; vlan; vlan = vlan->next) {
320 VLANClientState *vc;
321
322 for (vc = vlan->first_client; vc; vc = vc->next)
323 if (vc != vc1 && strcmp(vc->model, model) == 0)
324 id++;
325 }
326
327 snprintf(buf, sizeof(buf), "%s.%d", model, id);
328
329 return strdup(buf);
330}
331
63a01ef8 332VLANClientState *qemu_new_vlan_client(VLANState *vlan,
bf38c1a0 333 const char *model,
7a9f6e4a 334 const char *name,
cda9046b
MM
335 NetCanReceive *can_receive,
336 NetReceive *receive,
337 NetReceiveIOV *receive_iov,
b946a153 338 NetCleanup *cleanup,
63a01ef8
AL
339 void *opaque)
340{
341 VLANClientState *vc, **pvc;
342 vc = qemu_mallocz(sizeof(VLANClientState));
bf38c1a0 343 vc->model = strdup(model);
7a9f6e4a
AL
344 if (name)
345 vc->name = strdup(name);
346 else
347 vc->name = assign_name(vc, model);
cda9046b
MM
348 vc->can_receive = can_receive;
349 vc->receive = receive;
350 vc->receive_iov = receive_iov;
b946a153 351 vc->cleanup = cleanup;
63a01ef8
AL
352 vc->opaque = opaque;
353 vc->vlan = vlan;
354
355 vc->next = NULL;
356 pvc = &vlan->first_client;
357 while (*pvc != NULL)
358 pvc = &(*pvc)->next;
359 *pvc = vc;
360 return vc;
361}
362
363void qemu_del_vlan_client(VLANClientState *vc)
364{
365 VLANClientState **pvc = &vc->vlan->first_client;
366
367 while (*pvc != NULL)
368 if (*pvc == vc) {
369 *pvc = vc->next;
b946a153
AL
370 if (vc->cleanup) {
371 vc->cleanup(vc);
372 }
676cff29 373 free(vc->name);
bf38c1a0 374 free(vc->model);
dad35419 375 qemu_free(vc);
63a01ef8
AL
376 break;
377 } else
378 pvc = &(*pvc)->next;
379}
380
8b13c4a7
AL
381VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
382{
383 VLANClientState **pvc = &vlan->first_client;
384
385 while (*pvc != NULL)
386 if ((*pvc)->opaque == opaque)
387 return *pvc;
388 else
389 pvc = &(*pvc)->next;
390
391 return NULL;
392}
393
2e1e0641 394int qemu_can_send_packet(VLANClientState *sender)
63a01ef8 395{
2e1e0641 396 VLANState *vlan = sender->vlan;
63a01ef8
AL
397 VLANClientState *vc;
398
2e1e0641
MM
399 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
400 if (vc == sender) {
401 continue;
402 }
403
cda9046b 404 /* no can_receive() handler, they can always receive */
e3f5ec2b 405 if (!vc->can_receive || vc->can_receive(vc)) {
2e1e0641 406 return 1;
63a01ef8
AL
407 }
408 }
409 return 0;
410}
411
3e021d40 412static int
764a4d1d 413qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
63a01ef8 414{
63a01ef8 415 VLANClientState *vc;
3e021d40 416 int ret = -1;
63a01ef8 417
764a4d1d 418 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
3e021d40
MM
419 ssize_t len;
420
421 if (vc == sender) {
422 continue;
764a4d1d 423 }
3e021d40
MM
424
425 if (vc->link_down) {
426 ret = size;
427 continue;
428 }
429
430 len = vc->receive(vc, buf, size);
431
432 ret = (ret >= 0) ? ret : len;
764a4d1d 433 }
3e021d40
MM
434
435 return ret;
764a4d1d
AL
436}
437
438void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
439{
440 VLANState *vlan = vc->vlan;
441 VLANPacket *packet;
442
443 if (vc->link_down)
436e5e53
AL
444 return;
445
63a01ef8
AL
446#ifdef DEBUG_NET
447 printf("vlan %d send:\n", vlan->id);
448 hex_dump(stdout, buf, size);
449#endif
764a4d1d
AL
450 if (vlan->delivering) {
451 packet = qemu_malloc(sizeof(VLANPacket) + size);
452 packet->next = vlan->send_queue;
453 packet->sender = vc;
454 packet->size = size;
455 memcpy(packet->data, buf, size);
456 vlan->send_queue = packet;
457 } else {
458 vlan->delivering = 1;
459 qemu_deliver_packet(vc, buf, size);
460 while ((packet = vlan->send_queue) != NULL) {
764a4d1d 461 vlan->send_queue = packet->next;
c27ff608 462 qemu_deliver_packet(packet->sender, packet->data, packet->size);
764a4d1d 463 qemu_free(packet);
63a01ef8 464 }
764a4d1d 465 vlan->delivering = 0;
63a01ef8
AL
466 }
467}
468
fbe78f4f
AL
469static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
470 int iovcnt)
471{
472 uint8_t buffer[4096];
473 size_t offset = 0;
474 int i;
475
476 for (i = 0; i < iovcnt; i++) {
477 size_t len;
478
479 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
480 memcpy(buffer + offset, iov[i].iov_base, len);
481 offset += len;
482 }
483
e3f5ec2b 484 vc->receive(vc, buffer, offset);
fbe78f4f
AL
485
486 return offset;
487}
488
e0e7877a
AL
489static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
490{
491 size_t offset = 0;
492 int i;
493
494 for (i = 0; i < iovcnt; i++)
495 offset += iov[i].iov_len;
496 return offset;
497}
498
c27ff608 499ssize_t qemu_sendv_packet(VLANClientState *sender, const struct iovec *iov,
fbe78f4f
AL
500 int iovcnt)
501{
c27ff608 502 VLANState *vlan = sender->vlan;
fbe78f4f 503 VLANClientState *vc;
c27ff608 504 VLANPacket *packet;
fbe78f4f 505 ssize_t max_len = 0;
c27ff608 506 int i;
fbe78f4f 507
c27ff608 508 if (sender->link_down)
e0e7877a
AL
509 return calc_iov_length(iov, iovcnt);
510
c27ff608
JK
511 if (vlan->delivering) {
512 max_len = calc_iov_length(iov, iovcnt);
513
514 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
515 packet->next = vlan->send_queue;
516 packet->sender = sender;
517 packet->size = 0;
518 for (i = 0; i < iovcnt; i++) {
519 size_t len = iov[i].iov_len;
520
521 memcpy(packet->data + packet->size, iov[i].iov_base, len);
522 packet->size += len;
523 }
524 vlan->send_queue = packet;
525 } else {
526 vlan->delivering = 1;
fbe78f4f 527
c27ff608
JK
528 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
529 ssize_t len = 0;
fbe78f4f 530
c27ff608
JK
531 if (vc == sender) {
532 continue;
533 }
534 if (vc->link_down) {
535 len = calc_iov_length(iov, iovcnt);
cda9046b 536 } else if (vc->receive_iov) {
e3f5ec2b 537 len = vc->receive_iov(vc, iov, iovcnt);
cda9046b 538 } else if (vc->receive) {
c27ff608
JK
539 len = vc_sendv_compat(vc, iov, iovcnt);
540 }
541 max_len = MAX(max_len, len);
542 }
fbe78f4f 543
c27ff608
JK
544 while ((packet = vlan->send_queue) != NULL) {
545 vlan->send_queue = packet->next;
546 qemu_deliver_packet(packet->sender, packet->data, packet->size);
547 qemu_free(packet);
548 }
549 vlan->delivering = 0;
fbe78f4f
AL
550 }
551
552 return max_len;
553}
554
10ae5a7a
JK
555static void config_error(Monitor *mon, const char *fmt, ...)
556{
557 va_list ap;
558
559 va_start(ap, fmt);
560 if (mon) {
561 monitor_vprintf(mon, fmt, ap);
562 } else {
563 fprintf(stderr, "qemu: ");
564 vfprintf(stderr, fmt, ap);
565 exit(1);
566 }
567 va_end(ap);
568}
569
63a01ef8
AL
570#if defined(CONFIG_SLIRP)
571
572/* slirp network adapter */
573
b8e8af38
JK
574struct slirp_config_str {
575 struct slirp_config_str *next;
576 const char *str;
577};
578
63a01ef8 579static int slirp_inited;
b8e8af38
JK
580static struct slirp_config_str *slirp_redirs;
581#ifndef _WIN32
582static const char *slirp_smb_export;
583#endif
63a01ef8
AL
584static VLANClientState *slirp_vc;
585
b8e8af38
JK
586static void slirp_smb(const char *exported_dir);
587static void slirp_redirection(Monitor *mon, const char *redir_str);
588
63a01ef8
AL
589int slirp_can_output(void)
590{
591 return !slirp_vc || qemu_can_send_packet(slirp_vc);
592}
593
594void slirp_output(const uint8_t *pkt, int pkt_len)
595{
596#ifdef DEBUG_SLIRP
597 printf("slirp output:\n");
598 hex_dump(stdout, pkt, pkt_len);
599#endif
600 if (!slirp_vc)
601 return;
602 qemu_send_packet(slirp_vc, pkt, pkt_len);
603}
604
605int slirp_is_inited(void)
606{
607 return slirp_inited;
608}
609
4f1c942b 610static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8
AL
611{
612#ifdef DEBUG_SLIRP
613 printf("slirp input:\n");
614 hex_dump(stdout, buf, size);
615#endif
616 slirp_input(buf, size);
4f1c942b 617 return size;
63a01ef8
AL
618}
619
8d6249a7
AL
620static int slirp_in_use;
621
622static void net_slirp_cleanup(VLANClientState *vc)
623{
624 slirp_in_use = 0;
625}
626
b8e8af38
JK
627static int net_slirp_init(VLANState *vlan, const char *model, const char *name,
628 int restricted, const char *ip)
63a01ef8 629{
8d6249a7
AL
630 if (slirp_in_use) {
631 /* slirp only supports a single instance so far */
632 return -1;
633 }
63a01ef8
AL
634 if (!slirp_inited) {
635 slirp_inited = 1;
b8e8af38
JK
636 slirp_init(restricted, ip);
637
638 while (slirp_redirs) {
639 struct slirp_config_str *config = slirp_redirs;
640
641 slirp_redirection(NULL, config->str);
642 slirp_redirs = config->next;
643 qemu_free(config);
644 }
645#ifndef _WIN32
646 if (slirp_smb_export) {
647 slirp_smb(slirp_smb_export);
648 }
649#endif
63a01ef8 650 }
b8e8af38 651
463af534 652 slirp_vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive,
b8e8af38 653 NULL, net_slirp_cleanup, NULL);
7cb7434b 654 slirp_vc->info_str[0] = '\0';
8d6249a7 655 slirp_in_use = 1;
63a01ef8
AL
656 return 0;
657}
658
1c6ed9f3
AG
659static void net_slirp_redir_print(void *opaque, int is_udp,
660 struct in_addr *laddr, u_int lport,
661 struct in_addr *faddr, u_int fport)
662{
663 Monitor *mon = (Monitor *)opaque;
664 uint32_t h_addr;
665 uint32_t g_addr;
666 char buf[16];
667
668 h_addr = ntohl(faddr->s_addr);
669 g_addr = ntohl(laddr->s_addr);
670
671 monitor_printf(mon, " %s |", is_udp ? "udp" : "tcp" );
672 snprintf(buf, 15, "%d.%d.%d.%d", (h_addr >> 24) & 0xff,
673 (h_addr >> 16) & 0xff,
674 (h_addr >> 8) & 0xff,
675 (h_addr) & 0xff);
676 monitor_printf(mon, " %15s |", buf);
677 monitor_printf(mon, " %5d |", fport);
678
679 snprintf(buf, 15, "%d.%d.%d.%d", (g_addr >> 24) & 0xff,
680 (g_addr >> 16) & 0xff,
681 (g_addr >> 8) & 0xff,
682 (g_addr) & 0xff);
683 monitor_printf(mon, " %15s |", buf);
684 monitor_printf(mon, " %5d\n", lport);
685
686}
687
688static void net_slirp_redir_list(Monitor *mon)
689{
690 if (!mon)
691 return;
692
693 monitor_printf(mon, " Prot | Host Addr | HPort | Guest Addr | GPort\n");
694 monitor_printf(mon, " | | | | \n");
695 slirp_redir_loop(net_slirp_redir_print, mon);
696}
697
c1261d8d
AG
698static void net_slirp_redir_rm(Monitor *mon, const char *port_str)
699{
700 int host_port;
701 char buf[256] = "";
702 const char *p = port_str;
703 int is_udp = 0;
704 int n;
705
706 if (!mon)
707 return;
708
709 if (!port_str || !port_str[0])
710 goto fail_syntax;
711
712 get_str_sep(buf, sizeof(buf), &p, ':');
713
714 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
715 is_udp = 0;
716 } else if (!strcmp(buf, "udp")) {
717 is_udp = 1;
718 } else {
719 goto fail_syntax;
720 }
721
722 host_port = atoi(p);
723
724 n = slirp_redir_rm(is_udp, host_port);
725
726 monitor_printf(mon, "removed %d redirections to %s port %d\n", n,
727 is_udp ? "udp" : "tcp", host_port);
728 return;
729
730 fail_syntax:
731 monitor_printf(mon, "invalid format\n");
732}
733
b8e8af38 734static void slirp_redirection(Monitor *mon, const char *redir_str)
63a01ef8 735{
63a01ef8
AL
736 struct in_addr guest_addr;
737 int host_port, guest_port;
b8e8af38
JK
738 const char *p;
739 char buf[256], *r;
740 int is_udp;
1c6ed9f3 741
63a01ef8 742 p = redir_str;
b8e8af38 743 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 744 goto fail_syntax;
b8e8af38 745 }
d4ebe193 746 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
63a01ef8
AL
747 is_udp = 0;
748 } else if (!strcmp(buf, "udp")) {
749 is_udp = 1;
750 } else {
d4ebe193 751 goto fail_syntax;
63a01ef8
AL
752 }
753
b8e8af38 754 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 755 goto fail_syntax;
b8e8af38 756 }
63a01ef8 757 host_port = strtol(buf, &r, 0);
b8e8af38 758 if (r == buf) {
d4ebe193 759 goto fail_syntax;
b8e8af38 760 }
63a01ef8 761
b8e8af38 762 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
d4ebe193 763 goto fail_syntax;
b8e8af38 764 }
63a01ef8
AL
765 if (buf[0] == '\0') {
766 pstrcpy(buf, sizeof(buf), "10.0.2.15");
767 }
b8e8af38 768 if (!inet_aton(buf, &guest_addr)) {
d4ebe193 769 goto fail_syntax;
b8e8af38 770 }
63a01ef8
AL
771
772 guest_port = strtol(p, &r, 0);
b8e8af38 773 if (r == p) {
d4ebe193 774 goto fail_syntax;
b8e8af38 775 }
63a01ef8
AL
776
777 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
10ae5a7a 778 config_error(mon, "could not set up redirection '%s'\n", redir_str);
63a01ef8
AL
779 }
780 return;
d4ebe193
AL
781
782 fail_syntax:
10ae5a7a 783 config_error(mon, "invalid redirection format '%s'\n", redir_str);
63a01ef8
AL
784}
785
b8e8af38
JK
786void net_slirp_redir(Monitor *mon, const char *redir_str, const char *redir_opt2)
787{
788 struct slirp_config_str *config;
789
790 if (!slirp_inited) {
791 if (mon) {
792 monitor_printf(mon, "user mode network stack not in use\n");
793 } else {
794 config = qemu_malloc(sizeof(*config));
795 config->str = redir_str;
796 config->next = slirp_redirs;
797 slirp_redirs = config;
798 }
799 return;
800 }
801
802 if (!strcmp(redir_str, "remove")) {
803 net_slirp_redir_rm(mon, redir_opt2);
804 return;
805 }
806
807 if (!strcmp(redir_str, "list")) {
808 net_slirp_redir_list(mon);
809 return;
810 }
811
812 slirp_redirection(mon, redir_str);
813}
814
63a01ef8
AL
815#ifndef _WIN32
816
817static char smb_dir[1024];
818
819static void erase_dir(char *dir_name)
820{
821 DIR *d;
822 struct dirent *de;
823 char filename[1024];
824
825 /* erase all the files in the directory */
511d2b14 826 if ((d = opendir(dir_name)) != NULL) {
63a01ef8
AL
827 for(;;) {
828 de = readdir(d);
829 if (!de)
830 break;
831 if (strcmp(de->d_name, ".") != 0 &&
832 strcmp(de->d_name, "..") != 0) {
833 snprintf(filename, sizeof(filename), "%s/%s",
834 smb_dir, de->d_name);
835 if (unlink(filename) != 0) /* is it a directory? */
836 erase_dir(filename);
837 }
838 }
839 closedir(d);
840 rmdir(dir_name);
841 }
842}
843
844/* automatic user mode samba server configuration */
845static void smb_exit(void)
846{
847 erase_dir(smb_dir);
848}
849
b8e8af38 850static void slirp_smb(const char *exported_dir)
63a01ef8
AL
851{
852 char smb_conf[1024];
853 char smb_cmdline[1024];
854 FILE *f;
855
63a01ef8 856 /* XXX: better tmp dir construction */
3f4cb3d3 857 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%ld", (long)getpid());
63a01ef8
AL
858 if (mkdir(smb_dir, 0700) < 0) {
859 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
860 exit(1);
861 }
862 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
863
864 f = fopen(smb_conf, "w");
865 if (!f) {
866 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
867 exit(1);
868 }
869 fprintf(f,
870 "[global]\n"
871 "private dir=%s\n"
872 "smb ports=0\n"
873 "socket address=127.0.0.1\n"
874 "pid directory=%s\n"
875 "lock directory=%s\n"
876 "log file=%s/log.smbd\n"
877 "smb passwd file=%s/smbpasswd\n"
878 "security = share\n"
879 "[qemu]\n"
880 "path=%s\n"
881 "read only=no\n"
882 "guest ok=yes\n",
883 smb_dir,
884 smb_dir,
885 smb_dir,
886 smb_dir,
887 smb_dir,
888 exported_dir
889 );
890 fclose(f);
891 atexit(smb_exit);
892
893 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
894 SMBD_COMMAND, smb_conf);
895
896 slirp_add_exec(0, smb_cmdline, 4, 139);
897}
898
b8e8af38
JK
899/* automatic user mode samba server configuration */
900void net_slirp_smb(const char *exported_dir)
901{
902 if (slirp_smb_export) {
903 fprintf(stderr, "-smb given twice\n");
904 exit(1);
905 }
906 slirp_smb_export = exported_dir;
907 if (slirp_inited) {
908 slirp_smb(exported_dir);
909 }
910}
911
63a01ef8 912#endif /* !defined(_WIN32) */
b8e8af38 913
376253ec 914void do_info_slirp(Monitor *mon)
63a01ef8
AL
915{
916 slirp_stats();
917}
918
8ca9217d
AL
919struct VMChannel {
920 CharDriverState *hd;
921 int port;
511d2b14 922};
8ca9217d
AL
923
924static int vmchannel_can_read(void *opaque)
925{
926 struct VMChannel *vmc = (struct VMChannel*)opaque;
927 return slirp_socket_can_recv(4, vmc->port);
928}
929
930static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
931{
932 struct VMChannel *vmc = (struct VMChannel*)opaque;
933 slirp_socket_recv(4, vmc->port, buf, size);
934}
935
63a01ef8
AL
936#endif /* CONFIG_SLIRP */
937
938#if !defined(_WIN32)
939
940typedef struct TAPState {
941 VLANClientState *vc;
942 int fd;
943 char down_script[1024];
973cbd37 944 char down_script_arg[128];
5b01e886 945 uint8_t buf[4096];
63a01ef8
AL
946} TAPState;
947
b946a153
AL
948static int launch_script(const char *setup_script, const char *ifname, int fd);
949
e3f5ec2b 950static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
b535b7b2
AL
951 int iovcnt)
952{
e3f5ec2b 953 TAPState *s = vc->opaque;
b535b7b2
AL
954 ssize_t len;
955
956 do {
957 len = writev(s->fd, iov, iovcnt);
958 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
959
960 return len;
961}
b535b7b2 962
4f1c942b 963static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 964{
e3f5ec2b 965 TAPState *s = vc->opaque;
4f1c942b
MM
966 ssize_t len;
967
968 do {
969 len = write(s->fd, buf, size);
970 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
971
972 return len;
63a01ef8
AL
973}
974
3471b757
MM
975static int tap_can_send(void *opaque)
976{
977 TAPState *s = opaque;
978
979 return qemu_can_send_packet(s->vc);
980}
981
63a01ef8 982#ifdef __sun__
5a6d8815
MM
983static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
984{
63a01ef8
AL
985 struct strbuf sbuf;
986 int f = 0;
5a6d8815
MM
987
988 sbuf.maxlen = maxlen;
3f4cb3d3 989 sbuf.buf = (char *)buf;
5a6d8815
MM
990
991 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
992}
63a01ef8 993#else
5a6d8815
MM
994static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
995{
996 return read(tapfd, buf, maxlen);
997}
63a01ef8 998#endif
5a6d8815
MM
999
1000static void tap_send(void *opaque)
1001{
1002 TAPState *s = opaque;
5a6d8815
MM
1003 int size;
1004
5b01e886 1005 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
63a01ef8 1006 if (size > 0) {
5b01e886 1007 qemu_send_packet(s->vc, s->buf, size);
63a01ef8
AL
1008 }
1009}
1010
b946a153
AL
1011static void tap_cleanup(VLANClientState *vc)
1012{
1013 TAPState *s = vc->opaque;
1014
1015 if (s->down_script[0])
1016 launch_script(s->down_script, s->down_script_arg, s->fd);
1017
1018 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1019 close(s->fd);
1020 qemu_free(s);
1021}
1022
63a01ef8
AL
1023/* fd support */
1024
7a9f6e4a
AL
1025static TAPState *net_tap_fd_init(VLANState *vlan,
1026 const char *model,
1027 const char *name,
1028 int fd)
63a01ef8
AL
1029{
1030 TAPState *s;
1031
1032 s = qemu_mallocz(sizeof(TAPState));
63a01ef8 1033 s->fd = fd;
463af534
MM
1034 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1035 tap_receive_iov, tap_cleanup, s);
3471b757 1036 qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
7cb7434b 1037 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
63a01ef8
AL
1038 return s;
1039}
1040
179a2c19 1041#if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
63a01ef8
AL
1042static int tap_open(char *ifname, int ifname_size)
1043{
1044 int fd;
1045 char *dev;
1046 struct stat s;
1047
1048 TFR(fd = open("/dev/tap", O_RDWR));
1049 if (fd < 0) {
1050 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1051 return -1;
1052 }
1053
1054 fstat(fd, &s);
1055 dev = devname(s.st_rdev, S_IFCHR);
1056 pstrcpy(ifname, ifname_size, dev);
1057
1058 fcntl(fd, F_SETFL, O_NONBLOCK);
1059 return fd;
1060}
1061#elif defined(__sun__)
1062#define TUNNEWPPA (('T'<<16) | 0x0001)
1063/*
1064 * Allocate TAP device, returns opened fd.
1065 * Stores dev name in the first arg(must be large enough).
1066 */
3f4cb3d3 1067static int tap_alloc(char *dev, size_t dev_size)
63a01ef8
AL
1068{
1069 int tap_fd, if_fd, ppa = -1;
1070 static int ip_fd = 0;
1071 char *ptr;
1072
1073 static int arp_fd = 0;
1074 int ip_muxid, arp_muxid;
1075 struct strioctl strioc_if, strioc_ppa;
1076 int link_type = I_PLINK;;
1077 struct lifreq ifr;
1078 char actual_name[32] = "";
1079
1080 memset(&ifr, 0x0, sizeof(ifr));
1081
1082 if( *dev ){
1083 ptr = dev;
47398b9c 1084 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
63a01ef8
AL
1085 ppa = atoi(ptr);
1086 }
1087
1088 /* Check if IP device was opened */
1089 if( ip_fd )
1090 close(ip_fd);
1091
1092 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1093 if (ip_fd < 0) {
1094 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1095 return -1;
1096 }
1097
1098 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1099 if (tap_fd < 0) {
1100 syslog(LOG_ERR, "Can't open /dev/tap");
1101 return -1;
1102 }
1103
1104 /* Assign a new PPA and get its unit number. */
1105 strioc_ppa.ic_cmd = TUNNEWPPA;
1106 strioc_ppa.ic_timout = 0;
1107 strioc_ppa.ic_len = sizeof(ppa);
1108 strioc_ppa.ic_dp = (char *)&ppa;
1109 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1110 syslog (LOG_ERR, "Can't assign new interface");
1111
1112 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1113 if (if_fd < 0) {
1114 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1115 return -1;
1116 }
1117 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1118 syslog(LOG_ERR, "Can't push IP module");
1119 return -1;
1120 }
1121
1122 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1123 syslog(LOG_ERR, "Can't get flags\n");
1124
1125 snprintf (actual_name, 32, "tap%d", ppa);
1126 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1127
1128 ifr.lifr_ppa = ppa;
1129 /* Assign ppa according to the unit number returned by tun device */
1130
1131 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1132 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1133 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1134 syslog (LOG_ERR, "Can't get flags\n");
1135 /* Push arp module to if_fd */
1136 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1137 syslog (LOG_ERR, "Can't push ARP module (2)");
1138
1139 /* Push arp module to ip_fd */
1140 if (ioctl (ip_fd, I_POP, NULL) < 0)
1141 syslog (LOG_ERR, "I_POP failed\n");
1142 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1143 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1144 /* Open arp_fd */
1145 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1146 if (arp_fd < 0)
1147 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1148
1149 /* Set ifname to arp */
1150 strioc_if.ic_cmd = SIOCSLIFNAME;
1151 strioc_if.ic_timout = 0;
1152 strioc_if.ic_len = sizeof(ifr);
1153 strioc_if.ic_dp = (char *)&ifr;
1154 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1155 syslog (LOG_ERR, "Can't set ifname to arp\n");
1156 }
1157
1158 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1159 syslog(LOG_ERR, "Can't link TAP device to IP");
1160 return -1;
1161 }
1162
1163 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1164 syslog (LOG_ERR, "Can't link TAP device to ARP");
1165
1166 close (if_fd);
1167
1168 memset(&ifr, 0x0, sizeof(ifr));
1169 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1170 ifr.lifr_ip_muxid = ip_muxid;
1171 ifr.lifr_arp_muxid = arp_muxid;
1172
1173 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1174 {
1175 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1176 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1177 syslog (LOG_ERR, "Can't set multiplexor id");
1178 }
1179
1180 snprintf(dev, dev_size, "tap%d", ppa);
1181 return tap_fd;
1182}
1183
1184static int tap_open(char *ifname, int ifname_size)
1185{
1186 char dev[10]="";
1187 int fd;
1188 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1189 fprintf(stderr, "Cannot allocate TAP device\n");
1190 return -1;
1191 }
1192 pstrcpy(ifname, ifname_size, dev);
1193 fcntl(fd, F_SETFL, O_NONBLOCK);
1194 return fd;
1195}
b29fe3ed 1196#elif defined (_AIX)
1197static int tap_open(char *ifname, int ifname_size)
1198{
1199 fprintf (stderr, "no tap on AIX\n");
1200 return -1;
1201}
63a01ef8
AL
1202#else
1203static int tap_open(char *ifname, int ifname_size)
1204{
1205 struct ifreq ifr;
1206 int fd, ret;
1207
1208 TFR(fd = open("/dev/net/tun", O_RDWR));
1209 if (fd < 0) {
1210 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1211 return -1;
1212 }
1213 memset(&ifr, 0, sizeof(ifr));
1214 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1215 if (ifname[0] != '\0')
1216 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1217 else
1218 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1219 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1220 if (ret != 0) {
1221 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1222 close(fd);
1223 return -1;
1224 }
1225 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1226 fcntl(fd, F_SETFL, O_NONBLOCK);
1227 return fd;
1228}
1229#endif
1230
1231static int launch_script(const char *setup_script, const char *ifname, int fd)
1232{
7c3370d4 1233 sigset_t oldmask, mask;
63a01ef8
AL
1234 int pid, status;
1235 char *args[3];
1236 char **parg;
1237
7c3370d4
JK
1238 sigemptyset(&mask);
1239 sigaddset(&mask, SIGCHLD);
1240 sigprocmask(SIG_BLOCK, &mask, &oldmask);
1241
1242 /* try to launch network script */
1243 pid = fork();
1244 if (pid == 0) {
1245 int open_max = sysconf(_SC_OPEN_MAX), i;
1246
1247 for (i = 0; i < open_max; i++) {
1248 if (i != STDIN_FILENO &&
1249 i != STDOUT_FILENO &&
1250 i != STDERR_FILENO &&
1251 i != fd) {
1252 close(i);
63a01ef8
AL
1253 }
1254 }
7c3370d4
JK
1255 parg = args;
1256 *parg++ = (char *)setup_script;
1257 *parg++ = (char *)ifname;
1258 *parg++ = NULL;
1259 execv(setup_script, args);
1260 _exit(1);
1261 } else if (pid > 0) {
1262 while (waitpid(pid, &status, 0) != pid) {
1263 /* loop */
1264 }
1265 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1266
1267 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1268 return 0;
1269 }
1270 }
1271 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1272 return -1;
63a01ef8
AL
1273}
1274
7a9f6e4a
AL
1275static int net_tap_init(VLANState *vlan, const char *model,
1276 const char *name, const char *ifname1,
63a01ef8
AL
1277 const char *setup_script, const char *down_script)
1278{
1279 TAPState *s;
1280 int fd;
1281 char ifname[128];
1282
1283 if (ifname1 != NULL)
1284 pstrcpy(ifname, sizeof(ifname), ifname1);
1285 else
1286 ifname[0] = '\0';
1287 TFR(fd = tap_open(ifname, sizeof(ifname)));
1288 if (fd < 0)
1289 return -1;
1290
1291 if (!setup_script || !strcmp(setup_script, "no"))
1292 setup_script = "";
1293 if (setup_script[0] != '\0') {
1294 if (launch_script(setup_script, ifname, fd))
1295 return -1;
1296 }
7a9f6e4a 1297 s = net_tap_fd_init(vlan, model, name, fd);
63a01ef8 1298 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
7cb7434b
AL
1299 "ifname=%s,script=%s,downscript=%s",
1300 ifname, setup_script, down_script);
973cbd37 1301 if (down_script && strcmp(down_script, "no")) {
63a01ef8 1302 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
973cbd37
AL
1303 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1304 }
63a01ef8
AL
1305 return 0;
1306}
1307
1308#endif /* !_WIN32 */
1309
1310#if defined(CONFIG_VDE)
1311typedef struct VDEState {
1312 VLANClientState *vc;
1313 VDECONN *vde;
1314} VDEState;
1315
1316static void vde_to_qemu(void *opaque)
1317{
1318 VDEState *s = opaque;
1319 uint8_t buf[4096];
1320 int size;
1321
cc63bb0f 1322 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
63a01ef8
AL
1323 if (size > 0) {
1324 qemu_send_packet(s->vc, buf, size);
1325 }
1326}
1327
4f1c942b 1328static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1329{
e3f5ec2b 1330 VDEState *s = vc->opaque;
4f1c942b
MM
1331 ssize ret;
1332
1333 do {
1334 ret = vde_send(s->vde, (const char *)buf, size, 0);
1335 } while (ret < 0 && errno == EINTR);
1336
1337 return ret;
63a01ef8
AL
1338}
1339
b946a153
AL
1340static void vde_cleanup(VLANClientState *vc)
1341{
1342 VDEState *s = vc->opaque;
1343 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1344 vde_close(s->vde);
1345 qemu_free(s);
1346}
1347
7a9f6e4a
AL
1348static int net_vde_init(VLANState *vlan, const char *model,
1349 const char *name, const char *sock,
bf38c1a0 1350 int port, const char *group, int mode)
63a01ef8
AL
1351{
1352 VDEState *s;
1353 char *init_group = strlen(group) ? (char *)group : NULL;
1354 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1355
1356 struct vde_open_args args = {
1357 .port = port,
1358 .group = init_group,
1359 .mode = mode,
1360 };
1361
1362 s = qemu_mallocz(sizeof(VDEState));
cc63bb0f 1363 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
63a01ef8
AL
1364 if (!s->vde){
1365 free(s);
1366 return -1;
1367 }
e3f5ec2b 1368 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
b946a153 1369 NULL, vde_cleanup, s);
63a01ef8 1370 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
7cb7434b 1371 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
63a01ef8
AL
1372 sock, vde_datafd(s->vde));
1373 return 0;
1374}
1375#endif
1376
1377/* network connection */
1378typedef struct NetSocketState {
1379 VLANClientState *vc;
1380 int fd;
1381 int state; /* 0 = getting length, 1 = getting data */
abcd2baa
AL
1382 unsigned int index;
1383 unsigned int packet_len;
63a01ef8
AL
1384 uint8_t buf[4096];
1385 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1386} NetSocketState;
1387
1388typedef struct NetSocketListenState {
1389 VLANState *vlan;
bf38c1a0 1390 char *model;
7a9f6e4a 1391 char *name;
63a01ef8
AL
1392 int fd;
1393} NetSocketListenState;
1394
1395/* XXX: we consider we can send the whole packet without blocking */
4f1c942b 1396static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1397{
e3f5ec2b 1398 NetSocketState *s = vc->opaque;
63a01ef8
AL
1399 uint32_t len;
1400 len = htonl(size);
1401
1402 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
4f1c942b 1403 return send_all(s->fd, buf, size);
63a01ef8
AL
1404}
1405
4f1c942b 1406static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
63a01ef8 1407{
e3f5ec2b 1408 NetSocketState *s = vc->opaque;
4f1c942b
MM
1409
1410 return sendto(s->fd, buf, size, 0,
1411 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
63a01ef8
AL
1412}
1413
1414static void net_socket_send(void *opaque)
1415{
1416 NetSocketState *s = opaque;
abcd2baa
AL
1417 int size, err;
1418 unsigned l;
63a01ef8
AL
1419 uint8_t buf1[4096];
1420 const uint8_t *buf;
1421
1422 size = recv(s->fd, buf1, sizeof(buf1), 0);
1423 if (size < 0) {
1424 err = socket_error();
1425 if (err != EWOULDBLOCK)
1426 goto eoc;
1427 } else if (size == 0) {
1428 /* end of connection */
1429 eoc:
1430 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1431 closesocket(s->fd);
1432 return;
1433 }
1434 buf = buf1;
1435 while (size > 0) {
1436 /* reassemble a packet from the network */
1437 switch(s->state) {
1438 case 0:
1439 l = 4 - s->index;
1440 if (l > size)
1441 l = size;
1442 memcpy(s->buf + s->index, buf, l);
1443 buf += l;
1444 size -= l;
1445 s->index += l;
1446 if (s->index == 4) {
1447 /* got length */
1448 s->packet_len = ntohl(*(uint32_t *)s->buf);
1449 s->index = 0;
1450 s->state = 1;
1451 }
1452 break;
1453 case 1:
1454 l = s->packet_len - s->index;
1455 if (l > size)
1456 l = size;
abcd2baa
AL
1457 if (s->index + l <= sizeof(s->buf)) {
1458 memcpy(s->buf + s->index, buf, l);
1459 } else {
1460 fprintf(stderr, "serious error: oversized packet received,"
1461 "connection terminated.\n");
1462 s->state = 0;
1463 goto eoc;
1464 }
1465
63a01ef8
AL
1466 s->index += l;
1467 buf += l;
1468 size -= l;
1469 if (s->index >= s->packet_len) {
1470 qemu_send_packet(s->vc, s->buf, s->packet_len);
1471 s->index = 0;
1472 s->state = 0;
1473 }
1474 break;
1475 }
1476 }
1477}
1478
1479static void net_socket_send_dgram(void *opaque)
1480{
1481 NetSocketState *s = opaque;
1482 int size;
1483
1484 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1485 if (size < 0)
1486 return;
1487 if (size == 0) {
1488 /* end of connection */
1489 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1490 return;
1491 }
1492 qemu_send_packet(s->vc, s->buf, size);
1493}
1494
1495static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1496{
1497 struct ip_mreq imr;
1498 int fd;
1499 int val, ret;
1500 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1501 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1502 inet_ntoa(mcastaddr->sin_addr),
1503 (int)ntohl(mcastaddr->sin_addr.s_addr));
1504 return -1;
1505
1506 }
1507 fd = socket(PF_INET, SOCK_DGRAM, 0);
1508 if (fd < 0) {
1509 perror("socket(PF_INET, SOCK_DGRAM)");
1510 return -1;
1511 }
1512
1513 val = 1;
1514 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1515 (const char *)&val, sizeof(val));
1516 if (ret < 0) {
1517 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1518 goto fail;
1519 }
1520
1521 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1522 if (ret < 0) {
1523 perror("bind");
1524 goto fail;
1525 }
1526
1527 /* Add host to multicast group */
1528 imr.imr_multiaddr = mcastaddr->sin_addr;
1529 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1530
1531 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1532 (const char *)&imr, sizeof(struct ip_mreq));
1533 if (ret < 0) {
1534 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1535 goto fail;
1536 }
1537
1538 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1539 val = 1;
1540 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1541 (const char *)&val, sizeof(val));
1542 if (ret < 0) {
1543 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1544 goto fail;
1545 }
1546
1547 socket_set_nonblock(fd);
1548 return fd;
1549fail:
1550 if (fd >= 0)
1551 closesocket(fd);
1552 return -1;
1553}
1554
b946a153
AL
1555static void net_socket_cleanup(VLANClientState *vc)
1556{
1557 NetSocketState *s = vc->opaque;
1558 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1559 close(s->fd);
1560 qemu_free(s);
1561}
1562
7a9f6e4a
AL
1563static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1564 const char *model,
1565 const char *name,
bf38c1a0 1566 int fd, int is_connected)
63a01ef8
AL
1567{
1568 struct sockaddr_in saddr;
1569 int newfd;
1570 socklen_t saddr_len;
1571 NetSocketState *s;
1572
1573 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1574 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1575 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1576 */
1577
1578 if (is_connected) {
1579 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1580 /* must be bound */
1581 if (saddr.sin_addr.s_addr==0) {
1582 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1583 fd);
1584 return NULL;
1585 }
1586 /* clone dgram socket */
1587 newfd = net_socket_mcast_create(&saddr);
1588 if (newfd < 0) {
1589 /* error already reported by net_socket_mcast_create() */
1590 close(fd);
1591 return NULL;
1592 }
1593 /* clone newfd to fd, close newfd */
1594 dup2(newfd, fd);
1595 close(newfd);
1596
1597 } else {
1598 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1599 fd, strerror(errno));
1600 return NULL;
1601 }
1602 }
1603
1604 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8
AL
1605 s->fd = fd;
1606
463af534 1607 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
b946a153 1608 NULL, net_socket_cleanup, s);
63a01ef8
AL
1609 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1610
1611 /* mcast: save bound address as dst */
1612 if (is_connected) s->dgram_dst=saddr;
1613
1614 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1615 "socket: fd=%d (%s mcast=%s:%d)",
1616 fd, is_connected? "cloned" : "",
1617 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1618 return s;
1619}
1620
1621static void net_socket_connect(void *opaque)
1622{
1623 NetSocketState *s = opaque;
1624 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1625}
1626
7a9f6e4a
AL
1627static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1628 const char *model,
1629 const char *name,
bf38c1a0 1630 int fd, int is_connected)
63a01ef8
AL
1631{
1632 NetSocketState *s;
1633 s = qemu_mallocz(sizeof(NetSocketState));
63a01ef8 1634 s->fd = fd;
463af534 1635 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
b946a153 1636 NULL, net_socket_cleanup, s);
63a01ef8
AL
1637 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1638 "socket: fd=%d", fd);
1639 if (is_connected) {
1640 net_socket_connect(s);
1641 } else {
1642 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1643 }
1644 return s;
1645}
1646
7a9f6e4a
AL
1647static NetSocketState *net_socket_fd_init(VLANState *vlan,
1648 const char *model, const char *name,
bf38c1a0 1649 int fd, int is_connected)
63a01ef8
AL
1650{
1651 int so_type=-1, optlen=sizeof(so_type);
1652
1653 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1654 (socklen_t *)&optlen)< 0) {
1655 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1656 return NULL;
1657 }
1658 switch(so_type) {
1659 case SOCK_DGRAM:
7a9f6e4a 1660 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
63a01ef8 1661 case SOCK_STREAM:
7a9f6e4a 1662 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1663 default:
1664 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1665 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
7a9f6e4a 1666 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
63a01ef8
AL
1667 }
1668 return NULL;
1669}
1670
1671static void net_socket_accept(void *opaque)
1672{
1673 NetSocketListenState *s = opaque;
1674 NetSocketState *s1;
1675 struct sockaddr_in saddr;
1676 socklen_t len;
1677 int fd;
1678
1679 for(;;) {
1680 len = sizeof(saddr);
1681 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1682 if (fd < 0 && errno != EINTR) {
1683 return;
1684 } else if (fd >= 0) {
1685 break;
1686 }
1687 }
7a9f6e4a 1688 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
63a01ef8
AL
1689 if (!s1) {
1690 closesocket(fd);
1691 } else {
1692 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1693 "socket: connection from %s:%d",
1694 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1695 }
1696}
1697
7a9f6e4a
AL
1698static int net_socket_listen_init(VLANState *vlan,
1699 const char *model,
1700 const char *name,
bf38c1a0 1701 const char *host_str)
63a01ef8
AL
1702{
1703 NetSocketListenState *s;
1704 int fd, val, ret;
1705 struct sockaddr_in saddr;
1706
1707 if (parse_host_port(&saddr, host_str) < 0)
1708 return -1;
1709
1710 s = qemu_mallocz(sizeof(NetSocketListenState));
63a01ef8
AL
1711
1712 fd = socket(PF_INET, SOCK_STREAM, 0);
1713 if (fd < 0) {
1714 perror("socket");
1715 return -1;
1716 }
1717 socket_set_nonblock(fd);
1718
1719 /* allow fast reuse */
1720 val = 1;
1721 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1722
1723 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1724 if (ret < 0) {
1725 perror("bind");
1726 return -1;
1727 }
1728 ret = listen(fd, 0);
1729 if (ret < 0) {
1730 perror("listen");
1731 return -1;
1732 }
1733 s->vlan = vlan;
bf38c1a0 1734 s->model = strdup(model);
ea053add 1735 s->name = name ? strdup(name) : NULL;
63a01ef8
AL
1736 s->fd = fd;
1737 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1738 return 0;
1739}
1740
7a9f6e4a
AL
1741static int net_socket_connect_init(VLANState *vlan,
1742 const char *model,
1743 const char *name,
bf38c1a0 1744 const char *host_str)
63a01ef8
AL
1745{
1746 NetSocketState *s;
1747 int fd, connected, ret, err;
1748 struct sockaddr_in saddr;
1749
1750 if (parse_host_port(&saddr, host_str) < 0)
1751 return -1;
1752
1753 fd = socket(PF_INET, SOCK_STREAM, 0);
1754 if (fd < 0) {
1755 perror("socket");
1756 return -1;
1757 }
1758 socket_set_nonblock(fd);
1759
1760 connected = 0;
1761 for(;;) {
1762 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1763 if (ret < 0) {
1764 err = socket_error();
1765 if (err == EINTR || err == EWOULDBLOCK) {
1766 } else if (err == EINPROGRESS) {
1767 break;
1768#ifdef _WIN32
1769 } else if (err == WSAEALREADY) {
1770 break;
1771#endif
1772 } else {
1773 perror("connect");
1774 closesocket(fd);
1775 return -1;
1776 }
1777 } else {
1778 connected = 1;
1779 break;
1780 }
1781 }
7a9f6e4a 1782 s = net_socket_fd_init(vlan, model, name, fd, connected);
63a01ef8
AL
1783 if (!s)
1784 return -1;
1785 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1786 "socket: connect to %s:%d",
1787 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1788 return 0;
1789}
1790
7a9f6e4a
AL
1791static int net_socket_mcast_init(VLANState *vlan,
1792 const char *model,
1793 const char *name,
bf38c1a0 1794 const char *host_str)
63a01ef8
AL
1795{
1796 NetSocketState *s;
1797 int fd;
1798 struct sockaddr_in saddr;
1799
1800 if (parse_host_port(&saddr, host_str) < 0)
1801 return -1;
1802
1803
1804 fd = net_socket_mcast_create(&saddr);
1805 if (fd < 0)
1806 return -1;
1807
7a9f6e4a 1808 s = net_socket_fd_init(vlan, model, name, fd, 0);
63a01ef8
AL
1809 if (!s)
1810 return -1;
1811
1812 s->dgram_dst = saddr;
1813
1814 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1815 "socket: mcast=%s:%d",
1816 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1817 return 0;
1818
1819}
1820
bb9ea79e
AL
1821typedef struct DumpState {
1822 VLANClientState *pcap_vc;
1823 int fd;
1824 int pcap_caplen;
1825} DumpState;
1826
1827#define PCAP_MAGIC 0xa1b2c3d4
1828
1829struct pcap_file_hdr {
1830 uint32_t magic;
1831 uint16_t version_major;
1832 uint16_t version_minor;
1833 int32_t thiszone;
1834 uint32_t sigfigs;
1835 uint32_t snaplen;
1836 uint32_t linktype;
1837};
1838
1839struct pcap_sf_pkthdr {
1840 struct {
1841 int32_t tv_sec;
1842 int32_t tv_usec;
1843 } ts;
1844 uint32_t caplen;
1845 uint32_t len;
1846};
1847
4f1c942b 1848static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
bb9ea79e 1849{
e3f5ec2b 1850 DumpState *s = vc->opaque;
bb9ea79e
AL
1851 struct pcap_sf_pkthdr hdr;
1852 int64_t ts;
1853 int caplen;
1854
1855 /* Early return in case of previous error. */
1856 if (s->fd < 0) {
4f1c942b 1857 return size;
bb9ea79e
AL
1858 }
1859
37cb6fc3 1860 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
bb9ea79e
AL
1861 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
1862
37cb6fc3 1863 hdr.ts.tv_sec = ts / 1000000;
bb9ea79e
AL
1864 hdr.ts.tv_usec = ts % 1000000;
1865 hdr.caplen = caplen;
1866 hdr.len = size;
1867 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
1868 write(s->fd, buf, caplen) != caplen) {
1869 qemu_log("-net dump write error - stop dump\n");
1870 close(s->fd);
1871 s->fd = -1;
1872 }
4f1c942b
MM
1873
1874 return size;
bb9ea79e
AL
1875}
1876
1877static void net_dump_cleanup(VLANClientState *vc)
1878{
1879 DumpState *s = vc->opaque;
1880
1881 close(s->fd);
1882 qemu_free(s);
1883}
1884
10ae5a7a 1885static int net_dump_init(Monitor *mon, VLANState *vlan, const char *device,
bb9ea79e
AL
1886 const char *name, const char *filename, int len)
1887{
1888 struct pcap_file_hdr hdr;
1889 DumpState *s;
1890
1891 s = qemu_malloc(sizeof(DumpState));
1892
1893 s->fd = open(filename, O_CREAT | O_WRONLY, 0644);
1894 if (s->fd < 0) {
10ae5a7a 1895 config_error(mon, "-net dump: can't open %s\n", filename);
bb9ea79e
AL
1896 return -1;
1897 }
1898
1899 s->pcap_caplen = len;
1900
1901 hdr.magic = PCAP_MAGIC;
1902 hdr.version_major = 2;
1903 hdr.version_minor = 4;
1904 hdr.thiszone = 0;
1905 hdr.sigfigs = 0;
1906 hdr.snaplen = s->pcap_caplen;
1907 hdr.linktype = 1;
1908
1909 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
10ae5a7a 1910 config_error(mon, "-net dump write error: %s\n", strerror(errno));
bb9ea79e
AL
1911 close(s->fd);
1912 qemu_free(s);
1913 return -1;
1914 }
1915
463af534 1916 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
bb9ea79e
AL
1917 net_dump_cleanup, s);
1918 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
1919 "dump to %s (len=%d)", filename, len);
1920 return 0;
1921}
1922
63a01ef8
AL
1923/* find or alloc a new VLAN */
1924VLANState *qemu_find_vlan(int id)
1925{
1926 VLANState **pvlan, *vlan;
1927 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1928 if (vlan->id == id)
1929 return vlan;
1930 }
1931 vlan = qemu_mallocz(sizeof(VLANState));
63a01ef8
AL
1932 vlan->id = id;
1933 vlan->next = NULL;
1934 pvlan = &first_vlan;
1935 while (*pvlan != NULL)
1936 pvlan = &(*pvlan)->next;
1937 *pvlan = vlan;
1938 return vlan;
1939}
1940
7697079b
AL
1941static int nic_get_free_idx(void)
1942{
1943 int index;
1944
1945 for (index = 0; index < MAX_NICS; index++)
1946 if (!nd_table[index].used)
1947 return index;
1948 return -1;
1949}
1950
d07f22c5
AL
1951void qemu_check_nic_model(NICInfo *nd, const char *model)
1952{
1953 const char *models[2];
1954
1955 models[0] = model;
1956 models[1] = NULL;
1957
1958 qemu_check_nic_model_list(nd, models, model);
1959}
1960
1961void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1962 const char *default_model)
1963{
1964 int i, exit_status = 0;
1965
1966 if (!nd->model)
1967 nd->model = strdup(default_model);
1968
1969 if (strcmp(nd->model, "?") != 0) {
1970 for (i = 0 ; models[i]; i++)
1971 if (strcmp(nd->model, models[i]) == 0)
1972 return;
1973
1974 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1975 exit_status = 1;
1976 }
1977
1978 fprintf(stderr, "qemu: Supported NIC models: ");
1979 for (i = 0 ; models[i]; i++)
1980 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1981
1982 exit(exit_status);
1983}
1984
10ae5a7a 1985int net_client_init(Monitor *mon, const char *device, const char *p)
63a01ef8 1986{
8e4416af
AL
1987 static const char * const fd_params[] = {
1988 "vlan", "name", "fd", NULL
1989 };
63a01ef8
AL
1990 char buf[1024];
1991 int vlan_id, ret;
1992 VLANState *vlan;
7a9f6e4a 1993 char *name = NULL;
63a01ef8
AL
1994
1995 vlan_id = 0;
1996 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1997 vlan_id = strtol(buf, NULL, 0);
1998 }
1999 vlan = qemu_find_vlan(vlan_id);
9036de1a 2000
7a9f6e4a 2001 if (get_param_value(buf, sizeof(buf), "name", p)) {
10ae5a7a 2002 name = qemu_strdup(buf);
7a9f6e4a 2003 }
63a01ef8 2004 if (!strcmp(device, "nic")) {
8e4416af
AL
2005 static const char * const nic_params[] = {
2006 "vlan", "name", "macaddr", "model", NULL
2007 };
63a01ef8
AL
2008 NICInfo *nd;
2009 uint8_t *macaddr;
7697079b 2010 int idx = nic_get_free_idx();
63a01ef8 2011
0aa7a205 2012 if (check_params(buf, sizeof(buf), nic_params, p) < 0) {
10ae5a7a
JK
2013 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2014 ret = -1;
2015 goto out;
8e4416af 2016 }
7697079b 2017 if (idx == -1 || nb_nics >= MAX_NICS) {
10ae5a7a 2018 config_error(mon, "Too Many NICs\n");
771f1339
AL
2019 ret = -1;
2020 goto out;
63a01ef8 2021 }
7697079b 2022 nd = &nd_table[idx];
63a01ef8
AL
2023 macaddr = nd->macaddr;
2024 macaddr[0] = 0x52;
2025 macaddr[1] = 0x54;
2026 macaddr[2] = 0x00;
2027 macaddr[3] = 0x12;
2028 macaddr[4] = 0x34;
7697079b 2029 macaddr[5] = 0x56 + idx;
63a01ef8
AL
2030
2031 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2032 if (parse_macaddr(macaddr, buf) < 0) {
10ae5a7a 2033 config_error(mon, "invalid syntax for ethernet address\n");
771f1339
AL
2034 ret = -1;
2035 goto out;
63a01ef8
AL
2036 }
2037 }
2038 if (get_param_value(buf, sizeof(buf), "model", p)) {
2039 nd->model = strdup(buf);
2040 }
2041 nd->vlan = vlan;
7a9f6e4a 2042 nd->name = name;
7697079b 2043 nd->used = 1;
7a9f6e4a 2044 name = NULL;
63a01ef8
AL
2045 nb_nics++;
2046 vlan->nb_guest_devs++;
4d73cd3b 2047 ret = idx;
63a01ef8
AL
2048 } else
2049 if (!strcmp(device, "none")) {
8e4416af 2050 if (*p != '\0') {
10ae5a7a
JK
2051 config_error(mon, "'none' takes no parameters\n");
2052 ret = -1;
2053 goto out;
8e4416af 2054 }
63a01ef8
AL
2055 /* does nothing. It is needed to signal that no network cards
2056 are wanted */
2057 ret = 0;
2058 } else
2059#ifdef CONFIG_SLIRP
2060 if (!strcmp(device, "user")) {
8e4416af
AL
2061 static const char * const slirp_params[] = {
2062 "vlan", "name", "hostname", "restrict", "ip", NULL
2063 };
b8e8af38
JK
2064 int restricted = 0;
2065 char *ip = NULL;
2066
0aa7a205 2067 if (check_params(buf, sizeof(buf), slirp_params, p) < 0) {
10ae5a7a
JK
2068 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2069 ret = -1;
2070 goto out;
8e4416af 2071 }
63a01ef8
AL
2072 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
2073 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
2074 }
49ec9b40 2075 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
b8e8af38 2076 restricted = (buf[0] == 'y') ? 1 : 0;
49ec9b40
AL
2077 }
2078 if (get_param_value(buf, sizeof(buf), "ip", p)) {
b8e8af38 2079 ip = qemu_strdup(buf);
49ec9b40 2080 }
63a01ef8 2081 vlan->nb_host_devs++;
b8e8af38
JK
2082 ret = net_slirp_init(vlan, device, name, restricted, ip);
2083 qemu_free(ip);
8ca9217d
AL
2084 } else if (!strcmp(device, "channel")) {
2085 long port;
2086 char name[20], *devname;
2087 struct VMChannel *vmc;
2088
2089 port = strtol(p, &devname, 10);
2090 devname++;
2091 if (port < 1 || port > 65535) {
10ae5a7a 2092 config_error(mon, "vmchannel wrong port number\n");
771f1339
AL
2093 ret = -1;
2094 goto out;
8ca9217d
AL
2095 }
2096 vmc = malloc(sizeof(struct VMChannel));
2097 snprintf(name, 20, "vmchannel%ld", port);
2098 vmc->hd = qemu_chr_open(name, devname, NULL);
2099 if (!vmc->hd) {
10ae5a7a
JK
2100 config_error(mon, "could not open vmchannel device '%s'\n",
2101 devname);
771f1339
AL
2102 ret = -1;
2103 goto out;
8ca9217d
AL
2104 }
2105 vmc->port = port;
2106 slirp_add_exec(3, vmc->hd, 4, port);
2107 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
2108 NULL, vmc);
2109 ret = 0;
63a01ef8
AL
2110 } else
2111#endif
2112#ifdef _WIN32
2113 if (!strcmp(device, "tap")) {
8e4416af
AL
2114 static const char * const tap_params[] = {
2115 "vlan", "name", "ifname", NULL
2116 };
63a01ef8 2117 char ifname[64];
8e4416af 2118
0aa7a205 2119 if (check_params(buf, sizeof(buf), tap_params, p) < 0) {
10ae5a7a
JK
2120 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2121 ret = -1;
2122 goto out;
8e4416af 2123 }
63a01ef8 2124 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
10ae5a7a 2125 config_error(mon, "tap: no interface name\n");
771f1339
AL
2126 ret = -1;
2127 goto out;
63a01ef8
AL
2128 }
2129 vlan->nb_host_devs++;
7a9f6e4a 2130 ret = tap_win32_init(vlan, device, name, ifname);
63a01ef8 2131 } else
b29fe3ed 2132#elif defined (_AIX)
63a01ef8
AL
2133#else
2134 if (!strcmp(device, "tap")) {
0aa7a205 2135 char ifname[64], chkbuf[64];
63a01ef8
AL
2136 char setup_script[1024], down_script[1024];
2137 int fd;
2138 vlan->nb_host_devs++;
2139 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
0aa7a205 2140 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
10ae5a7a
JK
2141 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2142 ret = -1;
2143 goto out;
8e4416af 2144 }
63a01ef8
AL
2145 fd = strtol(buf, NULL, 0);
2146 fcntl(fd, F_SETFL, O_NONBLOCK);
9036de1a
AL
2147 net_tap_fd_init(vlan, device, name, fd);
2148 ret = 0;
63a01ef8 2149 } else {
8e4416af
AL
2150 static const char * const tap_params[] = {
2151 "vlan", "name", "ifname", "script", "downscript", NULL
2152 };
0aa7a205 2153 if (check_params(chkbuf, sizeof(chkbuf), tap_params, p) < 0) {
10ae5a7a
JK
2154 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2155 ret = -1;
2156 goto out;
8e4416af 2157 }
63a01ef8
AL
2158 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2159 ifname[0] = '\0';
2160 }
2161 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2162 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2163 }
2164 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2165 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2166 }
7a9f6e4a 2167 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
63a01ef8
AL
2168 }
2169 } else
2170#endif
2171 if (!strcmp(device, "socket")) {
0aa7a205 2172 char chkbuf[64];
63a01ef8
AL
2173 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2174 int fd;
0aa7a205 2175 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
10ae5a7a
JK
2176 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2177 ret = -1;
2178 goto out;
8e4416af 2179 }
63a01ef8
AL
2180 fd = strtol(buf, NULL, 0);
2181 ret = -1;
7a9f6e4a 2182 if (net_socket_fd_init(vlan, device, name, fd, 1))
63a01ef8
AL
2183 ret = 0;
2184 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
8e4416af
AL
2185 static const char * const listen_params[] = {
2186 "vlan", "name", "listen", NULL
2187 };
0aa7a205 2188 if (check_params(chkbuf, sizeof(chkbuf), listen_params, p) < 0) {
10ae5a7a
JK
2189 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2190 ret = -1;
2191 goto out;
8e4416af 2192 }
7a9f6e4a 2193 ret = net_socket_listen_init(vlan, device, name, buf);
63a01ef8 2194 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
8e4416af
AL
2195 static const char * const connect_params[] = {
2196 "vlan", "name", "connect", NULL
2197 };
0aa7a205 2198 if (check_params(chkbuf, sizeof(chkbuf), connect_params, p) < 0) {
10ae5a7a
JK
2199 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2200 ret = -1;
2201 goto out;
8e4416af 2202 }
7a9f6e4a 2203 ret = net_socket_connect_init(vlan, device, name, buf);
63a01ef8 2204 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
8e4416af
AL
2205 static const char * const mcast_params[] = {
2206 "vlan", "name", "mcast", NULL
2207 };
0aa7a205 2208 if (check_params(chkbuf, sizeof(chkbuf), mcast_params, p) < 0) {
10ae5a7a
JK
2209 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2210 ret = -1;
2211 goto out;
8e4416af 2212 }
7a9f6e4a 2213 ret = net_socket_mcast_init(vlan, device, name, buf);
63a01ef8 2214 } else {
10ae5a7a 2215 config_error(mon, "Unknown socket options: %s\n", p);
771f1339
AL
2216 ret = -1;
2217 goto out;
63a01ef8
AL
2218 }
2219 vlan->nb_host_devs++;
2220 } else
2221#ifdef CONFIG_VDE
2222 if (!strcmp(device, "vde")) {
8e4416af
AL
2223 static const char * const vde_params[] = {
2224 "vlan", "name", "sock", "port", "group", "mode", NULL
2225 };
63a01ef8
AL
2226 char vde_sock[1024], vde_group[512];
2227 int vde_port, vde_mode;
8e4416af 2228
0aa7a205 2229 if (check_params(buf, sizeof(buf), vde_params, p) < 0) {
10ae5a7a
JK
2230 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2231 ret = -1;
2232 goto out;
8e4416af 2233 }
63a01ef8
AL
2234 vlan->nb_host_devs++;
2235 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2236 vde_sock[0] = '\0';
2237 }
2238 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2239 vde_port = strtol(buf, NULL, 10);
2240 } else {
2241 vde_port = 0;
2242 }
2243 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2244 vde_group[0] = '\0';
2245 }
2246 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2247 vde_mode = strtol(buf, NULL, 8);
2248 } else {
2249 vde_mode = 0700;
2250 }
7a9f6e4a 2251 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
63a01ef8
AL
2252 } else
2253#endif
bb9ea79e
AL
2254 if (!strcmp(device, "dump")) {
2255 int len = 65536;
2256
2257 if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2258 len = strtol(buf, NULL, 0);
2259 }
2260 if (!get_param_value(buf, sizeof(buf), "file", p)) {
2261 snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2262 }
10ae5a7a 2263 ret = net_dump_init(mon, vlan, device, name, buf, len);
bb9ea79e 2264 } else {
10ae5a7a 2265 config_error(mon, "Unknown network device: %s\n", device);
771f1339
AL
2266 ret = -1;
2267 goto out;
63a01ef8
AL
2268 }
2269 if (ret < 0) {
10ae5a7a 2270 config_error(mon, "Could not initialize device '%s'\n", device);
63a01ef8 2271 }
771f1339 2272out:
10ae5a7a 2273 qemu_free(name);
63a01ef8
AL
2274 return ret;
2275}
2276
8b13c4a7
AL
2277void net_client_uninit(NICInfo *nd)
2278{
2279 nd->vlan->nb_guest_devs--;
2280 nb_nics--;
2281 nd->used = 0;
2282 free((void *)nd->model);
2283}
2284
6f338c34
AL
2285static int net_host_check_device(const char *device)
2286{
2287 int i;
bb9ea79e 2288 const char *valid_param_list[] = { "tap", "socket", "dump"
6f338c34
AL
2289#ifdef CONFIG_SLIRP
2290 ,"user"
2291#endif
2292#ifdef CONFIG_VDE
2293 ,"vde"
2294#endif
2295 };
2296 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2297 if (!strncmp(valid_param_list[i], device,
2298 strlen(valid_param_list[i])))
2299 return 1;
2300 }
2301
2302 return 0;
2303}
2304
376253ec 2305void net_host_device_add(Monitor *mon, const char *device, const char *opts)
6f338c34
AL
2306{
2307 if (!net_host_check_device(device)) {
376253ec 2308 monitor_printf(mon, "invalid host network device %s\n", device);
6f338c34
AL
2309 return;
2310 }
10ae5a7a 2311 if (net_client_init(mon, device, opts ? opts : "") < 0) {
5c8be678
AL
2312 monitor_printf(mon, "adding host network device %s failed\n", device);
2313 }
6f338c34
AL
2314}
2315
376253ec 2316void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
6f338c34
AL
2317{
2318 VLANState *vlan;
2319 VLANClientState *vc;
2320
6f338c34 2321 vlan = qemu_find_vlan(vlan_id);
6f338c34 2322
e8f1f9db
AL
2323 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
2324 if (!strcmp(vc->name, device)) {
6f338c34 2325 break;
e8f1f9db
AL
2326 }
2327 }
6f338c34
AL
2328
2329 if (!vc) {
376253ec 2330 monitor_printf(mon, "can't find device %s\n", device);
6f338c34
AL
2331 return;
2332 }
e8f1f9db
AL
2333 if (!net_host_check_device(vc->model)) {
2334 monitor_printf(mon, "invalid host network device %s\n", device);
2335 return;
2336 }
6f338c34
AL
2337 qemu_del_vlan_client(vc);
2338}
2339
63a01ef8
AL
2340int net_client_parse(const char *str)
2341{
2342 const char *p;
2343 char *q;
2344 char device[64];
2345
2346 p = str;
2347 q = device;
2348 while (*p != '\0' && *p != ',') {
2349 if ((q - device) < sizeof(device) - 1)
2350 *q++ = *p;
2351 p++;
2352 }
2353 *q = '\0';
2354 if (*p == ',')
2355 p++;
2356
10ae5a7a 2357 return net_client_init(NULL, device, p);
63a01ef8
AL
2358}
2359
376253ec 2360void do_info_network(Monitor *mon)
63a01ef8
AL
2361{
2362 VLANState *vlan;
2363 VLANClientState *vc;
2364
2365 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
376253ec 2366 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
63a01ef8 2367 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
376253ec 2368 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
63a01ef8
AL
2369 }
2370}
2371
376253ec 2372int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
436e5e53
AL
2373{
2374 VLANState *vlan;
2375 VLANClientState *vc = NULL;
2376
2377 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
2378 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
2379 if (strcmp(vc->name, name) == 0)
dd5de373
EI
2380 goto done;
2381done:
436e5e53
AL
2382
2383 if (!vc) {
376253ec 2384 monitor_printf(mon, "could not find network device '%s'", name);
436e5e53
AL
2385 return 0;
2386 }
2387
2388 if (strcmp(up_or_down, "up") == 0)
2389 vc->link_down = 0;
2390 else if (strcmp(up_or_down, "down") == 0)
2391 vc->link_down = 1;
2392 else
376253ec
AL
2393 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
2394 "valid\n", up_or_down);
436e5e53 2395
34b25ca7
AL
2396 if (vc->link_status_changed)
2397 vc->link_status_changed(vc);
2398
436e5e53
AL
2399 return 1;
2400}
2401
63a01ef8
AL
2402void net_cleanup(void)
2403{
2404 VLANState *vlan;
2405
63a01ef8
AL
2406 /* close network clients */
2407 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
b946a153 2408 VLANClientState *vc = vlan->first_client;
63a01ef8 2409
b946a153
AL
2410 while (vc) {
2411 VLANClientState *next = vc->next;
63a01ef8 2412
b946a153
AL
2413 qemu_del_vlan_client(vc);
2414
2415 vc = next;
63a01ef8
AL
2416 }
2417 }
63a01ef8
AL
2418}
2419
2420void net_client_check(void)
2421{
2422 VLANState *vlan;
2423
2424 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2425 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
2426 continue;
2427 if (vlan->nb_guest_devs == 0)
2428 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
2429 if (vlan->nb_host_devs == 0)
2430 fprintf(stderr,
2431 "Warning: vlan %d is not connected to host network\n",
2432 vlan->id);
2433 }
2434}
This page took 0.389001 seconds and 4 git commands to generate.