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"
27 #include "net/clients.h"
29 #include "net/slirp.h"
33 #include "qemu-common.h"
34 #include "qemu_socket.h"
35 #include "qmp-commands.h"
38 #include "qapi-visit.h"
39 #include "qapi/opts-visitor.h"
40 #include "qapi/qapi-dealloc-visitor.h"
42 /* Net bridge is currently not supported for W32. */
44 # define CONFIG_NET_BRIDGE
47 static QTAILQ_HEAD(, NetClientState
) net_clients
;
51 /***********************************************************/
52 /* network device redirectors */
54 #if defined(DEBUG_NET)
55 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
59 for(i
=0;i
<size
;i
+=16) {
63 fprintf(f
, "%08x ", i
);
66 fprintf(f
, " %02x", buf
[i
+j
]);
73 if (c
< ' ' || c
> '~')
82 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
93 if (len
> buf_size
- 1)
102 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
110 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
112 saddr
->sin_family
= AF_INET
;
113 if (buf
[0] == '\0') {
114 saddr
->sin_addr
.s_addr
= 0;
116 if (qemu_isdigit(buf
[0])) {
117 if (!inet_aton(buf
, &saddr
->sin_addr
))
120 if ((he
= gethostbyname(buf
)) == NULL
)
122 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
125 port
= strtol(p
, (char **)&r
, 0);
128 saddr
->sin_port
= htons(port
);
132 void qemu_format_nic_info_str(NetClientState
*nc
, uint8_t macaddr
[6])
134 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
135 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
137 macaddr
[0], macaddr
[1], macaddr
[2],
138 macaddr
[3], macaddr
[4], macaddr
[5]);
141 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
143 static int index
= 0;
144 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
146 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0)
148 macaddr
->a
[0] = 0x52;
149 macaddr
->a
[1] = 0x54;
150 macaddr
->a
[2] = 0x00;
151 macaddr
->a
[3] = 0x12;
152 macaddr
->a
[4] = 0x34;
153 macaddr
->a
[5] = 0x56 + index
++;
157 * Generate a name for net client
159 * Only net clients created with the legacy -net option need this. Naming is
160 * mandatory for net clients created with -netdev.
162 static char *assign_name(NetClientState
*nc1
, const char *model
)
168 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
172 /* For compatibility only bump id for net clients on a vlan */
173 if (strcmp(nc
->model
, model
) == 0 &&
174 net_hub_id_for_client(nc
, NULL
) == 0) {
179 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
181 return g_strdup(buf
);
184 NetClientState
*qemu_new_net_client(NetClientInfo
*info
,
185 NetClientState
*peer
,
191 assert(info
->size
>= sizeof(NetClientState
));
193 nc
= g_malloc0(info
->size
);
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
->send_queue
= qemu_new_net_queue(nc
);
215 NICState
*qemu_new_nic(NetClientInfo
*info
,
224 assert(info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
);
225 assert(info
->size
>= sizeof(NICState
));
227 nc
= qemu_new_net_client(info
, conf
->peer
, model
, name
);
229 nic
= DO_UPCAST(NICState
, nc
, nc
);
231 nic
->opaque
= opaque
;
236 static void qemu_cleanup_net_client(NetClientState
*nc
)
238 QTAILQ_REMOVE(&net_clients
, nc
, next
);
240 if (nc
->info
->cleanup
) {
241 nc
->info
->cleanup(nc
);
245 static void qemu_free_net_client(NetClientState
*nc
)
247 if (nc
->send_queue
) {
248 qemu_del_net_queue(nc
->send_queue
);
251 nc
->peer
->peer
= NULL
;
258 void qemu_del_net_client(NetClientState
*nc
)
260 /* If there is a peer NIC, delete and cleanup client, but do not free. */
261 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
262 NICState
*nic
= DO_UPCAST(NICState
, nc
, nc
->peer
);
263 if (nic
->peer_deleted
) {
266 nic
->peer_deleted
= true;
267 /* Let NIC know peer is gone. */
268 nc
->peer
->link_down
= true;
269 if (nc
->peer
->info
->link_status_changed
) {
270 nc
->peer
->info
->link_status_changed(nc
->peer
);
272 qemu_cleanup_net_client(nc
);
276 /* If this is a peer NIC and peer has already been deleted, free it now. */
277 if (nc
->peer
&& nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
278 NICState
*nic
= DO_UPCAST(NICState
, nc
, nc
);
279 if (nic
->peer_deleted
) {
280 qemu_free_net_client(nc
->peer
);
284 qemu_cleanup_net_client(nc
);
285 qemu_free_net_client(nc
);
288 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
)
292 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
293 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
294 func(DO_UPCAST(NICState
, nc
, nc
), opaque
);
299 int qemu_can_send_packet(NetClientState
*sender
)
305 if (sender
->peer
->receive_disabled
) {
307 } else if (sender
->peer
->info
->can_receive
&&
308 !sender
->peer
->info
->can_receive(sender
->peer
)) {
314 ssize_t
qemu_deliver_packet(NetClientState
*sender
,
320 NetClientState
*nc
= opaque
;
327 if (nc
->receive_disabled
) {
331 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& nc
->info
->receive_raw
) {
332 ret
= nc
->info
->receive_raw(nc
, data
, size
);
334 ret
= nc
->info
->receive(nc
, data
, size
);
338 nc
->receive_disabled
= 1;
344 void qemu_purge_queued_packets(NetClientState
*nc
)
350 qemu_net_queue_purge(nc
->peer
->send_queue
, nc
);
353 void qemu_flush_queued_packets(NetClientState
*nc
)
355 nc
->receive_disabled
= 0;
357 if (qemu_net_queue_flush(nc
->send_queue
)) {
358 /* We emptied the queue successfully, signal to the IO thread to repoll
359 * the file descriptor (for tap, for example).
365 static ssize_t
qemu_send_packet_async_with_flags(NetClientState
*sender
,
367 const uint8_t *buf
, int size
,
368 NetPacketSent
*sent_cb
)
373 printf("qemu_send_packet_async:\n");
374 hex_dump(stdout
, buf
, size
);
377 if (sender
->link_down
|| !sender
->peer
) {
381 queue
= sender
->peer
->send_queue
;
383 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
386 ssize_t
qemu_send_packet_async(NetClientState
*sender
,
387 const uint8_t *buf
, int size
,
388 NetPacketSent
*sent_cb
)
390 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
394 void qemu_send_packet(NetClientState
*nc
, const uint8_t *buf
, int size
)
396 qemu_send_packet_async(nc
, buf
, size
, NULL
);
399 ssize_t
qemu_send_packet_raw(NetClientState
*nc
, const uint8_t *buf
, int size
)
401 return qemu_send_packet_async_with_flags(nc
, QEMU_NET_PACKET_FLAG_RAW
,
405 static ssize_t
nc_sendv_compat(NetClientState
*nc
, const struct iovec
*iov
,
408 uint8_t buffer
[4096];
411 offset
= iov_to_buf(iov
, iovcnt
, 0, buffer
, sizeof(buffer
));
413 return nc
->info
->receive(nc
, buffer
, offset
);
416 ssize_t
qemu_deliver_packet_iov(NetClientState
*sender
,
418 const struct iovec
*iov
,
422 NetClientState
*nc
= opaque
;
426 return iov_size(iov
, iovcnt
);
429 if (nc
->receive_disabled
) {
433 if (nc
->info
->receive_iov
) {
434 ret
= nc
->info
->receive_iov(nc
, iov
, iovcnt
);
436 ret
= nc_sendv_compat(nc
, iov
, iovcnt
);
440 nc
->receive_disabled
= 1;
446 ssize_t
qemu_sendv_packet_async(NetClientState
*sender
,
447 const struct iovec
*iov
, int iovcnt
,
448 NetPacketSent
*sent_cb
)
452 if (sender
->link_down
|| !sender
->peer
) {
453 return iov_size(iov
, iovcnt
);
456 queue
= sender
->peer
->send_queue
;
458 return qemu_net_queue_send_iov(queue
, sender
,
459 QEMU_NET_PACKET_FLAG_NONE
,
460 iov
, iovcnt
, sent_cb
);
464 qemu_sendv_packet(NetClientState
*nc
, const struct iovec
*iov
, int iovcnt
)
466 return qemu_sendv_packet_async(nc
, iov
, iovcnt
, NULL
);
469 NetClientState
*qemu_find_netdev(const char *id
)
473 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
474 if (nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
)
476 if (!strcmp(nc
->name
, id
)) {
484 static int nic_get_free_idx(void)
488 for (index
= 0; index
< MAX_NICS
; index
++)
489 if (!nd_table
[index
].used
)
494 int qemu_show_nic_models(const char *arg
, const char *const *models
)
498 if (!arg
|| !is_help_option(arg
)) {
502 fprintf(stderr
, "qemu: Supported NIC models: ");
503 for (i
= 0 ; models
[i
]; i
++)
504 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
508 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
510 const char *models
[2];
515 if (qemu_show_nic_models(nd
->model
, models
))
517 if (qemu_find_nic_model(nd
, models
, model
) < 0)
521 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
522 const char *default_model
)
527 nd
->model
= g_strdup(default_model
);
529 for (i
= 0 ; models
[i
]; i
++) {
530 if (strcmp(nd
->model
, models
[i
]) == 0)
534 error_report("Unsupported NIC model: %s", nd
->model
);
538 static int net_init_nic(const NetClientOptions
*opts
, const char *name
,
539 NetClientState
*peer
)
543 const NetLegacyNicOptions
*nic
;
545 assert(opts
->kind
== NET_CLIENT_OPTIONS_KIND_NIC
);
548 idx
= nic_get_free_idx();
549 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
550 error_report("Too Many NICs");
556 memset(nd
, 0, sizeof(*nd
));
558 if (nic
->has_netdev
) {
559 nd
->netdev
= qemu_find_netdev(nic
->netdev
);
561 error_report("netdev '%s' not found", nic
->netdev
);
569 nd
->name
= g_strdup(name
);
571 if (nic
->has_model
) {
572 nd
->model
= g_strdup(nic
->model
);
575 nd
->devaddr
= g_strdup(nic
->addr
);
578 if (nic
->has_macaddr
&&
579 net_parse_macaddr(nd
->macaddr
.a
, nic
->macaddr
) < 0) {
580 error_report("invalid syntax for ethernet address");
583 qemu_macaddr_default_if_unset(&nd
->macaddr
);
585 if (nic
->has_vectors
) {
586 if (nic
->vectors
> 0x7ffffff) {
587 error_report("invalid # of vectors: %"PRIu32
, nic
->vectors
);
590 nd
->nvectors
= nic
->vectors
;
592 nd
->nvectors
= DEV_NVECTORS_UNSPECIFIED
;
602 static int (* const net_client_init_fun
[NET_CLIENT_OPTIONS_KIND_MAX
])(
603 const NetClientOptions
*opts
,
605 NetClientState
*peer
) = {
606 [NET_CLIENT_OPTIONS_KIND_NIC
] = net_init_nic
,
608 [NET_CLIENT_OPTIONS_KIND_USER
] = net_init_slirp
,
610 [NET_CLIENT_OPTIONS_KIND_TAP
] = net_init_tap
,
611 [NET_CLIENT_OPTIONS_KIND_SOCKET
] = net_init_socket
,
613 [NET_CLIENT_OPTIONS_KIND_VDE
] = net_init_vde
,
615 [NET_CLIENT_OPTIONS_KIND_DUMP
] = net_init_dump
,
616 #ifdef CONFIG_NET_BRIDGE
617 [NET_CLIENT_OPTIONS_KIND_BRIDGE
] = net_init_bridge
,
619 [NET_CLIENT_OPTIONS_KIND_HUBPORT
] = net_init_hubport
,
623 static int net_client_init1(const void *object
, int is_netdev
, Error
**errp
)
626 const Netdev
*netdev
;
627 const NetLegacy
*net
;
629 const NetClientOptions
*opts
;
634 opts
= u
.netdev
->opts
;
637 switch (opts
->kind
) {
639 case NET_CLIENT_OPTIONS_KIND_USER
:
641 case NET_CLIENT_OPTIONS_KIND_TAP
:
642 case NET_CLIENT_OPTIONS_KIND_SOCKET
:
644 case NET_CLIENT_OPTIONS_KIND_VDE
:
646 #ifdef CONFIG_NET_BRIDGE
647 case NET_CLIENT_OPTIONS_KIND_BRIDGE
:
649 case NET_CLIENT_OPTIONS_KIND_HUBPORT
:
653 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "type",
654 "a netdev backend type");
660 /* missing optional values have been initialized to "all bits zero" */
661 name
= u
.net
->has_id
? u
.net
->id
: u
.net
->name
;
664 if (net_client_init_fun
[opts
->kind
]) {
665 NetClientState
*peer
= NULL
;
667 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
670 (opts
->kind
!= NET_CLIENT_OPTIONS_KIND_NIC
||
671 !opts
->nic
->has_netdev
)) {
672 peer
= net_hub_add_port(u
.net
->has_vlan
? u
.net
->vlan
: 0, NULL
);
675 if (net_client_init_fun
[opts
->kind
](opts
, name
, peer
) < 0) {
676 /* TODO push error reporting into init() methods */
677 error_set(errp
, QERR_DEVICE_INIT_FAILED
,
678 NetClientOptionsKind_lookup
[opts
->kind
]);
686 static void net_visit(Visitor
*v
, int is_netdev
, void **object
, Error
**errp
)
689 visit_type_Netdev(v
, (Netdev
**)object
, NULL
, errp
);
691 visit_type_NetLegacy(v
, (NetLegacy
**)object
, NULL
, errp
);
696 int net_client_init(QemuOpts
*opts
, int is_netdev
, Error
**errp
)
703 OptsVisitor
*ov
= opts_visitor_new(opts
);
705 net_visit(opts_get_visitor(ov
), is_netdev
, &object
, &err
);
706 opts_visitor_cleanup(ov
);
710 ret
= net_client_init1(object
, is_netdev
, &err
);
714 QapiDeallocVisitor
*dv
= qapi_dealloc_visitor_new();
716 net_visit(qapi_dealloc_get_visitor(dv
), is_netdev
, &object
, NULL
);
717 qapi_dealloc_visitor_cleanup(dv
);
720 error_propagate(errp
, err
);
725 static int net_host_check_device(const char *device
)
728 const char *valid_param_list
[] = { "tap", "socket", "dump"
729 #ifdef CONFIG_NET_BRIDGE
739 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
740 if (!strncmp(valid_param_list
[i
], device
,
741 strlen(valid_param_list
[i
])))
748 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
750 const char *device
= qdict_get_str(qdict
, "device");
751 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
752 Error
*local_err
= NULL
;
755 if (!net_host_check_device(device
)) {
756 monitor_printf(mon
, "invalid host network device %s\n", device
);
760 opts
= qemu_opts_parse(qemu_find_opts("net"), opts_str
? opts_str
: "", 0);
765 qemu_opt_set(opts
, "type", device
);
767 net_client_init(opts
, 0, &local_err
);
768 if (error_is_set(&local_err
)) {
769 qerror_report_err(local_err
);
770 error_free(local_err
);
771 monitor_printf(mon
, "adding host network device %s failed\n", device
);
775 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
778 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
779 const char *device
= qdict_get_str(qdict
, "device");
781 nc
= net_hub_find_client_by_name(vlan_id
, device
);
785 if (!net_host_check_device(nc
->model
)) {
786 monitor_printf(mon
, "invalid host network device %s\n", device
);
789 qemu_del_net_client(nc
);
792 void netdev_add(QemuOpts
*opts
, Error
**errp
)
794 net_client_init(opts
, 1, errp
);
797 int qmp_netdev_add(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
)
799 Error
*local_err
= NULL
;
800 QemuOptsList
*opts_list
;
803 opts_list
= qemu_find_opts_err("netdev", &local_err
);
804 if (error_is_set(&local_err
)) {
808 opts
= qemu_opts_from_qdict(opts_list
, qdict
, &local_err
);
809 if (error_is_set(&local_err
)) {
813 netdev_add(opts
, &local_err
);
814 if (error_is_set(&local_err
)) {
822 qerror_report_err(local_err
);
823 error_free(local_err
);
827 void qmp_netdev_del(const char *id
, Error
**errp
)
832 nc
= qemu_find_netdev(id
);
834 error_set(errp
, QERR_DEVICE_NOT_FOUND
, id
);
838 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), id
);
840 error_setg(errp
, "Device '%s' is not a netdev", id
);
844 qemu_del_net_client(nc
);
848 void print_net_client(Monitor
*mon
, NetClientState
*nc
)
850 monitor_printf(mon
, "%s: type=%s,%s\n", nc
->name
,
851 NetClientOptionsKind_lookup
[nc
->info
->type
], nc
->info_str
);
854 void do_info_network(Monitor
*mon
)
856 NetClientState
*nc
, *peer
;
857 NetClientOptionsKind type
;
861 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
863 type
= nc
->info
->type
;
865 /* Skip if already printed in hub info */
866 if (net_hub_id_for_client(nc
, NULL
) == 0) {
870 if (!peer
|| type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
871 print_net_client(mon
, nc
);
872 } /* else it's a netdev connected to a NIC, printed with the NIC */
873 if (peer
&& type
== NET_CLIENT_OPTIONS_KIND_NIC
) {
874 monitor_printf(mon
, " \\ ");
875 print_net_client(mon
, peer
);
880 void qmp_set_link(const char *name
, bool up
, Error
**errp
)
882 NetClientState
*nc
= NULL
;
884 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
885 if (!strcmp(nc
->name
, name
)) {
891 error_set(errp
, QERR_DEVICE_NOT_FOUND
, name
);
897 if (nc
->info
->link_status_changed
) {
898 nc
->info
->link_status_changed(nc
);
901 /* Notify peer. Don't update peer link status: this makes it possible to
902 * disconnect from host network without notifying the guest.
903 * FIXME: is disconnected link status change operation useful?
905 * Current behaviour is compatible with qemu vlans where there could be
906 * multiple clients that can still communicate with each other in
907 * disconnected mode. For now maintain this compatibility. */
908 if (nc
->peer
&& nc
->peer
->info
->link_status_changed
) {
909 nc
->peer
->info
->link_status_changed(nc
->peer
);
913 void net_cleanup(void)
915 NetClientState
*nc
, *next_vc
;
917 QTAILQ_FOREACH_SAFE(nc
, &net_clients
, next
, next_vc
) {
918 qemu_del_net_client(nc
);
922 void net_check_clients(void)
927 /* Don't warn about the default network setup that you get if
928 * no command line -net or -netdev options are specified. There
929 * are two cases that we would otherwise complain about:
930 * (1) board doesn't support a NIC but the implicit "-net nic"
932 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
933 * sets up a nic that isn't connected to anything.
939 net_hub_check_clients();
941 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
943 fprintf(stderr
, "Warning: %s %s has no peer\n",
944 nc
->info
->type
== NET_CLIENT_OPTIONS_KIND_NIC
?
945 "nic" : "netdev", nc
->name
);
949 /* Check that all NICs requested via -net nic actually got created.
950 * NICs created via -device don't need to be checked here because
951 * they are always instantiated.
953 for (i
= 0; i
< MAX_NICS
; i
++) {
954 NICInfo
*nd
= &nd_table
[i
];
955 if (nd
->used
&& !nd
->instantiated
) {
956 fprintf(stderr
, "Warning: requested NIC (%s, model %s) "
957 "was not created (not supported by this machine?)\n",
958 nd
->name
? nd
->name
: "anonymous",
959 nd
->model
? nd
->model
: "unspecified");
964 static int net_init_client(QemuOpts
*opts
, void *dummy
)
966 Error
*local_err
= NULL
;
968 net_client_init(opts
, 0, &local_err
);
969 if (error_is_set(&local_err
)) {
970 qerror_report_err(local_err
);
971 error_free(local_err
);
978 static int net_init_netdev(QemuOpts
*opts
, void *dummy
)
980 Error
*local_err
= NULL
;
983 ret
= net_client_init(opts
, 1, &local_err
);
984 if (error_is_set(&local_err
)) {
985 qerror_report_err(local_err
);
986 error_free(local_err
);
993 int net_init_clients(void)
995 QemuOptsList
*net
= qemu_find_opts("net");
998 /* if no clients, we use a default config */
999 qemu_opts_set(net
, NULL
, "type", "nic");
1001 qemu_opts_set(net
, NULL
, "type", "user");
1005 QTAILQ_INIT(&net_clients
);
1007 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev
, NULL
, 1) == -1)
1010 if (qemu_opts_foreach(net
, net_init_client
, NULL
, 1) == -1) {
1017 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
1019 #if defined(CONFIG_SLIRP)
1021 if (net_slirp_parse_legacy(opts_list
, optarg
, &ret
)) {
1026 if (!qemu_opts_parse(opts_list
, optarg
, 1)) {
1036 unsigned compute_mcast_idx(const uint8_t *ep
)
1043 for (i
= 0; i
< 6; i
++) {
1045 for (j
= 0; j
< 8; j
++) {
1046 carry
= ((crc
& 0x80000000L
) ? 1 : 0) ^ (b
& 0x01);
1050 crc
= ((crc
^ POLYNOMIAL
) | carry
);