]> git.proxmox.com Git - qemu.git/blob - net.c
xen: flush queue when getting an event
[qemu.git] / net.c
1 /*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include "net.h"
25
26 #include "config-host.h"
27
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/hub.h"
34 #include "net/util.h"
35 #include "monitor.h"
36 #include "qemu-common.h"
37 #include "qemu_socket.h"
38 #include "qmp-commands.h"
39 #include "hw/qdev.h"
40 #include "iov.h"
41 #include "qapi-visit.h"
42 #include "qapi/opts-visitor.h"
43 #include "qapi/qapi-dealloc-visitor.h"
44
45 /* Net bridge is currently not supported for W32. */
46 #if !defined(_WIN32)
47 # define CONFIG_NET_BRIDGE
48 #endif
49
50 static QTAILQ_HEAD(, NetClientState) net_clients;
51
52 int default_net = 1;
53
54 /***********************************************************/
55 /* network device redirectors */
56
57 #if defined(DEBUG_NET)
58 static void hex_dump(FILE *f, const uint8_t *buf, int size)
59 {
60 int len, i, j, c;
61
62 for(i=0;i<size;i+=16) {
63 len = size - i;
64 if (len > 16)
65 len = 16;
66 fprintf(f, "%08x ", i);
67 for(j=0;j<16;j++) {
68 if (j < len)
69 fprintf(f, " %02x", buf[i+j]);
70 else
71 fprintf(f, " ");
72 }
73 fprintf(f, " ");
74 for(j=0;j<len;j++) {
75 c = buf[i+j];
76 if (c < ' ' || c > '~')
77 c = '.';
78 fprintf(f, "%c", c);
79 }
80 fprintf(f, "\n");
81 }
82 }
83 #endif
84
85 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
86 {
87 const char *p, *p1;
88 int len;
89 p = *pp;
90 p1 = strchr(p, sep);
91 if (!p1)
92 return -1;
93 len = p1 - p;
94 p1++;
95 if (buf_size > 0) {
96 if (len > buf_size - 1)
97 len = buf_size - 1;
98 memcpy(buf, p, len);
99 buf[len] = '\0';
100 }
101 *pp = p1;
102 return 0;
103 }
104
105 int parse_host_port(struct sockaddr_in *saddr, const char *str)
106 {
107 char buf[512];
108 struct hostent *he;
109 const char *p, *r;
110 int port;
111
112 p = str;
113 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
114 return -1;
115 saddr->sin_family = AF_INET;
116 if (buf[0] == '\0') {
117 saddr->sin_addr.s_addr = 0;
118 } else {
119 if (qemu_isdigit(buf[0])) {
120 if (!inet_aton(buf, &saddr->sin_addr))
121 return -1;
122 } else {
123 if ((he = gethostbyname(buf)) == NULL)
124 return - 1;
125 saddr->sin_addr = *(struct in_addr *)he->h_addr;
126 }
127 }
128 port = strtol(p, (char **)&r, 0);
129 if (r == p)
130 return -1;
131 saddr->sin_port = htons(port);
132 return 0;
133 }
134
135 void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6])
136 {
137 snprintf(nc->info_str, sizeof(nc->info_str),
138 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
139 nc->model,
140 macaddr[0], macaddr[1], macaddr[2],
141 macaddr[3], macaddr[4], macaddr[5]);
142 }
143
144 void qemu_macaddr_default_if_unset(MACAddr *macaddr)
145 {
146 static int index = 0;
147 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
148
149 if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
150 return;
151 macaddr->a[0] = 0x52;
152 macaddr->a[1] = 0x54;
153 macaddr->a[2] = 0x00;
154 macaddr->a[3] = 0x12;
155 macaddr->a[4] = 0x34;
156 macaddr->a[5] = 0x56 + index++;
157 }
158
159 /**
160 * Generate a name for net client
161 *
162 * Only net clients created with the legacy -net option need this. Naming is
163 * mandatory for net clients created with -netdev.
164 */
165 static char *assign_name(NetClientState *nc1, const char *model)
166 {
167 NetClientState *nc;
168 char buf[256];
169 int id = 0;
170
171 QTAILQ_FOREACH(nc, &net_clients, next) {
172 if (nc == nc1) {
173 continue;
174 }
175 /* For compatibility only bump id for net clients on a vlan */
176 if (strcmp(nc->model, model) == 0 &&
177 net_hub_id_for_client(nc, NULL) == 0) {
178 id++;
179 }
180 }
181
182 snprintf(buf, sizeof(buf), "%s.%d", model, id);
183
184 return g_strdup(buf);
185 }
186
187 NetClientState *qemu_new_net_client(NetClientInfo *info,
188 NetClientState *peer,
189 const char *model,
190 const char *name)
191 {
192 NetClientState *nc;
193
194 assert(info->size >= sizeof(NetClientState));
195
196 nc = g_malloc0(info->size);
197
198 nc->info = info;
199 nc->model = g_strdup(model);
200 if (name) {
201 nc->name = g_strdup(name);
202 } else {
203 nc->name = assign_name(nc, model);
204 }
205
206 if (peer) {
207 assert(!peer->peer);
208 nc->peer = peer;
209 peer->peer = nc;
210 }
211 QTAILQ_INSERT_TAIL(&net_clients, nc, next);
212
213 nc->send_queue = qemu_new_net_queue(nc);
214
215 return nc;
216 }
217
218 NICState *qemu_new_nic(NetClientInfo *info,
219 NICConf *conf,
220 const char *model,
221 const char *name,
222 void *opaque)
223 {
224 NetClientState *nc;
225 NICState *nic;
226
227 assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC);
228 assert(info->size >= sizeof(NICState));
229
230 nc = qemu_new_net_client(info, conf->peer, model, name);
231
232 nic = DO_UPCAST(NICState, nc, nc);
233 nic->conf = conf;
234 nic->opaque = opaque;
235
236 return nic;
237 }
238
239 static void qemu_cleanup_net_client(NetClientState *nc)
240 {
241 QTAILQ_REMOVE(&net_clients, nc, next);
242
243 if (nc->info->cleanup) {
244 nc->info->cleanup(nc);
245 }
246 }
247
248 static void qemu_free_net_client(NetClientState *nc)
249 {
250 if (nc->send_queue) {
251 qemu_del_net_queue(nc->send_queue);
252 }
253 if (nc->peer) {
254 nc->peer->peer = NULL;
255 }
256 g_free(nc->name);
257 g_free(nc->model);
258 g_free(nc);
259 }
260
261 void qemu_del_net_client(NetClientState *nc)
262 {
263 /* If there is a peer NIC, delete and cleanup client, but do not free. */
264 if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
265 NICState *nic = DO_UPCAST(NICState, nc, nc->peer);
266 if (nic->peer_deleted) {
267 return;
268 }
269 nic->peer_deleted = true;
270 /* Let NIC know peer is gone. */
271 nc->peer->link_down = true;
272 if (nc->peer->info->link_status_changed) {
273 nc->peer->info->link_status_changed(nc->peer);
274 }
275 qemu_cleanup_net_client(nc);
276 return;
277 }
278
279 /* If this is a peer NIC and peer has already been deleted, free it now. */
280 if (nc->peer && nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
281 NICState *nic = DO_UPCAST(NICState, nc, nc);
282 if (nic->peer_deleted) {
283 qemu_free_net_client(nc->peer);
284 }
285 }
286
287 qemu_cleanup_net_client(nc);
288 qemu_free_net_client(nc);
289 }
290
291 void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
292 {
293 NetClientState *nc;
294
295 QTAILQ_FOREACH(nc, &net_clients, next) {
296 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
297 func(DO_UPCAST(NICState, nc, nc), opaque);
298 }
299 }
300 }
301
302 int qemu_can_send_packet(NetClientState *sender)
303 {
304 if (!sender->peer) {
305 return 1;
306 }
307
308 if (sender->peer->receive_disabled) {
309 return 0;
310 } else if (sender->peer->info->can_receive &&
311 !sender->peer->info->can_receive(sender->peer)) {
312 return 0;
313 }
314 return 1;
315 }
316
317 ssize_t qemu_deliver_packet(NetClientState *sender,
318 unsigned flags,
319 const uint8_t *data,
320 size_t size,
321 void *opaque)
322 {
323 NetClientState *nc = opaque;
324 ssize_t ret;
325
326 if (nc->link_down) {
327 return size;
328 }
329
330 if (nc->receive_disabled) {
331 return 0;
332 }
333
334 if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
335 ret = nc->info->receive_raw(nc, data, size);
336 } else {
337 ret = nc->info->receive(nc, data, size);
338 }
339
340 if (ret == 0) {
341 nc->receive_disabled = 1;
342 };
343
344 return ret;
345 }
346
347 void qemu_purge_queued_packets(NetClientState *nc)
348 {
349 if (!nc->peer) {
350 return;
351 }
352
353 qemu_net_queue_purge(nc->peer->send_queue, nc);
354 }
355
356 void qemu_flush_queued_packets(NetClientState *nc)
357 {
358 nc->receive_disabled = 0;
359
360 if (qemu_net_queue_flush(nc->send_queue)) {
361 /* We emptied the queue successfully, signal to the IO thread to repoll
362 * the file descriptor (for tap, for example).
363 */
364 qemu_notify_event();
365 }
366 }
367
368 static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
369 unsigned flags,
370 const uint8_t *buf, int size,
371 NetPacketSent *sent_cb)
372 {
373 NetQueue *queue;
374
375 #ifdef DEBUG_NET
376 printf("qemu_send_packet_async:\n");
377 hex_dump(stdout, buf, size);
378 #endif
379
380 if (sender->link_down || !sender->peer) {
381 return size;
382 }
383
384 queue = sender->peer->send_queue;
385
386 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
387 }
388
389 ssize_t qemu_send_packet_async(NetClientState *sender,
390 const uint8_t *buf, int size,
391 NetPacketSent *sent_cb)
392 {
393 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
394 buf, size, sent_cb);
395 }
396
397 void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
398 {
399 qemu_send_packet_async(nc, buf, size, NULL);
400 }
401
402 ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
403 {
404 return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
405 buf, size, NULL);
406 }
407
408 static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
409 int iovcnt)
410 {
411 uint8_t buffer[4096];
412 size_t offset;
413
414 offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
415
416 return nc->info->receive(nc, buffer, offset);
417 }
418
419 ssize_t qemu_deliver_packet_iov(NetClientState *sender,
420 unsigned flags,
421 const struct iovec *iov,
422 int iovcnt,
423 void *opaque)
424 {
425 NetClientState *nc = opaque;
426
427 if (nc->link_down) {
428 return iov_size(iov, iovcnt);
429 }
430
431 if (nc->info->receive_iov) {
432 return nc->info->receive_iov(nc, iov, iovcnt);
433 } else {
434 return nc_sendv_compat(nc, iov, iovcnt);
435 }
436 }
437
438 ssize_t qemu_sendv_packet_async(NetClientState *sender,
439 const struct iovec *iov, int iovcnt,
440 NetPacketSent *sent_cb)
441 {
442 NetQueue *queue;
443
444 if (sender->link_down || !sender->peer) {
445 return iov_size(iov, iovcnt);
446 }
447
448 queue = sender->peer->send_queue;
449
450 return qemu_net_queue_send_iov(queue, sender,
451 QEMU_NET_PACKET_FLAG_NONE,
452 iov, iovcnt, sent_cb);
453 }
454
455 ssize_t
456 qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
457 {
458 return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
459 }
460
461 NetClientState *qemu_find_netdev(const char *id)
462 {
463 NetClientState *nc;
464
465 QTAILQ_FOREACH(nc, &net_clients, next) {
466 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC)
467 continue;
468 if (!strcmp(nc->name, id)) {
469 return nc;
470 }
471 }
472
473 return NULL;
474 }
475
476 static int nic_get_free_idx(void)
477 {
478 int index;
479
480 for (index = 0; index < MAX_NICS; index++)
481 if (!nd_table[index].used)
482 return index;
483 return -1;
484 }
485
486 int qemu_show_nic_models(const char *arg, const char *const *models)
487 {
488 int i;
489
490 if (!arg || !is_help_option(arg)) {
491 return 0;
492 }
493
494 fprintf(stderr, "qemu: Supported NIC models: ");
495 for (i = 0 ; models[i]; i++)
496 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
497 return 1;
498 }
499
500 void qemu_check_nic_model(NICInfo *nd, const char *model)
501 {
502 const char *models[2];
503
504 models[0] = model;
505 models[1] = NULL;
506
507 if (qemu_show_nic_models(nd->model, models))
508 exit(0);
509 if (qemu_find_nic_model(nd, models, model) < 0)
510 exit(1);
511 }
512
513 int qemu_find_nic_model(NICInfo *nd, const char * const *models,
514 const char *default_model)
515 {
516 int i;
517
518 if (!nd->model)
519 nd->model = g_strdup(default_model);
520
521 for (i = 0 ; models[i]; i++) {
522 if (strcmp(nd->model, models[i]) == 0)
523 return i;
524 }
525
526 error_report("Unsupported NIC model: %s", nd->model);
527 return -1;
528 }
529
530 int net_handle_fd_param(Monitor *mon, const char *param)
531 {
532 int fd;
533
534 if (!qemu_isdigit(param[0]) && mon) {
535
536 fd = monitor_get_fd(mon, param);
537 if (fd == -1) {
538 error_report("No file descriptor named %s found", param);
539 return -1;
540 }
541 } else {
542 fd = qemu_parse_fd(param);
543 }
544
545 return fd;
546 }
547
548 static int net_init_nic(const NetClientOptions *opts, const char *name,
549 NetClientState *peer)
550 {
551 int idx;
552 NICInfo *nd;
553 const NetLegacyNicOptions *nic;
554
555 assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC);
556 nic = opts->nic;
557
558 idx = nic_get_free_idx();
559 if (idx == -1 || nb_nics >= MAX_NICS) {
560 error_report("Too Many NICs");
561 return -1;
562 }
563
564 nd = &nd_table[idx];
565
566 memset(nd, 0, sizeof(*nd));
567
568 if (nic->has_netdev) {
569 nd->netdev = qemu_find_netdev(nic->netdev);
570 if (!nd->netdev) {
571 error_report("netdev '%s' not found", nic->netdev);
572 return -1;
573 }
574 } else {
575 assert(peer);
576 nd->netdev = peer;
577 }
578 if (name) {
579 nd->name = g_strdup(name);
580 }
581 if (nic->has_model) {
582 nd->model = g_strdup(nic->model);
583 }
584 if (nic->has_addr) {
585 nd->devaddr = g_strdup(nic->addr);
586 }
587
588 if (nic->has_macaddr &&
589 net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
590 error_report("invalid syntax for ethernet address");
591 return -1;
592 }
593 qemu_macaddr_default_if_unset(&nd->macaddr);
594
595 if (nic->has_vectors) {
596 if (nic->vectors > 0x7ffffff) {
597 error_report("invalid # of vectors: %"PRIu32, nic->vectors);
598 return -1;
599 }
600 nd->nvectors = nic->vectors;
601 } else {
602 nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
603 }
604
605 nd->used = 1;
606 nb_nics++;
607
608 return idx;
609 }
610
611
612 static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])(
613 const NetClientOptions *opts,
614 const char *name,
615 NetClientState *peer) = {
616 [NET_CLIENT_OPTIONS_KIND_NIC] = net_init_nic,
617 #ifdef CONFIG_SLIRP
618 [NET_CLIENT_OPTIONS_KIND_USER] = net_init_slirp,
619 #endif
620 [NET_CLIENT_OPTIONS_KIND_TAP] = net_init_tap,
621 [NET_CLIENT_OPTIONS_KIND_SOCKET] = net_init_socket,
622 #ifdef CONFIG_VDE
623 [NET_CLIENT_OPTIONS_KIND_VDE] = net_init_vde,
624 #endif
625 [NET_CLIENT_OPTIONS_KIND_DUMP] = net_init_dump,
626 #ifdef CONFIG_NET_BRIDGE
627 [NET_CLIENT_OPTIONS_KIND_BRIDGE] = net_init_bridge,
628 #endif
629 [NET_CLIENT_OPTIONS_KIND_HUBPORT] = net_init_hubport,
630 };
631
632
633 static int net_client_init1(const void *object, int is_netdev, Error **errp)
634 {
635 union {
636 const Netdev *netdev;
637 const NetLegacy *net;
638 } u;
639 const NetClientOptions *opts;
640 const char *name;
641
642 if (is_netdev) {
643 u.netdev = object;
644 opts = u.netdev->opts;
645 name = u.netdev->id;
646
647 switch (opts->kind) {
648 #ifdef CONFIG_SLIRP
649 case NET_CLIENT_OPTIONS_KIND_USER:
650 #endif
651 case NET_CLIENT_OPTIONS_KIND_TAP:
652 case NET_CLIENT_OPTIONS_KIND_SOCKET:
653 #ifdef CONFIG_VDE
654 case NET_CLIENT_OPTIONS_KIND_VDE:
655 #endif
656 #ifdef CONFIG_NET_BRIDGE
657 case NET_CLIENT_OPTIONS_KIND_BRIDGE:
658 #endif
659 case NET_CLIENT_OPTIONS_KIND_HUBPORT:
660 break;
661
662 default:
663 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
664 "a netdev backend type");
665 return -1;
666 }
667 } else {
668 u.net = object;
669 opts = u.net->opts;
670 /* missing optional values have been initialized to "all bits zero" */
671 name = u.net->has_id ? u.net->id : u.net->name;
672 }
673
674 if (net_client_init_fun[opts->kind]) {
675 NetClientState *peer = NULL;
676
677 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
678 * parameter. */
679 if (!is_netdev &&
680 (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC ||
681 !opts->nic->has_netdev)) {
682 peer = net_hub_add_port(u.net->has_vlan ? u.net->vlan : 0, NULL);
683 }
684
685 if (net_client_init_fun[opts->kind](opts, name, peer) < 0) {
686 /* TODO push error reporting into init() methods */
687 error_set(errp, QERR_DEVICE_INIT_FAILED,
688 NetClientOptionsKind_lookup[opts->kind]);
689 return -1;
690 }
691 }
692 return 0;
693 }
694
695
696 static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp)
697 {
698 if (is_netdev) {
699 visit_type_Netdev(v, (Netdev **)object, NULL, errp);
700 } else {
701 visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp);
702 }
703 }
704
705
706 int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
707 {
708 void *object = NULL;
709 Error *err = NULL;
710 int ret = -1;
711
712 {
713 OptsVisitor *ov = opts_visitor_new(opts);
714
715 net_visit(opts_get_visitor(ov), is_netdev, &object, &err);
716 opts_visitor_cleanup(ov);
717 }
718
719 if (!err) {
720 ret = net_client_init1(object, is_netdev, &err);
721 }
722
723 if (object) {
724 QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();
725
726 net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL);
727 qapi_dealloc_visitor_cleanup(dv);
728 }
729
730 error_propagate(errp, err);
731 return ret;
732 }
733
734
735 static int net_host_check_device(const char *device)
736 {
737 int i;
738 const char *valid_param_list[] = { "tap", "socket", "dump"
739 #ifdef CONFIG_NET_BRIDGE
740 , "bridge"
741 #endif
742 #ifdef CONFIG_SLIRP
743 ,"user"
744 #endif
745 #ifdef CONFIG_VDE
746 ,"vde"
747 #endif
748 };
749 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
750 if (!strncmp(valid_param_list[i], device,
751 strlen(valid_param_list[i])))
752 return 1;
753 }
754
755 return 0;
756 }
757
758 void net_host_device_add(Monitor *mon, const QDict *qdict)
759 {
760 const char *device = qdict_get_str(qdict, "device");
761 const char *opts_str = qdict_get_try_str(qdict, "opts");
762 Error *local_err = NULL;
763 QemuOpts *opts;
764
765 if (!net_host_check_device(device)) {
766 monitor_printf(mon, "invalid host network device %s\n", device);
767 return;
768 }
769
770 opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0);
771 if (!opts) {
772 return;
773 }
774
775 qemu_opt_set(opts, "type", device);
776
777 net_client_init(opts, 0, &local_err);
778 if (error_is_set(&local_err)) {
779 qerror_report_err(local_err);
780 error_free(local_err);
781 monitor_printf(mon, "adding host network device %s failed\n", device);
782 }
783 }
784
785 void net_host_device_remove(Monitor *mon, const QDict *qdict)
786 {
787 NetClientState *nc;
788 int vlan_id = qdict_get_int(qdict, "vlan_id");
789 const char *device = qdict_get_str(qdict, "device");
790
791 nc = net_hub_find_client_by_name(vlan_id, device);
792 if (!nc) {
793 return;
794 }
795 if (!net_host_check_device(nc->model)) {
796 monitor_printf(mon, "invalid host network device %s\n", device);
797 return;
798 }
799 qemu_del_net_client(nc);
800 }
801
802 void netdev_add(QemuOpts *opts, Error **errp)
803 {
804 net_client_init(opts, 1, errp);
805 }
806
807 int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret)
808 {
809 Error *local_err = NULL;
810 QemuOptsList *opts_list;
811 QemuOpts *opts;
812
813 opts_list = qemu_find_opts_err("netdev", &local_err);
814 if (error_is_set(&local_err)) {
815 goto exit_err;
816 }
817
818 opts = qemu_opts_from_qdict(opts_list, qdict, &local_err);
819 if (error_is_set(&local_err)) {
820 goto exit_err;
821 }
822
823 netdev_add(opts, &local_err);
824 if (error_is_set(&local_err)) {
825 qemu_opts_del(opts);
826 goto exit_err;
827 }
828
829 return 0;
830
831 exit_err:
832 qerror_report_err(local_err);
833 error_free(local_err);
834 return -1;
835 }
836
837 void qmp_netdev_del(const char *id, Error **errp)
838 {
839 NetClientState *nc;
840
841 nc = qemu_find_netdev(id);
842 if (!nc) {
843 error_set(errp, QERR_DEVICE_NOT_FOUND, id);
844 return;
845 }
846
847 qemu_del_net_client(nc);
848 qemu_opts_del(qemu_opts_find(qemu_find_opts_err("netdev", errp), id));
849 }
850
851 void print_net_client(Monitor *mon, NetClientState *nc)
852 {
853 monitor_printf(mon, "%s: type=%s,%s\n", nc->name,
854 NetClientOptionsKind_lookup[nc->info->type], nc->info_str);
855 }
856
857 void do_info_network(Monitor *mon)
858 {
859 NetClientState *nc, *peer;
860 NetClientOptionsKind type;
861
862 net_hub_info(mon);
863
864 QTAILQ_FOREACH(nc, &net_clients, next) {
865 peer = nc->peer;
866 type = nc->info->type;
867
868 /* Skip if already printed in hub info */
869 if (net_hub_id_for_client(nc, NULL) == 0) {
870 continue;
871 }
872
873 if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
874 print_net_client(mon, nc);
875 } /* else it's a netdev connected to a NIC, printed with the NIC */
876 if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) {
877 monitor_printf(mon, " \\ ");
878 print_net_client(mon, peer);
879 }
880 }
881 }
882
883 void qmp_set_link(const char *name, bool up, Error **errp)
884 {
885 NetClientState *nc = NULL;
886
887 QTAILQ_FOREACH(nc, &net_clients, next) {
888 if (!strcmp(nc->name, name)) {
889 goto done;
890 }
891 }
892 done:
893 if (!nc) {
894 error_set(errp, QERR_DEVICE_NOT_FOUND, name);
895 return;
896 }
897
898 nc->link_down = !up;
899
900 if (nc->info->link_status_changed) {
901 nc->info->link_status_changed(nc);
902 }
903
904 /* Notify peer. Don't update peer link status: this makes it possible to
905 * disconnect from host network without notifying the guest.
906 * FIXME: is disconnected link status change operation useful?
907 *
908 * Current behaviour is compatible with qemu vlans where there could be
909 * multiple clients that can still communicate with each other in
910 * disconnected mode. For now maintain this compatibility. */
911 if (nc->peer && nc->peer->info->link_status_changed) {
912 nc->peer->info->link_status_changed(nc->peer);
913 }
914 }
915
916 void net_cleanup(void)
917 {
918 NetClientState *nc, *next_vc;
919
920 QTAILQ_FOREACH_SAFE(nc, &net_clients, next, next_vc) {
921 qemu_del_net_client(nc);
922 }
923 }
924
925 void net_check_clients(void)
926 {
927 NetClientState *nc;
928 int i;
929
930 /* Don't warn about the default network setup that you get if
931 * no command line -net or -netdev options are specified. There
932 * are two cases that we would otherwise complain about:
933 * (1) board doesn't support a NIC but the implicit "-net nic"
934 * requested one
935 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
936 * sets up a nic that isn't connected to anything.
937 */
938 if (default_net) {
939 return;
940 }
941
942 net_hub_check_clients();
943
944 QTAILQ_FOREACH(nc, &net_clients, next) {
945 if (!nc->peer) {
946 fprintf(stderr, "Warning: %s %s has no peer\n",
947 nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ?
948 "nic" : "netdev", nc->name);
949 }
950 }
951
952 /* Check that all NICs requested via -net nic actually got created.
953 * NICs created via -device don't need to be checked here because
954 * they are always instantiated.
955 */
956 for (i = 0; i < MAX_NICS; i++) {
957 NICInfo *nd = &nd_table[i];
958 if (nd->used && !nd->instantiated) {
959 fprintf(stderr, "Warning: requested NIC (%s, model %s) "
960 "was not created (not supported by this machine?)\n",
961 nd->name ? nd->name : "anonymous",
962 nd->model ? nd->model : "unspecified");
963 }
964 }
965 }
966
967 static int net_init_client(QemuOpts *opts, void *dummy)
968 {
969 Error *local_err = NULL;
970
971 net_client_init(opts, 0, &local_err);
972 if (error_is_set(&local_err)) {
973 qerror_report_err(local_err);
974 error_free(local_err);
975 return -1;
976 }
977
978 return 0;
979 }
980
981 static int net_init_netdev(QemuOpts *opts, void *dummy)
982 {
983 Error *local_err = NULL;
984 int ret;
985
986 ret = net_client_init(opts, 1, &local_err);
987 if (error_is_set(&local_err)) {
988 qerror_report_err(local_err);
989 error_free(local_err);
990 return -1;
991 }
992
993 return ret;
994 }
995
996 int net_init_clients(void)
997 {
998 QemuOptsList *net = qemu_find_opts("net");
999
1000 if (default_net) {
1001 /* if no clients, we use a default config */
1002 qemu_opts_set(net, NULL, "type", "nic");
1003 #ifdef CONFIG_SLIRP
1004 qemu_opts_set(net, NULL, "type", "user");
1005 #endif
1006 }
1007
1008 QTAILQ_INIT(&net_clients);
1009
1010 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1)
1011 return -1;
1012
1013 if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) {
1014 return -1;
1015 }
1016
1017 return 0;
1018 }
1019
1020 int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1021 {
1022 #if defined(CONFIG_SLIRP)
1023 int ret;
1024 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1025 return ret;
1026 }
1027 #endif
1028
1029 if (!qemu_opts_parse(opts_list, optarg, 1)) {
1030 return -1;
1031 }
1032
1033 default_net = 0;
1034 return 0;
1035 }
1036
1037 /* From FreeBSD */
1038 /* XXX: optimize */
1039 unsigned compute_mcast_idx(const uint8_t *ep)
1040 {
1041 uint32_t crc;
1042 int carry, i, j;
1043 uint8_t b;
1044
1045 crc = 0xffffffff;
1046 for (i = 0; i < 6; i++) {
1047 b = *ep++;
1048 for (j = 0; j < 8; j++) {
1049 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
1050 crc <<= 1;
1051 b >>= 1;
1052 if (carry) {
1053 crc = ((crc ^ POLYNOMIAL) | carry);
1054 }
1055 }
1056 }
1057 return crc >> 26;
1058 }