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 "qapi-visit.h"
40 #include "qapi/opts-visitor.h"
41 #include "qapi/dealloc-visitor.h"
43 /* Net bridge is currently not supported for W32. */
45 # define CONFIG_NET_BRIDGE
48 static QTAILQ_HEAD(, NetClientState
) net_clients
;
52 /***********************************************************/
53 /* network device redirectors */
55 #if defined(DEBUG_NET)
56 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
60 for(i
=0;i
<size
;i
+=16) {
64 fprintf(f
, "%08x ", i
);
67 fprintf(f
, " %02x", buf
[i
+j
]);
74 if (c
< ' ' || c
> '~')
83 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
94 if (len
> buf_size
- 1)
103 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
111 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
113 saddr
->sin_family
= AF_INET
;
114 if (buf
[0] == '\0') {
115 saddr
->sin_addr
.s_addr
= 0;
117 if (qemu_isdigit(buf
[0])) {
118 if (!inet_aton(buf
, &saddr
->sin_addr
))
121 if ((he
= gethostbyname(buf
)) == NULL
)
123 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
126 port
= strtol(p
, (char **)&r
, 0);
129 saddr
->sin_port
= htons(port
);
133 void qemu_format_nic_info_str(NetClientState
*nc
, uint8_t macaddr
[6])
135 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
136 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
138 macaddr
[0], macaddr
[1], macaddr
[2],
139 macaddr
[3], macaddr
[4], macaddr
[5]);
142 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
144 static int index
= 0;
145 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
147 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0)
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
++;
158 * Generate a name for net client
160 * Only net clients created with the legacy -net option need this. Naming is
161 * mandatory for net clients created with -netdev.
163 static char *assign_name(NetClientState
*nc1
, const char *model
)
169 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
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) {
180 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
182 return g_strdup(buf
);
185 static void qemu_net_client_destructor(NetClientState
*nc
)
190 static void qemu_net_client_setup(NetClientState
*nc
,
192 NetClientState
*peer
,
195 NetClientDestructor
*destructor
)
198 nc
->model
= g_strdup(model
);
200 nc
->name
= g_strdup(name
);
202 nc
->name
= assign_name(nc
, model
);
210 QTAILQ_INSERT_TAIL(&net_clients
, nc
, next
);
212 nc
->send_queue
= qemu_new_net_queue(nc
);
213 nc
->destructor
= destructor
;
216 NetClientState
*qemu_new_net_client(NetClientInfo
*info
,
217 NetClientState
*peer
,
223 assert(info
->size
>= sizeof(NetClientState
));
225 nc
= g_malloc0(info
->size
);
226 qemu_net_client_setup(nc
, info
, peer
, model
, name
,
227 qemu_net_client_destructor
);
232 NICState
*qemu_new_nic(NetClientInfo
*info
,
238 NetClientState
**peers
= conf
->peers
.ncs
;
240 int i
, queues
= MAX(1, conf
->queues
);
242 assert(info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
);
243 assert(info
->size
>= sizeof(NICState
));
245 nic
= g_malloc0(info
->size
+ sizeof(NetClientState
) * queues
);
246 nic
->ncs
= (void *)nic
+ info
->size
;
248 nic
->opaque
= opaque
;
250 for (i
= 0; i
< queues
; i
++) {
251 qemu_net_client_setup(&nic
->ncs
[i
], info
, peers
[i
], model
, name
,
253 nic
->ncs
[i
].queue_index
= i
;
259 NetClientState
*qemu_get_subqueue(NICState
*nic
, int queue_index
)
261 return nic
->ncs
+ queue_index
;
264 NetClientState
*qemu_get_queue(NICState
*nic
)
266 return qemu_get_subqueue(nic
, 0);
269 NICState
*qemu_get_nic(NetClientState
*nc
)
271 NetClientState
*nc0
= nc
- nc
->queue_index
;
273 return (NICState
*)((void *)nc0
- nc
->info
->size
);
276 void *qemu_get_nic_opaque(NetClientState
*nc
)
278 NICState
*nic
= qemu_get_nic(nc
);
283 static void qemu_cleanup_net_client(NetClientState
*nc
)
285 QTAILQ_REMOVE(&net_clients
, nc
, next
);
287 if (nc
->info
->cleanup
) {
288 nc
->info
->cleanup(nc
);
292 static void qemu_free_net_client(NetClientState
*nc
)
294 if (nc
->send_queue
) {
295 qemu_del_net_queue(nc
->send_queue
);
298 nc
->peer
->peer
= NULL
;
302 if (nc
->destructor
) {
307 void qemu_del_net_client(NetClientState
*nc
)
309 NetClientState
*ncs
[MAX_QUEUE_NUM
];
312 /* If the NetClientState belongs to a multiqueue backend, we will change all
313 * other NetClientStates also.
315 queues
= qemu_find_net_clients_except(nc
->name
, ncs
,
316 NET_CLIENT_OPTIONS_KIND_NIC
,
320 /* If there is a peer NIC, delete and cleanup client, but do not free. */
321 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
322 NICState
*nic
= qemu_get_nic(nc
->peer
);
323 if (nic
->peer_deleted
) {
326 nic
->peer_deleted
= true;
328 for (i
= 0; i
< queues
; i
++) {
329 ncs
[i
]->peer
->link_down
= true;
332 if (nc
->peer
->info
->link_status_changed
) {
333 nc
->peer
->info
->link_status_changed(nc
->peer
);
336 for (i
= 0; i
< queues
; i
++) {
337 qemu_cleanup_net_client(ncs
[i
]);
343 assert(nc
->info
->type
!= NET_CLIENT_OPTIONS_KIND_NIC
);
345 for (i
= 0; i
< queues
; i
++) {
346 qemu_cleanup_net_client(ncs
[i
]);
347 qemu_free_net_client(ncs
[i
]);
351 void qemu_del_nic(NICState
*nic
)
353 int i
, queues
= MAX(nic
->conf
->queues
, 1);
355 /* If this is a peer NIC and peer has already been deleted, free it now. */
356 if (nic
->peer_deleted
) {
357 for (i
= 0; i
< queues
; i
++) {
358 qemu_free_net_client(qemu_get_subqueue(nic
, i
)->peer
);
362 for (i
= queues
- 1; i
>= 0; i
--) {
363 NetClientState
*nc
= qemu_get_subqueue(nic
, i
);
365 qemu_cleanup_net_client(nc
);
366 qemu_free_net_client(nc
);
372 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
)
376 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
377 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
378 if (nc
->queue_index
== 0) {
379 func(qemu_get_nic(nc
), opaque
);
385 int qemu_can_send_packet(NetClientState
*sender
)
391 if (sender
->peer
->receive_disabled
) {
393 } else if (sender
->peer
->info
->can_receive
&&
394 !sender
->peer
->info
->can_receive(sender
->peer
)) {
400 ssize_t
qemu_deliver_packet(NetClientState
*sender
,
406 NetClientState
*nc
= opaque
;
413 if (nc
->receive_disabled
) {
417 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& nc
->info
->receive_raw
) {
418 ret
= nc
->info
->receive_raw(nc
, data
, size
);
420 ret
= nc
->info
->receive(nc
, data
, size
);
424 nc
->receive_disabled
= 1;
430 void qemu_purge_queued_packets(NetClientState
*nc
)
436 qemu_net_queue_purge(nc
->peer
->send_queue
, nc
);
439 void qemu_flush_queued_packets(NetClientState
*nc
)
441 nc
->receive_disabled
= 0;
443 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_OPTIONS_KIND_HUBPORT
) {
444 if (net_hub_flush(nc
->peer
)) {
449 if (qemu_net_queue_flush(nc
->send_queue
)) {
450 /* We emptied the queue successfully, signal to the IO thread to repoll
451 * the file descriptor (for tap, for example).
457 static ssize_t
qemu_send_packet_async_with_flags(NetClientState
*sender
,
459 const uint8_t *buf
, int size
,
460 NetPacketSent
*sent_cb
)
465 printf("qemu_send_packet_async:\n");
466 hex_dump(stdout
, buf
, size
);
469 if (sender
->link_down
|| !sender
->peer
) {
473 queue
= sender
->peer
->send_queue
;
475 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
478 ssize_t
qemu_send_packet_async(NetClientState
*sender
,
479 const uint8_t *buf
, int size
,
480 NetPacketSent
*sent_cb
)
482 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
486 void qemu_send_packet(NetClientState
*nc
, const uint8_t *buf
, int size
)
488 qemu_send_packet_async(nc
, buf
, size
, NULL
);
491 ssize_t
qemu_send_packet_raw(NetClientState
*nc
, const uint8_t *buf
, int size
)
493 return qemu_send_packet_async_with_flags(nc
, QEMU_NET_PACKET_FLAG_RAW
,
497 static ssize_t
nc_sendv_compat(NetClientState
*nc
, const struct iovec
*iov
,
500 uint8_t buffer
[4096];
503 offset
= iov_to_buf(iov
, iovcnt
, 0, buffer
, sizeof(buffer
));
505 return nc
->info
->receive(nc
, buffer
, offset
);
508 ssize_t
qemu_deliver_packet_iov(NetClientState
*sender
,
510 const struct iovec
*iov
,
514 NetClientState
*nc
= opaque
;
518 return iov_size(iov
, iovcnt
);
521 if (nc
->receive_disabled
) {
525 if (nc
->info
->receive_iov
) {
526 ret
= nc
->info
->receive_iov(nc
, iov
, iovcnt
);
528 ret
= nc_sendv_compat(nc
, iov
, iovcnt
);
532 nc
->receive_disabled
= 1;
538 ssize_t
qemu_sendv_packet_async(NetClientState
*sender
,
539 const struct iovec
*iov
, int iovcnt
,
540 NetPacketSent
*sent_cb
)
544 if (sender
->link_down
|| !sender
->peer
) {
545 return iov_size(iov
, iovcnt
);
548 queue
= sender
->peer
->send_queue
;
550 return qemu_net_queue_send_iov(queue
, sender
,
551 QEMU_NET_PACKET_FLAG_NONE
,
552 iov
, iovcnt
, sent_cb
);
556 qemu_sendv_packet(NetClientState
*nc
, const struct iovec
*iov
, int iovcnt
)
558 return qemu_sendv_packet_async(nc
, iov
, iovcnt
, NULL
);
561 NetClientState
*qemu_find_netdev(const char *id
)
565 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
566 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
)
568 if (!strcmp(nc
->name
, id
)) {
576 int qemu_find_net_clients_except(const char *id
, NetClientState
**ncs
,
577 NetClientOptionsKind type
, int max
)
582 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
583 if (nc
->info
->type
== type
) {
586 if (!strcmp(nc
->name
, id
)) {
597 static int nic_get_free_idx(void)
601 for (index
= 0; index
< MAX_NICS
; index
++)
602 if (!nd_table
[index
].used
)
607 int qemu_show_nic_models(const char *arg
, const char *const *models
)
611 if (!arg
|| !is_help_option(arg
)) {
615 fprintf(stderr
, "qemu: Supported NIC models: ");
616 for (i
= 0 ; models
[i
]; i
++)
617 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
621 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
623 const char *models
[2];
628 if (qemu_show_nic_models(nd
->model
, models
))
630 if (qemu_find_nic_model(nd
, models
, model
) < 0)
634 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
635 const char *default_model
)
640 nd
->model
= g_strdup(default_model
);
642 for (i
= 0 ; models
[i
]; i
++) {
643 if (strcmp(nd
->model
, models
[i
]) == 0)
647 error_report("Unsupported NIC model: %s", nd
->model
);
651 static int net_init_nic(const NetClientOptions
*opts
, const char *name
,
652 NetClientState
*peer
)
656 const NetLegacyNicOptions
*nic
;
658 assert(opts
->kind
== NET_CLIENT_OPTIONS_KIND_NIC
);
661 idx
= nic_get_free_idx();
662 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
663 error_report("Too Many NICs");
669 memset(nd
, 0, sizeof(*nd
));
671 if (nic
->has_netdev
) {
672 nd
->netdev
= qemu_find_netdev(nic
->netdev
);
674 error_report("netdev '%s' not found", nic
->netdev
);
681 nd
->name
= g_strdup(name
);
682 if (nic
->has_model
) {
683 nd
->model
= g_strdup(nic
->model
);
686 nd
->devaddr
= g_strdup(nic
->addr
);
689 if (nic
->has_macaddr
&&
690 net_parse_macaddr(nd
->macaddr
.a
, nic
->macaddr
) < 0) {
691 error_report("invalid syntax for ethernet address");
694 qemu_macaddr_default_if_unset(&nd
->macaddr
);
696 if (nic
->has_vectors
) {
697 if (nic
->vectors
> 0x7ffffff) {
698 error_report("invalid # of vectors: %"PRIu32
, nic
->vectors
);
701 nd
->nvectors
= nic
->vectors
;
703 nd
->nvectors
= DEV_NVECTORS_UNSPECIFIED
;
713 static int (* const net_client_init_fun
[NET_CLIENT_OPTIONS_KIND_MAX
])(
714 const NetClientOptions
*opts
,
716 NetClientState
*peer
) = {
717 [NET_CLIENT_OPTIONS_KIND_NIC
] = net_init_nic
,
719 [NET_CLIENT_OPTIONS_KIND_USER
] = net_init_slirp
,
721 [NET_CLIENT_OPTIONS_KIND_TAP
] = net_init_tap
,
722 [NET_CLIENT_OPTIONS_KIND_SOCKET
] = net_init_socket
,
724 [NET_CLIENT_OPTIONS_KIND_VDE
] = net_init_vde
,
726 [NET_CLIENT_OPTIONS_KIND_DUMP
] = net_init_dump
,
727 #ifdef CONFIG_NET_BRIDGE
728 [NET_CLIENT_OPTIONS_KIND_BRIDGE
] = net_init_bridge
,
730 [NET_CLIENT_OPTIONS_KIND_HUBPORT
] = net_init_hubport
,
734 static int net_client_init1(const void *object
, int is_netdev
, Error
**errp
)
737 const Netdev
*netdev
;
738 const NetLegacy
*net
;
740 const NetClientOptions
*opts
;
745 opts
= u
.netdev
->opts
;
748 switch (opts
->kind
) {
750 case NET_CLIENT_OPTIONS_KIND_USER
:
752 case NET_CLIENT_OPTIONS_KIND_TAP
:
753 case NET_CLIENT_OPTIONS_KIND_SOCKET
:
755 case NET_CLIENT_OPTIONS_KIND_VDE
:
757 #ifdef CONFIG_NET_BRIDGE
758 case NET_CLIENT_OPTIONS_KIND_BRIDGE
:
760 case NET_CLIENT_OPTIONS_KIND_HUBPORT
:
764 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "type",
765 "a netdev backend type");
771 /* missing optional values have been initialized to "all bits zero" */
772 name
= u
.net
->has_id
? u
.net
->id
: u
.net
->name
;
775 if (net_client_init_fun
[opts
->kind
]) {
776 NetClientState
*peer
= NULL
;
778 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
781 (opts
->kind
!= NET_CLIENT_OPTIONS_KIND_NIC
||
782 !opts
->nic
->has_netdev
)) {
783 peer
= net_hub_add_port(u
.net
->has_vlan
? u
.net
->vlan
: 0, NULL
);
786 if (net_client_init_fun
[opts
->kind
](opts
, name
, peer
) < 0) {
787 /* TODO push error reporting into init() methods */
788 error_set(errp
, QERR_DEVICE_INIT_FAILED
,
789 NetClientOptionsKind_lookup
[opts
->kind
]);
797 static void net_visit(Visitor
*v
, int is_netdev
, void **object
, Error
**errp
)
800 visit_type_Netdev(v
, (Netdev
**)object
, NULL
, errp
);
802 visit_type_NetLegacy(v
, (NetLegacy
**)object
, NULL
, errp
);
807 int net_client_init(QemuOpts
*opts
, int is_netdev
, Error
**errp
)
814 OptsVisitor
*ov
= opts_visitor_new(opts
);
816 net_visit(opts_get_visitor(ov
), is_netdev
, &object
, &err
);
817 opts_visitor_cleanup(ov
);
821 ret
= net_client_init1(object
, is_netdev
, &err
);
825 QapiDeallocVisitor
*dv
= qapi_dealloc_visitor_new();
827 net_visit(qapi_dealloc_get_visitor(dv
), is_netdev
, &object
, NULL
);
828 qapi_dealloc_visitor_cleanup(dv
);
831 error_propagate(errp
, err
);
836 static int net_host_check_device(const char *device
)
839 const char *valid_param_list
[] = { "tap", "socket", "dump"
840 #ifdef CONFIG_NET_BRIDGE
850 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
851 if (!strncmp(valid_param_list
[i
], device
,
852 strlen(valid_param_list
[i
])))
859 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
861 const char *device
= qdict_get_str(qdict
, "device");
862 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
863 Error
*local_err
= NULL
;
866 if (!net_host_check_device(device
)) {
867 monitor_printf(mon
, "invalid host network device %s\n", device
);
871 opts
= qemu_opts_parse(qemu_find_opts("net"), opts_str
? opts_str
: "", 0);
876 qemu_opt_set(opts
, "type", device
);
878 net_client_init(opts
, 0, &local_err
);
879 if (error_is_set(&local_err
)) {
880 qerror_report_err(local_err
);
881 error_free(local_err
);
882 monitor_printf(mon
, "adding host network device %s failed\n", device
);
886 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
889 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
890 const char *device
= qdict_get_str(qdict
, "device");
892 nc
= net_hub_find_client_by_name(vlan_id
, device
);
896 if (!net_host_check_device(nc
->model
)) {
897 monitor_printf(mon
, "invalid host network device %s\n", device
);
900 qemu_del_net_client(nc
);
903 void netdev_add(QemuOpts
*opts
, Error
**errp
)
905 net_client_init(opts
, 1, errp
);
908 int qmp_netdev_add(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
)
910 Error
*local_err
= NULL
;
911 QemuOptsList
*opts_list
;
914 opts_list
= qemu_find_opts_err("netdev", &local_err
);
915 if (error_is_set(&local_err
)) {
919 opts
= qemu_opts_from_qdict(opts_list
, qdict
, &local_err
);
920 if (error_is_set(&local_err
)) {
924 netdev_add(opts
, &local_err
);
925 if (error_is_set(&local_err
)) {
933 qerror_report_err(local_err
);
934 error_free(local_err
);
938 void qmp_netdev_del(const char *id
, Error
**errp
)
943 nc
= qemu_find_netdev(id
);
945 error_set(errp
, QERR_DEVICE_NOT_FOUND
, id
);
949 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), id
);
951 error_setg(errp
, "Device '%s' is not a netdev", id
);
955 qemu_del_net_client(nc
);
959 void print_net_client(Monitor
*mon
, NetClientState
*nc
)
961 monitor_printf(mon
, "%s: index=%d,type=%s,%s\n", nc
->name
,
963 NetClientOptionsKind_lookup
[nc
->info
->type
],
967 void do_info_network(Monitor
*mon
, const QDict
*qdict
)
969 NetClientState
*nc
, *peer
;
970 NetClientOptionsKind type
;
974 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
976 type
= nc
->info
->type
;
978 /* Skip if already printed in hub info */
979 if (net_hub_id_for_client(nc
, NULL
) == 0) {
983 if (!peer
|| type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
984 print_net_client(mon
, nc
);
985 } /* else it's a netdev connected to a NIC, printed with the NIC */
986 if (peer
&& type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
987 monitor_printf(mon
, " \\ ");
988 print_net_client(mon
, peer
);
993 void qmp_set_link(const char *name
, bool up
, Error
**errp
)
995 NetClientState
*ncs
[MAX_QUEUE_NUM
];
999 queues
= qemu_find_net_clients_except(name
, ncs
,
1000 NET_CLIENT_OPTIONS_KIND_MAX
,
1004 error_set(errp
, QERR_DEVICE_NOT_FOUND
, name
);
1009 for (i
= 0; i
< queues
; i
++) {
1010 ncs
[i
]->link_down
= !up
;
1013 if (nc
->info
->link_status_changed
) {
1014 nc
->info
->link_status_changed(nc
);
1017 /* Notify peer. Don't update peer link status: this makes it possible to
1018 * disconnect from host network without notifying the guest.
1019 * FIXME: is disconnected link status change operation useful?
1021 * Current behaviour is compatible with qemu vlans where there could be
1022 * multiple clients that can still communicate with each other in
1023 * disconnected mode. For now maintain this compatibility. */
1024 if (nc
->peer
&& nc
->peer
->info
->link_status_changed
) {
1025 nc
->peer
->info
->link_status_changed(nc
->peer
);
1029 void net_cleanup(void)
1033 /* We may del multiple entries during qemu_del_net_client(),
1034 * so QTAILQ_FOREACH_SAFE() is also not safe here.
1036 while (!QTAILQ_EMPTY(&net_clients
)) {
1037 nc
= QTAILQ_FIRST(&net_clients
);
1038 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
1039 qemu_del_nic(qemu_get_nic(nc
));
1041 qemu_del_net_client(nc
);
1046 void net_check_clients(void)
1051 /* Don't warn about the default network setup that you get if
1052 * no command line -net or -netdev options are specified. There
1053 * are two cases that we would otherwise complain about:
1054 * (1) board doesn't support a NIC but the implicit "-net nic"
1056 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
1057 * sets up a nic that isn't connected to anything.
1063 net_hub_check_clients();
1065 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1067 fprintf(stderr
, "Warning: %s %s has no peer\n",
1068 nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
?
1069 "nic" : "netdev", nc
->name
);
1073 /* Check that all NICs requested via -net nic actually got created.
1074 * NICs created via -device don't need to be checked here because
1075 * they are always instantiated.
1077 for (i
= 0; i
< MAX_NICS
; i
++) {
1078 NICInfo
*nd
= &nd_table
[i
];
1079 if (nd
->used
&& !nd
->instantiated
) {
1080 fprintf(stderr
, "Warning: requested NIC (%s, model %s) "
1081 "was not created (not supported by this machine?)\n",
1082 nd
->name
? nd
->name
: "anonymous",
1083 nd
->model
? nd
->model
: "unspecified");
1088 static int net_init_client(QemuOpts
*opts
, void *dummy
)
1090 Error
*local_err
= NULL
;
1092 net_client_init(opts
, 0, &local_err
);
1093 if (error_is_set(&local_err
)) {
1094 qerror_report_err(local_err
);
1095 error_free(local_err
);
1102 static int net_init_netdev(QemuOpts
*opts
, void *dummy
)
1104 Error
*local_err
= NULL
;
1107 ret
= net_client_init(opts
, 1, &local_err
);
1108 if (error_is_set(&local_err
)) {
1109 qerror_report_err(local_err
);
1110 error_free(local_err
);
1117 int net_init_clients(void)
1119 QemuOptsList
*net
= qemu_find_opts("net");
1122 /* if no clients, we use a default config */
1123 qemu_opts_set(net
, NULL
, "type", "nic");
1125 qemu_opts_set(net
, NULL
, "type", "user");
1129 QTAILQ_INIT(&net_clients
);
1131 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev
, NULL
, 1) == -1)
1134 if (qemu_opts_foreach(net
, net_init_client
, NULL
, 1) == -1) {
1141 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
1143 #if defined(CONFIG_SLIRP)
1145 if (net_slirp_parse_legacy(opts_list
, optarg
, &ret
)) {
1150 if (!qemu_opts_parse(opts_list
, optarg
, 1)) {
1160 unsigned compute_mcast_idx(const uint8_t *ep
)
1167 for (i
= 0; i
< 6; i
++) {
1169 for (j
= 0; j
< 8; j
++) {
1170 carry
= ((crc
& 0x80000000L
) ? 1 : 0) ^ (b
& 0x01);
1174 crc
= ((crc
^ POLYNOMIAL
) | carry
);
1181 QemuOptsList qemu_netdev_opts
= {
1183 .implied_opt_name
= "type",
1184 .head
= QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts
.head
),
1187 * no elements => accept any params
1188 * validation will happen later
1190 { /* end of list */ }
1194 QemuOptsList qemu_net_opts
= {
1196 .implied_opt_name
= "type",
1197 .head
= QTAILQ_HEAD_INITIALIZER(qemu_net_opts
.head
),
1200 * no elements => accept any params
1201 * validation will happen later
1203 { /* end of list */ }