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
24 #include "config-host.h"
29 #include "net/slirp.h"
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"
39 #include "qemu/main-loop.h"
40 #include "qapi-visit.h"
41 #include "qapi/opts-visitor.h"
42 #include "qapi/dealloc-visitor.h"
44 /* Net bridge is currently not supported for W32. */
46 # define CONFIG_NET_BRIDGE
49 static QTAILQ_HEAD(, NetClientState
) net_clients
;
53 /***********************************************************/
54 /* network device redirectors */
56 #if defined(DEBUG_NET)
57 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
61 for(i
=0;i
<size
;i
+=16) {
65 fprintf(f
, "%08x ", i
);
68 fprintf(f
, " %02x", buf
[i
+j
]);
75 if (c
< ' ' || c
> '~')
84 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
95 if (len
> buf_size
- 1)
104 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
112 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
114 saddr
->sin_family
= AF_INET
;
115 if (buf
[0] == '\0') {
116 saddr
->sin_addr
.s_addr
= 0;
118 if (qemu_isdigit(buf
[0])) {
119 if (!inet_aton(buf
, &saddr
->sin_addr
))
122 if ((he
= gethostbyname(buf
)) == NULL
)
124 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
127 port
= strtol(p
, (char **)&r
, 0);
130 saddr
->sin_port
= htons(port
);
134 void qemu_format_nic_info_str(NetClientState
*nc
, uint8_t macaddr
[6])
136 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
137 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
139 macaddr
[0], macaddr
[1], macaddr
[2],
140 macaddr
[3], macaddr
[4], macaddr
[5]);
143 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
145 static int index
= 0;
146 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
148 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0)
150 macaddr
->a
[0] = 0x52;
151 macaddr
->a
[1] = 0x54;
152 macaddr
->a
[2] = 0x00;
153 macaddr
->a
[3] = 0x12;
154 macaddr
->a
[4] = 0x34;
155 macaddr
->a
[5] = 0x56 + index
++;
159 * Generate a name for net client
161 * Only net clients created with the legacy -net option and NICs need this.
163 static char *assign_name(NetClientState
*nc1
, const char *model
)
169 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
173 if (strcmp(nc
->model
, model
) == 0) {
178 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
180 return g_strdup(buf
);
183 static void qemu_net_client_destructor(NetClientState
*nc
)
188 static void qemu_net_client_setup(NetClientState
*nc
,
190 NetClientState
*peer
,
193 NetClientDestructor
*destructor
)
196 nc
->model
= g_strdup(model
);
198 nc
->name
= g_strdup(name
);
200 nc
->name
= assign_name(nc
, model
);
208 QTAILQ_INSERT_TAIL(&net_clients
, nc
, next
);
210 nc
->incoming_queue
= qemu_new_net_queue(nc
);
211 nc
->destructor
= destructor
;
214 NetClientState
*qemu_new_net_client(NetClientInfo
*info
,
215 NetClientState
*peer
,
221 assert(info
->size
>= sizeof(NetClientState
));
223 nc
= g_malloc0(info
->size
);
224 qemu_net_client_setup(nc
, info
, peer
, model
, name
,
225 qemu_net_client_destructor
);
230 NICState
*qemu_new_nic(NetClientInfo
*info
,
236 NetClientState
**peers
= conf
->peers
.ncs
;
238 int i
, queues
= MAX(1, conf
->queues
);
240 assert(info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
);
241 assert(info
->size
>= sizeof(NICState
));
243 nic
= g_malloc0(info
->size
+ sizeof(NetClientState
) * queues
);
244 nic
->ncs
= (void *)nic
+ info
->size
;
246 nic
->opaque
= opaque
;
248 for (i
= 0; i
< queues
; i
++) {
249 qemu_net_client_setup(&nic
->ncs
[i
], info
, peers
[i
], model
, name
,
251 nic
->ncs
[i
].queue_index
= i
;
257 NetClientState
*qemu_get_subqueue(NICState
*nic
, int queue_index
)
259 return nic
->ncs
+ queue_index
;
262 NetClientState
*qemu_get_queue(NICState
*nic
)
264 return qemu_get_subqueue(nic
, 0);
267 NICState
*qemu_get_nic(NetClientState
*nc
)
269 NetClientState
*nc0
= nc
- nc
->queue_index
;
271 return (NICState
*)((void *)nc0
- nc
->info
->size
);
274 void *qemu_get_nic_opaque(NetClientState
*nc
)
276 NICState
*nic
= qemu_get_nic(nc
);
281 static void qemu_cleanup_net_client(NetClientState
*nc
)
283 QTAILQ_REMOVE(&net_clients
, nc
, next
);
285 if (nc
->info
->cleanup
) {
286 nc
->info
->cleanup(nc
);
290 static void qemu_free_net_client(NetClientState
*nc
)
292 if (nc
->incoming_queue
) {
293 qemu_del_net_queue(nc
->incoming_queue
);
296 nc
->peer
->peer
= NULL
;
300 if (nc
->destructor
) {
305 void qemu_del_net_client(NetClientState
*nc
)
307 NetClientState
*ncs
[MAX_QUEUE_NUM
];
310 /* If the NetClientState belongs to a multiqueue backend, we will change all
311 * other NetClientStates also.
313 queues
= qemu_find_net_clients_except(nc
->name
, ncs
,
314 NET_CLIENT_OPTIONS_KIND_NIC
,
318 /* If there is a peer NIC, delete and cleanup client, but do not free. */
319 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
320 NICState
*nic
= qemu_get_nic(nc
->peer
);
321 if (nic
->peer_deleted
) {
324 nic
->peer_deleted
= true;
326 for (i
= 0; i
< queues
; i
++) {
327 ncs
[i
]->peer
->link_down
= true;
330 if (nc
->peer
->info
->link_status_changed
) {
331 nc
->peer
->info
->link_status_changed(nc
->peer
);
334 for (i
= 0; i
< queues
; i
++) {
335 qemu_cleanup_net_client(ncs
[i
]);
341 assert(nc
->info
->type
!= NET_CLIENT_OPTIONS_KIND_NIC
);
343 for (i
= 0; i
< queues
; i
++) {
344 qemu_cleanup_net_client(ncs
[i
]);
345 qemu_free_net_client(ncs
[i
]);
349 void qemu_del_nic(NICState
*nic
)
351 int i
, queues
= MAX(nic
->conf
->queues
, 1);
353 /* If this is a peer NIC and peer has already been deleted, free it now. */
354 if (nic
->peer_deleted
) {
355 for (i
= 0; i
< queues
; i
++) {
356 qemu_free_net_client(qemu_get_subqueue(nic
, i
)->peer
);
360 for (i
= queues
- 1; i
>= 0; i
--) {
361 NetClientState
*nc
= qemu_get_subqueue(nic
, i
);
363 qemu_cleanup_net_client(nc
);
364 qemu_free_net_client(nc
);
370 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
)
374 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
375 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
376 if (nc
->queue_index
== 0) {
377 func(qemu_get_nic(nc
), opaque
);
383 int qemu_can_send_packet(NetClientState
*sender
)
389 if (sender
->peer
->receive_disabled
) {
391 } else if (sender
->peer
->info
->can_receive
&&
392 !sender
->peer
->info
->can_receive(sender
->peer
)) {
398 ssize_t
qemu_deliver_packet(NetClientState
*sender
,
404 NetClientState
*nc
= opaque
;
411 if (nc
->receive_disabled
) {
415 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& nc
->info
->receive_raw
) {
416 ret
= nc
->info
->receive_raw(nc
, data
, size
);
418 ret
= nc
->info
->receive(nc
, data
, size
);
422 nc
->receive_disabled
= 1;
428 void qemu_purge_queued_packets(NetClientState
*nc
)
434 qemu_net_queue_purge(nc
->peer
->incoming_queue
, nc
);
437 void qemu_flush_queued_packets(NetClientState
*nc
)
439 nc
->receive_disabled
= 0;
441 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_OPTIONS_KIND_HUBPORT
) {
442 if (net_hub_flush(nc
->peer
)) {
447 if (qemu_net_queue_flush(nc
->incoming_queue
)) {
448 /* We emptied the queue successfully, signal to the IO thread to repoll
449 * the file descriptor (for tap, for example).
455 static ssize_t
qemu_send_packet_async_with_flags(NetClientState
*sender
,
457 const uint8_t *buf
, int size
,
458 NetPacketSent
*sent_cb
)
463 printf("qemu_send_packet_async:\n");
464 hex_dump(stdout
, buf
, size
);
467 if (sender
->link_down
|| !sender
->peer
) {
471 queue
= sender
->peer
->incoming_queue
;
473 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
476 ssize_t
qemu_send_packet_async(NetClientState
*sender
,
477 const uint8_t *buf
, int size
,
478 NetPacketSent
*sent_cb
)
480 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
484 void qemu_send_packet(NetClientState
*nc
, const uint8_t *buf
, int size
)
486 qemu_send_packet_async(nc
, buf
, size
, NULL
);
489 ssize_t
qemu_send_packet_raw(NetClientState
*nc
, const uint8_t *buf
, int size
)
491 return qemu_send_packet_async_with_flags(nc
, QEMU_NET_PACKET_FLAG_RAW
,
495 static ssize_t
nc_sendv_compat(NetClientState
*nc
, const struct iovec
*iov
,
498 uint8_t buffer
[NET_BUFSIZE
];
501 offset
= iov_to_buf(iov
, iovcnt
, 0, buffer
, sizeof(buffer
));
503 return nc
->info
->receive(nc
, buffer
, offset
);
506 ssize_t
qemu_deliver_packet_iov(NetClientState
*sender
,
508 const struct iovec
*iov
,
512 NetClientState
*nc
= opaque
;
516 return iov_size(iov
, iovcnt
);
519 if (nc
->receive_disabled
) {
523 if (nc
->info
->receive_iov
) {
524 ret
= nc
->info
->receive_iov(nc
, iov
, iovcnt
);
526 ret
= nc_sendv_compat(nc
, iov
, iovcnt
);
530 nc
->receive_disabled
= 1;
536 ssize_t
qemu_sendv_packet_async(NetClientState
*sender
,
537 const struct iovec
*iov
, int iovcnt
,
538 NetPacketSent
*sent_cb
)
542 if (sender
->link_down
|| !sender
->peer
) {
543 return iov_size(iov
, iovcnt
);
546 queue
= sender
->peer
->incoming_queue
;
548 return qemu_net_queue_send_iov(queue
, sender
,
549 QEMU_NET_PACKET_FLAG_NONE
,
550 iov
, iovcnt
, sent_cb
);
554 qemu_sendv_packet(NetClientState
*nc
, const struct iovec
*iov
, int iovcnt
)
556 return qemu_sendv_packet_async(nc
, iov
, iovcnt
, NULL
);
559 NetClientState
*qemu_find_netdev(const char *id
)
563 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
564 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
)
566 if (!strcmp(nc
->name
, id
)) {
574 int qemu_find_net_clients_except(const char *id
, NetClientState
**ncs
,
575 NetClientOptionsKind type
, int max
)
580 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
581 if (nc
->info
->type
== type
) {
584 if (!strcmp(nc
->name
, id
)) {
595 static int nic_get_free_idx(void)
599 for (index
= 0; index
< MAX_NICS
; index
++)
600 if (!nd_table
[index
].used
)
605 int qemu_show_nic_models(const char *arg
, const char *const *models
)
609 if (!arg
|| !is_help_option(arg
)) {
613 fprintf(stderr
, "qemu: Supported NIC models: ");
614 for (i
= 0 ; models
[i
]; i
++)
615 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
619 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
621 const char *models
[2];
626 if (qemu_show_nic_models(nd
->model
, models
))
628 if (qemu_find_nic_model(nd
, models
, model
) < 0)
632 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
633 const char *default_model
)
638 nd
->model
= g_strdup(default_model
);
640 for (i
= 0 ; models
[i
]; i
++) {
641 if (strcmp(nd
->model
, models
[i
]) == 0)
645 error_report("Unsupported NIC model: %s", nd
->model
);
649 static int net_init_nic(const NetClientOptions
*opts
, const char *name
,
650 NetClientState
*peer
)
654 const NetLegacyNicOptions
*nic
;
656 assert(opts
->kind
== NET_CLIENT_OPTIONS_KIND_NIC
);
659 idx
= nic_get_free_idx();
660 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
661 error_report("Too Many NICs");
667 memset(nd
, 0, sizeof(*nd
));
669 if (nic
->has_netdev
) {
670 nd
->netdev
= qemu_find_netdev(nic
->netdev
);
672 error_report("netdev '%s' not found", nic
->netdev
);
679 nd
->name
= g_strdup(name
);
680 if (nic
->has_model
) {
681 nd
->model
= g_strdup(nic
->model
);
684 nd
->devaddr
= g_strdup(nic
->addr
);
687 if (nic
->has_macaddr
&&
688 net_parse_macaddr(nd
->macaddr
.a
, nic
->macaddr
) < 0) {
689 error_report("invalid syntax for ethernet address");
692 qemu_macaddr_default_if_unset(&nd
->macaddr
);
694 if (nic
->has_vectors
) {
695 if (nic
->vectors
> 0x7ffffff) {
696 error_report("invalid # of vectors: %"PRIu32
, nic
->vectors
);
699 nd
->nvectors
= nic
->vectors
;
701 nd
->nvectors
= DEV_NVECTORS_UNSPECIFIED
;
711 static int (* const net_client_init_fun
[NET_CLIENT_OPTIONS_KIND_MAX
])(
712 const NetClientOptions
*opts
,
714 NetClientState
*peer
) = {
715 [NET_CLIENT_OPTIONS_KIND_NIC
] = net_init_nic
,
717 [NET_CLIENT_OPTIONS_KIND_USER
] = net_init_slirp
,
719 [NET_CLIENT_OPTIONS_KIND_TAP
] = net_init_tap
,
720 [NET_CLIENT_OPTIONS_KIND_SOCKET
] = net_init_socket
,
722 [NET_CLIENT_OPTIONS_KIND_VDE
] = net_init_vde
,
724 [NET_CLIENT_OPTIONS_KIND_DUMP
] = net_init_dump
,
725 #ifdef CONFIG_NET_BRIDGE
726 [NET_CLIENT_OPTIONS_KIND_BRIDGE
] = net_init_bridge
,
728 [NET_CLIENT_OPTIONS_KIND_HUBPORT
] = net_init_hubport
,
732 static int net_client_init1(const void *object
, int is_netdev
, Error
**errp
)
735 const Netdev
*netdev
;
736 const NetLegacy
*net
;
738 const NetClientOptions
*opts
;
743 opts
= u
.netdev
->opts
;
746 switch (opts
->kind
) {
748 case NET_CLIENT_OPTIONS_KIND_USER
:
750 case NET_CLIENT_OPTIONS_KIND_TAP
:
751 case NET_CLIENT_OPTIONS_KIND_SOCKET
:
753 case NET_CLIENT_OPTIONS_KIND_VDE
:
755 #ifdef CONFIG_NET_BRIDGE
756 case NET_CLIENT_OPTIONS_KIND_BRIDGE
:
758 case NET_CLIENT_OPTIONS_KIND_HUBPORT
:
762 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "type",
763 "a netdev backend type");
769 /* missing optional values have been initialized to "all bits zero" */
770 name
= u
.net
->has_id
? u
.net
->id
: u
.net
->name
;
773 if (net_client_init_fun
[opts
->kind
]) {
774 NetClientState
*peer
= NULL
;
776 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
779 (opts
->kind
!= NET_CLIENT_OPTIONS_KIND_NIC
||
780 !opts
->nic
->has_netdev
)) {
781 peer
= net_hub_add_port(u
.net
->has_vlan
? u
.net
->vlan
: 0, NULL
);
784 if (net_client_init_fun
[opts
->kind
](opts
, name
, peer
) < 0) {
785 /* TODO push error reporting into init() methods */
786 error_set(errp
, QERR_DEVICE_INIT_FAILED
,
787 NetClientOptionsKind_lookup
[opts
->kind
]);
795 static void net_visit(Visitor
*v
, int is_netdev
, void **object
, Error
**errp
)
798 visit_type_Netdev(v
, (Netdev
**)object
, NULL
, errp
);
800 visit_type_NetLegacy(v
, (NetLegacy
**)object
, NULL
, errp
);
805 int net_client_init(QemuOpts
*opts
, int is_netdev
, Error
**errp
)
812 OptsVisitor
*ov
= opts_visitor_new(opts
);
814 net_visit(opts_get_visitor(ov
), is_netdev
, &object
, &err
);
815 opts_visitor_cleanup(ov
);
819 ret
= net_client_init1(object
, is_netdev
, &err
);
823 QapiDeallocVisitor
*dv
= qapi_dealloc_visitor_new();
825 net_visit(qapi_dealloc_get_visitor(dv
), is_netdev
, &object
, NULL
);
826 qapi_dealloc_visitor_cleanup(dv
);
829 error_propagate(errp
, err
);
834 static int net_host_check_device(const char *device
)
837 const char *valid_param_list
[] = { "tap", "socket", "dump"
838 #ifdef CONFIG_NET_BRIDGE
848 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
849 if (!strncmp(valid_param_list
[i
], device
,
850 strlen(valid_param_list
[i
])))
857 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
859 const char *device
= qdict_get_str(qdict
, "device");
860 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
861 Error
*local_err
= NULL
;
864 if (!net_host_check_device(device
)) {
865 monitor_printf(mon
, "invalid host network device %s\n", device
);
869 opts
= qemu_opts_parse(qemu_find_opts("net"), opts_str
? opts_str
: "", 0);
874 qemu_opt_set(opts
, "type", device
);
876 net_client_init(opts
, 0, &local_err
);
877 if (error_is_set(&local_err
)) {
878 qerror_report_err(local_err
);
879 error_free(local_err
);
880 monitor_printf(mon
, "adding host network device %s failed\n", device
);
884 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
887 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
888 const char *device
= qdict_get_str(qdict
, "device");
890 nc
= net_hub_find_client_by_name(vlan_id
, device
);
894 if (!net_host_check_device(nc
->model
)) {
895 monitor_printf(mon
, "invalid host network device %s\n", device
);
898 qemu_del_net_client(nc
);
901 void netdev_add(QemuOpts
*opts
, Error
**errp
)
903 net_client_init(opts
, 1, errp
);
906 int qmp_netdev_add(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
)
908 Error
*local_err
= NULL
;
909 QemuOptsList
*opts_list
;
912 opts_list
= qemu_find_opts_err("netdev", &local_err
);
913 if (error_is_set(&local_err
)) {
917 opts
= qemu_opts_from_qdict(opts_list
, qdict
, &local_err
);
918 if (error_is_set(&local_err
)) {
922 netdev_add(opts
, &local_err
);
923 if (error_is_set(&local_err
)) {
931 qerror_report_err(local_err
);
932 error_free(local_err
);
936 void qmp_netdev_del(const char *id
, Error
**errp
)
941 nc
= qemu_find_netdev(id
);
943 error_set(errp
, QERR_DEVICE_NOT_FOUND
, id
);
947 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), id
);
949 error_setg(errp
, "Device '%s' is not a netdev", id
);
953 qemu_del_net_client(nc
);
957 void print_net_client(Monitor
*mon
, NetClientState
*nc
)
959 monitor_printf(mon
, "%s: index=%d,type=%s,%s\n", nc
->name
,
961 NetClientOptionsKind_lookup
[nc
->info
->type
],
965 RxFilterInfoList
*qmp_query_rx_filter(bool has_name
, const char *name
,
969 RxFilterInfoList
*filter_list
= NULL
, *last_entry
= NULL
;
971 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
972 RxFilterInfoList
*entry
;
975 if (has_name
&& strcmp(nc
->name
, name
) != 0) {
979 /* only query rx-filter information of NIC */
980 if (nc
->info
->type
!= NET_CLIENT_OPTIONS_KIND_NIC
) {
982 error_setg(errp
, "net client(%s) isn't a NIC", name
);
988 if (nc
->info
->query_rx_filter
) {
989 info
= nc
->info
->query_rx_filter(nc
);
990 entry
= g_malloc0(sizeof(*entry
));
996 last_entry
->next
= entry
;
999 } else if (has_name
) {
1000 error_setg(errp
, "net client(%s) doesn't support"
1001 " rx-filter querying", name
);
1006 if (filter_list
== NULL
&& !error_is_set(errp
) && has_name
) {
1007 error_setg(errp
, "invalid net client name: %s", name
);
1013 void do_info_network(Monitor
*mon
, const QDict
*qdict
)
1015 NetClientState
*nc
, *peer
;
1016 NetClientOptionsKind type
;
1020 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1022 type
= nc
->info
->type
;
1024 /* Skip if already printed in hub info */
1025 if (net_hub_id_for_client(nc
, NULL
) == 0) {
1029 if (!peer
|| type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
1030 print_net_client(mon
, nc
);
1031 } /* else it's a netdev connected to a NIC, printed with the NIC */
1032 if (peer
&& type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
1033 monitor_printf(mon
, " \\ ");
1034 print_net_client(mon
, peer
);
1039 void qmp_set_link(const char *name
, bool up
, Error
**errp
)
1041 NetClientState
*ncs
[MAX_QUEUE_NUM
];
1045 queues
= qemu_find_net_clients_except(name
, ncs
,
1046 NET_CLIENT_OPTIONS_KIND_MAX
,
1050 error_set(errp
, QERR_DEVICE_NOT_FOUND
, name
);
1055 for (i
= 0; i
< queues
; i
++) {
1056 ncs
[i
]->link_down
= !up
;
1059 if (nc
->info
->link_status_changed
) {
1060 nc
->info
->link_status_changed(nc
);
1063 /* Notify peer. Don't update peer link status: this makes it possible to
1064 * disconnect from host network without notifying the guest.
1065 * FIXME: is disconnected link status change operation useful?
1067 * Current behaviour is compatible with qemu vlans where there could be
1068 * multiple clients that can still communicate with each other in
1069 * disconnected mode. For now maintain this compatibility. */
1070 if (nc
->peer
&& nc
->peer
->info
->link_status_changed
) {
1071 nc
->peer
->info
->link_status_changed(nc
->peer
);
1075 void net_cleanup(void)
1079 /* We may del multiple entries during qemu_del_net_client(),
1080 * so QTAILQ_FOREACH_SAFE() is also not safe here.
1082 while (!QTAILQ_EMPTY(&net_clients
)) {
1083 nc
= QTAILQ_FIRST(&net_clients
);
1084 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
1085 qemu_del_nic(qemu_get_nic(nc
));
1087 qemu_del_net_client(nc
);
1092 void net_check_clients(void)
1097 /* Don't warn about the default network setup that you get if
1098 * no command line -net or -netdev options are specified. There
1099 * are two cases that we would otherwise complain about:
1100 * (1) board doesn't support a NIC but the implicit "-net nic"
1102 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
1103 * sets up a nic that isn't connected to anything.
1109 net_hub_check_clients();
1111 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1113 fprintf(stderr
, "Warning: %s %s has no peer\n",
1114 nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
?
1115 "nic" : "netdev", nc
->name
);
1119 /* Check that all NICs requested via -net nic actually got created.
1120 * NICs created via -device don't need to be checked here because
1121 * they are always instantiated.
1123 for (i
= 0; i
< MAX_NICS
; i
++) {
1124 NICInfo
*nd
= &nd_table
[i
];
1125 if (nd
->used
&& !nd
->instantiated
) {
1126 fprintf(stderr
, "Warning: requested NIC (%s, model %s) "
1127 "was not created (not supported by this machine?)\n",
1128 nd
->name
? nd
->name
: "anonymous",
1129 nd
->model
? nd
->model
: "unspecified");
1134 static int net_init_client(QemuOpts
*opts
, void *dummy
)
1136 Error
*local_err
= NULL
;
1138 net_client_init(opts
, 0, &local_err
);
1139 if (error_is_set(&local_err
)) {
1140 qerror_report_err(local_err
);
1141 error_free(local_err
);
1148 static int net_init_netdev(QemuOpts
*opts
, void *dummy
)
1150 Error
*local_err
= NULL
;
1153 ret
= net_client_init(opts
, 1, &local_err
);
1154 if (error_is_set(&local_err
)) {
1155 qerror_report_err(local_err
);
1156 error_free(local_err
);
1163 int net_init_clients(void)
1165 QemuOptsList
*net
= qemu_find_opts("net");
1168 /* if no clients, we use a default config */
1169 qemu_opts_set(net
, NULL
, "type", "nic");
1171 qemu_opts_set(net
, NULL
, "type", "user");
1175 QTAILQ_INIT(&net_clients
);
1177 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev
, NULL
, 1) == -1)
1180 if (qemu_opts_foreach(net
, net_init_client
, NULL
, 1) == -1) {
1187 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
1189 #if defined(CONFIG_SLIRP)
1191 if (net_slirp_parse_legacy(opts_list
, optarg
, &ret
)) {
1196 if (!qemu_opts_parse(opts_list
, optarg
, 1)) {
1206 unsigned compute_mcast_idx(const uint8_t *ep
)
1213 for (i
= 0; i
< 6; i
++) {
1215 for (j
= 0; j
< 8; j
++) {
1216 carry
= ((crc
& 0x80000000L
) ? 1 : 0) ^ (b
& 0x01);
1220 crc
= ((crc
^ POLYNOMIAL
) | carry
);
1227 QemuOptsList qemu_netdev_opts
= {
1229 .implied_opt_name
= "type",
1230 .head
= QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts
.head
),
1233 * no elements => accept any params
1234 * validation will happen later
1236 { /* end of list */ }
1240 QemuOptsList qemu_net_opts
= {
1242 .implied_opt_name
= "type",
1243 .head
= QTAILQ_HEAD_INITIALIZER(qemu_net_opts
.head
),
1246 * no elements => accept any params
1247 * validation will happen later
1249 { /* end of list */ }