Update OpenBIOS images to r771
[qemu/aliguori-queue.git] / net.c
blob378edfccd0f2d5607e87a1e1cfa370cc87005dd3
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 error_report("qemu: Unsupported NIC model: %s", 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 error_report("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 error_report("Too Many NICs");
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 error_report("netdev '%s' not found", 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 error_report("invalid syntax for ethernet address");
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 error_report("invalid # of vectors: %d", 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"
979 }, {
980 .name = "vhost",
981 .type = QEMU_OPT_BOOL,
982 .help = "enable vhost-net network accelerator",
983 }, {
984 .name = "vhostfd",
985 .type = QEMU_OPT_STRING,
986 .help = "file descriptor of an already opened vhost net device",
988 #endif /* _WIN32 */
989 { /* end of list */ }
991 }, {
992 .type = "socket",
993 .init = net_init_socket,
994 .desc = {
995 NET_COMMON_PARAMS_DESC,
997 .name = "fd",
998 .type = QEMU_OPT_STRING,
999 .help = "file descriptor of an already opened socket",
1000 }, {
1001 .name = "listen",
1002 .type = QEMU_OPT_STRING,
1003 .help = "port number, and optional hostname, to listen on",
1004 }, {
1005 .name = "connect",
1006 .type = QEMU_OPT_STRING,
1007 .help = "port number, and optional hostname, to connect to",
1008 }, {
1009 .name = "mcast",
1010 .type = QEMU_OPT_STRING,
1011 .help = "UDP multicast address and port number",
1013 { /* end of list */ }
1015 #ifdef CONFIG_VDE
1016 }, {
1017 .type = "vde",
1018 .init = net_init_vde,
1019 .desc = {
1020 NET_COMMON_PARAMS_DESC,
1022 .name = "sock",
1023 .type = QEMU_OPT_STRING,
1024 .help = "socket path",
1025 }, {
1026 .name = "port",
1027 .type = QEMU_OPT_NUMBER,
1028 .help = "port number",
1029 }, {
1030 .name = "group",
1031 .type = QEMU_OPT_STRING,
1032 .help = "group owner of socket",
1033 }, {
1034 .name = "mode",
1035 .type = QEMU_OPT_NUMBER,
1036 .help = "permissions for socket",
1038 { /* end of list */ }
1040 #endif
1041 }, {
1042 .type = "dump",
1043 .init = net_init_dump,
1044 .desc = {
1045 NET_COMMON_PARAMS_DESC,
1047 .name = "len",
1048 .type = QEMU_OPT_SIZE,
1049 .help = "per-packet size limit (64k default)",
1050 }, {
1051 .name = "file",
1052 .type = QEMU_OPT_STRING,
1053 .help = "dump file path (default is qemu-vlan0.pcap)",
1055 { /* end of list */ }
1058 { /* end of list */ }
1061 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
1063 const char *name;
1064 const char *type;
1065 int i;
1067 type = qemu_opt_get(opts, "type");
1068 if (!type) {
1069 qerror_report(QERR_MISSING_PARAMETER, "type");
1070 return -1;
1073 if (is_netdev) {
1074 if (strcmp(type, "tap") != 0 &&
1075 #ifdef CONFIG_SLIRP
1076 strcmp(type, "user") != 0 &&
1077 #endif
1078 #ifdef CONFIG_VDE
1079 strcmp(type, "vde") != 0 &&
1080 #endif
1081 strcmp(type, "socket") != 0) {
1082 qerror_report(QERR_INVALID_PARAMETER_VALUE, "type",
1083 "a netdev backend type");
1084 return -1;
1087 if (qemu_opt_get(opts, "vlan")) {
1088 qerror_report(QERR_INVALID_PARAMETER, "vlan");
1089 return -1;
1091 if (qemu_opt_get(opts, "name")) {
1092 qerror_report(QERR_INVALID_PARAMETER, "name");
1093 return -1;
1095 if (!qemu_opts_id(opts)) {
1096 qerror_report(QERR_MISSING_PARAMETER, "id");
1097 return -1;
1101 name = qemu_opts_id(opts);
1102 if (!name) {
1103 name = qemu_opt_get(opts, "name");
1106 for (i = 0; net_client_types[i].type != NULL; i++) {
1107 if (!strcmp(net_client_types[i].type, type)) {
1108 VLANState *vlan = NULL;
1110 if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
1111 return -1;
1114 /* Do not add to a vlan if it's a -netdev or a nic with a
1115 * netdev= parameter. */
1116 if (!(is_netdev ||
1117 (strcmp(type, "nic") == 0 && qemu_opt_get(opts, "netdev")))) {
1118 vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
1121 if (net_client_types[i].init) {
1122 if (net_client_types[i].init(opts, mon, name, vlan) < 0) {
1123 /* TODO push error reporting into init() methods */
1124 qerror_report(QERR_DEVICE_INIT_FAILED, type);
1125 return -1;
1128 return 0;
1132 qerror_report(QERR_INVALID_PARAMETER_VALUE, "type",
1133 "a network client type");
1134 return -1;
1137 static int net_host_check_device(const char *device)
1139 int i;
1140 const char *valid_param_list[] = { "tap", "socket", "dump"
1141 #ifdef CONFIG_SLIRP
1142 ,"user"
1143 #endif
1144 #ifdef CONFIG_VDE
1145 ,"vde"
1146 #endif
1148 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1149 if (!strncmp(valid_param_list[i], device,
1150 strlen(valid_param_list[i])))
1151 return 1;
1154 return 0;
1157 void net_host_device_add(Monitor *mon, const QDict *qdict)
1159 const char *device = qdict_get_str(qdict, "device");
1160 const char *opts_str = qdict_get_try_str(qdict, "opts");
1161 QemuOpts *opts;
1163 if (!net_host_check_device(device)) {
1164 monitor_printf(mon, "invalid host network device %s\n", device);
1165 return;
1168 opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", 0);
1169 if (!opts) {
1170 return;
1173 qemu_opt_set(opts, "type", device);
1175 if (net_client_init(mon, opts, 0) < 0) {
1176 monitor_printf(mon, "adding host network device %s failed\n", device);
1180 void net_host_device_remove(Monitor *mon, const QDict *qdict)
1182 VLANClientState *vc;
1183 int vlan_id = qdict_get_int(qdict, "vlan_id");
1184 const char *device = qdict_get_str(qdict, "device");
1186 vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1187 if (!vc) {
1188 return;
1190 if (!net_host_check_device(vc->model)) {
1191 monitor_printf(mon, "invalid host network device %s\n", device);
1192 return;
1194 qemu_del_vlan_client(vc);
1198 * do_netdev_add(): Add a host network device
1200 * Argument qdict contains
1201 * - "type": the device type, "tap", "user", ...
1202 * - "id": the device's ID (must be unique)
1203 * - device options
1205 * Example:
1207 * { "type": "user", "id": "netdev1", "hostname": "a-guest" }
1209 int do_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret_data)
1211 QemuOpts *opts;
1212 int res;
1214 opts = qemu_opts_from_qdict(&qemu_netdev_opts, qdict);
1215 if (!opts) {
1216 return -1;
1219 res = net_client_init(mon, opts, 1);
1220 return res;
1224 * do_netdev_del(): Delete a host network device
1226 * Argument qdict contains
1227 * - "id": the device's ID
1229 * Example:
1231 * { "id": "netdev1" }
1233 int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
1235 const char *id = qdict_get_str(qdict, "id");
1236 VLANClientState *vc;
1238 vc = qemu_find_netdev(id);
1239 if (!vc || vc->info->type == NET_CLIENT_TYPE_NIC) {
1240 qerror_report(QERR_DEVICE_NOT_FOUND, id);
1241 return -1;
1243 if (vc->peer) {
1244 qerror_report(QERR_DEVICE_IN_USE, id);
1245 return -1;
1247 qemu_del_vlan_client(vc);
1248 qemu_opts_del(qemu_opts_find(&qemu_netdev_opts, id));
1249 return 0;
1252 void do_info_network(Monitor *mon)
1254 VLANState *vlan;
1255 VLANClientState *vc;
1257 QTAILQ_FOREACH(vlan, &vlans, next) {
1258 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1260 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1261 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
1264 monitor_printf(mon, "Devices not on any VLAN:\n");
1265 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1266 monitor_printf(mon, " %s: %s", vc->name, vc->info_str);
1267 if (vc->peer) {
1268 monitor_printf(mon, " peer=%s", vc->peer->name);
1270 monitor_printf(mon, "\n");
1274 int do_set_link(Monitor *mon, const QDict *qdict, QObject **ret_data)
1276 VLANState *vlan;
1277 VLANClientState *vc = NULL;
1278 const char *name = qdict_get_str(qdict, "name");
1279 int up = qdict_get_bool(qdict, "up");
1281 QTAILQ_FOREACH(vlan, &vlans, next) {
1282 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1283 if (strcmp(vc->name, name) == 0) {
1284 goto done;
1288 vc = qemu_find_netdev(name);
1289 done:
1291 if (!vc) {
1292 qerror_report(QERR_DEVICE_NOT_FOUND, name);
1293 return -1;
1296 vc->link_down = !up;
1298 if (vc->info->link_status_changed) {
1299 vc->info->link_status_changed(vc);
1301 return 0;
1304 void net_cleanup(void)
1306 VLANState *vlan;
1307 VLANClientState *vc, *next_vc;
1309 QTAILQ_FOREACH(vlan, &vlans, next) {
1310 QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1311 qemu_del_vlan_client(vc);
1315 QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
1316 qemu_del_vlan_client(vc);
1320 void net_check_clients(void)
1322 VLANState *vlan;
1323 VLANClientState *vc;
1324 int has_nic = 0, has_host_dev = 0;
1326 QTAILQ_FOREACH(vlan, &vlans, next) {
1327 QTAILQ_FOREACH(vc, &vlan->clients, next) {
1328 switch (vc->info->type) {
1329 case NET_CLIENT_TYPE_NIC:
1330 has_nic = 1;
1331 break;
1332 case NET_CLIENT_TYPE_SLIRP:
1333 case NET_CLIENT_TYPE_TAP:
1334 case NET_CLIENT_TYPE_SOCKET:
1335 case NET_CLIENT_TYPE_VDE:
1336 has_host_dev = 1;
1337 break;
1338 default: ;
1341 if (has_host_dev && !has_nic)
1342 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1343 if (has_nic && !has_host_dev)
1344 fprintf(stderr,
1345 "Warning: vlan %d is not connected to host network\n",
1346 vlan->id);
1348 QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1349 if (!vc->peer) {
1350 fprintf(stderr, "Warning: %s %s has no peer\n",
1351 vc->info->type == NET_CLIENT_TYPE_NIC ? "nic" : "netdev",
1352 vc->name);
1357 static int net_init_client(QemuOpts *opts, void *dummy)
1359 if (net_client_init(NULL, opts, 0) < 0)
1360 return -1;
1361 return 0;
1364 static int net_init_netdev(QemuOpts *opts, void *dummy)
1366 return net_client_init(NULL, opts, 1);
1369 int net_init_clients(void)
1371 if (default_net) {
1372 /* if no clients, we use a default config */
1373 qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
1374 #ifdef CONFIG_SLIRP
1375 qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
1376 #endif
1379 QTAILQ_INIT(&vlans);
1380 QTAILQ_INIT(&non_vlan_clients);
1382 if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
1383 return -1;
1385 if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
1386 return -1;
1389 return 0;
1392 int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1394 #if defined(CONFIG_SLIRP)
1395 int ret;
1396 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1397 return ret;
1399 #endif
1401 if (!qemu_opts_parse(opts_list, optarg, 1)) {
1402 return -1;
1405 default_net = 0;
1406 return 0;