Merge remote branch 'mst/pci' into staging
[qemu/aliguori-queue.git] / net.c
blobe47f727629b6ac542260ec6f1436fc06a480ba25
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "net.h"
26 #include "config-host.h"
28 #include "net/tap.h"
29 #include "net/socket.h"
30 #include "net/dump.h"
31 #include "net/slirp.h"
32 #include "net/vde.h"
33 #include "net/util.h"
34 #include "monitor.h"
35 #include "sysemu.h"
36 #include "qemu-common.h"
37 #include "qemu_socket.h"
38 #include "hw/qdev.h"
40 static QTAILQ_HEAD(, VLANState) vlans;
41 static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
43 int default_net = 1;
45 /***********************************************************/
46 /* network device redirectors */
48 #if defined(DEBUG_NET)
49 static void hex_dump(FILE *f, const uint8_t *buf, int size)
51 int len, i, j, c;
53 for(i=0;i<size;i+=16) {
54 len = size - i;
55 if (len > 16)
56 len = 16;
57 fprintf(f, "%08x ", i);
58 for(j=0;j<16;j++) {
59 if (j < len)
60 fprintf(f, " %02x", buf[i+j]);
61 else
62 fprintf(f, " ");
64 fprintf(f, " ");
65 for(j=0;j<len;j++) {
66 c = buf[i+j];
67 if (c < ' ' || c > '~')
68 c = '.';
69 fprintf(f, "%c", c);
71 fprintf(f, "\n");
74 #endif
76 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
78 const char *p, *p1;
79 int len;
80 p = *pp;
81 p1 = strchr(p, sep);
82 if (!p1)
83 return -1;
84 len = p1 - p;
85 p1++;
86 if (buf_size > 0) {
87 if (len > buf_size - 1)
88 len = buf_size - 1;
89 memcpy(buf, p, len);
90 buf[len] = '\0';
92 *pp = p1;
93 return 0;
96 int parse_host_src_port(struct sockaddr_in *haddr,
97 struct sockaddr_in *saddr,
98 const char *input_str)
100 char *str = qemu_strdup(input_str);
101 char *host_str = str;
102 char *src_str;
103 const char *src_str2;
104 char *ptr;
107 * Chop off any extra arguments at the end of the string which
108 * would start with a comma, then fill in the src port information
109 * if it was provided else use the "any address" and "any port".
111 if ((ptr = strchr(str,',')))
112 *ptr = '\0';
114 if ((src_str = strchr(input_str,'@'))) {
115 *src_str = '\0';
116 src_str++;
119 if (parse_host_port(haddr, host_str) < 0)
120 goto fail;
122 src_str2 = src_str;
123 if (!src_str || *src_str == '\0')
124 src_str2 = ":0";
126 if (parse_host_port(saddr, src_str2) < 0)
127 goto fail;
129 free(str);
130 return(0);
132 fail:
133 free(str);
134 return -1;
137 int parse_host_port(struct sockaddr_in *saddr, const char *str)
139 char buf[512];
140 struct hostent *he;
141 const char *p, *r;
142 int port;
144 p = str;
145 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
146 return -1;
147 saddr->sin_family = AF_INET;
148 if (buf[0] == '\0') {
149 saddr->sin_addr.s_addr = 0;
150 } else {
151 if (qemu_isdigit(buf[0])) {
152 if (!inet_aton(buf, &saddr->sin_addr))
153 return -1;
154 } else {
155 if ((he = gethostbyname(buf)) == NULL)
156 return - 1;
157 saddr->sin_addr = *(struct in_addr *)he->h_addr;
160 port = strtol(p, (char **)&r, 0);
161 if (r == p)
162 return -1;
163 saddr->sin_port = htons(port);
164 return 0;
167 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
169 snprintf(vc->info_str, sizeof(vc->info_str),
170 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
171 vc->model,
172 macaddr[0], macaddr[1], macaddr[2],
173 macaddr[3], macaddr[4], macaddr[5]);
176 void qemu_macaddr_default_if_unset(MACAddr *macaddr)
178 static int index = 0;
179 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
181 if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
182 return;
183 macaddr->a[0] = 0x52;
184 macaddr->a[1] = 0x54;
185 macaddr->a[2] = 0x00;
186 macaddr->a[3] = 0x12;
187 macaddr->a[4] = 0x34;
188 macaddr->a[5] = 0x56 + index++;
191 static char *assign_name(VLANClientState *vc1, const char *model)
193 VLANState *vlan;
194 char buf[256];
195 int id = 0;
197 QTAILQ_FOREACH(vlan, &vlans, next) {
198 VLANClientState *vc;
200 QTAILQ_FOREACH(vc, &vlan->clients, next) {
201 if (vc != vc1 && strcmp(vc->model, model) == 0) {
202 id++;
207 snprintf(buf, sizeof(buf), "%s.%d", model, id);
209 return qemu_strdup(buf);
212 static ssize_t qemu_deliver_packet(VLANClientState *sender,
213 unsigned flags,
214 const uint8_t *data,
215 size_t size,
216 void *opaque);
217 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
218 unsigned flags,
219 const struct iovec *iov,
220 int iovcnt,
221 void *opaque);
223 VLANClientState *qemu_new_net_client(NetClientInfo *info,
224 VLANState *vlan,
225 VLANClientState *peer,
226 const char *model,
227 const char *name)
229 VLANClientState *vc;
231 assert(info->size >= sizeof(VLANClientState));
233 vc = qemu_mallocz(info->size);
235 vc->info = info;
236 vc->model = qemu_strdup(model);
237 if (name) {
238 vc->name = qemu_strdup(name);
239 } else {
240 vc->name = assign_name(vc, model);
243 if (vlan) {
244 assert(!peer);
245 vc->vlan = vlan;
246 QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
247 } else {
248 if (peer) {
249 assert(!peer->peer);
250 vc->peer = peer;
251 peer->peer = vc;
253 QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
255 vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
256 qemu_deliver_packet_iov,
257 vc);
260 return vc;
263 NICState *qemu_new_nic(NetClientInfo *info,
264 NICConf *conf,
265 const char *model,
266 const char *name,
267 void *opaque)
269 VLANClientState *nc;
270 NICState *nic;
272 assert(info->type == NET_CLIENT_TYPE_NIC);
273 assert(info->size >= sizeof(NICState));
275 nc = qemu_new_net_client(info, conf->vlan, conf->peer, model, name);
277 nic = DO_UPCAST(NICState, nc, nc);
278 nic->conf = conf;
279 nic->opaque = opaque;
281 return nic;
284 void qemu_del_vlan_client(VLANClientState *vc)
286 if (vc->vlan) {
287 QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
288 } else {
289 if (vc->send_queue) {
290 qemu_del_net_queue(vc->send_queue);
292 QTAILQ_REMOVE(&non_vlan_clients, vc, next);
293 if (vc->peer) {
294 vc->peer->peer = NULL;
298 if (vc->info->cleanup) {
299 vc->info->cleanup(vc);
302 qemu_free(vc->name);
303 qemu_free(vc->model);
304 qemu_free(vc);
307 VLANClientState *
308 qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
309 const char *client_str)
311 VLANState *vlan;
312 VLANClientState *vc;
314 vlan = qemu_find_vlan(vlan_id, 0);
315 if (!vlan) {
316 monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
317 return NULL;
320 QTAILQ_FOREACH(vc, &vlan->clients, next) {
321 if (!strcmp(vc->name, client_str)) {
322 break;
325 if (!vc) {
326 monitor_printf(mon, "can't find device %s on VLAN %d\n",
327 client_str, vlan_id);
330 return vc;
333 void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
335 VLANClientState *nc;
336 VLANState *vlan;
338 QTAILQ_FOREACH(nc, &non_vlan_clients, next) {
339 if (nc->info->type == NET_CLIENT_TYPE_NIC) {
340 func(DO_UPCAST(NICState, nc, nc), opaque);
344 QTAILQ_FOREACH(vlan, &vlans, next) {
345 QTAILQ_FOREACH(nc, &vlan->clients, next) {
346 if (nc->info->type == NET_CLIENT_TYPE_NIC) {
347 func(DO_UPCAST(NICState, nc, nc), opaque);
353 int qemu_can_send_packet(VLANClientState *sender)
355 VLANState *vlan = sender->vlan;
356 VLANClientState *vc;
358 if (sender->peer) {
359 if (sender->peer->receive_disabled) {
360 return 0;
361 } else if (sender->peer->info->can_receive &&
362 !sender->peer->info->can_receive(sender->peer)) {
363 return 0;
364 } else {
365 return 1;
369 if (!sender->vlan) {
370 return 1;
373 QTAILQ_FOREACH(vc, &vlan->clients, next) {
374 if (vc == sender) {
375 continue;
378 /* no can_receive() handler, they can always receive */
379 if (!vc->info->can_receive || vc->info->can_receive(vc)) {
380 return 1;
383 return 0;
386 static ssize_t qemu_deliver_packet(VLANClientState *sender,
387 unsigned flags,
388 const uint8_t *data,
389 size_t size,
390 void *opaque)
392 VLANClientState *vc = opaque;
393 ssize_t ret;
395 if (vc->link_down) {
396 return size;
399 if (vc->receive_disabled) {
400 return 0;
403 if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
404 ret = vc->info->receive_raw(vc, data, size);
405 } else {
406 ret = vc->info->receive(vc, data, size);
409 if (ret == 0) {
410 vc->receive_disabled = 1;
413 return ret;
416 static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
417 unsigned flags,
418 const uint8_t *buf,
419 size_t size,
420 void *opaque)
422 VLANState *vlan = opaque;
423 VLANClientState *vc;
424 ssize_t ret = -1;
426 QTAILQ_FOREACH(vc, &vlan->clients, next) {
427 ssize_t len;
429 if (vc == sender) {
430 continue;
433 if (vc->link_down) {
434 ret = size;
435 continue;
438 if (vc->receive_disabled) {
439 ret = 0;
440 continue;
443 if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
444 len = vc->info->receive_raw(vc, buf, size);
445 } else {
446 len = vc->info->receive(vc, buf, size);
449 if (len == 0) {
450 vc->receive_disabled = 1;
453 ret = (ret >= 0) ? ret : len;
457 return ret;
460 void qemu_purge_queued_packets(VLANClientState *vc)
462 NetQueue *queue;
464 if (!vc->peer && !vc->vlan) {
465 return;
468 if (vc->peer) {
469 queue = vc->peer->send_queue;
470 } else {
471 queue = vc->vlan->send_queue;
474 qemu_net_queue_purge(queue, vc);
477 void qemu_flush_queued_packets(VLANClientState *vc)
479 NetQueue *queue;
481 vc->receive_disabled = 0;
483 if (vc->vlan) {
484 queue = vc->vlan->send_queue;
485 } else {
486 queue = vc->send_queue;
489 qemu_net_queue_flush(queue);
492 static ssize_t qemu_send_packet_async_with_flags(VLANClientState *sender,
493 unsigned flags,
494 const uint8_t *buf, int size,
495 NetPacketSent *sent_cb)
497 NetQueue *queue;
499 #ifdef DEBUG_NET
500 printf("qemu_send_packet_async:\n");
501 hex_dump(stdout, buf, size);
502 #endif
504 if (sender->link_down || (!sender->peer && !sender->vlan)) {
505 return size;
508 if (sender->peer) {
509 queue = sender->peer->send_queue;
510 } else {
511 queue = sender->vlan->send_queue;
514 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
517 ssize_t qemu_send_packet_async(VLANClientState *sender,
518 const uint8_t *buf, int size,
519 NetPacketSent *sent_cb)
521 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
522 buf, size, sent_cb);
525 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
527 qemu_send_packet_async(vc, buf, size, NULL);
530 ssize_t qemu_send_packet_raw(VLANClientState *vc, const uint8_t *buf, int size)
532 return qemu_send_packet_async_with_flags(vc, QEMU_NET_PACKET_FLAG_RAW,
533 buf, size, NULL);
536 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
537 int iovcnt)
539 uint8_t buffer[4096];
540 size_t offset = 0;
541 int i;
543 for (i = 0; i < iovcnt; i++) {
544 size_t len;
546 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
547 memcpy(buffer + offset, iov[i].iov_base, len);
548 offset += len;
551 return vc->info->receive(vc, buffer, offset);
554 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
556 size_t offset = 0;
557 int i;
559 for (i = 0; i < iovcnt; i++)
560 offset += iov[i].iov_len;
561 return offset;
564 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
565 unsigned flags,
566 const struct iovec *iov,
567 int iovcnt,
568 void *opaque)
570 VLANClientState *vc = opaque;
572 if (vc->link_down) {
573 return calc_iov_length(iov, iovcnt);
576 if (vc->info->receive_iov) {
577 return vc->info->receive_iov(vc, iov, iovcnt);
578 } else {
579 return vc_sendv_compat(vc, iov, iovcnt);
583 static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
584 unsigned flags,
585 const struct iovec *iov,
586 int iovcnt,
587 void *opaque)
589 VLANState *vlan = opaque;
590 VLANClientState *vc;
591 ssize_t ret = -1;
593 QTAILQ_FOREACH(vc, &vlan->clients, next) {
594 ssize_t len;
596 if (vc == sender) {
597 continue;
600 if (vc->link_down) {
601 ret = calc_iov_length(iov, iovcnt);
602 continue;
605 assert(!(flags & QEMU_NET_PACKET_FLAG_RAW));
607 if (vc->info->receive_iov) {
608 len = vc->info->receive_iov(vc, iov, iovcnt);
609 } else {
610 len = vc_sendv_compat(vc, iov, iovcnt);
613 ret = (ret >= 0) ? ret : len;
616 return ret;
619 ssize_t qemu_sendv_packet_async(VLANClientState *sender,
620 const struct iovec *iov, int iovcnt,
621 NetPacketSent *sent_cb)
623 NetQueue *queue;
625 if (sender->link_down || (!sender->peer && !sender->vlan)) {
626 return calc_iov_length(iov, iovcnt);
629 if (sender->peer) {
630 queue = sender->peer->send_queue;
631 } else {
632 queue = sender->vlan->send_queue;
635 return qemu_net_queue_send_iov(queue, sender,
636 QEMU_NET_PACKET_FLAG_NONE,
637 iov, iovcnt, sent_cb);
640 ssize_t
641 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
643 return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
646 /* find or alloc a new VLAN */
647 VLANState *qemu_find_vlan(int id, int allocate)
649 VLANState *vlan;
651 QTAILQ_FOREACH(vlan, &vlans, next) {
652 if (vlan->id == id) {
653 return vlan;
657 if (!allocate) {
658 return NULL;
661 vlan = qemu_mallocz(sizeof(VLANState));
662 vlan->id = id;
663 QTAILQ_INIT(&vlan->clients);
665 vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
666 qemu_vlan_deliver_packet_iov,
667 vlan);
669 QTAILQ_INSERT_TAIL(&vlans, vlan, next);
671 return vlan;
674 VLANClientState *qemu_find_netdev(const char *id)
676 VLANClientState *vc;
678 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
679 if (!strcmp(vc->name, id)) {
680 return vc;
684 return NULL;
687 static int nic_get_free_idx(void)
689 int index;
691 for (index = 0; index < MAX_NICS; index++)
692 if (!nd_table[index].used)
693 return index;
694 return -1;
697 int qemu_show_nic_models(const char *arg, const char *const *models)
699 int i;
701 if (!arg || strcmp(arg, "?"))
702 return 0;
704 fprintf(stderr, "qemu: Supported NIC models: ");
705 for (i = 0 ; models[i]; i++)
706 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
707 return 1;
710 void qemu_check_nic_model(NICInfo *nd, const char *model)
712 const char *models[2];
714 models[0] = model;
715 models[1] = NULL;
717 if (qemu_show_nic_models(nd->model, models))
718 exit(0);
719 if (qemu_find_nic_model(nd, models, model) < 0)
720 exit(1);
723 int qemu_find_nic_model(NICInfo *nd, const char * const *models,
724 const char *default_model)
726 int i;
728 if (!nd->model)
729 nd->model = qemu_strdup(default_model);
731 for (i = 0 ; models[i]; i++) {
732 if (strcmp(nd->model, models[i]) == 0)
733 return i;
736 qemu_error("qemu: Unsupported NIC model: %s\n", nd->model);
737 return -1;
740 int net_handle_fd_param(Monitor *mon, const char *param)
742 if (!qemu_isdigit(param[0])) {
743 int fd;
745 fd = monitor_get_fd(mon, param);
746 if (fd == -1) {
747 qemu_error("No file descriptor named %s found", param);
748 return -1;
751 return fd;
752 } else {
753 return strtol(param, NULL, 0);
757 static int net_init_nic(QemuOpts *opts,
758 Monitor *mon,
759 const char *name,
760 VLANState *vlan)
762 int idx;
763 NICInfo *nd;
764 const char *netdev;
766 idx = nic_get_free_idx();
767 if (idx == -1 || nb_nics >= MAX_NICS) {
768 qemu_error("Too Many NICs\n");
769 return -1;
772 nd = &nd_table[idx];
774 memset(nd, 0, sizeof(*nd));
776 if ((netdev = qemu_opt_get(opts, "netdev"))) {
777 nd->netdev = qemu_find_netdev(netdev);
778 if (!nd->netdev) {
779 qemu_error("netdev '%s' not found\n", netdev);
780 return -1;
782 } else {
783 assert(vlan);
784 nd->vlan = vlan;
786 if (name) {
787 nd->name = qemu_strdup(name);
789 if (qemu_opt_get(opts, "model")) {
790 nd->model = qemu_strdup(qemu_opt_get(opts, "model"));
792 if (qemu_opt_get(opts, "addr")) {
793 nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
796 nd->macaddr[0] = 0x52;
797 nd->macaddr[1] = 0x54;
798 nd->macaddr[2] = 0x00;
799 nd->macaddr[3] = 0x12;
800 nd->macaddr[4] = 0x34;
801 nd->macaddr[5] = 0x56 + idx;
803 if (qemu_opt_get(opts, "macaddr") &&
804 net_parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
805 qemu_error("invalid syntax for ethernet address\n");
806 return -1;
809 nd->nvectors = qemu_opt_get_number(opts, "vectors",
810 DEV_NVECTORS_UNSPECIFIED);
811 if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED &&
812 (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
813 qemu_error("invalid # of vectors: %d\n", nd->nvectors);
814 return -1;
817 nd->used = 1;
818 nb_nics++;
820 return idx;
823 #define NET_COMMON_PARAMS_DESC \
825 .name = "type", \
826 .type = QEMU_OPT_STRING, \
827 .help = "net client type (nic, tap etc.)", \
828 }, { \
829 .name = "vlan", \
830 .type = QEMU_OPT_NUMBER, \
831 .help = "vlan number", \
832 }, { \
833 .name = "name", \
834 .type = QEMU_OPT_STRING, \
835 .help = "identifier for monitor commands", \
838 typedef int (*net_client_init_func)(QemuOpts *opts,
839 Monitor *mon,
840 const char *name,
841 VLANState *vlan);
843 /* magic number, but compiler will warn if too small */
844 #define NET_MAX_DESC 20
846 static const struct {
847 const char *type;
848 net_client_init_func init;
849 QemuOptDesc desc[NET_MAX_DESC];
850 } net_client_types[] = {
852 .type = "none",
853 .desc = {
854 NET_COMMON_PARAMS_DESC,
855 { /* end of list */ }
857 }, {
858 .type = "nic",
859 .init = net_init_nic,
860 .desc = {
861 NET_COMMON_PARAMS_DESC,
863 .name = "netdev",
864 .type = QEMU_OPT_STRING,
865 .help = "id of -netdev to connect to",
868 .name = "macaddr",
869 .type = QEMU_OPT_STRING,
870 .help = "MAC address",
871 }, {
872 .name = "model",
873 .type = QEMU_OPT_STRING,
874 .help = "device model (e1000, rtl8139, virtio etc.)",
875 }, {
876 .name = "addr",
877 .type = QEMU_OPT_STRING,
878 .help = "PCI device address",
879 }, {
880 .name = "vectors",
881 .type = QEMU_OPT_NUMBER,
882 .help = "number of MSI-x vectors, 0 to disable MSI-X",
884 { /* end of list */ }
886 #ifdef CONFIG_SLIRP
887 }, {
888 .type = "user",
889 .init = net_init_slirp,
890 .desc = {
891 NET_COMMON_PARAMS_DESC,
893 .name = "hostname",
894 .type = QEMU_OPT_STRING,
895 .help = "client hostname reported by the builtin DHCP server",
896 }, {
897 .name = "restrict",
898 .type = QEMU_OPT_STRING,
899 .help = "isolate the guest from the host (y|yes|n|no)",
900 }, {
901 .name = "ip",
902 .type = QEMU_OPT_STRING,
903 .help = "legacy parameter, use net= instead",
904 }, {
905 .name = "net",
906 .type = QEMU_OPT_STRING,
907 .help = "IP address and optional netmask",
908 }, {
909 .name = "host",
910 .type = QEMU_OPT_STRING,
911 .help = "guest-visible address of the host",
912 }, {
913 .name = "tftp",
914 .type = QEMU_OPT_STRING,
915 .help = "root directory of the built-in TFTP server",
916 }, {
917 .name = "bootfile",
918 .type = QEMU_OPT_STRING,
919 .help = "BOOTP filename, for use with tftp=",
920 }, {
921 .name = "dhcpstart",
922 .type = QEMU_OPT_STRING,
923 .help = "the first of the 16 IPs the built-in DHCP server can assign",
924 }, {
925 .name = "dns",
926 .type = QEMU_OPT_STRING,
927 .help = "guest-visible address of the virtual nameserver",
928 }, {
929 .name = "smb",
930 .type = QEMU_OPT_STRING,
931 .help = "root directory of the built-in SMB server",
932 }, {
933 .name = "smbserver",
934 .type = QEMU_OPT_STRING,
935 .help = "IP address of the built-in SMB server",
936 }, {
937 .name = "hostfwd",
938 .type = QEMU_OPT_STRING,
939 .help = "guest port number to forward incoming TCP or UDP connections",
940 }, {
941 .name = "guestfwd",
942 .type = QEMU_OPT_STRING,
943 .help = "IP address and port to forward guest TCP connections",
945 { /* end of list */ }
947 #endif
948 }, {
949 .type = "tap",
950 .init = net_init_tap,
951 .desc = {
952 NET_COMMON_PARAMS_DESC,
954 .name = "ifname",
955 .type = QEMU_OPT_STRING,
956 .help = "interface name",
958 #ifndef _WIN32
960 .name = "fd",
961 .type = QEMU_OPT_STRING,
962 .help = "file descriptor of an already opened tap",
963 }, {
964 .name = "script",
965 .type = QEMU_OPT_STRING,
966 .help = "script to initialize the interface",
967 }, {
968 .name = "downscript",
969 .type = QEMU_OPT_STRING,
970 .help = "script to shut down the interface",
971 }, {
972 .name = "sndbuf",
973 .type = QEMU_OPT_SIZE,
974 .help = "send buffer limit"
975 }, {
976 .name = "vnet_hdr",
977 .type = QEMU_OPT_BOOL,
978 .help = "enable the IFF_VNET_HDR flag on the tap interface"
980 #endif /* _WIN32 */
981 { /* end of list */ }
983 }, {
984 .type = "socket",
985 .init = net_init_socket,
986 .desc = {
987 NET_COMMON_PARAMS_DESC,
989 .name = "fd",
990 .type = QEMU_OPT_STRING,
991 .help = "file descriptor of an already opened socket",
992 }, {
993 .name = "listen",
994 .type = QEMU_OPT_STRING,
995 .help = "port number, and optional hostname, to listen on",
996 }, {
997 .name = "connect",
998 .type = QEMU_OPT_STRING,
999 .help = "port number, and optional hostname, to connect to",
1000 }, {
1001 .name = "mcast",
1002 .type = QEMU_OPT_STRING,
1003 .help = "UDP multicast address and port number",
1005 { /* end of list */ }
1007 #ifdef CONFIG_VDE
1008 }, {
1009 .type = "vde",
1010 .init = net_init_vde,
1011 .desc = {
1012 NET_COMMON_PARAMS_DESC,
1014 .name = "sock",
1015 .type = QEMU_OPT_STRING,
1016 .help = "socket path",
1017 }, {
1018 .name = "port",
1019 .type = QEMU_OPT_NUMBER,
1020 .help = "port number",
1021 }, {
1022 .name = "group",
1023 .type = QEMU_OPT_STRING,
1024 .help = "group owner of socket",
1025 }, {
1026 .name = "mode",
1027 .type = QEMU_OPT_NUMBER,
1028 .help = "permissions for socket",
1030 { /* end of list */ }
1032 #endif
1033 }, {
1034 .type = "dump",
1035 .init = net_init_dump,
1036 .desc = {
1037 NET_COMMON_PARAMS_DESC,
1039 .name = "len",
1040 .type = QEMU_OPT_SIZE,
1041 .help = "per-packet size limit (64k default)",
1042 }, {
1043 .name = "file",
1044 .type = QEMU_OPT_STRING,
1045 .help = "dump file path (default is qemu-vlan0.pcap)",
1047 { /* end of list */ }
1050 { /* end of list */ }
1053 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
1055 const char *name;
1056 const char *type;
1057 int i;
1059 type = qemu_opt_get(opts, "type");
1061 if (!is_netdev) {
1062 if (!type) {
1063 qemu_error("No type specified for -net\n");
1064 return -1;
1066 } else {
1067 if (!type) {
1068 qemu_error("No type specified for -netdev\n");
1069 return -1;
1072 if (strcmp(type, "tap") != 0 &&
1073 #ifdef CONFIG_SLIRP
1074 strcmp(type, "user") != 0 &&
1075 #endif
1076 #ifdef CONFIG_VDE
1077 strcmp(type, "vde") != 0 &&
1078 #endif
1079 strcmp(type, "socket") != 0) {
1080 qemu_error("The '%s' network backend type is not valid with -netdev\n",
1081 type);
1082 return -1;
1085 if (qemu_opt_get(opts, "vlan")) {
1086 qemu_error("The 'vlan' parameter is not valid with -netdev\n");
1087 return -1;
1089 if (qemu_opt_get(opts, "name")) {
1090 qemu_error("The 'name' parameter is not valid with -netdev\n");
1091 return -1;
1093 if (!qemu_opts_id(opts)) {
1094 qemu_error("The id= parameter is required with -netdev\n");
1095 return -1;
1099 name = qemu_opts_id(opts);
1100 if (!name) {
1101 name = qemu_opt_get(opts, "name");
1104 for (i = 0; net_client_types[i].type != NULL; i++) {
1105 if (!strcmp(net_client_types[i].type, type)) {
1106 VLANState *vlan = NULL;
1108 if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
1109 return -1;
1112 /* Do not add to a vlan if it's a -netdev or a nic with a
1113 * netdev= parameter. */
1114 if (!(is_netdev ||
1115 (strcmp(type, "nic") == 0 && qemu_opt_get(opts, "netdev")))) {
1116 vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
1119 if (net_client_types[i].init) {
1120 return net_client_types[i].init(opts, mon, name, vlan);
1121 } else {
1122 return 0;
1127 qemu_error("Invalid -net type '%s'\n", type);
1128 return -1;
1131 static int net_host_check_device(const char *device)
1133 int i;
1134 const char *valid_param_list[] = { "tap", "socket", "dump"
1135 #ifdef CONFIG_SLIRP
1136 ,"user"
1137 #endif
1138 #ifdef CONFIG_VDE
1139 ,"vde"
1140 #endif
1142 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1143 if (!strncmp(valid_param_list[i], device,
1144 strlen(valid_param_list[i])))
1145 return 1;
1148 return 0;
1151 void net_host_device_add(Monitor *mon, const QDict *qdict)
1153 const char *device = qdict_get_str(qdict, "device");
1154 const char *opts_str = qdict_get_try_str(qdict, "opts");
1155 QemuOpts *opts;
1157 if (!net_host_check_device(device)) {
1158 monitor_printf(mon, "invalid host network device %s\n", device);
1159 return;
1162 opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", NULL);
1163 if (!opts) {
1164 monitor_printf(mon, "parsing network options '%s' failed\n",
1165 opts_str ? opts_str : "");
1166 return;
1169 qemu_opt_set(opts, "type", device);
1171 if (net_client_init(mon, opts, 0) < 0) {
1172 monitor_printf(mon, "adding host network device %s failed\n", device);
1176 void net_host_device_remove(Monitor *mon, const QDict *qdict)
1178 VLANClientState *vc;
1179 int vlan_id = qdict_get_int(qdict, "vlan_id");
1180 const char *device = qdict_get_str(qdict, "device");
1182 vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1183 if (!vc) {
1184 return;
1186 if (!net_host_check_device(vc->model)) {
1187 monitor_printf(mon, "invalid host network device %s\n", device);
1188 return;
1190 qemu_del_vlan_client(vc);
1193 void net_set_boot_mask(int net_boot_mask)
1195 int i;
1197 /* Only the first four NICs may be bootable */
1198 net_boot_mask = net_boot_mask & 0xF;
1200 for (i = 0; i < nb_nics; i++) {
1201 if (net_boot_mask & (1 << i)) {
1202 nd_table[i].bootable = 1;
1203 net_boot_mask &= ~(1 << i);
1207 if (net_boot_mask) {
1208 fprintf(stderr, "Cannot boot from non-existent NIC\n");
1209 exit(1);
1213 void do_info_network(Monitor *mon)
1215 VLANState *vlan;
1216 VLANClientState *vc;
1218 QTAILQ_FOREACH(vlan, &vlans, next) {
1219 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1221 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1222 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
1225 monitor_printf(mon, "Devices not on any VLAN:\n");
1226 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1227 monitor_printf(mon, " %s: %s", vc->name, vc->info_str);
1228 if (vc->peer) {
1229 monitor_printf(mon, " peer=%s", vc->peer->name);
1231 monitor_printf(mon, "\n");
1235 void do_set_link(Monitor *mon, const QDict *qdict)
1237 VLANState *vlan;
1238 VLANClientState *vc = NULL;
1239 const char *name = qdict_get_str(qdict, "name");
1240 const char *up_or_down = qdict_get_str(qdict, "up_or_down");
1242 QTAILQ_FOREACH(vlan, &vlans, next) {
1243 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1244 if (strcmp(vc->name, name) == 0) {
1245 goto done;
1249 vc = qemu_find_netdev(name);
1250 done:
1252 if (!vc) {
1253 monitor_printf(mon, "could not find network device '%s'\n", name);
1254 return;
1257 if (strcmp(up_or_down, "up") == 0)
1258 vc->link_down = 0;
1259 else if (strcmp(up_or_down, "down") == 0)
1260 vc->link_down = 1;
1261 else
1262 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
1263 "valid\n", up_or_down);
1265 if (vc->info->link_status_changed) {
1266 vc->info->link_status_changed(vc);
1270 void net_cleanup(void)
1272 VLANState *vlan;
1273 VLANClientState *vc, *next_vc;
1275 QTAILQ_FOREACH(vlan, &vlans, next) {
1276 QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1277 qemu_del_vlan_client(vc);
1281 QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
1282 qemu_del_vlan_client(vc);
1286 void net_check_clients(void)
1288 VLANState *vlan;
1289 VLANClientState *vc;
1290 int has_nic = 0, has_host_dev = 0;
1292 QTAILQ_FOREACH(vlan, &vlans, next) {
1293 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1294 switch (vc->info->type) {
1295 case NET_CLIENT_TYPE_NIC:
1296 has_nic = 1;
1297 break;
1298 case NET_CLIENT_TYPE_SLIRP:
1299 case NET_CLIENT_TYPE_TAP:
1300 case NET_CLIENT_TYPE_SOCKET:
1301 case NET_CLIENT_TYPE_VDE:
1302 has_host_dev = 1;
1303 break;
1304 default: ;
1307 if (has_host_dev && !has_nic)
1308 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1309 if (has_nic && !has_host_dev)
1310 fprintf(stderr,
1311 "Warning: vlan %d is not connected to host network\n",
1312 vlan->id);
1314 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1315 if (!vc->peer) {
1316 fprintf(stderr, "Warning: %s %s has no peer\n",
1317 vc->info->type == NET_CLIENT_TYPE_NIC ? "nic" : "netdev",
1318 vc->name);
1323 static int net_init_client(QemuOpts *opts, void *dummy)
1325 if (net_client_init(NULL, opts, 0) < 0)
1326 return -1;
1327 return 0;
1330 static int net_init_netdev(QemuOpts *opts, void *dummy)
1332 return net_client_init(NULL, opts, 1);
1335 int net_init_clients(void)
1337 if (default_net) {
1338 /* if no clients, we use a default config */
1339 qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
1340 #ifdef CONFIG_SLIRP
1341 qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
1342 #endif
1345 QTAILQ_INIT(&vlans);
1346 QTAILQ_INIT(&non_vlan_clients);
1348 if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
1349 return -1;
1351 if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
1352 return -1;
1355 return 0;
1358 int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1360 #if defined(CONFIG_SLIRP)
1361 int ret;
1362 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1363 return ret;
1365 #endif
1367 if (!qemu_opts_parse(opts_list, optarg, "type")) {
1368 return -1;
1371 default_net = 0;
1372 return 0;