]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-network.h
hibernate-resume: add resumeflags= kernel option
[thirdparty/systemd.git] / src / network / networkd-network.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "sd-bus.h"
5 #include "sd-device.h"
6
7 #include "condition.h"
8 #include "conf-parser.h"
9 #include "dhcp-identifier.h"
10 #include "hashmap.h"
11 #include "netdev/bridge.h"
12 #include "netdev/netdev.h"
13 #include "networkd-address-label.h"
14 #include "networkd-address.h"
15 #include "networkd-brvlan.h"
16 #include "networkd-fdb.h"
17 #include "networkd-ipv6-proxy-ndp.h"
18 #include "networkd-lldp-rx.h"
19 #include "networkd-lldp-tx.h"
20 #include "networkd-neighbor.h"
21 #include "networkd-radv.h"
22 #include "networkd-route.h"
23 #include "networkd-routing-policy-rule.h"
24 #include "networkd-util.h"
25 #include "ordered-set.h"
26 #include "resolve-util.h"
27
28 #define DHCP_ROUTE_METRIC 1024
29 #define IPV4LL_ROUTE_METRIC 2048
30
31 #define BRIDGE_VLAN_BITMAP_MAX 4096
32 #define BRIDGE_VLAN_BITMAP_LEN (BRIDGE_VLAN_BITMAP_MAX / 32)
33
34 typedef enum DHCPClientIdentifier {
35 DHCP_CLIENT_ID_MAC,
36 DHCP_CLIENT_ID_DUID,
37 /* The following option may not be good for RFC regarding DHCP (3315 and 4361).
38 * But some setups require this. E.g., Sky Broadband, the second largest provider in the UK
39 * requires the client id to be set to a custom string, reported at
40 * https://github.com/systemd/systemd/issues/7828 */
41 DHCP_CLIENT_ID_DUID_ONLY,
42 _DHCP_CLIENT_ID_MAX,
43 _DHCP_CLIENT_ID_INVALID = -1,
44 } DHCPClientIdentifier;
45
46 typedef enum IPv6PrivacyExtensions {
47 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
48 IPV6_PRIVACY_EXTENSIONS_NO,
49 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
50 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
51 _IPV6_PRIVACY_EXTENSIONS_MAX,
52 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
53 } IPv6PrivacyExtensions;
54
55 typedef enum DHCPUseDomains {
56 DHCP_USE_DOMAINS_NO,
57 DHCP_USE_DOMAINS_YES,
58 DHCP_USE_DOMAINS_ROUTE,
59 _DHCP_USE_DOMAINS_MAX,
60 _DHCP_USE_DOMAINS_INVALID = -1,
61 } DHCPUseDomains;
62
63 typedef struct DUID {
64 /* Value of Type in [DHCP] section */
65 DUIDType type;
66
67 uint8_t raw_data_len;
68 uint8_t raw_data[MAX_DUID_LEN];
69 usec_t llt_time;
70 } DUID;
71
72 typedef enum RADVPrefixDelegation {
73 RADV_PREFIX_DELEGATION_NONE,
74 RADV_PREFIX_DELEGATION_STATIC,
75 RADV_PREFIX_DELEGATION_DHCP6,
76 RADV_PREFIX_DELEGATION_BOTH,
77 _RADV_PREFIX_DELEGATION_MAX,
78 _RADV_PREFIX_DELEGATION_INVALID = -1,
79 } RADVPrefixDelegation;
80
81 typedef struct Manager Manager;
82
83 struct Network {
84 Manager *manager;
85
86 char *filename;
87 char *name;
88
89 unsigned n_ref;
90
91 Set *match_mac;
92 char **match_path;
93 char **match_driver;
94 char **match_type;
95 char **match_name;
96 LIST_HEAD(Condition, conditions);
97
98 char *description;
99
100 NetDev *bridge;
101 NetDev *bond;
102 NetDev *vrf;
103 Hashmap *stacked_netdevs;
104 char *bridge_name;
105 char *bond_name;
106 char *vrf_name;
107 Hashmap *stacked_netdev_names;
108
109 /* DHCP Client Support */
110 AddressFamilyBoolean dhcp;
111 DHCPClientIdentifier dhcp_client_identifier;
112 char *dhcp_vendor_class_identifier;
113 char **dhcp_user_class;
114 char *dhcp_hostname;
115 uint64_t dhcp_max_attempts;
116 unsigned dhcp_route_metric;
117 uint32_t dhcp_route_table;
118 uint16_t dhcp_client_port;
119 bool dhcp_anonymize;
120 bool dhcp_send_hostname;
121 bool dhcp_broadcast;
122 bool dhcp_critical;
123 bool dhcp_use_dns;
124 bool dhcp_use_ntp;
125 bool dhcp_use_mtu;
126 bool dhcp_use_routes;
127 bool dhcp_use_timezone;
128 bool rapid_commit;
129 bool dhcp_use_hostname;
130 bool dhcp_route_table_set;
131 bool dhcp_send_release;
132 DHCPUseDomains dhcp_use_domains;
133 Set *dhcp_black_listed_ip;
134
135 /* DHCP Server Support */
136 bool dhcp_server;
137 bool dhcp_server_emit_dns;
138 struct in_addr *dhcp_server_dns;
139 unsigned n_dhcp_server_dns;
140 bool dhcp_server_emit_ntp;
141 struct in_addr *dhcp_server_ntp;
142 unsigned n_dhcp_server_ntp;
143 bool dhcp_server_emit_router;
144 bool dhcp_server_emit_timezone;
145 char *dhcp_server_timezone;
146 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
147 uint32_t dhcp_server_pool_offset;
148 uint32_t dhcp_server_pool_size;
149
150 /* IPV4LL Support */
151 AddressFamilyBoolean link_local;
152 bool ipv4ll_route;
153
154 bool default_route_on_device;
155
156 /* IPv6 prefix delegation support */
157 RADVPrefixDelegation router_prefix_delegation;
158 usec_t router_lifetime_usec;
159 uint8_t router_preference;
160 bool router_managed;
161 bool router_other_information;
162 bool router_emit_dns;
163 bool router_emit_domains;
164 usec_t router_dns_lifetime_usec;
165 struct in6_addr *router_dns;
166 unsigned n_router_dns;
167 OrderedSet *router_search_domains;
168 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
169 RA flag is set, see RFC 7084,
170 WPD-4 */
171
172 /* Bridge Support */
173 int use_bpdu;
174 int hairpin;
175 int fast_leave;
176 int allow_port_to_be_root;
177 int unicast_flood;
178 int multicast_flood;
179 int multicast_to_unicast;
180 int neighbor_suppression;
181 int learning;
182 int bridge_proxy_arp;
183 int bridge_proxy_arp_wifi;
184 uint32_t cost;
185 uint16_t priority;
186 MulticastRouter multicast_router;
187
188 bool use_br_vlan;
189 uint16_t pvid;
190 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
191 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
192
193 /* CAN support */
194 size_t can_bitrate;
195 unsigned can_sample_point;
196 usec_t can_restart_us;
197 int can_triple_sampling;
198
199 AddressFamilyBoolean ip_forward;
200 bool ip_masquerade;
201
202 int ipv6_accept_ra;
203 int ipv6_dad_transmits;
204 int ipv6_hop_limit;
205 int ipv6_proxy_ndp;
206 int proxy_arp;
207 uint32_t ipv6_mtu;
208
209 bool ipv6_accept_ra_use_dns;
210 bool ipv6_accept_ra_use_autonomous_prefix;
211 bool ipv6_accept_ra_use_onlink_prefix;
212 bool active_slave;
213 bool primary_slave;
214 DHCPUseDomains ipv6_accept_ra_use_domains;
215 uint32_t ipv6_accept_ra_route_table;
216 bool ipv6_accept_ra_route_table_set;
217 Set *ndisc_black_listed_prefix;
218
219 union in_addr_union ipv6_token;
220 IPv6PrivacyExtensions ipv6_privacy_extensions;
221
222 struct ether_addr *mac;
223 uint32_t mtu;
224 int arp;
225 int multicast;
226 int allmulticast;
227 bool unmanaged;
228 bool configure_without_carrier;
229 bool ignore_carrier_loss;
230 uint32_t iaid;
231 DUID duid;
232
233 bool iaid_set;
234
235 bool required_for_online; /* Is this network required to be considered online? */
236 LinkOperationalState required_operstate_for_online;
237
238 LLDPMode lldp_mode; /* LLDP reception */
239 LLDPEmit lldp_emit; /* LLDP transmission */
240
241 LIST_HEAD(Address, static_addresses);
242 LIST_HEAD(Route, static_routes);
243 LIST_HEAD(FdbEntry, static_fdb_entries);
244 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
245 LIST_HEAD(Neighbor, neighbors);
246 LIST_HEAD(AddressLabel, address_labels);
247 LIST_HEAD(Prefix, static_prefixes);
248 LIST_HEAD(RoutingPolicyRule, rules);
249
250 unsigned n_static_addresses;
251 unsigned n_static_routes;
252 unsigned n_static_fdb_entries;
253 unsigned n_ipv6_proxy_ndp_addresses;
254 unsigned n_neighbors;
255 unsigned n_address_labels;
256 unsigned n_static_prefixes;
257 unsigned n_rules;
258
259 Hashmap *addresses_by_section;
260 Hashmap *routes_by_section;
261 Hashmap *fdb_entries_by_section;
262 Hashmap *neighbors_by_section;
263 Hashmap *address_labels_by_section;
264 Hashmap *prefixes_by_section;
265 Hashmap *rules_by_section;
266
267 /* All kinds of DNS configuration */
268 struct in_addr_data *dns;
269 unsigned n_dns;
270 OrderedSet *search_domains, *route_domains;
271
272 int dns_default_route;
273 ResolveSupport llmnr;
274 ResolveSupport mdns;
275 DnssecMode dnssec_mode;
276 DnsOverTlsMode dns_over_tls_mode;
277 Set *dnssec_negative_trust_anchors;
278
279 char **ntp;
280 char **bind_carrier;
281 };
282
283 Network *network_ref(Network *network);
284 Network *network_unref(Network *network);
285 DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
286
287 int network_load(Manager *manager);
288 int network_load_one(Manager *manager, const char *filename);
289 int network_verify(Network *network);
290
291 int network_get_by_name(Manager *manager, const char *name, Network **ret);
292 int network_get(Manager *manager, sd_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
293 int network_apply(Network *network, Link *link);
294 void network_apply_anonymize_if_set(Network *network);
295
296 bool network_has_static_ipv6_addresses(Network *network);
297
298 CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
299 CONFIG_PARSER_PROTOTYPE(config_parse_domains);
300 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
301 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp);
302 CONFIG_PARSER_PROTOTYPE(config_parse_dns);
303 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_client_identifier);
304 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
305 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
306 CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
307 CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
308 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_dns);
309 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_black_listed_ip_address);
310 CONFIG_PARSER_PROTOTYPE(config_parse_radv_dns);
311 CONFIG_PARSER_PROTOTYPE(config_parse_radv_search_domains);
312 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_ntp);
313 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
314 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_use_domains);
315 CONFIG_PARSER_PROTOTYPE(config_parse_section_route_table);
316 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_user_class);
317 CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
318 CONFIG_PARSER_PROTOTYPE(config_parse_iaid);
319 CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
320 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_max_attempts);
321 /* Legacy IPv4LL support */
322 CONFIG_PARSER_PROTOTYPE(config_parse_ipv4ll);
323
324 const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
325
326 extern const sd_bus_vtable network_vtable[];
327
328 int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
329 int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
330
331 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
332 IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
333
334 const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
335 DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
336
337 const char* radv_prefix_delegation_to_string(RADVPrefixDelegation i) _const_;
338 RADVPrefixDelegation radv_prefix_delegation_from_string(const char *s) _pure_;