]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-link.h
Merge pull request #16635 from keszybz/do-not-for-each-word
[thirdparty/systemd.git] / src / network / networkd-link.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <endian.h>
5 #include <linux/nl80211.h>
6
7 #include "sd-bus.h"
8 #include "sd-device.h"
9 #include "sd-dhcp-client.h"
10 #include "sd-dhcp-server.h"
11 #include "sd-dhcp6-client.h"
12 #include "sd-ipv4ll.h"
13 #include "sd-lldp.h"
14 #include "sd-ndisc.h"
15 #include "sd-radv.h"
16 #include "sd-netlink.h"
17
18 #include "list.h"
19 #include "log-link.h"
20 #include "network-util.h"
21 #include "networkd-util.h"
22 #include "ordered-set.h"
23 #include "resolve-util.h"
24 #include "set.h"
25
26 typedef enum LinkState {
27 LINK_STATE_PENDING, /* udev has not initialized the link */
28 LINK_STATE_INITIALIZED, /* udev has initialized the link */
29 LINK_STATE_CONFIGURING, /* configuring addresses, routes, etc. */
30 LINK_STATE_CONFIGURED, /* everything is configured */
31 LINK_STATE_UNMANAGED, /* Unmanaged=yes is set */
32 LINK_STATE_FAILED, /* at least one configuration process failed */
33 LINK_STATE_LINGER, /* RTM_DELLINK for the link has been received */
34 _LINK_STATE_MAX,
35 _LINK_STATE_INVALID = -1
36 } LinkState;
37
38 typedef struct Manager Manager;
39 typedef struct Network Network;
40 typedef struct Address Address;
41 typedef struct DUID DUID;
42
43 typedef struct Link {
44 Manager *manager;
45
46 unsigned n_ref;
47
48 int ifindex;
49 int master_ifindex;
50 char *ifname;
51 char **alternative_names;
52 char *kind;
53 unsigned short iftype;
54 char *state_file;
55 struct ether_addr mac;
56 struct ether_addr permanent_mac;
57 struct in6_addr ipv6ll_address;
58 uint32_t mtu;
59 sd_device *sd_device;
60 char *driver;
61
62 /* wlan */
63 enum nl80211_iftype wlan_iftype;
64 char *ssid;
65 struct ether_addr bssid;
66
67 unsigned flags;
68 uint8_t kernel_operstate;
69
70 Network *network;
71
72 LinkState state;
73 LinkOperationalState operstate;
74 LinkCarrierState carrier_state;
75 LinkAddressState address_state;
76
77 unsigned address_messages;
78 unsigned address_remove_messages;
79 unsigned address_label_messages;
80 unsigned neighbor_messages;
81 unsigned route_messages;
82 unsigned nexthop_messages;
83 unsigned routing_policy_rule_messages;
84 unsigned routing_policy_rule_remove_messages;
85 unsigned tc_messages;
86 unsigned sr_iov_messages;
87 unsigned enslaving;
88
89 Set *addresses;
90 Set *addresses_foreign;
91 Set *static_addresses;
92 Set *neighbors;
93 Set *neighbors_foreign;
94 Set *routes;
95 Set *routes_foreign;
96 Set *nexthops;
97 Set *nexthops_foreign;
98
99 sd_dhcp_client *dhcp_client;
100 sd_dhcp_lease *dhcp_lease;
101 Address *dhcp_address, *dhcp_address_old;
102 Set *dhcp_routes, *dhcp_routes_old;
103 char *lease_file;
104 uint32_t original_mtu;
105 unsigned dhcp4_messages;
106 unsigned dhcp4_remove_messages;
107 bool dhcp4_route_failed:1;
108 bool dhcp4_route_retrying:1;
109 bool dhcp4_configured:1;
110 bool dhcp4_address_bind:1;
111
112 sd_ipv4ll *ipv4ll;
113 bool ipv4ll_address_configured:1;
114
115 bool request_static_addresses:1;
116 bool addresses_configured:1;
117 bool addresses_ready:1;
118 bool neighbors_configured:1;
119 bool static_routes_configured:1;
120 bool static_nexthops_configured:1;
121 bool routing_policy_rules_configured:1;
122 bool tc_configured:1;
123 bool sr_iov_configured:1;
124 bool setting_mtu:1;
125 bool setting_genmode:1;
126 bool ipv6_mtu_set:1;
127
128 LIST_HEAD(Address, pool_addresses);
129
130 sd_dhcp_server *dhcp_server;
131
132 sd_ndisc *ndisc;
133 Set *ndisc_rdnss;
134 Set *ndisc_dnssl;
135 Set *ndisc_addresses;
136 Set *ndisc_routes;
137 unsigned ndisc_addresses_messages;
138 unsigned ndisc_routes_messages;
139 bool ndisc_addresses_configured:1;
140 bool ndisc_routes_configured:1;
141
142 sd_radv *radv;
143
144 sd_dhcp6_client *dhcp6_client;
145 sd_dhcp6_lease *dhcp6_lease;
146 Set *dhcp6_addresses, *dhcp6_addresses_old;
147 Set *dhcp6_routes, *dhcp6_routes_old;
148 Set *dhcp6_pd_addresses, *dhcp6_pd_addresses_old;
149 Set *dhcp6_pd_routes, *dhcp6_pd_routes_old;
150 unsigned dhcp6_address_messages;
151 unsigned dhcp6_route_messages;
152 unsigned dhcp6_pd_address_messages;
153 unsigned dhcp6_pd_route_messages;
154 bool dhcp6_address_configured:1;
155 bool dhcp6_route_configured:1;
156 bool dhcp6_pd_address_configured:1;
157 bool dhcp6_pd_route_configured:1;
158 bool dhcp6_pd_prefixes_assigned:1;
159
160 /* This is about LLDP reception */
161 sd_lldp *lldp;
162 char *lldp_file;
163
164 /* This is about LLDP transmission */
165 unsigned lldp_tx_fast; /* The LLDP txFast counter (See 802.1ab-2009, section 9.2.5.18) */
166 sd_event_source *lldp_emit_event_source;
167
168 Hashmap *bound_by_links;
169 Hashmap *bound_to_links;
170 Set *slaves;
171
172 /* For speed meter */
173 struct rtnl_link_stats64 stats_old, stats_new;
174 bool stats_updated;
175
176 /* All kinds of DNS configuration the user configured via D-Bus */
177 struct in_addr_full **dns;
178 unsigned n_dns;
179 OrderedSet *search_domains, *route_domains;
180
181 int dns_default_route;
182 ResolveSupport llmnr;
183 ResolveSupport mdns;
184 DnssecMode dnssec_mode;
185 DnsOverTlsMode dns_over_tls_mode;
186 Set *dnssec_negative_trust_anchors;
187
188 /* Similar, but NTP server configuration */
189 char **ntp;
190 } Link;
191
192 typedef int (*link_netlink_message_handler_t)(sd_netlink*, sd_netlink_message*, Link*);
193
194 DUID *link_get_duid(Link *link);
195 int get_product_uuid_handler(sd_bus_message *m, void *userdata, sd_bus_error *ret_error);
196
197 void link_ntp_settings_clear(Link *link);
198 void link_dns_settings_clear(Link *link);
199 Link *link_unref(Link *link);
200 Link *link_ref(Link *link);
201 DEFINE_TRIVIAL_CLEANUP_FUNC(Link*, link_unref);
202 DEFINE_TRIVIAL_DESTRUCTOR(link_netlink_destroy_callback, Link, link_unref);
203
204 int link_get(Manager *m, int ifindex, Link **ret);
205 int link_add(Manager *manager, sd_netlink_message *message, Link **ret);
206 void link_drop(Link *link);
207
208 int link_down(Link *link, link_netlink_message_handler_t callback);
209
210 void link_enter_failed(Link *link);
211 int link_initialized(Link *link, sd_device *device);
212
213 void link_set_state(Link *link, LinkState state);
214 void link_check_ready(Link *link);
215
216 void link_update_operstate(Link *link, bool also_update_bond_master);
217 int link_update(Link *link, sd_netlink_message *message);
218
219 void link_dirty(Link *link);
220 void link_clean(Link *link);
221 int link_save(Link *link);
222 int link_save_and_clean(Link *link);
223
224 int link_carrier_reset(Link *link);
225 bool link_has_carrier(Link *link);
226
227 int link_ipv6ll_gained(Link *link, const struct in6_addr *address);
228
229 int link_set_mtu(Link *link, uint32_t mtu);
230
231 bool link_ipv4ll_enabled(Link *link, AddressFamily mask);
232
233 int link_stop_clients(Link *link, bool may_keep_dhcp);
234
235 const char* link_state_to_string(LinkState s) _const_;
236 LinkState link_state_from_string(const char *s) _pure_;
237
238 uint32_t link_get_vrf_table(Link *link);
239 uint32_t link_get_dhcp_route_table(Link *link);
240 uint32_t link_get_ipv6_accept_ra_route_table(Link *link);
241 int link_request_set_routes(Link *link);
242
243 int link_reconfigure(Link *link, bool force);
244
245 int log_link_message_full_errno(Link *link, sd_netlink_message *m, int level, int err, const char *msg);
246 #define log_link_message_error_errno(link, m, err, msg) log_link_message_full_errno(link, m, LOG_ERR, err, msg)
247 #define log_link_message_warning_errno(link, m, err, msg) log_link_message_full_errno(link, m, LOG_WARNING, err, msg)
248 #define log_link_message_notice_errno(link, m, err, msg) log_link_message_full_errno(link, m, LOG_NOTICE, err, msg)
249 #define log_link_message_info_errno(link, m, err, msg) log_link_message_full_errno(link, m, LOG_INFO, err, msg)
250 #define log_link_message_debug_errno(link, m, err, msg) log_link_message_full_errno(link, m, LOG_DEBUG, err, msg)
251
252 #define ADDRESS_FMT_VAL(address) \
253 be32toh((address).s_addr) >> 24, \
254 (be32toh((address).s_addr) >> 16) & 0xFFu, \
255 (be32toh((address).s_addr) >> 8) & 0xFFu, \
256 be32toh((address).s_addr) & 0xFFu