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