blob: d6fe84bb6bbd042f88ebaa5ed9a0b02397ddffbb [file] [log] [blame]
aliguori63a01ef2008-10-31 19:10:00 +00001/*
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 */
aliguori63a01ef2008-10-31 19:10:00 +000024#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
Juan Quintela71e72a12009-07-27 16:12:56 +020032/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000033#include "config-host.h"
34
aliguori63a01ef2008-10-31 19:10:00 +000035#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>
blueswir124646c72008-11-07 16:55:48 +000041#include <sys/resource.h>
aliguori63a01ef2008-10-31 19:10:00 +000042#include <sys/socket.h>
43#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000044#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>
aliguori63a01ef2008-10-31 19:10:00 +000052#include <dirent.h>
53#include <netdb.h>
54#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020055#ifdef CONFIG_BSD
aliguori63a01ef2008-10-31 19:10:00 +000056#include <sys/stat.h>
blueswir1c5e97232009-03-07 20:06:23 +000057#if defined(__FreeBSD__) || defined(__DragonFly__)
aliguori63a01ef2008-10-31 19:10:00 +000058#include <libutil.h>
blueswir124646c72008-11-07 16:55:48 +000059#else
60#include <util.h>
aliguori63a01ef2008-10-31 19:10:00 +000061#endif
62#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63#include <freebsd/stdlib.h>
64#else
65#ifdef __linux__
aliguori63a01ef2008-10-31 19:10:00 +000066#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
aliguori63a01ef2008-10-31 19:10:00 +000096#if defined(__OpenBSD__)
97#include <util.h>
98#endif
99
100#if defined(CONFIG_VDE)
101#include <libvdeplug.h>
102#endif
103
blueswir1511d2b12009-03-07 15:32:56 +0000104#include "qemu-common.h"
105#include "net.h"
106#include "monitor.h"
107#include "sysemu.h"
108#include "qemu-timer.h"
109#include "qemu-char.h"
110#include "audio/audio.h"
111#include "qemu_socket.h"
aliguoribb9ea792009-04-21 19:56:28 +0000112#include "qemu-log.h"
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100113#include "qemu-config.h"
blueswir1511d2b12009-03-07 15:32:56 +0000114
Jan Kiszkad918f232009-06-24 14:42:30 +0200115#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000116
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100117static QTAILQ_HEAD(, VLANState) vlans;
Mark McLoughlin577c4af2009-10-08 19:58:28 +0100118static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
aliguori63a01ef2008-10-31 19:10:00 +0000119
120/***********************************************************/
121/* network device redirectors */
122
123#if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
124static void hex_dump(FILE *f, const uint8_t *buf, int size)
125{
126 int len, i, j, c;
127
128 for(i=0;i<size;i+=16) {
129 len = size - i;
130 if (len > 16)
131 len = 16;
132 fprintf(f, "%08x ", i);
133 for(j=0;j<16;j++) {
134 if (j < len)
135 fprintf(f, " %02x", buf[i+j]);
136 else
137 fprintf(f, " ");
138 }
139 fprintf(f, " ");
140 for(j=0;j<len;j++) {
141 c = buf[i+j];
142 if (c < ' ' || c > '~')
143 c = '.';
144 fprintf(f, "%c", c);
145 }
146 fprintf(f, "\n");
147 }
148}
149#endif
150
151static int parse_macaddr(uint8_t *macaddr, const char *p)
152{
153 int i;
154 char *last_char;
155 long int offset;
156
157 errno = 0;
158 offset = strtol(p, &last_char, 0);
159 if (0 == errno && '\0' == *last_char &&
160 offset >= 0 && offset <= 0xFFFFFF) {
161 macaddr[3] = (offset & 0xFF0000) >> 16;
162 macaddr[4] = (offset & 0xFF00) >> 8;
163 macaddr[5] = offset & 0xFF;
164 return 0;
165 } else {
166 for(i = 0; i < 6; i++) {
167 macaddr[i] = strtol(p, (char **)&p, 16);
168 if (i == 5) {
169 if (*p != '\0')
170 return -1;
171 } else {
172 if (*p != ':' && *p != '-')
173 return -1;
174 p++;
175 }
176 }
177 return 0;
178 }
179
180 return -1;
181}
182
183static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
184{
185 const char *p, *p1;
186 int len;
187 p = *pp;
188 p1 = strchr(p, sep);
189 if (!p1)
190 return -1;
191 len = p1 - p;
192 p1++;
193 if (buf_size > 0) {
194 if (len > buf_size - 1)
195 len = buf_size - 1;
196 memcpy(buf, p, len);
197 buf[len] = '\0';
198 }
199 *pp = p1;
200 return 0;
201}
202
203int parse_host_src_port(struct sockaddr_in *haddr,
204 struct sockaddr_in *saddr,
205 const char *input_str)
206{
207 char *str = strdup(input_str);
208 char *host_str = str;
209 char *src_str;
210 const char *src_str2;
211 char *ptr;
212
213 /*
214 * Chop off any extra arguments at the end of the string which
215 * would start with a comma, then fill in the src port information
216 * if it was provided else use the "any address" and "any port".
217 */
218 if ((ptr = strchr(str,',')))
219 *ptr = '\0';
220
221 if ((src_str = strchr(input_str,'@'))) {
222 *src_str = '\0';
223 src_str++;
224 }
225
226 if (parse_host_port(haddr, host_str) < 0)
227 goto fail;
228
229 src_str2 = src_str;
230 if (!src_str || *src_str == '\0')
231 src_str2 = ":0";
232
233 if (parse_host_port(saddr, src_str2) < 0)
234 goto fail;
235
236 free(str);
237 return(0);
238
239fail:
240 free(str);
241 return -1;
242}
243
244int parse_host_port(struct sockaddr_in *saddr, const char *str)
245{
246 char buf[512];
247 struct hostent *he;
248 const char *p, *r;
249 int port;
250
251 p = str;
252 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
253 return -1;
254 saddr->sin_family = AF_INET;
255 if (buf[0] == '\0') {
256 saddr->sin_addr.s_addr = 0;
257 } else {
blueswir1cd390082008-11-16 13:53:32 +0000258 if (qemu_isdigit(buf[0])) {
aliguori63a01ef2008-10-31 19:10:00 +0000259 if (!inet_aton(buf, &saddr->sin_addr))
260 return -1;
261 } else {
262 if ((he = gethostbyname(buf)) == NULL)
263 return - 1;
264 saddr->sin_addr = *(struct in_addr *)he->h_addr;
265 }
266 }
267 port = strtol(p, (char **)&r, 0);
268 if (r == p)
269 return -1;
270 saddr->sin_port = htons(port);
271 return 0;
272}
273
aliguori7cb7434b2009-01-07 17:46:21 +0000274void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
275{
276 snprintf(vc->info_str, sizeof(vc->info_str),
aliguori4dda4062009-01-08 19:01:37 +0000277 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
278 vc->model,
aliguori7cb7434b2009-01-07 17:46:21 +0000279 macaddr[0], macaddr[1], macaddr[2],
280 macaddr[3], macaddr[4], macaddr[5]);
281}
282
aliguori676cff22009-01-07 17:43:44 +0000283static char *assign_name(VLANClientState *vc1, const char *model)
284{
285 VLANState *vlan;
286 char buf[256];
287 int id = 0;
288
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100289 QTAILQ_FOREACH(vlan, &vlans, next) {
aliguori676cff22009-01-07 17:43:44 +0000290 VLANClientState *vc;
291
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100292 QTAILQ_FOREACH(vc, &vlan->clients, next) {
293 if (vc != vc1 && strcmp(vc->model, model) == 0) {
aliguori676cff22009-01-07 17:43:44 +0000294 id++;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100295 }
296 }
aliguori676cff22009-01-07 17:43:44 +0000297 }
298
299 snprintf(buf, sizeof(buf), "%s.%d", model, id);
300
Mark McLoughlin02374aa2009-10-06 12:16:55 +0100301 return qemu_strdup(buf);
aliguori676cff22009-01-07 17:43:44 +0000302}
303
aliguori63a01ef2008-10-31 19:10:00 +0000304VLANClientState *qemu_new_vlan_client(VLANState *vlan,
aliguoribf38c1a2009-01-07 17:42:25 +0000305 const char *model,
aliguori7a9f6e42009-01-07 17:48:51 +0000306 const char *name,
Mark McLoughlincda90462009-05-18 13:13:16 +0100307 NetCanReceive *can_receive,
308 NetReceive *receive,
309 NetReceiveIOV *receive_iov,
aliguorib946a152009-04-17 17:11:08 +0000310 NetCleanup *cleanup,
aliguori63a01ef2008-10-31 19:10:00 +0000311 void *opaque)
312{
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100313 VLANClientState *vc;
314
aliguori63a01ef2008-10-31 19:10:00 +0000315 vc = qemu_mallocz(sizeof(VLANClientState));
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100316
Mark McLoughlin02374aa2009-10-06 12:16:55 +0100317 vc->model = qemu_strdup(model);
aliguori7a9f6e42009-01-07 17:48:51 +0000318 if (name)
Mark McLoughlin02374aa2009-10-06 12:16:55 +0100319 vc->name = qemu_strdup(name);
aliguori7a9f6e42009-01-07 17:48:51 +0000320 else
321 vc->name = assign_name(vc, model);
Mark McLoughlincda90462009-05-18 13:13:16 +0100322 vc->can_receive = can_receive;
323 vc->receive = receive;
324 vc->receive_iov = receive_iov;
aliguorib946a152009-04-17 17:11:08 +0000325 vc->cleanup = cleanup;
aliguori63a01ef2008-10-31 19:10:00 +0000326 vc->opaque = opaque;
aliguori63a01ef2008-10-31 19:10:00 +0000327
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100328 if (vlan) {
329 vc->vlan = vlan;
330 QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
Mark McLoughlin577c4af2009-10-08 19:58:28 +0100331 } else {
332 QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100333 }
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100334
aliguori63a01ef2008-10-31 19:10:00 +0000335 return vc;
336}
337
338void qemu_del_vlan_client(VLANClientState *vc)
339{
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100340 if (vc->vlan) {
341 QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
Mark McLoughlin577c4af2009-10-08 19:58:28 +0100342 } else {
343 QTAILQ_REMOVE(&non_vlan_clients, vc, next);
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100344 }
aliguori63a01ef2008-10-31 19:10:00 +0000345
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100346 if (vc->cleanup) {
347 vc->cleanup(vc);
348 }
349
350 qemu_free(vc->name);
351 qemu_free(vc->model);
352 qemu_free(vc);
aliguori63a01ef2008-10-31 19:10:00 +0000353}
354
aliguori8b13c4a2009-02-11 15:20:51 +0000355VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
356{
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100357 VLANClientState *vc;
aliguori8b13c4a2009-02-11 15:20:51 +0000358
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100359 QTAILQ_FOREACH(vc, &vlan->clients, next) {
360 if (vc->opaque == opaque) {
361 return vc;
362 }
363 }
aliguori8b13c4a2009-02-11 15:20:51 +0000364
365 return NULL;
366}
367
Jan Kiszka1a609522009-06-24 14:42:31 +0200368static VLANClientState *
369qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
370 const char *client_str)
371{
372 VLANState *vlan;
373 VLANClientState *vc;
374
375 vlan = qemu_find_vlan(vlan_id, 0);
376 if (!vlan) {
377 monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
378 return NULL;
379 }
380
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100381 QTAILQ_FOREACH(vc, &vlan->clients, next) {
Jan Kiszka1a609522009-06-24 14:42:31 +0200382 if (!strcmp(vc->name, client_str)) {
383 break;
384 }
385 }
386 if (!vc) {
387 monitor_printf(mon, "can't find device %s on VLAN %d\n",
388 client_str, vlan_id);
389 }
390
391 return vc;
392}
393
Mark McLoughlin2e1e0642009-04-29 09:36:43 +0100394int qemu_can_send_packet(VLANClientState *sender)
aliguori63a01ef2008-10-31 19:10:00 +0000395{
Mark McLoughlin2e1e0642009-04-29 09:36:43 +0100396 VLANState *vlan = sender->vlan;
aliguori63a01ef2008-10-31 19:10:00 +0000397 VLANClientState *vc;
398
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100399 if (!sender->vlan) {
400 return 1;
401 }
402
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100403 QTAILQ_FOREACH(vc, &vlan->clients, next) {
Mark McLoughlin2e1e0642009-04-29 09:36:43 +0100404 if (vc == sender) {
405 continue;
406 }
407
Mark McLoughlincda90462009-05-18 13:13:16 +0100408 /* no can_receive() handler, they can always receive */
Mark McLoughline3f5ec22009-05-18 13:33:03 +0100409 if (!vc->can_receive || vc->can_receive(vc)) {
Mark McLoughlin2e1e0642009-04-29 09:36:43 +0100410 return 1;
aliguori63a01ef2008-10-31 19:10:00 +0000411 }
412 }
413 return 0;
414}
415
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100416static int
aliguori764a4d12009-04-21 19:56:41 +0000417qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
aliguori63a01ef2008-10-31 19:10:00 +0000418{
aliguori63a01ef2008-10-31 19:10:00 +0000419 VLANClientState *vc;
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100420 int ret = -1;
aliguori63a01ef2008-10-31 19:10:00 +0000421
Mark McLoughline94667b2009-04-29 11:48:12 +0100422 sender->vlan->delivering = 1;
423
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100424 QTAILQ_FOREACH(vc, &sender->vlan->clients, next) {
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100425 ssize_t len;
426
427 if (vc == sender) {
428 continue;
aliguori764a4d12009-04-21 19:56:41 +0000429 }
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100430
431 if (vc->link_down) {
432 ret = size;
433 continue;
434 }
435
436 len = vc->receive(vc, buf, size);
437
438 ret = (ret >= 0) ? ret : len;
aliguori764a4d12009-04-21 19:56:41 +0000439 }
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100440
Mark McLoughline94667b2009-04-29 11:48:12 +0100441 sender->vlan->delivering = 0;
442
Mark McLoughlin3e021d42009-04-29 11:34:52 +0100443 return ret;
aliguori764a4d12009-04-21 19:56:41 +0000444}
445
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100446void qemu_purge_queued_packets(VLANClientState *vc)
447{
Jan Kiszka9da43182009-08-26 12:47:04 +0200448 VLANPacket *packet, *next;
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100449
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100450 if (!vc->vlan)
451 return;
452
Blue Swirl72cf2d42009-09-12 07:36:22 +0000453 QTAILQ_FOREACH_SAFE(packet, &vc->vlan->send_queue, entry, next) {
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100454 if (packet->sender == vc) {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000455 QTAILQ_REMOVE(&vc->vlan->send_queue, packet, entry);
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100456 qemu_free(packet);
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100457 }
458 }
459}
460
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100461void qemu_flush_queued_packets(VLANClientState *vc)
Mark McLoughline94667b2009-04-29 11:48:12 +0100462{
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100463 if (!vc->vlan)
464 return;
465
Blue Swirl72cf2d42009-09-12 07:36:22 +0000466 while (!QTAILQ_EMPTY(&vc->vlan->send_queue)) {
Jan Kiszka9da43182009-08-26 12:47:04 +0200467 VLANPacket *packet;
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100468 int ret;
469
Blue Swirl72cf2d42009-09-12 07:36:22 +0000470 packet = QTAILQ_FIRST(&vc->vlan->send_queue);
471 QTAILQ_REMOVE(&vc->vlan->send_queue, packet, entry);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100472
473 ret = qemu_deliver_packet(packet->sender, packet->data, packet->size);
474 if (ret == 0 && packet->sent_cb != NULL) {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000475 QTAILQ_INSERT_HEAD(&vc->vlan->send_queue, packet, entry);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100476 break;
477 }
478
479 if (packet->sent_cb)
Mark McLoughlin783527a2009-06-18 18:21:35 +0100480 packet->sent_cb(packet->sender, ret);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100481
Mark McLoughline94667b2009-04-29 11:48:12 +0100482 qemu_free(packet);
483 }
484}
485
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100486static void qemu_enqueue_packet(VLANClientState *sender,
487 const uint8_t *buf, int size,
488 NetPacketSent *sent_cb)
Mark McLoughline94667b2009-04-29 11:48:12 +0100489{
490 VLANPacket *packet;
491
492 packet = qemu_malloc(sizeof(VLANPacket) + size);
Mark McLoughline94667b2009-04-29 11:48:12 +0100493 packet->sender = sender;
494 packet->size = size;
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100495 packet->sent_cb = sent_cb;
Mark McLoughline94667b2009-04-29 11:48:12 +0100496 memcpy(packet->data, buf, size);
Jan Kiszka9da43182009-08-26 12:47:04 +0200497
Blue Swirl72cf2d42009-09-12 07:36:22 +0000498 QTAILQ_INSERT_TAIL(&sender->vlan->send_queue, packet, entry);
Mark McLoughline94667b2009-04-29 11:48:12 +0100499}
500
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100501ssize_t qemu_send_packet_async(VLANClientState *sender,
502 const uint8_t *buf, int size,
503 NetPacketSent *sent_cb)
aliguori764a4d12009-04-21 19:56:41 +0000504{
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100505 int ret;
aliguori764a4d12009-04-21 19:56:41 +0000506
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100507 if (sender->link_down || !sender->vlan) {
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100508 return size;
aliguori63a01ef2008-10-31 19:10:00 +0000509 }
Mark McLoughline94667b2009-04-29 11:48:12 +0100510
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100511#ifdef DEBUG_NET
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100512 printf("qemu_send_packet_async:\n");
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100513 hex_dump(stdout, buf, size);
514#endif
515
516 if (sender->vlan->delivering) {
517 qemu_enqueue_packet(sender, buf, size, NULL);
518 return size;
519 }
520
521 ret = qemu_deliver_packet(sender, buf, size);
522 if (ret == 0 && sent_cb != NULL) {
523 qemu_enqueue_packet(sender, buf, size, sent_cb);
524 return 0;
525 }
526
527 qemu_flush_queued_packets(sender);
528
529 return ret;
530}
531
532void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
533{
534 qemu_send_packet_async(vc, buf, size, NULL);
aliguori63a01ef2008-10-31 19:10:00 +0000535}
536
aliguorifbe78f42008-12-17 19:13:11 +0000537static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
538 int iovcnt)
539{
540 uint8_t buffer[4096];
541 size_t offset = 0;
542 int i;
543
544 for (i = 0; i < iovcnt; i++) {
545 size_t len;
546
547 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
548 memcpy(buffer + offset, iov[i].iov_base, len);
549 offset += len;
550 }
551
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100552 return vc->receive(vc, buffer, offset);
aliguorifbe78f42008-12-17 19:13:11 +0000553}
554
aliguorie0e78772009-01-26 15:37:44 +0000555static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
556{
557 size_t offset = 0;
558 int i;
559
560 for (i = 0; i < iovcnt; i++)
561 offset += iov[i].iov_len;
562 return offset;
563}
564
Mark McLoughline94667b2009-04-29 11:48:12 +0100565static int qemu_deliver_packet_iov(VLANClientState *sender,
566 const struct iovec *iov, int iovcnt)
567{
568 VLANClientState *vc;
569 int ret = -1;
570
571 sender->vlan->delivering = 1;
572
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100573 QTAILQ_FOREACH(vc, &sender->vlan->clients, next) {
Mark McLoughline94667b2009-04-29 11:48:12 +0100574 ssize_t len;
575
576 if (vc == sender) {
577 continue;
578 }
579
580 if (vc->link_down) {
581 ret = calc_iov_length(iov, iovcnt);
582 continue;
583 }
584
585 if (vc->receive_iov) {
586 len = vc->receive_iov(vc, iov, iovcnt);
587 } else {
588 len = vc_sendv_compat(vc, iov, iovcnt);
589 }
590
591 ret = (ret >= 0) ? ret : len;
592 }
593
594 sender->vlan->delivering = 0;
595
596 return ret;
597}
598
599static ssize_t qemu_enqueue_packet_iov(VLANClientState *sender,
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100600 const struct iovec *iov, int iovcnt,
601 NetPacketSent *sent_cb)
Mark McLoughline94667b2009-04-29 11:48:12 +0100602{
603 VLANPacket *packet;
604 size_t max_len = 0;
605 int i;
606
607 max_len = calc_iov_length(iov, iovcnt);
608
609 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
Mark McLoughline94667b2009-04-29 11:48:12 +0100610 packet->sender = sender;
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100611 packet->sent_cb = sent_cb;
Mark McLoughline94667b2009-04-29 11:48:12 +0100612 packet->size = 0;
613
614 for (i = 0; i < iovcnt; i++) {
615 size_t len = iov[i].iov_len;
616
617 memcpy(packet->data + packet->size, iov[i].iov_base, len);
618 packet->size += len;
619 }
620
Blue Swirl72cf2d42009-09-12 07:36:22 +0000621 QTAILQ_INSERT_TAIL(&sender->vlan->send_queue, packet, entry);
Mark McLoughline94667b2009-04-29 11:48:12 +0100622
623 return packet->size;
624}
625
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100626ssize_t qemu_sendv_packet_async(VLANClientState *sender,
627 const struct iovec *iov, int iovcnt,
628 NetPacketSent *sent_cb)
aliguorifbe78f42008-12-17 19:13:11 +0000629{
Mark McLoughline94667b2009-04-29 11:48:12 +0100630 int ret;
aliguorifbe78f42008-12-17 19:13:11 +0000631
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100632 if (sender->link_down || !sender->vlan) {
aliguorie0e78772009-01-26 15:37:44 +0000633 return calc_iov_length(iov, iovcnt);
aliguorifbe78f42008-12-17 19:13:11 +0000634 }
635
Mark McLoughline94667b2009-04-29 11:48:12 +0100636 if (sender->vlan->delivering) {
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100637 return qemu_enqueue_packet_iov(sender, iov, iovcnt, NULL);
Mark McLoughline94667b2009-04-29 11:48:12 +0100638 }
639
640 ret = qemu_deliver_packet_iov(sender, iov, iovcnt);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100641 if (ret == 0 && sent_cb != NULL) {
642 qemu_enqueue_packet_iov(sender, iov, iovcnt, sent_cb);
643 return 0;
644 }
Mark McLoughline94667b2009-04-29 11:48:12 +0100645
646 qemu_flush_queued_packets(sender);
647
648 return ret;
aliguorifbe78f42008-12-17 19:13:11 +0000649}
650
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100651ssize_t
652qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
653{
654 return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
655}
656
aliguori63a01ef2008-10-31 19:10:00 +0000657#if defined(CONFIG_SLIRP)
658
659/* slirp network adapter */
660
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200661#define SLIRP_CFG_HOSTFWD 1
662#define SLIRP_CFG_LEGACY 2
Jan Kiszkaad196a92009-06-24 14:42:28 +0200663
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200664struct slirp_config_str {
665 struct slirp_config_str *next;
Jan Kiszkaad196a92009-06-24 14:42:28 +0200666 int flags;
667 char str[1024];
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200668 int legacy_format;
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200669};
670
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200671typedef struct SlirpState {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000672 QTAILQ_ENTRY(SlirpState) entry;
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200673 VLANClientState *vc;
674 Slirp *slirp;
Jan Kiszka28432462009-06-24 14:42:31 +0200675#ifndef _WIN32
676 char smb_dir[128];
677#endif
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200678} SlirpState;
679
Jan Kiszkaad196a92009-06-24 14:42:28 +0200680static struct slirp_config_str *slirp_configs;
681const char *legacy_tftp_prefix;
682const char *legacy_bootp_filename;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000683static QTAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks =
684 QTAILQ_HEAD_INITIALIZER(slirp_stacks);
aliguori63a01ef2008-10-31 19:10:00 +0000685
Markus Armbrusterfb125772009-10-06 12:16:58 +0100686static int slirp_hostfwd(SlirpState *s, const char *redir_str,
Markus Armbruster07527062009-10-06 12:16:57 +0100687 int legacy_format);
Markus Armbrusterfb125772009-10-06 12:16:58 +0100688static int slirp_guestfwd(SlirpState *s, const char *config_str,
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200689 int legacy_format);
Jan Kiszkaad196a92009-06-24 14:42:28 +0200690
Blue Swirlc5b76b32009-06-13 08:44:31 +0000691#ifndef _WIN32
Jan Kiszkaad196a92009-06-24 14:42:28 +0200692static const char *legacy_smb_export;
693
Markus Armbrusterfb125772009-10-06 12:16:58 +0100694static int slirp_smb(SlirpState *s, const char *exported_dir,
Markus Armbruster07527062009-10-06 12:16:57 +0100695 struct in_addr vserver_addr);
Jan Kiszka28432462009-06-24 14:42:31 +0200696static void slirp_smb_cleanup(SlirpState *s);
697#else
698static inline void slirp_smb_cleanup(SlirpState *s) { }
Blue Swirlc5b76b32009-06-13 08:44:31 +0000699#endif
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200700
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200701int slirp_can_output(void *opaque)
aliguori63a01ef2008-10-31 19:10:00 +0000702{
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200703 SlirpState *s = opaque;
704
705 return qemu_can_send_packet(s->vc);
aliguori63a01ef2008-10-31 19:10:00 +0000706}
707
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200708void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
aliguori63a01ef2008-10-31 19:10:00 +0000709{
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200710 SlirpState *s = opaque;
711
aliguori63a01ef2008-10-31 19:10:00 +0000712#ifdef DEBUG_SLIRP
713 printf("slirp output:\n");
714 hex_dump(stdout, pkt, pkt_len);
715#endif
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200716 qemu_send_packet(s->vc, pkt, pkt_len);
aliguori63a01ef2008-10-31 19:10:00 +0000717}
718
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100719static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguori63a01ef2008-10-31 19:10:00 +0000720{
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200721 SlirpState *s = vc->opaque;
722
aliguori63a01ef2008-10-31 19:10:00 +0000723#ifdef DEBUG_SLIRP
724 printf("slirp input:\n");
725 hex_dump(stdout, buf, size);
726#endif
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200727 slirp_input(s->slirp, buf, size);
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100728 return size;
aliguori63a01ef2008-10-31 19:10:00 +0000729}
730
aliguori8d6249a2009-04-21 20:49:11 +0000731static void net_slirp_cleanup(VLANClientState *vc)
732{
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200733 SlirpState *s = vc->opaque;
734
735 slirp_cleanup(s->slirp);
Jan Kiszka28432462009-06-24 14:42:31 +0200736 slirp_smb_cleanup(s);
Blue Swirl72cf2d42009-09-12 07:36:22 +0000737 QTAILQ_REMOVE(&slirp_stacks, s, entry);
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200738 qemu_free(s);
aliguori8d6249a2009-04-21 20:49:11 +0000739}
740
Markus Armbrusterfb125772009-10-06 12:16:58 +0100741static int net_slirp_init(VLANState *vlan, const char *model,
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200742 const char *name, int restricted,
743 const char *vnetwork, const char *vhost,
744 const char *vhostname, const char *tftp_export,
745 const char *bootfile, const char *vdhcp_start,
746 const char *vnameserver, const char *smb_export,
747 const char *vsmbserver)
aliguori63a01ef2008-10-31 19:10:00 +0000748{
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200749 /* default settings according to historic slirp */
Anthony Liguori8389e7f2009-07-10 12:43:14 -0500750 struct in_addr net = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
751 struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200752 struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
753 struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
754 struct in_addr dns = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
755#ifndef _WIN32
756 struct in_addr smbsrv = { .s_addr = 0 };
757#endif
758 SlirpState *s;
759 char buf[20];
760 uint32_t addr;
761 int shift;
762 char *end;
Markus Armbruster3a179c62009-10-06 12:16:56 +0100763 struct slirp_config_str *config;
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200764
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200765 if (!tftp_export) {
766 tftp_export = legacy_tftp_prefix;
767 }
768 if (!bootfile) {
769 bootfile = legacy_bootp_filename;
770 }
771
772 if (vnetwork) {
773 if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) {
774 if (!inet_aton(vnetwork, &net)) {
775 return -1;
776 }
777 addr = ntohl(net.s_addr);
778 if (!(addr & 0x80000000)) {
779 mask.s_addr = htonl(0xff000000); /* class A */
780 } else if ((addr & 0xfff00000) == 0xac100000) {
781 mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */
782 } else if ((addr & 0xc0000000) == 0x80000000) {
783 mask.s_addr = htonl(0xffff0000); /* class B */
784 } else if ((addr & 0xffff0000) == 0xc0a80000) {
785 mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */
786 } else if ((addr & 0xffff0000) == 0xc6120000) {
787 mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */
788 } else if ((addr & 0xe0000000) == 0xe0000000) {
789 mask.s_addr = htonl(0xffffff00); /* class C */
790 } else {
791 mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */
792 }
793 } else {
794 if (!inet_aton(buf, &net)) {
795 return -1;
796 }
797 shift = strtol(vnetwork, &end, 10);
798 if (*end != '\0') {
799 if (!inet_aton(vnetwork, &mask)) {
800 return -1;
801 }
802 } else if (shift < 4 || shift > 32) {
803 return -1;
804 } else {
805 mask.s_addr = htonl(0xffffffff << (32 - shift));
806 }
807 }
808 net.s_addr &= mask.s_addr;
809 host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr);
810 dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr);
811 dns.s_addr = net.s_addr | (htonl(0x0203) & ~mask.s_addr);
812 }
813
814 if (vhost && !inet_aton(vhost, &host)) {
aliguori8d6249a2009-04-21 20:49:11 +0000815 return -1;
816 }
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200817 if ((host.s_addr & mask.s_addr) != net.s_addr) {
818 return -1;
aliguori63a01ef2008-10-31 19:10:00 +0000819 }
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200820
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200821 if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) {
822 return -1;
823 }
824 if ((dhcp.s_addr & mask.s_addr) != net.s_addr ||
825 dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) {
826 return -1;
827 }
828
829 if (vnameserver && !inet_aton(vnameserver, &dns)) {
830 return -1;
831 }
832 if ((dns.s_addr & mask.s_addr) != net.s_addr ||
833 dns.s_addr == host.s_addr) {
834 return -1;
835 }
836
837#ifndef _WIN32
838 if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) {
839 return -1;
840 }
841#endif
842
843 s = qemu_mallocz(sizeof(SlirpState));
844 s->slirp = slirp_init(restricted, net, mask, host, vhostname,
845 tftp_export, bootfile, dhcp, dns, s);
Blue Swirl72cf2d42009-09-12 07:36:22 +0000846 QTAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200847
Markus Armbruster3a179c62009-10-06 12:16:56 +0100848 for (config = slirp_configs; config; config = config->next) {
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200849 if (config->flags & SLIRP_CFG_HOSTFWD) {
Markus Armbrusterfb125772009-10-06 12:16:58 +0100850 if (slirp_hostfwd(s, config->str,
Markus Armbruster07527062009-10-06 12:16:57 +0100851 config->flags & SLIRP_CFG_LEGACY) < 0)
852 return -1;
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200853 } else {
Markus Armbrusterfb125772009-10-06 12:16:58 +0100854 if (slirp_guestfwd(s, config->str,
Markus Armbruster07527062009-10-06 12:16:57 +0100855 config->flags & SLIRP_CFG_LEGACY) < 0)
856 return -1;
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200857 }
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200858 }
859#ifndef _WIN32
860 if (!smb_export) {
861 smb_export = legacy_smb_export;
862 }
863 if (smb_export) {
Markus Armbrusterfb125772009-10-06 12:16:58 +0100864 if (slirp_smb(s, smb_export, smbsrv) < 0)
Markus Armbruster07527062009-10-06 12:16:57 +0100865 return -1;
Jan Kiszkaad0d8c42009-06-24 14:42:31 +0200866 }
867#endif
868
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200869 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive, NULL,
870 net_slirp_cleanup, s);
Jan Kiszkafc57bc52009-06-24 14:42:32 +0200871 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
872 "net=%s, restricted=%c", inet_ntoa(net), restricted ? 'y' : 'n');
aliguori63a01ef2008-10-31 19:10:00 +0000873 return 0;
874}
875
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200876static SlirpState *slirp_lookup(Monitor *mon, const char *vlan,
877 const char *stack)
878{
879 VLANClientState *vc;
880
881 if (vlan) {
882 vc = qemu_find_vlan_client_by_name(mon, strtol(vlan, NULL, 0), stack);
883 if (!vc) {
884 return NULL;
885 }
886 if (strcmp(vc->model, "user")) {
887 monitor_printf(mon, "invalid device specified\n");
888 return NULL;
889 }
890 return vc->opaque;
891 } else {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000892 if (QTAILQ_EMPTY(&slirp_stacks)) {
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200893 monitor_printf(mon, "user mode network stack not in use\n");
894 return NULL;
895 }
Blue Swirl72cf2d42009-09-12 07:36:22 +0000896 return QTAILQ_FIRST(&slirp_stacks);
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200897 }
898}
899
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300900void net_slirp_hostfwd_remove(Monitor *mon, const QDict *qdict)
Alexander Grafc1261d82009-05-26 13:03:26 +0200901{
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200902 struct in_addr host_addr = { .s_addr = INADDR_ANY };
Alexander Grafc1261d82009-05-26 13:03:26 +0200903 int host_port;
904 char buf[256] = "";
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200905 const char *src_str, *p;
906 SlirpState *s;
Alexander Grafc1261d82009-05-26 13:03:26 +0200907 int is_udp = 0;
Jan Kiszka9c12a6f2009-06-24 14:42:29 +0200908 int err;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300909 const char *arg1 = qdict_get_str(qdict, "arg1");
910 const char *arg2 = qdict_get_try_str(qdict, "arg2");
911 const char *arg3 = qdict_get_try_str(qdict, "arg3");
Alexander Grafc1261d82009-05-26 13:03:26 +0200912
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200913 if (arg2) {
914 s = slirp_lookup(mon, arg1, arg2);
915 src_str = arg3;
916 } else {
917 s = slirp_lookup(mon, NULL, NULL);
918 src_str = arg1;
919 }
920 if (!s) {
Alexander Grafc1261d82009-05-26 13:03:26 +0200921 return;
Jan Kiszkaf3546de2009-06-24 14:42:28 +0200922 }
Alexander Grafc1261d82009-05-26 13:03:26 +0200923
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200924 if (!src_str || !src_str[0])
Alexander Grafc1261d82009-05-26 13:03:26 +0200925 goto fail_syntax;
926
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200927 p = src_str;
Alexander Grafc1261d82009-05-26 13:03:26 +0200928 get_str_sep(buf, sizeof(buf), &p, ':');
929
930 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
931 is_udp = 0;
932 } else if (!strcmp(buf, "udp")) {
933 is_udp = 1;
934 } else {
935 goto fail_syntax;
936 }
937
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200938 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
939 goto fail_syntax;
940 }
941 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
942 goto fail_syntax;
943 }
944
Alexander Grafc1261d82009-05-26 13:03:26 +0200945 host_port = atoi(p);
946
Blue Swirl72cf2d42009-09-12 07:36:22 +0000947 err = slirp_remove_hostfwd(QTAILQ_FIRST(&slirp_stacks)->slirp, is_udp,
Jan Kiszka9f8bd042009-06-24 14:42:31 +0200948 host_addr, host_port);
Alexander Grafc1261d82009-05-26 13:03:26 +0200949
Jan Kiszka9c12a6f2009-06-24 14:42:29 +0200950 monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
951 err ? "removed" : "not found");
Alexander Grafc1261d82009-05-26 13:03:26 +0200952 return;
953
954 fail_syntax:
955 monitor_printf(mon, "invalid format\n");
956}
957
Markus Armbrusterfb125772009-10-06 12:16:58 +0100958static int slirp_hostfwd(SlirpState *s, const char *redir_str,
Markus Armbruster07527062009-10-06 12:16:57 +0100959 int legacy_format)
aliguori63a01ef2008-10-31 19:10:00 +0000960{
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200961 struct in_addr host_addr = { .s_addr = INADDR_ANY };
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200962 struct in_addr guest_addr = { .s_addr = 0 };
aliguori63a01ef2008-10-31 19:10:00 +0000963 int host_port, guest_port;
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200964 const char *p;
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200965 char buf[256];
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200966 int is_udp;
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200967 char *end;
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200968
969 p = redir_str;
Jan Kiszkaf13b5722009-06-24 14:42:32 +0200970 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200971 goto fail_syntax;
972 }
973 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
974 is_udp = 0;
975 } else if (!strcmp(buf, "udp")) {
976 is_udp = 1;
977 } else {
978 goto fail_syntax;
979 }
980
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200981 if (!legacy_format) {
982 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
983 goto fail_syntax;
984 }
985 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
986 goto fail_syntax;
987 }
988 }
989
990 if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200991 goto fail_syntax;
992 }
Jan Kiszkac92ef6a2009-06-24 14:42:28 +0200993 host_port = strtol(buf, &end, 0);
994 if (*end != '\0' || host_port < 1 || host_port > 65535) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +0200995 goto fail_syntax;
996 }
997
998 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
999 goto fail_syntax;
1000 }
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001001 if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001002 goto fail_syntax;
1003 }
1004
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001005 guest_port = strtol(p, &end, 0);
1006 if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001007 goto fail_syntax;
1008 }
1009
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001010 if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
1011 guest_port) < 0) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001012 qemu_error("could not set up host forwarding rule '%s'\n",
1013 redir_str);
Markus Armbruster07527062009-10-06 12:16:57 +01001014 return -1;
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001015 }
Markus Armbruster07527062009-10-06 12:16:57 +01001016 return 0;
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001017
1018 fail_syntax:
Markus Armbrusterfb125772009-10-06 12:16:58 +01001019 qemu_error("invalid host forwarding rule '%s'\n", redir_str);
Markus Armbruster07527062009-10-06 12:16:57 +01001020 return -1;
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001021}
1022
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001023void net_slirp_hostfwd_add(Monitor *mon, const QDict *qdict)
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001024{
Jan Kiszkaf13b5722009-06-24 14:42:32 +02001025 const char *redir_str;
1026 SlirpState *s;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001027 const char *arg1 = qdict_get_str(qdict, "arg1");
1028 const char *arg2 = qdict_get_try_str(qdict, "arg2");
1029 const char *arg3 = qdict_get_try_str(qdict, "arg3");
Jan Kiszkaf13b5722009-06-24 14:42:32 +02001030
1031 if (arg2) {
1032 s = slirp_lookup(mon, arg1, arg2);
1033 redir_str = arg3;
1034 } else {
1035 s = slirp_lookup(mon, NULL, NULL);
1036 redir_str = arg1;
1037 }
1038 if (s) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001039 slirp_hostfwd(s, redir_str, 0);
Alexander Grafc1261d82009-05-26 13:03:26 +02001040 }
1041
aliguori63a01ef2008-10-31 19:10:00 +00001042}
1043
Markus Armbruster07527062009-10-06 12:16:57 +01001044int net_slirp_redir(const char *redir_str)
Jan Kiszkaf3546de2009-06-24 14:42:28 +02001045{
1046 struct slirp_config_str *config;
1047
Blue Swirl72cf2d42009-09-12 07:36:22 +00001048 if (QTAILQ_EMPTY(&slirp_stacks)) {
Jan Kiszkaf3546de2009-06-24 14:42:28 +02001049 config = qemu_malloc(sizeof(*config));
1050 pstrcpy(config->str, sizeof(config->str), redir_str);
Jan Kiszka3c6a0582009-06-24 14:42:28 +02001051 config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY;
Jan Kiszkaf3546de2009-06-24 14:42:28 +02001052 config->next = slirp_configs;
1053 slirp_configs = config;
Markus Armbruster07527062009-10-06 12:16:57 +01001054 return 0;
Jan Kiszkaf3546de2009-06-24 14:42:28 +02001055 }
1056
Markus Armbrusterfb125772009-10-06 12:16:58 +01001057 return slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks), redir_str, 1);
Jan Kiszkaf3546de2009-06-24 14:42:28 +02001058}
1059
aliguori63a01ef2008-10-31 19:10:00 +00001060#ifndef _WIN32
1061
aliguori63a01ef2008-10-31 19:10:00 +00001062/* automatic user mode samba server configuration */
Jan Kiszka28432462009-06-24 14:42:31 +02001063static void slirp_smb_cleanup(SlirpState *s)
aliguori63a01ef2008-10-31 19:10:00 +00001064{
Jan Kiszka28432462009-06-24 14:42:31 +02001065 char cmd[128];
Jan Kiszka09c18922009-06-24 14:42:31 +02001066
Jan Kiszka28432462009-06-24 14:42:31 +02001067 if (s->smb_dir[0] != '\0') {
1068 snprintf(cmd, sizeof(cmd), "rm -rf %s", s->smb_dir);
1069 system(cmd);
1070 s->smb_dir[0] = '\0';
1071 }
aliguori63a01ef2008-10-31 19:10:00 +00001072}
1073
Markus Armbrusterfb125772009-10-06 12:16:58 +01001074static int slirp_smb(SlirpState* s, const char *exported_dir,
Markus Armbruster07527062009-10-06 12:16:57 +01001075 struct in_addr vserver_addr)
aliguori63a01ef2008-10-31 19:10:00 +00001076{
Jan Kiszka28432462009-06-24 14:42:31 +02001077 static int instance;
1078 char smb_conf[128];
1079 char smb_cmdline[128];
aliguori63a01ef2008-10-31 19:10:00 +00001080 FILE *f;
1081
Jan Kiszka28432462009-06-24 14:42:31 +02001082 snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
1083 (long)getpid(), instance++);
1084 if (mkdir(s->smb_dir, 0700) < 0) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001085 qemu_error("could not create samba server dir '%s'\n", s->smb_dir);
Markus Armbruster07527062009-10-06 12:16:57 +01001086 return -1;
aliguori63a01ef2008-10-31 19:10:00 +00001087 }
Jan Kiszka28432462009-06-24 14:42:31 +02001088 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", s->smb_dir, "smb.conf");
aliguori63a01ef2008-10-31 19:10:00 +00001089
1090 f = fopen(smb_conf, "w");
1091 if (!f) {
Jan Kiszka28432462009-06-24 14:42:31 +02001092 slirp_smb_cleanup(s);
Markus Armbrusterfb125772009-10-06 12:16:58 +01001093 qemu_error("could not create samba server configuration file '%s'\n",
1094 smb_conf);
Markus Armbruster07527062009-10-06 12:16:57 +01001095 return -1;
aliguori63a01ef2008-10-31 19:10:00 +00001096 }
1097 fprintf(f,
1098 "[global]\n"
1099 "private dir=%s\n"
1100 "smb ports=0\n"
1101 "socket address=127.0.0.1\n"
1102 "pid directory=%s\n"
1103 "lock directory=%s\n"
1104 "log file=%s/log.smbd\n"
1105 "smb passwd file=%s/smbpasswd\n"
1106 "security = share\n"
1107 "[qemu]\n"
1108 "path=%s\n"
1109 "read only=no\n"
1110 "guest ok=yes\n",
Jan Kiszka28432462009-06-24 14:42:31 +02001111 s->smb_dir,
1112 s->smb_dir,
1113 s->smb_dir,
1114 s->smb_dir,
1115 s->smb_dir,
aliguori63a01ef2008-10-31 19:10:00 +00001116 exported_dir
1117 );
1118 fclose(f);
aliguori63a01ef2008-10-31 19:10:00 +00001119
1120 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
1121 SMBD_COMMAND, smb_conf);
1122
Jan Kiszkabb53fc52009-07-22 17:03:52 +02001123 if (slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 139) < 0) {
Jan Kiszka28432462009-06-24 14:42:31 +02001124 slirp_smb_cleanup(s);
Markus Armbrusterfb125772009-10-06 12:16:58 +01001125 qemu_error("conflicting/invalid smbserver address\n");
Markus Armbruster07527062009-10-06 12:16:57 +01001126 return -1;
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001127 }
Markus Armbruster07527062009-10-06 12:16:57 +01001128 return 0;
aliguori63a01ef2008-10-31 19:10:00 +00001129}
1130
Jan Kiszkaad196a92009-06-24 14:42:28 +02001131/* automatic user mode samba server configuration (legacy interface) */
Markus Armbruster07527062009-10-06 12:16:57 +01001132int net_slirp_smb(const char *exported_dir)
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001133{
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001134 struct in_addr vserver_addr = { .s_addr = 0 };
1135
Jan Kiszkaad196a92009-06-24 14:42:28 +02001136 if (legacy_smb_export) {
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001137 fprintf(stderr, "-smb given twice\n");
Markus Armbruster07527062009-10-06 12:16:57 +01001138 return -1;
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001139 }
Jan Kiszkaad196a92009-06-24 14:42:28 +02001140 legacy_smb_export = exported_dir;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001141 if (!QTAILQ_EMPTY(&slirp_stacks)) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001142 return slirp_smb(QTAILQ_FIRST(&slirp_stacks), exported_dir,
Markus Armbruster07527062009-10-06 12:16:57 +01001143 vserver_addr);
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001144 }
Markus Armbruster07527062009-10-06 12:16:57 +01001145 return 0;
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001146}
1147
aliguori63a01ef2008-10-31 19:10:00 +00001148#endif /* !defined(_WIN32) */
Jan Kiszkab8e8af32009-05-08 12:34:18 +02001149
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001150struct GuestFwd {
aliguori8ca92172009-02-16 15:34:18 +00001151 CharDriverState *hd;
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001152 struct in_addr server;
aliguori8ca92172009-02-16 15:34:18 +00001153 int port;
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001154 Slirp *slirp;
blueswir1511d2b12009-03-07 15:32:56 +00001155};
aliguori8ca92172009-02-16 15:34:18 +00001156
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001157static int guestfwd_can_read(void *opaque)
aliguori8ca92172009-02-16 15:34:18 +00001158{
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001159 struct GuestFwd *fwd = opaque;
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001160 return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
aliguori8ca92172009-02-16 15:34:18 +00001161}
1162
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001163static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
aliguori8ca92172009-02-16 15:34:18 +00001164{
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001165 struct GuestFwd *fwd = opaque;
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001166 slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
aliguori8ca92172009-02-16 15:34:18 +00001167}
1168
Markus Armbrusterfb125772009-10-06 12:16:58 +01001169static int slirp_guestfwd(SlirpState *s, const char *config_str,
Markus Armbruster07527062009-10-06 12:16:57 +01001170 int legacy_format)
Jan Kiszkaad196a92009-06-24 14:42:28 +02001171{
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001172 struct in_addr server = { .s_addr = 0 };
1173 struct GuestFwd *fwd;
1174 const char *p;
1175 char buf[128];
1176 char *end;
Jan Kiszkaad196a92009-06-24 14:42:28 +02001177 int port;
1178
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001179 p = config_str;
1180 if (legacy_format) {
1181 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1182 goto fail_syntax;
1183 }
1184 } else {
1185 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1186 goto fail_syntax;
1187 }
1188 if (strcmp(buf, "tcp") && buf[0] != '\0') {
1189 goto fail_syntax;
1190 }
1191 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1192 goto fail_syntax;
1193 }
1194 if (buf[0] != '\0' && !inet_aton(buf, &server)) {
1195 goto fail_syntax;
1196 }
1197 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
1198 goto fail_syntax;
1199 }
1200 }
1201 port = strtol(buf, &end, 10);
1202 if (*end != '\0' || port < 1 || port > 65535) {
1203 goto fail_syntax;
1204 }
1205
1206 fwd = qemu_malloc(sizeof(struct GuestFwd));
1207 snprintf(buf, sizeof(buf), "guestfwd.tcp:%d", port);
1208 fwd->hd = qemu_chr_open(buf, p, NULL);
1209 if (!fwd->hd) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001210 qemu_error("could not open guest forwarding device '%s'\n", buf);
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001211 qemu_free(fwd);
Markus Armbruster07527062009-10-06 12:16:57 +01001212 return -1;
Jan Kiszkaad196a92009-06-24 14:42:28 +02001213 }
Jan Kiszkaad196a92009-06-24 14:42:28 +02001214
Jan Kiszkabb53fc52009-07-22 17:03:52 +02001215 if (slirp_add_exec(s->slirp, 3, fwd->hd, &server, port) < 0) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001216 qemu_error("conflicting/invalid host:port in guest forwarding "
1217 "rule '%s'\n", config_str);
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001218 qemu_free(fwd);
Markus Armbruster07527062009-10-06 12:16:57 +01001219 return -1;
Jan Kiszkaad196a92009-06-24 14:42:28 +02001220 }
Jan Kiszkabb53fc52009-07-22 17:03:52 +02001221 fwd->server = server;
1222 fwd->port = port;
1223 fwd->slirp = s->slirp;
1224
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001225 qemu_chr_add_handlers(fwd->hd, guestfwd_can_read, guestfwd_read,
1226 NULL, fwd);
Markus Armbruster07527062009-10-06 12:16:57 +01001227 return 0;
Jan Kiszkac92ef6a2009-06-24 14:42:28 +02001228
1229 fail_syntax:
Markus Armbrusterfb125772009-10-06 12:16:58 +01001230 qemu_error("invalid guest forwarding rule '%s'\n", config_str);
Markus Armbruster07527062009-10-06 12:16:57 +01001231 return -1;
Jan Kiszkaad196a92009-06-24 14:42:28 +02001232}
1233
Jan Kiszka6dbe5532009-06-24 14:42:29 +02001234void do_info_usernet(Monitor *mon)
1235{
Jan Kiszkab1c99fc2009-06-24 14:42:31 +02001236 SlirpState *s;
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001237
Blue Swirl72cf2d42009-09-12 07:36:22 +00001238 QTAILQ_FOREACH(s, &slirp_stacks, entry) {
Jan Kiszkab1c99fc2009-06-24 14:42:31 +02001239 monitor_printf(mon, "VLAN %d (%s):\n", s->vc->vlan->id, s->vc->name);
1240 slirp_connection_info(s->slirp, mon);
Jan Kiszka9f8bd042009-06-24 14:42:31 +02001241 }
Jan Kiszka6dbe5532009-06-24 14:42:29 +02001242}
1243
aliguori63a01ef2008-10-31 19:10:00 +00001244#endif /* CONFIG_SLIRP */
1245
1246#if !defined(_WIN32)
1247
1248typedef struct TAPState {
1249 VLANClientState *vc;
1250 int fd;
1251 char down_script[1024];
aliguori973cbd32009-01-13 19:15:55 +00001252 char down_script_arg[128];
Mark McLoughlin5b01e882009-05-18 12:05:44 +01001253 uint8_t buf[4096];
Mark McLoughlinb664e362009-06-18 18:21:31 +01001254 unsigned int read_poll : 1;
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001255 unsigned int write_poll : 1;
aliguori63a01ef2008-10-31 19:10:00 +00001256} TAPState;
1257
aliguorib946a152009-04-17 17:11:08 +00001258static int launch_script(const char *setup_script, const char *ifname, int fd);
1259
Mark McLoughlinb664e362009-06-18 18:21:31 +01001260static int tap_can_send(void *opaque);
1261static void tap_send(void *opaque);
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001262static void tap_writable(void *opaque);
Mark McLoughlinb664e362009-06-18 18:21:31 +01001263
1264static void tap_update_fd_handler(TAPState *s)
1265{
1266 qemu_set_fd_handler2(s->fd,
1267 s->read_poll ? tap_can_send : NULL,
1268 s->read_poll ? tap_send : NULL,
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001269 s->write_poll ? tap_writable : NULL,
Mark McLoughlinb664e362009-06-18 18:21:31 +01001270 s);
1271}
1272
1273static void tap_read_poll(TAPState *s, int enable)
1274{
1275 s->read_poll = !!enable;
1276 tap_update_fd_handler(s);
1277}
1278
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001279static void tap_write_poll(TAPState *s, int enable)
1280{
1281 s->write_poll = !!enable;
1282 tap_update_fd_handler(s);
1283}
1284
1285static void tap_writable(void *opaque)
1286{
1287 TAPState *s = opaque;
1288
1289 tap_write_poll(s, 0);
1290
1291 qemu_flush_queued_packets(s->vc);
1292}
1293
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001294static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
aliguorib535b7b2008-12-17 19:17:17 +00001295 int iovcnt)
1296{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001297 TAPState *s = vc->opaque;
aliguorib535b7b2008-12-17 19:17:17 +00001298 ssize_t len;
1299
1300 do {
1301 len = writev(s->fd, iov, iovcnt);
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001302 } while (len == -1 && errno == EINTR);
1303
1304 if (len == -1 && errno == EAGAIN) {
1305 tap_write_poll(s, 1);
1306 return 0;
1307 }
aliguorib535b7b2008-12-17 19:17:17 +00001308
1309 return len;
1310}
aliguorib535b7b2008-12-17 19:17:17 +00001311
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001312static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguori63a01ef2008-10-31 19:10:00 +00001313{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001314 TAPState *s = vc->opaque;
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001315 ssize_t len;
1316
1317 do {
1318 len = write(s->fd, buf, size);
1319 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
1320
1321 return len;
aliguori63a01ef2008-10-31 19:10:00 +00001322}
1323
Mark McLoughlin3471b752009-04-29 09:50:32 +01001324static int tap_can_send(void *opaque)
1325{
1326 TAPState *s = opaque;
1327
1328 return qemu_can_send_packet(s->vc);
1329}
1330
Mark McLoughlin5a6d8812009-04-29 09:43:37 +01001331#ifdef __sun__
1332static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1333{
1334 struct strbuf sbuf;
1335 int f = 0;
1336
1337 sbuf.maxlen = maxlen;
1338 sbuf.buf = (char *)buf;
1339
1340 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
1341}
1342#else
1343static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1344{
1345 return read(tapfd, buf, maxlen);
1346}
1347#endif
1348
Mark McLoughlin783527a2009-06-18 18:21:35 +01001349static void tap_send_completed(VLANClientState *vc, ssize_t len)
Mark McLoughline19eb222009-04-29 13:30:24 +01001350{
1351 TAPState *s = vc->opaque;
Mark McLoughlinb664e362009-06-18 18:21:31 +01001352 tap_read_poll(s, 1);
Mark McLoughline19eb222009-04-29 13:30:24 +01001353}
1354
aliguori63a01ef2008-10-31 19:10:00 +00001355static void tap_send(void *opaque)
1356{
1357 TAPState *s = opaque;
aliguori63a01ef2008-10-31 19:10:00 +00001358 int size;
1359
Mark McLoughline19eb222009-04-29 13:30:24 +01001360 do {
1361 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1362 if (size <= 0) {
1363 break;
1364 }
1365
1366 size = qemu_send_packet_async(s->vc, s->buf, size, tap_send_completed);
1367 if (size == 0) {
Mark McLoughlinb664e362009-06-18 18:21:31 +01001368 tap_read_poll(s, 0);
Mark McLoughline19eb222009-04-29 13:30:24 +01001369 }
1370 } while (size > 0);
aliguori63a01ef2008-10-31 19:10:00 +00001371}
1372
Mark McLoughlin0df0ff62009-06-18 18:21:34 +01001373#ifdef TUNSETSNDBUF
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001374/* sndbuf should be set to a value lower than the tx queue
1375 * capacity of any destination network interface.
1376 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1377 * a good default, given a 1500 byte MTU.
1378 */
1379#define TAP_DEFAULT_SNDBUF 1024*1024
1380
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01001381static int tap_set_sndbuf(TAPState *s, QemuOpts *opts)
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001382{
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01001383 int sndbuf;
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001384
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01001385 sndbuf = qemu_opt_get_size(opts, "sndbuf", TAP_DEFAULT_SNDBUF);
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001386 if (!sndbuf) {
1387 sndbuf = INT_MAX;
1388 }
1389
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01001390 if (ioctl(s->fd, TUNSETSNDBUF, &sndbuf) == -1 && qemu_opt_get(opts, "sndbuf")) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01001391 qemu_error("TUNSETSNDBUF ioctl failed: %s\n", strerror(errno));
Markus Armbruster07527062009-10-06 12:16:57 +01001392 return -1;
Mark McLoughlin0df0ff62009-06-18 18:21:34 +01001393 }
Markus Armbruster07527062009-10-06 12:16:57 +01001394 return 0;
Mark McLoughlin0df0ff62009-06-18 18:21:34 +01001395}
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001396#else
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01001397static int tap_set_sndbuf(TAPState *s, QemuOpts *opts)
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001398{
Markus Armbruster07527062009-10-06 12:16:57 +01001399 return 0;
Mark McLoughlinfc5b81d2009-06-30 10:02:57 +01001400}
1401#endif /* TUNSETSNDBUF */
Mark McLoughlin0df0ff62009-06-18 18:21:34 +01001402
aliguorib946a152009-04-17 17:11:08 +00001403static void tap_cleanup(VLANClientState *vc)
1404{
1405 TAPState *s = vc->opaque;
1406
Mark McLoughlinb9adce22009-06-18 18:21:30 +01001407 qemu_purge_queued_packets(vc);
1408
aliguorib946a152009-04-17 17:11:08 +00001409 if (s->down_script[0])
1410 launch_script(s->down_script, s->down_script_arg, s->fd);
1411
Mark McLoughlinb664e362009-06-18 18:21:31 +01001412 tap_read_poll(s, 0);
Mark McLoughlin1f7babf2009-06-18 18:21:32 +01001413 tap_write_poll(s, 0);
aliguorib946a152009-04-17 17:11:08 +00001414 close(s->fd);
1415 qemu_free(s);
1416}
1417
aliguori63a01ef2008-10-31 19:10:00 +00001418/* fd support */
1419
aliguori7a9f6e42009-01-07 17:48:51 +00001420static TAPState *net_tap_fd_init(VLANState *vlan,
1421 const char *model,
1422 const char *name,
1423 int fd)
aliguori63a01ef2008-10-31 19:10:00 +00001424{
1425 TAPState *s;
1426
1427 s = qemu_mallocz(sizeof(TAPState));
aliguori63a01ef2008-10-31 19:10:00 +00001428 s->fd = fd;
Mark McLoughlin463af532009-05-18 12:55:27 +01001429 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1430 tap_receive_iov, tap_cleanup, s);
Mark McLoughlinb664e362009-06-18 18:21:31 +01001431 tap_read_poll(s, 1);
aliguori7cb7434b2009-01-07 17:46:21 +00001432 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
aliguori63a01ef2008-10-31 19:10:00 +00001433 return s;
1434}
1435
Juan Quintela71e72a12009-07-27 16:12:56 +02001436#if defined (CONFIG_BSD) || defined (__FreeBSD_kernel__)
aliguori63a01ef2008-10-31 19:10:00 +00001437static int tap_open(char *ifname, int ifname_size)
1438{
1439 int fd;
1440 char *dev;
1441 struct stat s;
1442
1443 TFR(fd = open("/dev/tap", O_RDWR));
1444 if (fd < 0) {
1445 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1446 return -1;
1447 }
1448
1449 fstat(fd, &s);
1450 dev = devname(s.st_rdev, S_IFCHR);
1451 pstrcpy(ifname, ifname_size, dev);
1452
1453 fcntl(fd, F_SETFL, O_NONBLOCK);
1454 return fd;
1455}
1456#elif defined(__sun__)
1457#define TUNNEWPPA (('T'<<16) | 0x0001)
1458/*
1459 * Allocate TAP device, returns opened fd.
1460 * Stores dev name in the first arg(must be large enough).
1461 */
blueswir13f4cb3d2009-04-13 16:31:01 +00001462static int tap_alloc(char *dev, size_t dev_size)
aliguori63a01ef2008-10-31 19:10:00 +00001463{
1464 int tap_fd, if_fd, ppa = -1;
1465 static int ip_fd = 0;
1466 char *ptr;
1467
1468 static int arp_fd = 0;
1469 int ip_muxid, arp_muxid;
1470 struct strioctl strioc_if, strioc_ppa;
1471 int link_type = I_PLINK;;
1472 struct lifreq ifr;
1473 char actual_name[32] = "";
1474
1475 memset(&ifr, 0x0, sizeof(ifr));
1476
1477 if( *dev ){
1478 ptr = dev;
blueswir147398b92008-11-22 20:04:24 +00001479 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
aliguori63a01ef2008-10-31 19:10:00 +00001480 ppa = atoi(ptr);
1481 }
1482
1483 /* Check if IP device was opened */
1484 if( ip_fd )
1485 close(ip_fd);
1486
1487 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1488 if (ip_fd < 0) {
1489 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1490 return -1;
1491 }
1492
1493 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1494 if (tap_fd < 0) {
1495 syslog(LOG_ERR, "Can't open /dev/tap");
1496 return -1;
1497 }
1498
1499 /* Assign a new PPA and get its unit number. */
1500 strioc_ppa.ic_cmd = TUNNEWPPA;
1501 strioc_ppa.ic_timout = 0;
1502 strioc_ppa.ic_len = sizeof(ppa);
1503 strioc_ppa.ic_dp = (char *)&ppa;
1504 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1505 syslog (LOG_ERR, "Can't assign new interface");
1506
1507 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1508 if (if_fd < 0) {
1509 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1510 return -1;
1511 }
1512 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1513 syslog(LOG_ERR, "Can't push IP module");
1514 return -1;
1515 }
1516
1517 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1518 syslog(LOG_ERR, "Can't get flags\n");
1519
1520 snprintf (actual_name, 32, "tap%d", ppa);
1521 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1522
1523 ifr.lifr_ppa = ppa;
1524 /* Assign ppa according to the unit number returned by tun device */
1525
1526 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1527 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1528 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1529 syslog (LOG_ERR, "Can't get flags\n");
1530 /* Push arp module to if_fd */
1531 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1532 syslog (LOG_ERR, "Can't push ARP module (2)");
1533
1534 /* Push arp module to ip_fd */
1535 if (ioctl (ip_fd, I_POP, NULL) < 0)
1536 syslog (LOG_ERR, "I_POP failed\n");
1537 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1538 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1539 /* Open arp_fd */
1540 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1541 if (arp_fd < 0)
1542 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1543
1544 /* Set ifname to arp */
1545 strioc_if.ic_cmd = SIOCSLIFNAME;
1546 strioc_if.ic_timout = 0;
1547 strioc_if.ic_len = sizeof(ifr);
1548 strioc_if.ic_dp = (char *)&ifr;
1549 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1550 syslog (LOG_ERR, "Can't set ifname to arp\n");
1551 }
1552
1553 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1554 syslog(LOG_ERR, "Can't link TAP device to IP");
1555 return -1;
1556 }
1557
1558 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1559 syslog (LOG_ERR, "Can't link TAP device to ARP");
1560
1561 close (if_fd);
1562
1563 memset(&ifr, 0x0, sizeof(ifr));
1564 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1565 ifr.lifr_ip_muxid = ip_muxid;
1566 ifr.lifr_arp_muxid = arp_muxid;
1567
1568 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1569 {
1570 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1571 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1572 syslog (LOG_ERR, "Can't set multiplexor id");
1573 }
1574
1575 snprintf(dev, dev_size, "tap%d", ppa);
1576 return tap_fd;
1577}
1578
1579static int tap_open(char *ifname, int ifname_size)
1580{
1581 char dev[10]="";
1582 int fd;
1583 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1584 fprintf(stderr, "Cannot allocate TAP device\n");
1585 return -1;
1586 }
1587 pstrcpy(ifname, ifname_size, dev);
1588 fcntl(fd, F_SETFL, O_NONBLOCK);
1589 return fd;
1590}
malcb29fe3e2008-11-18 01:42:22 +00001591#elif defined (_AIX)
1592static int tap_open(char *ifname, int ifname_size)
1593{
1594 fprintf (stderr, "no tap on AIX\n");
1595 return -1;
1596}
aliguori63a01ef2008-10-31 19:10:00 +00001597#else
1598static int tap_open(char *ifname, int ifname_size)
1599{
1600 struct ifreq ifr;
1601 int fd, ret;
1602
1603 TFR(fd = open("/dev/net/tun", O_RDWR));
1604 if (fd < 0) {
1605 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1606 return -1;
1607 }
1608 memset(&ifr, 0, sizeof(ifr));
1609 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1610 if (ifname[0] != '\0')
1611 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1612 else
1613 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1614 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1615 if (ret != 0) {
1616 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1617 close(fd);
1618 return -1;
1619 }
1620 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1621 fcntl(fd, F_SETFL, O_NONBLOCK);
1622 return fd;
1623}
1624#endif
1625
1626static int launch_script(const char *setup_script, const char *ifname, int fd)
1627{
Jan Kiszka7c3370d2009-05-08 12:34:17 +02001628 sigset_t oldmask, mask;
aliguori63a01ef2008-10-31 19:10:00 +00001629 int pid, status;
1630 char *args[3];
1631 char **parg;
1632
Jan Kiszka7c3370d2009-05-08 12:34:17 +02001633 sigemptyset(&mask);
1634 sigaddset(&mask, SIGCHLD);
1635 sigprocmask(SIG_BLOCK, &mask, &oldmask);
aliguori63a01ef2008-10-31 19:10:00 +00001636
Jan Kiszka7c3370d2009-05-08 12:34:17 +02001637 /* try to launch network script */
1638 pid = fork();
1639 if (pid == 0) {
1640 int open_max = sysconf(_SC_OPEN_MAX), i;
1641
1642 for (i = 0; i < open_max; i++) {
1643 if (i != STDIN_FILENO &&
1644 i != STDOUT_FILENO &&
1645 i != STDERR_FILENO &&
1646 i != fd) {
1647 close(i);
aliguori63a01ef2008-10-31 19:10:00 +00001648 }
1649 }
Jan Kiszka7c3370d2009-05-08 12:34:17 +02001650 parg = args;
1651 *parg++ = (char *)setup_script;
1652 *parg++ = (char *)ifname;
1653 *parg++ = NULL;
1654 execv(setup_script, args);
1655 _exit(1);
1656 } else if (pid > 0) {
1657 while (waitpid(pid, &status, 0) != pid) {
1658 /* loop */
1659 }
1660 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1661
1662 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1663 return 0;
1664 }
1665 }
1666 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1667 return -1;
aliguori63a01ef2008-10-31 19:10:00 +00001668}
1669
Mark McLoughlin4a77b252009-06-18 18:21:33 +01001670static TAPState *net_tap_init(VLANState *vlan, const char *model,
1671 const char *name, const char *ifname1,
1672 const char *setup_script, const char *down_script)
aliguori63a01ef2008-10-31 19:10:00 +00001673{
1674 TAPState *s;
1675 int fd;
1676 char ifname[128];
1677
1678 if (ifname1 != NULL)
1679 pstrcpy(ifname, sizeof(ifname), ifname1);
1680 else
1681 ifname[0] = '\0';
1682 TFR(fd = tap_open(ifname, sizeof(ifname)));
1683 if (fd < 0)
Mark McLoughlin4a77b252009-06-18 18:21:33 +01001684 return NULL;
aliguori63a01ef2008-10-31 19:10:00 +00001685
1686 if (!setup_script || !strcmp(setup_script, "no"))
1687 setup_script = "";
Mark McLoughlin4a77b252009-06-18 18:21:33 +01001688 if (setup_script[0] != '\0' &&
1689 launch_script(setup_script, ifname, fd)) {
1690 return NULL;
aliguori63a01ef2008-10-31 19:10:00 +00001691 }
aliguori7a9f6e42009-01-07 17:48:51 +00001692 s = net_tap_fd_init(vlan, model, name, fd);
aliguori63a01ef2008-10-31 19:10:00 +00001693 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
aliguori7cb7434b2009-01-07 17:46:21 +00001694 "ifname=%s,script=%s,downscript=%s",
1695 ifname, setup_script, down_script);
aliguori973cbd32009-01-13 19:15:55 +00001696 if (down_script && strcmp(down_script, "no")) {
aliguori63a01ef2008-10-31 19:10:00 +00001697 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
aliguori973cbd32009-01-13 19:15:55 +00001698 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1699 }
Mark McLoughlin4a77b252009-06-18 18:21:33 +01001700 return s;
aliguori63a01ef2008-10-31 19:10:00 +00001701}
1702
1703#endif /* !_WIN32 */
1704
1705#if defined(CONFIG_VDE)
1706typedef struct VDEState {
1707 VLANClientState *vc;
1708 VDECONN *vde;
1709} VDEState;
1710
1711static void vde_to_qemu(void *opaque)
1712{
1713 VDEState *s = opaque;
1714 uint8_t buf[4096];
1715 int size;
1716
Paul Brookcc63bb02009-05-03 22:40:54 +01001717 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
aliguori63a01ef2008-10-31 19:10:00 +00001718 if (size > 0) {
1719 qemu_send_packet(s->vc, buf, size);
1720 }
1721}
1722
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001723static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguori63a01ef2008-10-31 19:10:00 +00001724{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001725 VDEState *s = vc->opaque;
Anthony Liguori068daed2009-06-10 20:24:44 -05001726 ssize_t ret;
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001727
1728 do {
1729 ret = vde_send(s->vde, (const char *)buf, size, 0);
1730 } while (ret < 0 && errno == EINTR);
1731
1732 return ret;
aliguori63a01ef2008-10-31 19:10:00 +00001733}
1734
aliguorib946a152009-04-17 17:11:08 +00001735static void vde_cleanup(VLANClientState *vc)
1736{
1737 VDEState *s = vc->opaque;
1738 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1739 vde_close(s->vde);
1740 qemu_free(s);
1741}
1742
aliguori7a9f6e42009-01-07 17:48:51 +00001743static int net_vde_init(VLANState *vlan, const char *model,
1744 const char *name, const char *sock,
aliguoribf38c1a2009-01-07 17:42:25 +00001745 int port, const char *group, int mode)
aliguori63a01ef2008-10-31 19:10:00 +00001746{
1747 VDEState *s;
Mark McLoughlindd510582009-10-06 12:17:10 +01001748 char *init_group = (char *)group;
1749 char *init_sock = (char *)sock;
aliguori63a01ef2008-10-31 19:10:00 +00001750
1751 struct vde_open_args args = {
1752 .port = port,
1753 .group = init_group,
1754 .mode = mode,
1755 };
1756
1757 s = qemu_mallocz(sizeof(VDEState));
Paul Brookcc63bb02009-05-03 22:40:54 +01001758 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
aliguori63a01ef2008-10-31 19:10:00 +00001759 if (!s->vde){
1760 free(s);
1761 return -1;
1762 }
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001763 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
aliguorib946a152009-04-17 17:11:08 +00001764 NULL, vde_cleanup, s);
aliguori63a01ef2008-10-31 19:10:00 +00001765 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
aliguori7cb7434b2009-01-07 17:46:21 +00001766 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
aliguori63a01ef2008-10-31 19:10:00 +00001767 sock, vde_datafd(s->vde));
1768 return 0;
1769}
1770#endif
1771
1772/* network connection */
1773typedef struct NetSocketState {
1774 VLANClientState *vc;
1775 int fd;
1776 int state; /* 0 = getting length, 1 = getting data */
aliguoriabcd2ba2009-02-27 19:54:01 +00001777 unsigned int index;
1778 unsigned int packet_len;
aliguori63a01ef2008-10-31 19:10:00 +00001779 uint8_t buf[4096];
1780 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1781} NetSocketState;
1782
1783typedef struct NetSocketListenState {
1784 VLANState *vlan;
aliguoribf38c1a2009-01-07 17:42:25 +00001785 char *model;
aliguori7a9f6e42009-01-07 17:48:51 +00001786 char *name;
aliguori63a01ef2008-10-31 19:10:00 +00001787 int fd;
1788} NetSocketListenState;
1789
1790/* XXX: we consider we can send the whole packet without blocking */
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001791static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguori63a01ef2008-10-31 19:10:00 +00001792{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001793 NetSocketState *s = vc->opaque;
aliguori63a01ef2008-10-31 19:10:00 +00001794 uint32_t len;
1795 len = htonl(size);
1796
1797 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001798 return send_all(s->fd, buf, size);
aliguori63a01ef2008-10-31 19:10:00 +00001799}
1800
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001801static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguori63a01ef2008-10-31 19:10:00 +00001802{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01001803 NetSocketState *s = vc->opaque;
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001804
Stefan Weil70503262009-06-13 13:05:27 +02001805 return sendto(s->fd, (const void *)buf, size, 0,
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01001806 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
aliguori63a01ef2008-10-31 19:10:00 +00001807}
1808
1809static void net_socket_send(void *opaque)
1810{
1811 NetSocketState *s = opaque;
aliguoriabcd2ba2009-02-27 19:54:01 +00001812 int size, err;
1813 unsigned l;
aliguori63a01ef2008-10-31 19:10:00 +00001814 uint8_t buf1[4096];
1815 const uint8_t *buf;
1816
Blue Swirlc5b76b32009-06-13 08:44:31 +00001817 size = recv(s->fd, (void *)buf1, sizeof(buf1), 0);
aliguori63a01ef2008-10-31 19:10:00 +00001818 if (size < 0) {
1819 err = socket_error();
1820 if (err != EWOULDBLOCK)
1821 goto eoc;
1822 } else if (size == 0) {
1823 /* end of connection */
1824 eoc:
1825 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1826 closesocket(s->fd);
1827 return;
1828 }
1829 buf = buf1;
1830 while (size > 0) {
1831 /* reassemble a packet from the network */
1832 switch(s->state) {
1833 case 0:
1834 l = 4 - s->index;
1835 if (l > size)
1836 l = size;
1837 memcpy(s->buf + s->index, buf, l);
1838 buf += l;
1839 size -= l;
1840 s->index += l;
1841 if (s->index == 4) {
1842 /* got length */
1843 s->packet_len = ntohl(*(uint32_t *)s->buf);
1844 s->index = 0;
1845 s->state = 1;
1846 }
1847 break;
1848 case 1:
1849 l = s->packet_len - s->index;
1850 if (l > size)
1851 l = size;
aliguoriabcd2ba2009-02-27 19:54:01 +00001852 if (s->index + l <= sizeof(s->buf)) {
1853 memcpy(s->buf + s->index, buf, l);
1854 } else {
1855 fprintf(stderr, "serious error: oversized packet received,"
1856 "connection terminated.\n");
1857 s->state = 0;
1858 goto eoc;
1859 }
1860
aliguori63a01ef2008-10-31 19:10:00 +00001861 s->index += l;
1862 buf += l;
1863 size -= l;
1864 if (s->index >= s->packet_len) {
1865 qemu_send_packet(s->vc, s->buf, s->packet_len);
1866 s->index = 0;
1867 s->state = 0;
1868 }
1869 break;
1870 }
1871 }
1872}
1873
1874static void net_socket_send_dgram(void *opaque)
1875{
1876 NetSocketState *s = opaque;
1877 int size;
1878
Blue Swirlc5b76b32009-06-13 08:44:31 +00001879 size = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
aliguori63a01ef2008-10-31 19:10:00 +00001880 if (size < 0)
1881 return;
1882 if (size == 0) {
1883 /* end of connection */
1884 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1885 return;
1886 }
1887 qemu_send_packet(s->vc, s->buf, size);
1888}
1889
1890static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1891{
1892 struct ip_mreq imr;
1893 int fd;
1894 int val, ret;
1895 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1896 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1897 inet_ntoa(mcastaddr->sin_addr),
1898 (int)ntohl(mcastaddr->sin_addr.s_addr));
1899 return -1;
1900
1901 }
1902 fd = socket(PF_INET, SOCK_DGRAM, 0);
1903 if (fd < 0) {
1904 perror("socket(PF_INET, SOCK_DGRAM)");
1905 return -1;
1906 }
1907
1908 val = 1;
1909 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1910 (const char *)&val, sizeof(val));
1911 if (ret < 0) {
1912 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1913 goto fail;
1914 }
1915
1916 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1917 if (ret < 0) {
1918 perror("bind");
1919 goto fail;
1920 }
1921
1922 /* Add host to multicast group */
1923 imr.imr_multiaddr = mcastaddr->sin_addr;
1924 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1925
1926 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1927 (const char *)&imr, sizeof(struct ip_mreq));
1928 if (ret < 0) {
1929 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1930 goto fail;
1931 }
1932
1933 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1934 val = 1;
1935 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1936 (const char *)&val, sizeof(val));
1937 if (ret < 0) {
1938 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1939 goto fail;
1940 }
1941
1942 socket_set_nonblock(fd);
1943 return fd;
1944fail:
1945 if (fd >= 0)
1946 closesocket(fd);
1947 return -1;
1948}
1949
aliguorib946a152009-04-17 17:11:08 +00001950static void net_socket_cleanup(VLANClientState *vc)
1951{
1952 NetSocketState *s = vc->opaque;
1953 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1954 close(s->fd);
1955 qemu_free(s);
1956}
1957
aliguori7a9f6e42009-01-07 17:48:51 +00001958static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1959 const char *model,
1960 const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00001961 int fd, int is_connected)
aliguori63a01ef2008-10-31 19:10:00 +00001962{
1963 struct sockaddr_in saddr;
1964 int newfd;
1965 socklen_t saddr_len;
1966 NetSocketState *s;
1967
1968 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1969 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1970 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1971 */
1972
1973 if (is_connected) {
1974 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1975 /* must be bound */
1976 if (saddr.sin_addr.s_addr==0) {
1977 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1978 fd);
1979 return NULL;
1980 }
1981 /* clone dgram socket */
1982 newfd = net_socket_mcast_create(&saddr);
1983 if (newfd < 0) {
1984 /* error already reported by net_socket_mcast_create() */
1985 close(fd);
1986 return NULL;
1987 }
1988 /* clone newfd to fd, close newfd */
1989 dup2(newfd, fd);
1990 close(newfd);
1991
1992 } else {
1993 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1994 fd, strerror(errno));
1995 return NULL;
1996 }
1997 }
1998
1999 s = qemu_mallocz(sizeof(NetSocketState));
aliguori63a01ef2008-10-31 19:10:00 +00002000 s->fd = fd;
2001
Mark McLoughlin463af532009-05-18 12:55:27 +01002002 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
aliguorib946a152009-04-17 17:11:08 +00002003 NULL, net_socket_cleanup, s);
aliguori63a01ef2008-10-31 19:10:00 +00002004 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2005
2006 /* mcast: save bound address as dst */
2007 if (is_connected) s->dgram_dst=saddr;
2008
2009 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2010 "socket: fd=%d (%s mcast=%s:%d)",
2011 fd, is_connected? "cloned" : "",
2012 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2013 return s;
2014}
2015
2016static void net_socket_connect(void *opaque)
2017{
2018 NetSocketState *s = opaque;
2019 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2020}
2021
aliguori7a9f6e42009-01-07 17:48:51 +00002022static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
2023 const char *model,
2024 const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00002025 int fd, int is_connected)
aliguori63a01ef2008-10-31 19:10:00 +00002026{
2027 NetSocketState *s;
2028 s = qemu_mallocz(sizeof(NetSocketState));
aliguori63a01ef2008-10-31 19:10:00 +00002029 s->fd = fd;
Mark McLoughlin463af532009-05-18 12:55:27 +01002030 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
aliguorib946a152009-04-17 17:11:08 +00002031 NULL, net_socket_cleanup, s);
aliguori63a01ef2008-10-31 19:10:00 +00002032 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2033 "socket: fd=%d", fd);
2034 if (is_connected) {
2035 net_socket_connect(s);
2036 } else {
2037 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2038 }
2039 return s;
2040}
2041
aliguori7a9f6e42009-01-07 17:48:51 +00002042static NetSocketState *net_socket_fd_init(VLANState *vlan,
2043 const char *model, const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00002044 int fd, int is_connected)
aliguori63a01ef2008-10-31 19:10:00 +00002045{
Michael S. Tsirkinacedcfb2009-09-30 18:56:44 +00002046 int so_type = -1, optlen=sizeof(so_type);
aliguori63a01ef2008-10-31 19:10:00 +00002047
2048 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
2049 (socklen_t *)&optlen)< 0) {
2050 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
2051 return NULL;
2052 }
2053 switch(so_type) {
2054 case SOCK_DGRAM:
aliguori7a9f6e42009-01-07 17:48:51 +00002055 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
aliguori63a01ef2008-10-31 19:10:00 +00002056 case SOCK_STREAM:
aliguori7a9f6e42009-01-07 17:48:51 +00002057 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
aliguori63a01ef2008-10-31 19:10:00 +00002058 default:
2059 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2060 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
aliguori7a9f6e42009-01-07 17:48:51 +00002061 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
aliguori63a01ef2008-10-31 19:10:00 +00002062 }
2063 return NULL;
2064}
2065
2066static void net_socket_accept(void *opaque)
2067{
2068 NetSocketListenState *s = opaque;
2069 NetSocketState *s1;
2070 struct sockaddr_in saddr;
2071 socklen_t len;
2072 int fd;
2073
2074 for(;;) {
2075 len = sizeof(saddr);
2076 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2077 if (fd < 0 && errno != EINTR) {
2078 return;
2079 } else if (fd >= 0) {
2080 break;
2081 }
2082 }
aliguori7a9f6e42009-01-07 17:48:51 +00002083 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
aliguori63a01ef2008-10-31 19:10:00 +00002084 if (!s1) {
2085 closesocket(fd);
2086 } else {
2087 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2088 "socket: connection from %s:%d",
2089 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2090 }
2091}
2092
aliguori7a9f6e42009-01-07 17:48:51 +00002093static int net_socket_listen_init(VLANState *vlan,
2094 const char *model,
2095 const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00002096 const char *host_str)
aliguori63a01ef2008-10-31 19:10:00 +00002097{
2098 NetSocketListenState *s;
2099 int fd, val, ret;
2100 struct sockaddr_in saddr;
2101
2102 if (parse_host_port(&saddr, host_str) < 0)
2103 return -1;
2104
2105 s = qemu_mallocz(sizeof(NetSocketListenState));
aliguori63a01ef2008-10-31 19:10:00 +00002106
2107 fd = socket(PF_INET, SOCK_STREAM, 0);
2108 if (fd < 0) {
2109 perror("socket");
2110 return -1;
2111 }
2112 socket_set_nonblock(fd);
2113
2114 /* allow fast reuse */
2115 val = 1;
2116 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2117
2118 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2119 if (ret < 0) {
2120 perror("bind");
2121 return -1;
2122 }
2123 ret = listen(fd, 0);
2124 if (ret < 0) {
2125 perror("listen");
2126 return -1;
2127 }
2128 s->vlan = vlan;
Mark McLoughlin02374aa2009-10-06 12:16:55 +01002129 s->model = qemu_strdup(model);
2130 s->name = name ? qemu_strdup(name) : NULL;
aliguori63a01ef2008-10-31 19:10:00 +00002131 s->fd = fd;
2132 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2133 return 0;
2134}
2135
aliguori7a9f6e42009-01-07 17:48:51 +00002136static int net_socket_connect_init(VLANState *vlan,
2137 const char *model,
2138 const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00002139 const char *host_str)
aliguori63a01ef2008-10-31 19:10:00 +00002140{
2141 NetSocketState *s;
2142 int fd, connected, ret, err;
2143 struct sockaddr_in saddr;
2144
2145 if (parse_host_port(&saddr, host_str) < 0)
2146 return -1;
2147
2148 fd = socket(PF_INET, SOCK_STREAM, 0);
2149 if (fd < 0) {
2150 perror("socket");
2151 return -1;
2152 }
2153 socket_set_nonblock(fd);
2154
2155 connected = 0;
2156 for(;;) {
2157 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2158 if (ret < 0) {
2159 err = socket_error();
2160 if (err == EINTR || err == EWOULDBLOCK) {
2161 } else if (err == EINPROGRESS) {
2162 break;
2163#ifdef _WIN32
2164 } else if (err == WSAEALREADY) {
2165 break;
2166#endif
2167 } else {
2168 perror("connect");
2169 closesocket(fd);
2170 return -1;
2171 }
2172 } else {
2173 connected = 1;
2174 break;
2175 }
2176 }
aliguori7a9f6e42009-01-07 17:48:51 +00002177 s = net_socket_fd_init(vlan, model, name, fd, connected);
aliguori63a01ef2008-10-31 19:10:00 +00002178 if (!s)
2179 return -1;
2180 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2181 "socket: connect to %s:%d",
2182 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2183 return 0;
2184}
2185
aliguori7a9f6e42009-01-07 17:48:51 +00002186static int net_socket_mcast_init(VLANState *vlan,
2187 const char *model,
2188 const char *name,
aliguoribf38c1a2009-01-07 17:42:25 +00002189 const char *host_str)
aliguori63a01ef2008-10-31 19:10:00 +00002190{
2191 NetSocketState *s;
2192 int fd;
2193 struct sockaddr_in saddr;
2194
2195 if (parse_host_port(&saddr, host_str) < 0)
2196 return -1;
2197
2198
2199 fd = net_socket_mcast_create(&saddr);
2200 if (fd < 0)
2201 return -1;
2202
aliguori7a9f6e42009-01-07 17:48:51 +00002203 s = net_socket_fd_init(vlan, model, name, fd, 0);
aliguori63a01ef2008-10-31 19:10:00 +00002204 if (!s)
2205 return -1;
2206
2207 s->dgram_dst = saddr;
2208
2209 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2210 "socket: mcast=%s:%d",
2211 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2212 return 0;
2213
2214}
2215
aliguoribb9ea792009-04-21 19:56:28 +00002216typedef struct DumpState {
2217 VLANClientState *pcap_vc;
2218 int fd;
2219 int pcap_caplen;
2220} DumpState;
2221
2222#define PCAP_MAGIC 0xa1b2c3d4
2223
2224struct pcap_file_hdr {
2225 uint32_t magic;
2226 uint16_t version_major;
2227 uint16_t version_minor;
2228 int32_t thiszone;
2229 uint32_t sigfigs;
2230 uint32_t snaplen;
2231 uint32_t linktype;
2232};
2233
2234struct pcap_sf_pkthdr {
2235 struct {
2236 int32_t tv_sec;
2237 int32_t tv_usec;
2238 } ts;
2239 uint32_t caplen;
2240 uint32_t len;
2241};
2242
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01002243static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
aliguoribb9ea792009-04-21 19:56:28 +00002244{
Mark McLoughline3f5ec22009-05-18 13:33:03 +01002245 DumpState *s = vc->opaque;
aliguoribb9ea792009-04-21 19:56:28 +00002246 struct pcap_sf_pkthdr hdr;
2247 int64_t ts;
2248 int caplen;
2249
2250 /* Early return in case of previous error. */
2251 if (s->fd < 0) {
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01002252 return size;
aliguoribb9ea792009-04-21 19:56:28 +00002253 }
2254
Juan Quintela6ee093c2009-09-10 03:04:26 +02002255 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, get_ticks_per_sec());
aliguoribb9ea792009-04-21 19:56:28 +00002256 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
2257
Jan Kiszka37cb6fc2009-05-10 22:23:23 +02002258 hdr.ts.tv_sec = ts / 1000000;
aliguoribb9ea792009-04-21 19:56:28 +00002259 hdr.ts.tv_usec = ts % 1000000;
2260 hdr.caplen = caplen;
2261 hdr.len = size;
2262 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
2263 write(s->fd, buf, caplen) != caplen) {
2264 qemu_log("-net dump write error - stop dump\n");
2265 close(s->fd);
2266 s->fd = -1;
2267 }
Mark McLoughlin4f1c9422009-05-18 13:40:55 +01002268
2269 return size;
aliguoribb9ea792009-04-21 19:56:28 +00002270}
2271
2272static void net_dump_cleanup(VLANClientState *vc)
2273{
2274 DumpState *s = vc->opaque;
2275
2276 close(s->fd);
2277 qemu_free(s);
2278}
2279
Markus Armbrusterfb125772009-10-06 12:16:58 +01002280static int net_dump_init(VLANState *vlan, const char *device,
aliguoribb9ea792009-04-21 19:56:28 +00002281 const char *name, const char *filename, int len)
2282{
2283 struct pcap_file_hdr hdr;
2284 DumpState *s;
2285
2286 s = qemu_malloc(sizeof(DumpState));
2287
Filip Navara024431b2009-06-17 19:48:08 +02002288 s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
aliguoribb9ea792009-04-21 19:56:28 +00002289 if (s->fd < 0) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01002290 qemu_error("-net dump: can't open %s\n", filename);
aliguoribb9ea792009-04-21 19:56:28 +00002291 return -1;
2292 }
2293
2294 s->pcap_caplen = len;
2295
2296 hdr.magic = PCAP_MAGIC;
2297 hdr.version_major = 2;
2298 hdr.version_minor = 4;
2299 hdr.thiszone = 0;
2300 hdr.sigfigs = 0;
2301 hdr.snaplen = s->pcap_caplen;
2302 hdr.linktype = 1;
2303
2304 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01002305 qemu_error("-net dump write error: %s\n", strerror(errno));
aliguoribb9ea792009-04-21 19:56:28 +00002306 close(s->fd);
2307 qemu_free(s);
2308 return -1;
2309 }
2310
Mark McLoughlin463af532009-05-18 12:55:27 +01002311 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
aliguoribb9ea792009-04-21 19:56:28 +00002312 net_dump_cleanup, s);
2313 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
2314 "dump to %s (len=%d)", filename, len);
2315 return 0;
2316}
2317
aliguori63a01ef2008-10-31 19:10:00 +00002318/* find or alloc a new VLAN */
Jan Kiszka1a609522009-06-24 14:42:31 +02002319VLANState *qemu_find_vlan(int id, int allocate)
aliguori63a01ef2008-10-31 19:10:00 +00002320{
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002321 VLANState *vlan;
2322
2323 QTAILQ_FOREACH(vlan, &vlans, next) {
2324 if (vlan->id == id) {
aliguori63a01ef2008-10-31 19:10:00 +00002325 return vlan;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002326 }
aliguori63a01ef2008-10-31 19:10:00 +00002327 }
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002328
Jan Kiszka1a609522009-06-24 14:42:31 +02002329 if (!allocate) {
2330 return NULL;
2331 }
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002332
aliguori63a01ef2008-10-31 19:10:00 +00002333 vlan = qemu_mallocz(sizeof(VLANState));
aliguori63a01ef2008-10-31 19:10:00 +00002334 vlan->id = id;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002335 QTAILQ_INIT(&vlan->clients);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002336 QTAILQ_INIT(&vlan->send_queue);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01002337
2338 QTAILQ_INSERT_TAIL(&vlans, vlan, next);
2339
aliguori63a01ef2008-10-31 19:10:00 +00002340 return vlan;
2341}
2342
aliguori76970792009-02-11 15:20:03 +00002343static int nic_get_free_idx(void)
2344{
2345 int index;
2346
2347 for (index = 0; index < MAX_NICS; index++)
2348 if (!nd_table[index].used)
2349 return index;
2350 return -1;
2351}
2352
Markus Armbruster07caea32009-09-25 03:53:51 +02002353int qemu_show_nic_models(const char *arg, const char *const *models)
2354{
2355 int i;
2356
2357 if (!arg || strcmp(arg, "?"))
2358 return 0;
2359
2360 fprintf(stderr, "qemu: Supported NIC models: ");
2361 for (i = 0 ; models[i]; i++)
2362 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
2363 return 1;
2364}
2365
aliguorid07f22c2009-01-13 19:03:57 +00002366void qemu_check_nic_model(NICInfo *nd, const char *model)
2367{
2368 const char *models[2];
2369
2370 models[0] = model;
2371 models[1] = NULL;
2372
Markus Armbruster07caea32009-09-25 03:53:51 +02002373 if (qemu_show_nic_models(nd->model, models))
2374 exit(0);
2375 if (qemu_find_nic_model(nd, models, model) < 0)
2376 exit(1);
aliguorid07f22c2009-01-13 19:03:57 +00002377}
2378
Markus Armbruster07caea32009-09-25 03:53:51 +02002379int qemu_find_nic_model(NICInfo *nd, const char * const *models,
2380 const char *default_model)
aliguorid07f22c2009-01-13 19:03:57 +00002381{
Markus Armbruster07caea32009-09-25 03:53:51 +02002382 int i;
aliguorid07f22c2009-01-13 19:03:57 +00002383
2384 if (!nd->model)
Mark McLoughlin32a8e142009-10-06 12:16:51 +01002385 nd->model = qemu_strdup(default_model);
aliguorid07f22c2009-01-13 19:03:57 +00002386
Markus Armbruster07caea32009-09-25 03:53:51 +02002387 for (i = 0 ; models[i]; i++) {
2388 if (strcmp(nd->model, models[i]) == 0)
2389 return i;
aliguorid07f22c2009-01-13 19:03:57 +00002390 }
2391
Markus Armbruster07caea32009-09-25 03:53:51 +02002392 qemu_error("qemu: Unsupported NIC model: %s\n", nd->model);
2393 return -1;
aliguorid07f22c2009-01-13 19:03:57 +00002394}
2395
Mark McLoughlinc1d6eed2009-07-22 09:11:42 +01002396static int net_handle_fd_param(Monitor *mon, const char *param)
2397{
2398 if (!qemu_isdigit(param[0])) {
2399 int fd;
2400
2401 fd = monitor_get_fd(mon, param);
2402 if (fd == -1) {
Markus Armbrusterfb125772009-10-06 12:16:58 +01002403 qemu_error("No file descriptor named %s found", param);
Mark McLoughlinc1d6eed2009-07-22 09:11:42 +01002404 return -1;
2405 }
2406
2407 return fd;
2408 } else {
2409 return strtol(param, NULL, 0);
2410 }
2411}
2412
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002413static int net_init_nic(QemuOpts *opts,
2414 Monitor *mon,
2415 const char *name,
2416 VLANState *vlan)
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01002417{
2418 int idx;
2419 NICInfo *nd;
2420
2421 idx = nic_get_free_idx();
2422 if (idx == -1 || nb_nics >= MAX_NICS) {
2423 qemu_error("Too Many NICs\n");
2424 return -1;
2425 }
2426
2427 nd = &nd_table[idx];
2428
2429 memset(nd, 0, sizeof(*nd));
2430
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002431 assert(vlan);
2432 nd->vlan = vlan;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01002433
Mark McLoughlin6d952eb2009-10-08 19:58:21 +01002434 if (name) {
2435 nd->name = qemu_strdup(name);
2436 }
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01002437 if (qemu_opt_get(opts, "model")) {
2438 nd->model = qemu_strdup(qemu_opt_get(opts, "model"));
2439 }
2440 if (qemu_opt_get(opts, "addr")) {
2441 nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
2442 }
2443
2444 nd->macaddr[0] = 0x52;
2445 nd->macaddr[1] = 0x54;
2446 nd->macaddr[2] = 0x00;
2447 nd->macaddr[3] = 0x12;
2448 nd->macaddr[4] = 0x34;
2449 nd->macaddr[5] = 0x56 + idx;
2450
2451 if (qemu_opt_get(opts, "macaddr") &&
2452 parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
2453 qemu_error("invalid syntax for ethernet address\n");
2454 return -1;
2455 }
2456
2457 nd->nvectors = qemu_opt_get_number(opts, "vectors", NIC_NVECTORS_UNSPECIFIED);
2458 if (nd->nvectors != NIC_NVECTORS_UNSPECIFIED &&
2459 (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
2460 qemu_error("invalid # of vectors: %d\n", nd->nvectors);
2461 return -1;
2462 }
2463
2464 nd->used = 1;
2465 nd->vlan->nb_guest_devs++;
2466 nb_nics++;
2467
2468 return idx;
2469}
2470
Juan Quintelaa3a766e2009-10-07 23:44:15 +02002471#if defined(CONFIG_SLIRP)
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002472static int net_init_slirp_configs(const char *name, const char *value, void *opaque)
2473{
2474 struct slirp_config_str *config;
2475
2476 if (strcmp(name, "hostfwd") != 0 && strcmp(name, "guestfwd") != 0) {
2477 return 0;
2478 }
2479
2480 config = qemu_mallocz(sizeof(*config));
2481
2482 pstrcpy(config->str, sizeof(config->str), value);
2483
2484 if (!strcmp(name, "hostfwd")) {
2485 config->flags = SLIRP_CFG_HOSTFWD;
2486 }
2487
2488 config->next = slirp_configs;
2489 slirp_configs = config;
2490
2491 return 0;
2492}
2493
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002494static int net_init_slirp(QemuOpts *opts,
2495 Monitor *mon,
2496 const char *name,
2497 VLANState *vlan)
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002498{
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002499 struct slirp_config_str *config;
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002500 const char *vhost;
2501 const char *vhostname;
2502 const char *vdhcp_start;
2503 const char *vnamesrv;
2504 const char *tftp_export;
2505 const char *bootfile;
2506 const char *smb_export;
2507 const char *vsmbsrv;
2508 char *vnet = NULL;
2509 int restricted = 0;
2510 int ret;
2511
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002512 vhost = qemu_opt_get(opts, "host");
2513 vhostname = qemu_opt_get(opts, "hostname");
2514 vdhcp_start = qemu_opt_get(opts, "dhcpstart");
2515 vnamesrv = qemu_opt_get(opts, "dns");
2516 tftp_export = qemu_opt_get(opts, "tftp");
2517 bootfile = qemu_opt_get(opts, "bootfile");
2518 smb_export = qemu_opt_get(opts, "smb");
2519 vsmbsrv = qemu_opt_get(opts, "smbserver");
2520
2521 if (qemu_opt_get(opts, "ip")) {
2522 const char *ip = qemu_opt_get(opts, "ip");
2523 int l = strlen(ip) + strlen("/24") + 1;
2524
2525 vnet = qemu_malloc(l);
2526
2527 /* emulate legacy ip= parameter */
2528 pstrcpy(vnet, l, ip);
2529 pstrcat(vnet, l, "/24");
2530 }
2531
2532 if (qemu_opt_get(opts, "net")) {
2533 if (vnet) {
2534 qemu_free(vnet);
2535 }
2536 vnet = qemu_strdup(qemu_opt_get(opts, "net"));
2537 }
2538
2539 if (qemu_opt_get(opts, "restrict") &&
2540 qemu_opt_get(opts, "restrict")[0] == 'y') {
2541 restricted = 1;
2542 }
2543
2544 qemu_opt_foreach(opts, net_init_slirp_configs, NULL, 0);
2545
2546 ret = net_slirp_init(vlan, "user", name, restricted, vnet, vhost,
2547 vhostname, tftp_export, bootfile, vdhcp_start,
2548 vnamesrv, smb_export, vsmbsrv);
2549
2550 while (slirp_configs) {
2551 config = slirp_configs;
2552 slirp_configs = config->next;
2553 qemu_free(config);
2554 }
2555
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002556 if (ret != -1 && vlan) {
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002557 vlan->nb_host_devs++;
2558 }
2559
2560 qemu_free(vnet);
2561
2562 return ret;
2563}
Juan Quintelaa3a766e2009-10-07 23:44:15 +02002564#endif /* CONFIG_SLIRP */
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002565
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002566#ifdef _WIN32
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002567static int net_init_tap_win32(QemuOpts *opts,
2568 Monitor *mon,
2569 const char *name,
2570 VLANState *vlan)
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002571{
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002572 const char *ifname;
2573
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002574 ifname = qemu_opt_get(opts, "ifname");
2575
2576 if (!ifname) {
2577 qemu_error("tap: no interface name\n");
2578 return -1;
2579 }
2580
2581 if (tap_win32_init(vlan, "tap", name, ifname) == -1) {
2582 return -1;
2583 }
2584
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002585 if (vlan) {
2586 vlan->nb_host_devs++;
2587 }
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002588
2589 return 0;
2590}
2591#elif !defined(_AIX)
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002592static int net_init_tap(QemuOpts *opts,
2593 Monitor *mon,
2594 const char *name,
2595 VLANState *vlan)
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002596{
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002597 TAPState *s;
2598
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002599 if (qemu_opt_get(opts, "fd")) {
2600 int fd;
2601
2602 if (qemu_opt_get(opts, "ifname") ||
2603 qemu_opt_get(opts, "script") ||
2604 qemu_opt_get(opts, "downscript")) {
2605 qemu_error("ifname=, script= and downscript= is invalid with fd=\n");
2606 return -1;
2607 }
2608
2609 fd = net_handle_fd_param(mon, qemu_opt_get(opts, "fd"));
2610 if (fd == -1) {
2611 return -1;
2612 }
2613
2614 fcntl(fd, F_SETFL, O_NONBLOCK);
2615
2616 s = net_tap_fd_init(vlan, "tap", name, fd);
2617 if (!s) {
2618 close(fd);
2619 }
2620 } else {
2621 const char *ifname, *script, *downscript;
2622
2623 ifname = qemu_opt_get(opts, "ifname");
2624 script = qemu_opt_get(opts, "script");
2625 downscript = qemu_opt_get(opts, "downscript");
2626
2627 if (!script) {
2628 script = DEFAULT_NETWORK_SCRIPT;
2629 }
2630 if (!downscript) {
2631 downscript = DEFAULT_NETWORK_DOWN_SCRIPT;
2632 }
2633
2634 s = net_tap_init(vlan, "tap", name, ifname, script, downscript);
2635 }
2636
2637 if (!s) {
2638 return -1;
2639 }
2640
2641 if (tap_set_sndbuf(s, opts) < 0) {
2642 return -1;
2643 }
2644
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002645 if (vlan) {
2646 vlan->nb_host_devs++;
2647 }
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002648
2649 return 0;
2650}
2651#endif
2652
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002653static int net_init_socket(QemuOpts *opts,
2654 Monitor *mon,
2655 const char *name,
2656 VLANState *vlan)
Mark McLoughlin88ce16c2009-10-06 12:17:09 +01002657{
Mark McLoughlin88ce16c2009-10-06 12:17:09 +01002658 if (qemu_opt_get(opts, "fd")) {
2659 int fd;
2660
2661 if (qemu_opt_get(opts, "listen") ||
2662 qemu_opt_get(opts, "connect") ||
2663 qemu_opt_get(opts, "mcast")) {
2664 qemu_error("listen=, connect= and mcast= is invalid with fd=\n");
2665 return -1;
2666 }
2667
2668 fd = net_handle_fd_param(mon, qemu_opt_get(opts, "fd"));
2669 if (fd == -1) {
2670 return -1;
2671 }
2672
2673 if (!net_socket_fd_init(vlan, "socket", name, fd, 1)) {
2674 close(fd);
2675 return -1;
2676 }
2677 } else if (qemu_opt_get(opts, "listen")) {
2678 const char *listen;
2679
2680 if (qemu_opt_get(opts, "fd") ||
2681 qemu_opt_get(opts, "connect") ||
2682 qemu_opt_get(opts, "mcast")) {
2683 qemu_error("fd=, connect= and mcast= is invalid with listen=\n");
2684 return -1;
2685 }
2686
2687 listen = qemu_opt_get(opts, "listen");
2688
2689 if (net_socket_listen_init(vlan, "socket", name, listen) == -1) {
2690 return -1;
2691 }
2692 } else if (qemu_opt_get(opts, "connect")) {
2693 const char *connect;
2694
2695 if (qemu_opt_get(opts, "fd") ||
2696 qemu_opt_get(opts, "listen") ||
2697 qemu_opt_get(opts, "mcast")) {
2698 qemu_error("fd=, listen= and mcast= is invalid with connect=\n");
2699 return -1;
2700 }
2701
2702 connect = qemu_opt_get(opts, "connect");
2703
2704 if (net_socket_connect_init(vlan, "socket", name, connect) == -1) {
2705 return -1;
2706 }
2707 } else if (qemu_opt_get(opts, "mcast")) {
2708 const char *mcast;
2709
2710 if (qemu_opt_get(opts, "fd") ||
2711 qemu_opt_get(opts, "connect") ||
2712 qemu_opt_get(opts, "listen")) {
2713 qemu_error("fd=, connect= and listen= is invalid with mcast=\n");
2714 return -1;
2715 }
2716
2717 mcast = qemu_opt_get(opts, "mcast");
2718
2719 if (net_socket_mcast_init(vlan, "socket", name, mcast) == -1) {
2720 return -1;
2721 }
2722 } else {
2723 qemu_error("-socket requires fd=, listen=, connect= or mcast=\n");
2724 return -1;
2725 }
2726
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002727 if (vlan) {
2728 vlan->nb_host_devs++;
2729 }
Mark McLoughlin88ce16c2009-10-06 12:17:09 +01002730
2731 return 0;
2732}
2733
Mark McLoughlindd510582009-10-06 12:17:10 +01002734#ifdef CONFIG_VDE
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002735static int net_init_vde(QemuOpts *opts,
2736 Monitor *mon,
2737 const char *name,
2738 VLANState *vlan)
Mark McLoughlindd510582009-10-06 12:17:10 +01002739{
Mark McLoughlindd510582009-10-06 12:17:10 +01002740 const char *sock;
2741 const char *group;
2742 int port, mode;
2743
Mark McLoughlindd510582009-10-06 12:17:10 +01002744 sock = qemu_opt_get(opts, "sock");
2745 group = qemu_opt_get(opts, "group");
2746
2747 port = qemu_opt_get_number(opts, "port", 0);
2748 mode = qemu_opt_get_number(opts, "mode", 0700);
2749
2750 if (net_vde_init(vlan, "vde", name, sock, port, group, mode) == -1) {
2751 return -1;
2752 }
2753
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002754 if (vlan) {
2755 vlan->nb_host_devs++;
2756 }
Mark McLoughlindd510582009-10-06 12:17:10 +01002757
2758 return 0;
2759}
2760#endif
2761
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002762static int net_init_dump(QemuOpts *opts,
2763 Monitor *mon,
2764 const char *name,
2765 VLANState *vlan)
Mark McLoughlined2955c2009-10-06 12:17:11 +01002766{
Mark McLoughlined2955c2009-10-06 12:17:11 +01002767 int len;
2768 const char *file;
Mark McLoughlined2955c2009-10-06 12:17:11 +01002769 char def_file[128];
2770
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002771 assert(vlan);
Mark McLoughlined2955c2009-10-06 12:17:11 +01002772
Mark McLoughlined2955c2009-10-06 12:17:11 +01002773 file = qemu_opt_get(opts, "file");
2774 if (!file) {
2775 snprintf(def_file, sizeof(def_file), "qemu-vlan%d.pcap", vlan->id);
2776 file = def_file;
2777 }
2778
2779 len = qemu_opt_get_size(opts, "len", 65536);
2780
2781 return net_dump_init(vlan, "dump", name, file, len);
2782}
2783
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01002784#define NET_COMMON_PARAMS_DESC \
2785 { \
2786 .name = "type", \
2787 .type = QEMU_OPT_STRING, \
2788 .help = "net client type (nic, tap etc.)", \
2789 }, { \
2790 .name = "vlan", \
2791 .type = QEMU_OPT_NUMBER, \
2792 .help = "vlan number", \
2793 }, { \
2794 .name = "name", \
2795 .type = QEMU_OPT_STRING, \
2796 .help = "identifier for monitor commands", \
2797 }
2798
Mark McLoughlin6d952eb2009-10-08 19:58:21 +01002799typedef int (*net_client_init_func)(QemuOpts *opts,
2800 Monitor *mon,
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01002801 const char *name,
2802 VLANState *vlan);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01002803
2804/* magic number, but compiler will warn if too small */
2805#define NET_MAX_DESC 20
2806
2807static struct {
2808 const char *type;
2809 net_client_init_func init;
2810 QemuOptDesc desc[NET_MAX_DESC];
2811} net_client_types[] = {
2812 {
2813 .type = "none",
2814 .desc = {
2815 NET_COMMON_PARAMS_DESC,
2816 { /* end of list */ }
2817 },
2818 }, {
2819 .type = "nic",
2820 .init = net_init_nic,
2821 .desc = {
2822 NET_COMMON_PARAMS_DESC,
2823 {
2824 .name = "macaddr",
2825 .type = QEMU_OPT_STRING,
2826 .help = "MAC address",
2827 }, {
2828 .name = "model",
2829 .type = QEMU_OPT_STRING,
2830 .help = "device model (e1000, rtl8139, virtio etc.)",
2831 }, {
2832 .name = "addr",
2833 .type = QEMU_OPT_STRING,
2834 .help = "PCI device address",
2835 }, {
2836 .name = "vectors",
2837 .type = QEMU_OPT_NUMBER,
2838 .help = "number of MSI-x vectors, 0 to disable MSI-X",
2839 },
2840 { /* end of list */ }
2841 },
Mark McLoughlinec302ff2009-10-06 12:17:07 +01002842#ifdef CONFIG_SLIRP
2843 }, {
2844 .type = "user",
2845 .init = net_init_slirp,
2846 .desc = {
2847 NET_COMMON_PARAMS_DESC,
2848 {
2849 .name = "hostname",
2850 .type = QEMU_OPT_STRING,
2851 .help = "client hostname reported by the builtin DHCP server",
2852 }, {
2853 .name = "restrict",
2854 .type = QEMU_OPT_STRING,
2855 .help = "isolate the guest from the host (y|yes|n|no)",
2856 }, {
2857 .name = "ip",
2858 .type = QEMU_OPT_STRING,
2859 .help = "legacy parameter, use net= instead",
2860 }, {
2861 .name = "net",
2862 .type = QEMU_OPT_STRING,
2863 .help = "IP address and optional netmask",
2864 }, {
2865 .name = "host",
2866 .type = QEMU_OPT_STRING,
2867 .help = "guest-visible address of the host",
2868 }, {
2869 .name = "tftp",
2870 .type = QEMU_OPT_STRING,
2871 .help = "root directory of the built-in TFTP server",
2872 }, {
2873 .name = "bootfile",
2874 .type = QEMU_OPT_STRING,
2875 .help = "BOOTP filename, for use with tftp=",
2876 }, {
2877 .name = "dhcpstart",
2878 .type = QEMU_OPT_STRING,
2879 .help = "the first of the 16 IPs the built-in DHCP server can assign",
2880 }, {
2881 .name = "dns",
2882 .type = QEMU_OPT_STRING,
2883 .help = "guest-visible address of the virtual nameserver",
2884 }, {
2885 .name = "smb",
2886 .type = QEMU_OPT_STRING,
2887 .help = "root directory of the built-in SMB server",
2888 }, {
2889 .name = "smbserver",
2890 .type = QEMU_OPT_STRING,
2891 .help = "IP address of the built-in SMB server",
2892 }, {
2893 .name = "hostfwd",
2894 .type = QEMU_OPT_STRING,
2895 .help = "guest port number to forward incoming TCP or UDP connections",
2896 }, {
2897 .name = "guestfwd",
2898 .type = QEMU_OPT_STRING,
2899 .help = "IP address and port to forward guest TCP connections",
2900 },
2901 { /* end of list */ }
2902 },
2903#endif
Mark McLoughlin8a1c5232009-10-06 12:17:08 +01002904#ifdef _WIN32
2905 }, {
2906 .type = "tap",
2907 .init = net_init_tap_win32,
2908 .desc = {
2909 NET_COMMON_PARAMS_DESC,
2910 {
2911 .name = "ifname",
2912 .type = QEMU_OPT_STRING,
2913 .help = "interface name",
2914 },
2915 { /* end of list */ }
2916 },
2917#elif !defined(_AIX)
2918 }, {
2919 .type = "tap",
2920 .init = net_init_tap,
2921 .desc = {
2922 NET_COMMON_PARAMS_DESC,
2923 {
2924 .name = "fd",
2925 .type = QEMU_OPT_STRING,
2926 .help = "file descriptor of an already opened tap",
2927 }, {
2928 .name = "ifname",
2929 .type = QEMU_OPT_STRING,
2930 .help = "interface name",
2931 }, {
2932 .name = "script",
2933 .type = QEMU_OPT_STRING,
2934 .help = "script to initialize the interface",
2935 }, {
2936 .name = "downscript",
2937 .type = QEMU_OPT_STRING,
2938 .help = "script to shut down the interface",
2939#ifdef TUNSETSNDBUF
2940 }, {
2941 .name = "sndbuf",
2942 .type = QEMU_OPT_SIZE,
2943 .help = "send buffer limit"
2944#endif
2945 },
2946 { /* end of list */ }
2947 },
2948#endif
Mark McLoughlin88ce16c2009-10-06 12:17:09 +01002949 }, {
2950 .type = "socket",
2951 .init = net_init_socket,
2952 .desc = {
2953 NET_COMMON_PARAMS_DESC,
2954 {
2955 .name = "fd",
2956 .type = QEMU_OPT_STRING,
2957 .help = "file descriptor of an already opened socket",
2958 }, {
2959 .name = "listen",
2960 .type = QEMU_OPT_STRING,
2961 .help = "port number, and optional hostname, to listen on",
2962 }, {
2963 .name = "connect",
2964 .type = QEMU_OPT_STRING,
2965 .help = "port number, and optional hostname, to connect to",
2966 }, {
2967 .name = "mcast",
2968 .type = QEMU_OPT_STRING,
2969 .help = "UDP multicast address and port number",
2970 },
2971 { /* end of list */ }
2972 },
Mark McLoughlindd510582009-10-06 12:17:10 +01002973#ifdef CONFIG_VDE
2974 }, {
2975 .type = "vde",
2976 .init = net_init_vde,
2977 .desc = {
2978 NET_COMMON_PARAMS_DESC,
2979 {
2980 .name = "sock",
2981 .type = QEMU_OPT_STRING,
2982 .help = "socket path",
2983 }, {
2984 .name = "port",
2985 .type = QEMU_OPT_NUMBER,
2986 .help = "port number",
2987 }, {
2988 .name = "group",
2989 .type = QEMU_OPT_STRING,
2990 .help = "group owner of socket",
2991 }, {
2992 .name = "mode",
2993 .type = QEMU_OPT_NUMBER,
2994 .help = "permissions for socket",
2995 },
2996 { /* end of list */ }
2997 },
2998#endif
Mark McLoughlined2955c2009-10-06 12:17:11 +01002999 }, {
3000 .type = "dump",
3001 .init = net_init_dump,
3002 .desc = {
3003 NET_COMMON_PARAMS_DESC,
3004 {
3005 .name = "len",
3006 .type = QEMU_OPT_SIZE,
3007 .help = "per-packet size limit (64k default)",
3008 }, {
3009 .name = "file",
3010 .type = QEMU_OPT_STRING,
3011 .help = "dump file path (default is qemu-vlan0.pcap)",
3012 },
3013 { /* end of list */ }
3014 },
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003015 },
3016 { /* end of list */ }
3017};
3018
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003019int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003020{
Mark McLoughlin6d952eb2009-10-08 19:58:21 +01003021 const char *name;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003022 const char *type;
3023 int i;
3024
3025 type = qemu_opt_get(opts, "type");
3026 if (!type) {
3027 qemu_error("No type specified for -net\n");
3028 return -1;
3029 }
3030
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003031 if (is_netdev) {
3032 if (strcmp(type, "tap") != 0 &&
3033#ifdef CONFIG_SLIRP
3034 strcmp(type, "user") != 0 &&
3035#endif
3036#ifdef CONFIG_VDE
3037 strcmp(type, "vde") != 0 &&
3038#endif
3039 strcmp(type, "socket") != 0) {
3040 qemu_error("The '%s' network backend type is not valid with -netdev\n",
3041 type);
3042 return -1;
3043 }
3044
3045 if (qemu_opt_get(opts, "vlan")) {
3046 qemu_error("The 'vlan' parameter is not valid with -netdev\n");
3047 return -1;
3048 }
3049 if (qemu_opt_get(opts, "name")) {
3050 qemu_error("The 'name' parameter is not valid with -netdev\n");
3051 return -1;
3052 }
3053 if (!qemu_opts_id(opts)) {
3054 qemu_error("The id= parameter is required with -netdev\n");
3055 return -1;
3056 }
3057 }
3058
Mark McLoughlin6d952eb2009-10-08 19:58:21 +01003059 name = qemu_opts_id(opts);
3060 if (!name) {
3061 name = qemu_opt_get(opts, "name");
3062 }
3063
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003064 for (i = 0; net_client_types[i].type != NULL; i++) {
3065 if (!strcmp(net_client_types[i].type, type)) {
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003066 VLANState *vlan = NULL;
3067
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003068 if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
3069 return -1;
3070 }
3071
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003072 if (!is_netdev) {
3073 vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
3074 }
3075
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003076 if (net_client_types[i].init) {
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003077 return net_client_types[i].init(opts, mon, name, vlan);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +01003078 } else {
3079 return 0;
3080 }
3081 }
3082 }
3083
3084 qemu_error("Invalid -net type '%s'\n", type);
3085 return -1;
3086}
3087
aliguori8b13c4a2009-02-11 15:20:51 +00003088void net_client_uninit(NICInfo *nd)
3089{
Mark McLoughlind80b9fc2009-10-08 19:58:24 +01003090 if (nd->vlan) {
3091 nd->vlan->nb_guest_devs--;
3092 }
aliguori8b13c4a2009-02-11 15:20:51 +00003093 nb_nics--;
Glauber Costaa9796702009-09-17 16:53:39 -04003094
Mark McLoughlin9203f522009-10-06 12:16:53 +01003095 qemu_free(nd->model);
3096 qemu_free(nd->name);
3097 qemu_free(nd->devaddr);
Glauber Costaa9796702009-09-17 16:53:39 -04003098
Mark McLoughlind2cffe32009-10-06 12:16:54 +01003099 nd->used = 0;
aliguori8b13c4a2009-02-11 15:20:51 +00003100}
3101
aliguori6f338c32009-02-11 15:21:54 +00003102static int net_host_check_device(const char *device)
3103{
3104 int i;
aliguoribb9ea792009-04-21 19:56:28 +00003105 const char *valid_param_list[] = { "tap", "socket", "dump"
aliguori6f338c32009-02-11 15:21:54 +00003106#ifdef CONFIG_SLIRP
3107 ,"user"
3108#endif
3109#ifdef CONFIG_VDE
3110 ,"vde"
3111#endif
3112 };
3113 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
3114 if (!strncmp(valid_param_list[i], device,
3115 strlen(valid_param_list[i])))
3116 return 1;
3117 }
3118
3119 return 0;
3120}
3121
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003122void net_host_device_add(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +00003123{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003124 const char *device = qdict_get_str(qdict, "device");
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01003125 const char *opts_str = qdict_get_try_str(qdict, "opts");
3126 QemuOpts *opts;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003127
aliguori6f338c32009-02-11 15:21:54 +00003128 if (!net_host_check_device(device)) {
aliguori376253e2009-03-05 23:01:23 +00003129 monitor_printf(mon, "invalid host network device %s\n", device);
aliguori6f338c32009-02-11 15:21:54 +00003130 return;
3131 }
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01003132
3133 opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", NULL);
3134 if (!opts) {
3135 monitor_printf(mon, "parsing network options '%s' failed\n",
3136 opts_str ? opts_str : "");
3137 return;
3138 }
3139
3140 qemu_opt_set(opts, "type", device);
3141
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003142 if (net_client_init(mon, opts, 0) < 0) {
aliguori5c8be672009-04-21 19:56:32 +00003143 monitor_printf(mon, "adding host network device %s failed\n", device);
3144 }
aliguori6f338c32009-02-11 15:21:54 +00003145}
3146
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003147void net_host_device_remove(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +00003148{
aliguori6f338c32009-02-11 15:21:54 +00003149 VLANClientState *vc;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003150 int vlan_id = qdict_get_int(qdict, "vlan_id");
3151 const char *device = qdict_get_str(qdict, "device");
aliguori6f338c32009-02-11 15:21:54 +00003152
Jan Kiszka1a609522009-06-24 14:42:31 +02003153 vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
aliguori6f338c32009-02-11 15:21:54 +00003154 if (!vc) {
aliguori6f338c32009-02-11 15:21:54 +00003155 return;
3156 }
aliguorie8f1f9d2009-04-21 19:56:08 +00003157 if (!net_host_check_device(vc->model)) {
3158 monitor_printf(mon, "invalid host network device %s\n", device);
3159 return;
3160 }
aliguori6f338c32009-02-11 15:21:54 +00003161 qemu_del_vlan_client(vc);
3162}
3163
Glauber Costa406c8df2009-06-17 09:05:30 -04003164void net_set_boot_mask(int net_boot_mask)
3165{
3166 int i;
3167
3168 /* Only the first four NICs may be bootable */
3169 net_boot_mask = net_boot_mask & 0xF;
3170
3171 for (i = 0; i < nb_nics; i++) {
3172 if (net_boot_mask & (1 << i)) {
3173 nd_table[i].bootable = 1;
3174 net_boot_mask &= ~(1 << i);
3175 }
3176 }
3177
3178 if (net_boot_mask) {
3179 fprintf(stderr, "Cannot boot from non-existent NIC\n");
3180 exit(1);
3181 }
3182}
3183
aliguori376253e2009-03-05 23:01:23 +00003184void do_info_network(Monitor *mon)
aliguori63a01ef2008-10-31 19:10:00 +00003185{
3186 VLANState *vlan;
aliguori63a01ef2008-10-31 19:10:00 +00003187
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003188 QTAILQ_FOREACH(vlan, &vlans, next) {
3189 VLANClientState *vc;
3190
aliguori376253e2009-03-05 23:01:23 +00003191 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003192
3193 QTAILQ_FOREACH(vc, &vlan->clients, next) {
aliguori376253e2009-03-05 23:01:23 +00003194 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003195 }
aliguori63a01ef2008-10-31 19:10:00 +00003196 }
3197}
3198
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003199void do_set_link(Monitor *mon, const QDict *qdict)
aliguori436e5e52009-01-08 19:44:06 +00003200{
3201 VLANState *vlan;
3202 VLANClientState *vc = NULL;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03003203 const char *name = qdict_get_str(qdict, "name");
3204 const char *up_or_down = qdict_get_str(qdict, "up_or_down");
aliguori436e5e52009-01-08 19:44:06 +00003205
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003206 QTAILQ_FOREACH(vlan, &vlans, next) {
3207 QTAILQ_FOREACH(vc, &vlan->clients, next) {
3208 if (strcmp(vc->name, name) == 0) {
edgar_igldd5de372009-01-09 00:48:28 +00003209 goto done;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003210 }
3211 }
3212 }
edgar_igldd5de372009-01-09 00:48:28 +00003213done:
aliguori436e5e52009-01-08 19:44:06 +00003214
3215 if (!vc) {
Stefan Weil7dc3fa02009-08-08 23:33:26 +02003216 monitor_printf(mon, "could not find network device '%s'\n", name);
Luiz Capitulinoc3cf0d32009-08-03 13:56:59 -03003217 return;
aliguori436e5e52009-01-08 19:44:06 +00003218 }
3219
3220 if (strcmp(up_or_down, "up") == 0)
3221 vc->link_down = 0;
3222 else if (strcmp(up_or_down, "down") == 0)
3223 vc->link_down = 1;
3224 else
aliguori376253e2009-03-05 23:01:23 +00003225 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
3226 "valid\n", up_or_down);
aliguori436e5e52009-01-08 19:44:06 +00003227
aliguori34b25ca2009-01-08 19:45:03 +00003228 if (vc->link_status_changed)
3229 vc->link_status_changed(vc);
aliguori436e5e52009-01-08 19:44:06 +00003230}
3231
aliguori63a01ef2008-10-31 19:10:00 +00003232void net_cleanup(void)
3233{
3234 VLANState *vlan;
Mark McLoughlin577c4af2009-10-08 19:58:28 +01003235 VLANClientState *vc, *next_vc;
aliguori63a01ef2008-10-31 19:10:00 +00003236
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003237 QTAILQ_FOREACH(vlan, &vlans, next) {
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003238 QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
aliguorib946a152009-04-17 17:11:08 +00003239 qemu_del_vlan_client(vc);
aliguori63a01ef2008-10-31 19:10:00 +00003240 }
3241 }
Mark McLoughlin577c4af2009-10-08 19:58:28 +01003242
3243 QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
3244 qemu_del_vlan_client(vc);
3245 }
aliguori63a01ef2008-10-31 19:10:00 +00003246}
3247
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003248static void net_check_clients(void)
aliguori63a01ef2008-10-31 19:10:00 +00003249{
3250 VLANState *vlan;
3251
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003252 QTAILQ_FOREACH(vlan, &vlans, next) {
aliguori63a01ef2008-10-31 19:10:00 +00003253 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
3254 continue;
3255 if (vlan->nb_guest_devs == 0)
3256 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
3257 if (vlan->nb_host_devs == 0)
3258 fprintf(stderr,
3259 "Warning: vlan %d is not connected to host network\n",
3260 vlan->id);
3261 }
3262}
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003263
3264static int net_init_client(QemuOpts *opts, void *dummy)
3265{
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003266 return net_client_init(NULL, opts, 0);
3267}
3268
3269static int net_init_netdev(QemuOpts *opts, void *dummy)
3270{
3271 return net_client_init(NULL, opts, 1);
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003272}
3273
3274int net_init_clients(void)
3275{
3276 if (QTAILQ_EMPTY(&qemu_net_opts.head)) {
3277 /* if no clients, we use a default config */
3278 qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
3279#ifdef CONFIG_SLIRP
3280 qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
3281#endif
3282 }
3283
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003284 QTAILQ_INIT(&vlans);
Mark McLoughlin577c4af2009-10-08 19:58:28 +01003285 QTAILQ_INIT(&non_vlan_clients);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01003286
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01003287 if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
3288 return -1;
3289
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003290 if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
3291 return -1;
3292 }
3293
3294 net_check_clients();
3295
3296 return 0;
3297}
3298
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01003299int net_client_parse(QemuOptsList *opts_list, const char *optarg)
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003300{
Juan Quintelaa3a766e2009-10-07 23:44:15 +02003301#if defined(CONFIG_SLIRP)
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003302 /* handle legacy -net channel,port:chr */
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01003303 if (!strcmp(opts_list->name, "net") &&
3304 !strncmp(optarg, "channel,", strlen("channel,"))) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003305 int ret;
3306
3307 optarg += strlen("channel,");
3308
3309 if (QTAILQ_EMPTY(&slirp_stacks)) {
3310 struct slirp_config_str *config;
3311
3312 config = qemu_malloc(sizeof(*config));
3313 pstrcpy(config->str, sizeof(config->str), optarg);
3314 config->flags = SLIRP_CFG_LEGACY;
3315 config->next = slirp_configs;
3316 slirp_configs = config;
3317 ret = 0;
3318 } else {
3319 ret = slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks), optarg, 1);
3320 }
3321
3322 return ret;
3323 }
Juan Quintelaa3a766e2009-10-07 23:44:15 +02003324#endif
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01003325 if (!qemu_opts_parse(opts_list, optarg, "type")) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003326 return -1;
3327 }
3328
3329 return 0;
3330}