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