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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2013 Red Hat, Inc.
*/
/**
* SECTION:nmt-page-ethernet
* @short_description: The editor page for Ethernet connections
*/
#include "libnm-client-aux-extern/nm-default-client.h"
#include "nmt-page-ethernet.h"
#include <linux/if_ether.h>
#include <linux/if_infiniband.h>
#include "libnm-core-aux-intern/nm-libnm-core-utils.h"
#include "nmt-mac-entry.h"
#include "nmt-mtu-entry.h"
#include "nmt-8021x-fields.h"
typedef struct {
NMSetting8021x *s_8021x;
NmtNewtWidget *dot1x_fields;
} NmtPageEthernetPrivate;
struct _NmtPageEthernet {
NmtEditorPageDevice parent;
NmtPageEthernetPrivate _priv;
};
struct _NmtPageEthernetClass {
NmtEditorPageDeviceClass parent;
};
G_DEFINE_TYPE(NmtPageEthernet, nmt_page_ethernet, NMT_TYPE_EDITOR_PAGE_DEVICE)
#define NMT_PAGE_ETHERNET_GET_PRIVATE(self) \
_NM_GET_PRIVATE(self, NmtPageEthernet, NMT_IS_PAGE_ETHERNET)
NmtEditorPage *
nmt_page_ethernet_new(NMConnection *conn, NmtDeviceEntry *deventry)
{
return g_object_new(NMT_TYPE_PAGE_ETHERNET, "connection", conn, "device-entry", deventry, NULL);
}
static void
nmt_page_ethernet_init(NmtPageEthernet *ethernet)
{}
static void
checkbox_8021x_changed(NmtNewtWidget *widget, GParamSpec *pspec, gpointer user_data)
{
NMConnection *conn;
NmtPageEthernet *ethernet = NMT_PAGE_ETHERNET(user_data);
NmtPageEthernetPrivate *priv = NMT_PAGE_ETHERNET_GET_PRIVATE(ethernet);
gboolean active;
gboolean has;
conn = nmt_editor_page_get_connection(NMT_EDITOR_PAGE(ethernet));
active = nmt_newt_checkbox_get_active(NMT_NEWT_CHECKBOX(widget));
has = !!nm_connection_get_setting(conn, NM_TYPE_SETTING_802_1X);
if (active != has) {
if (active)
nm_connection_add_setting(conn, NM_SETTING(priv->s_8021x));
else
nm_connection_remove_setting(conn, NM_TYPE_SETTING_802_1X);
}
nmt_newt_widget_set_visible(NMT_NEWT_WIDGET(priv->dot1x_fields), active);
}
static void
nmt_page_ethernet_constructed(GObject *object)
{
NmtPageEthernet *ethernet = NMT_PAGE_ETHERNET(object);
NmtPageEthernetPrivate *priv = NMT_PAGE_ETHERNET_GET_PRIVATE(object);
NmtDeviceEntry *deventry;
NmtEditorSection *section;
NmtEditorGrid *grid;
NMSettingWired *s_wired;
NMSetting8021x *s_8021x;
NmtNewtWidget *widget;
NMConnection *conn;
gboolean has_8021x;
conn = nmt_editor_page_get_connection(NMT_EDITOR_PAGE(ethernet));
s_wired = _nm_connection_ensure_setting(conn, NM_TYPE_SETTING_WIRED);
s_8021x = nm_connection_get_setting_802_1x(conn);
has_8021x = !!s_8021x;
if (!s_8021x) {
s_8021x = NM_SETTING_802_1X(nm_setting_802_1x_new());
nm_setting_802_1x_add_eap_method(s_8021x, "TLS");
}
priv->s_8021x = g_object_ref(s_8021x);
deventry = nmt_editor_page_device_get_device_entry(NMT_EDITOR_PAGE_DEVICE(object));
g_object_bind_property(s_wired,
NM_SETTING_WIRED_MAC_ADDRESS,
deventry,
"mac-address",
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
section = nmt_editor_section_new(_("ETHERNET"), NULL, FALSE);
grid = nmt_editor_section_get_body(section);
widget = nmt_mac_entry_new(40, ETH_ALEN, NMT_MAC_ENTRY_TYPE_CLONED_ETHERNET);
g_object_bind_property(s_wired,
NM_SETTING_WIRED_CLONED_MAC_ADDRESS,
widget,
"mac-address",
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
nmt_editor_grid_append(grid, _("Cloned MAC address"), widget, NULL);
widget = nmt_mtu_entry_new();
g_object_bind_property(s_wired,
NM_SETTING_WIRED_MTU,
widget,
"mtu",
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
nmt_editor_grid_append(grid, _("MTU"), widget, NULL);
nmt_editor_page_add_section(NMT_EDITOR_PAGE(ethernet), section);
/* 802.1X security */
section = nmt_editor_section_new(_("802.1X SECURITY"), NULL, has_8021x);
grid = nmt_editor_section_get_body(section);
widget = nmt_newt_checkbox_new(_("Enable 802.1X security"));
nmt_newt_checkbox_set_active(NMT_NEWT_CHECKBOX(widget), has_8021x);
g_signal_connect(widget, "notify::active", G_CALLBACK(checkbox_8021x_changed), ethernet);
nmt_editor_grid_append(grid, NULL, widget, NULL);
priv->dot1x_fields = NMT_NEWT_WIDGET(nmt_8021x_fields_new(s_8021x, TRUE));
checkbox_8021x_changed(widget, NULL, ethernet);
nmt_editor_grid_append(grid, NULL, priv->dot1x_fields, NULL);
nmt_editor_page_add_section(NMT_EDITOR_PAGE(ethernet), section);
G_OBJECT_CLASS(nmt_page_ethernet_parent_class)->constructed(object);
}
static void
nmt_page_ethernet_finalize(GObject *object)
{
NmtPageEthernetPrivate *priv = NMT_PAGE_ETHERNET_GET_PRIVATE(object);
g_clear_object(&priv->s_8021x);
G_OBJECT_CLASS(nmt_page_ethernet_parent_class)->finalize(object);
}
static void
nmt_page_ethernet_class_init(NmtPageEthernetClass *ethernet_class)
{
GObjectClass *object_class = G_OBJECT_CLASS(ethernet_class);
object_class->constructed = nmt_page_ethernet_constructed;
object_class->finalize = nmt_page_ethernet_finalize;
}
|