4 * Copyright(c) 2022 Vladislav Yaroshchuk <vladislav.yaroshchuk@jetbrains.com>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
11 #include "qemu/osdep.h"
12 #include "qapi/qapi-types-net.h"
13 #include "qapi/error.h"
15 #include "vmnet_int.h"
17 #include <vmnet/vmnet.h>
20 static bool validate_ifname(const char *ifname)
22 xpc_object_t shared_if_list = vmnet_copy_shared_interface_list();
24 if (!xpc_array_get_count(shared_if_list)) {
28 match = !xpc_array_apply(
30 ^bool(size_t index, xpc_object_t value) {
31 return strcmp(xpc_string_get_string_ptr(value), ifname) != 0;
35 xpc_release(shared_if_list);
40 static char* get_valid_ifnames()
42 xpc_object_t shared_if_list = vmnet_copy_shared_interface_list();
43 __block char *if_list = NULL;
44 __block char *if_list_prev = NULL;
46 if (!xpc_array_get_count(shared_if_list)) {
52 ^bool(size_t index, xpc_object_t value) {
53 /* build list of strings like "en0 en1 en2 " */
54 if_list = g_strconcat(xpc_string_get_string_ptr(value),
59 if_list_prev = if_list;
64 xpc_release(shared_if_list);
69 static bool validate_options(const Netdev *netdev, Error **errp)
71 const NetdevVmnetBridgedOptions *options = &(netdev->u.vmnet_bridged);
74 if (!validate_ifname(options->ifname)) {
75 if_list = get_valid_ifnames();
78 "unsupported ifname '%s', expected one of [ %s]",
84 "unsupported ifname '%s', no supported "
85 "interfaces available",
91 #if !defined(MAC_OS_VERSION_11_0) || \
92 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_VERSION_11_0
93 if (options->has_isolated) {
95 "vmnet-bridged.isolated feature is "
96 "unavailable: outdated vmnet.framework API");
104 static xpc_object_t build_if_desc(const Netdev *netdev)
106 const NetdevVmnetBridgedOptions *options = &(netdev->u.vmnet_bridged);
107 xpc_object_t if_desc = xpc_dictionary_create(NULL, NULL, 0);
109 xpc_dictionary_set_uint64(if_desc,
110 vmnet_operation_mode_key,
114 xpc_dictionary_set_string(if_desc,
115 vmnet_shared_interface_name_key,
118 #if defined(MAC_OS_VERSION_11_0) && \
119 MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_VERSION_11_0
120 xpc_dictionary_set_bool(if_desc,
121 vmnet_enable_isolation_key,
128 static NetClientInfo net_vmnet_bridged_info = {
129 .type = NET_CLIENT_DRIVER_VMNET_BRIDGED,
130 .size = sizeof(VmnetState),
131 .receive = vmnet_receive_common,
132 .cleanup = vmnet_cleanup_common,
136 int net_init_vmnet_bridged(const Netdev *netdev, const char *name,
137 NetClientState *peer, Error **errp)
139 NetClientState *nc = qemu_new_net_client(&net_vmnet_bridged_info,
140 peer, "vmnet-bridged", name);
141 xpc_object_t if_desc;
144 if (!validate_options(netdev, errp)) {
148 if_desc = build_if_desc(netdev);
149 result = vmnet_if_create(nc, if_desc, errp);
150 xpc_release(if_desc);