1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2011 - 2014 Red Hat, Inc.
*/
#include "src/core/nm-default-daemon.h"
#include <gmodule.h>
#include "devices/nm-device-factory.h"
#include "nm-setting-wireless.h"
#include "nm-setting-olpc-mesh.h"
#include "nm-device-wifi.h"
#include "nm-device-wifi-p2p.h"
#include "nm-device-olpc-mesh.h"
#include "nm-device-iwd.h"
#include "nm-device-iwd-p2p.h"
#include "nm-iwd-manager.h"
#include "settings/nm-settings-connection.h"
#include "libnm-platform/nm-platform.h"
#include "nm-config.h"
/*****************************************************************************/
#define NM_TYPE_WIFI_FACTORY (nm_wifi_factory_get_type())
#define NM_WIFI_FACTORY(obj) \
(_NM_G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_WIFI_FACTORY, NMWifiFactory))
#define NM_WIFI_FACTORY_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_WIFI_FACTORY, NMWifiFactoryClass))
#define NM_IS_WIFI_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_WIFI_FACTORY))
#define NM_IS_WIFI_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_WIFI_FACTORY))
#define NM_WIFI_FACTORY_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_WIFI_FACTORY, NMWifiFactoryClass))
typedef struct {
NMDeviceFactory parent;
} NMWifiFactory;
typedef struct {
NMDeviceFactoryClass parent;
} NMWifiFactoryClass;
static GType nm_wifi_factory_get_type(void);
G_DEFINE_TYPE(NMWifiFactory, nm_wifi_factory, NM_TYPE_DEVICE_FACTORY)
/*****************************************************************************/
NM_DEVICE_FACTORY_DECLARE_TYPES(
NM_DEVICE_FACTORY_DECLARE_LINK_TYPES(NM_LINK_TYPE_WIFI, NM_LINK_TYPE_OLPC_MESH)
NM_DEVICE_FACTORY_DECLARE_SETTING_TYPES(NM_SETTING_WIRELESS_SETTING_NAME,
NM_SETTING_OLPC_MESH_SETTING_NAME))
G_MODULE_EXPORT NMDeviceFactory *
nm_device_factory_create(GError **error)
{
return g_object_new(NM_TYPE_WIFI_FACTORY, NULL);
}
/*****************************************************************************/
static void
p2p_device_created(NMDeviceWifi *device, NMDeviceWifiP2P *p2p_device, NMDeviceFactory *self)
{
nm_log_info(LOGD_PLATFORM | LOGD_WIFI,
"Wi-Fi P2P device controlled by interface %s created",
nm_device_get_iface(NM_DEVICE(device)));
g_signal_emit_by_name(self, NM_DEVICE_FACTORY_DEVICE_ADDED, p2p_device);
}
#if WITH_IWD
static void
iwd_p2p_device_added(NMIwdManager *iwd,
NMDeviceIwdP2P *p2p_device,
const char *phy_name,
NMDeviceFactory *self)
{
nm_log_info(LOGD_PLATFORM | LOGD_WIFI, "Wi-Fi P2P device added on %s", phy_name);
g_signal_emit_by_name(self, NM_DEVICE_FACTORY_DEVICE_ADDED, p2p_device);
}
#endif
static NMDevice *
create_device(NMDeviceFactory *factory,
const char *iface,
const NMPlatformLink *plink,
NMConnection *connection,
gboolean *out_ignore)
{
gs_free char *backend_free = NULL;
const char *backend;
_NM80211Mode mode;
g_return_val_if_fail(iface != NULL, NULL);
g_return_val_if_fail(plink != NULL, NULL);
g_return_val_if_fail(g_strcmp0(iface, plink->name) == 0, NULL);
g_return_val_if_fail(NM_IN_SET(plink->type, NM_LINK_TYPE_WIFI, NM_LINK_TYPE_OLPC_MESH), NULL);
if (plink->type != NM_LINK_TYPE_WIFI)
return nm_device_olpc_mesh_new(iface);
/* Ignore monitor-mode and other unhandled interface types.
* FIXME: keep TYPE_MONITOR devices in UNAVAILABLE state and manage
* them if/when they change to a handled type.
*/
mode = nm_platform_wifi_get_mode(NM_PLATFORM_GET, plink->ifindex);
if (!NM_IN_SET(mode,
_NM_802_11_MODE_INFRA,
_NM_802_11_MODE_ADHOC,
_NM_802_11_MODE_AP,
_NM_802_11_MODE_MESH)) {
*out_ignore = TRUE;
return NULL;
}
backend = nm_config_data_get_device_config_by_pllink(NM_CONFIG_GET_DATA,
NM_CONFIG_KEYFILE_KEY_DEVICE_WIFI_BACKEND,
plink,
"wifi",
NULL);
backend = nm_strstrip_avoid_copy_a(300, backend, &backend_free);
if (!backend)
backend = "" NM_CONFIG_DEFAULT_WIFI_BACKEND;
nm_log_dbg(LOGD_PLATFORM | LOGD_WIFI,
"(%s) config: backend is %s%s%s%s",
iface,
NM_PRINT_FMT_QUOTE_STRING(backend),
WITH_IWD ? " (iwd support enabled)" : "");
if (!g_ascii_strcasecmp(backend, "wpa_supplicant")) {
NMDevice *device;
_NMDeviceWifiCapabilities capabilities;
if (!nm_platform_wifi_get_capabilities(NM_PLATFORM_GET, plink->ifindex, &capabilities)) {
nm_log_warn(LOGD_PLATFORM | LOGD_WIFI,
"(%s) failed to initialize Wi-Fi driver for ifindex %d",
iface,
plink->ifindex);
return NULL;
}
device = nm_device_wifi_new(iface, capabilities);
g_signal_connect_object(device,
NM_DEVICE_WIFI_P2P_DEVICE_CREATED,
G_CALLBACK(p2p_device_created),
factory,
0);
return device;
}
#if WITH_IWD
else if (!g_ascii_strcasecmp(backend, "iwd")) {
NMIwdManager *iwd = nm_iwd_manager_get();
if (!g_signal_handler_find(iwd,
G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA,
0,
0,
NULL,
G_CALLBACK(iwd_p2p_device_added),
factory))
g_signal_connect(iwd,
NM_IWD_MANAGER_P2P_DEVICE_ADDED,
G_CALLBACK(iwd_p2p_device_added),
factory);
return nm_device_iwd_new(iface);
}
#endif
nm_log_warn(LOGD_PLATFORM | LOGD_WIFI,
"(%s) config: unknown or unsupported wifi-backend %s",
iface,
backend);
return NULL;
}
/*****************************************************************************/
static void
nm_wifi_factory_init(NMWifiFactory *self)
{}
static void
nm_wifi_factory_class_init(NMWifiFactoryClass *klass)
{
NMDeviceFactoryClass *factory_class = NM_DEVICE_FACTORY_CLASS(klass);
factory_class->create_device = create_device;
factory_class->get_supported_types = get_supported_types;
}
|