]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-network.h
Merge pull request #12489 from ssahani/vxlan
[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 Manager Manager;
88
89 struct Network {
90 Manager *manager;
91
92 char *filename;
93 char *name;
94
95 unsigned n_ref;
96
97 Set *match_mac;
98 char **match_path;
99 char **match_driver;
100 char **match_type;
101 char **match_name;
102 LIST_HEAD(Condition, conditions);
103
104 char *description;
105
106 NetDev *bridge;
107 NetDev *bond;
108 NetDev *vrf;
109 Hashmap *stacked_netdevs;
110 char *bridge_name;
111 char *bond_name;
112 char *vrf_name;
113 Hashmap *stacked_netdev_names;
114
115 /* DHCP Client Support */
116 AddressFamilyBoolean dhcp;
117 DHCPClientIdentifier dhcp_client_identifier;
118 char *dhcp_vendor_class_identifier;
119 char **dhcp_user_class;
120 char *dhcp_hostname;
121 uint64_t dhcp_max_attempts;
122 unsigned dhcp_route_metric;
123 uint32_t dhcp_route_table;
124 uint16_t dhcp_client_port;
125 bool dhcp_anonymize;
126 bool dhcp_send_hostname;
127 bool dhcp_broadcast;
128 bool dhcp_critical;
129 bool dhcp_use_dns;
130 bool dhcp_use_ntp;
131 bool dhcp_use_mtu;
132 bool dhcp_use_routes;
133 bool dhcp_use_timezone;
134 bool rapid_commit;
135 bool dhcp_use_hostname;
136 bool dhcp_route_table_set;
137 DHCPUseDomains dhcp_use_domains;
138
139 /* DHCP Server Support */
140 bool dhcp_server;
141 bool dhcp_server_emit_dns;
142 struct in_addr *dhcp_server_dns;
143 unsigned n_dhcp_server_dns;
144 bool dhcp_server_emit_ntp;
145 struct in_addr *dhcp_server_ntp;
146 unsigned n_dhcp_server_ntp;
147 bool dhcp_server_emit_router;
148 bool dhcp_server_emit_timezone;
149 char *dhcp_server_timezone;
150 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
151 uint32_t dhcp_server_pool_offset;
152 uint32_t dhcp_server_pool_size;
153
154 /* IPV4LL Support */
155 AddressFamilyBoolean link_local;
156 bool ipv4ll_route;
157
158 /* IPv6 prefix delegation support */
159 RADVPrefixDelegation router_prefix_delegation;
160 usec_t router_lifetime_usec;
161 uint8_t router_preference;
162 bool router_managed;
163 bool router_other_information;
164 bool router_emit_dns;
165 bool router_emit_domains;
166 usec_t router_dns_lifetime_usec;
167 struct in6_addr *router_dns;
168 unsigned n_router_dns;
169 OrderedSet *router_search_domains;
170 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
171 RA flag is set, see RFC 7084,
172 WPD-4 */
173
174 /* Bridge Support */
175 int use_bpdu;
176 int hairpin;
177 int fast_leave;
178 int allow_port_to_be_root;
179 int unicast_flood;
180 int multicast_flood;
181 int multicast_to_unicast;
182 int neighbor_suppression;
183 int learning;
184 uint32_t cost;
185 uint16_t priority;
186
187 bool use_br_vlan;
188 uint16_t pvid;
189 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
190 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
191
192 /* CAN support */
193 size_t can_bitrate;
194 unsigned can_sample_point;
195 usec_t can_restart_us;
196 int can_triple_sampling;
197
198 AddressFamilyBoolean ip_forward;
199 bool ip_masquerade;
200
201 int ipv6_accept_ra;
202 int ipv6_dad_transmits;
203 int ipv6_hop_limit;
204 int ipv6_proxy_ndp;
205 int proxy_arp;
206 uint32_t ipv6_mtu;
207
208 bool ipv6_accept_ra_use_dns;
209 bool ipv6_accept_ra_use_autonomous_prefix;
210 bool ipv6_accept_ra_use_onlink_prefix;
211 bool active_slave;
212 bool primary_slave;
213 DHCPUseDomains ipv6_accept_ra_use_domains;
214 uint32_t ipv6_accept_ra_route_table;
215 bool ipv6_accept_ra_route_table_set;
216
217 union in_addr_union ipv6_token;
218 IPv6PrivacyExtensions ipv6_privacy_extensions;
219
220 struct ether_addr *mac;
221 uint32_t mtu;
222 bool mtu_is_set; /* Indicate MTUBytes= is specified. */
223 int arp;
224 int multicast;
225 int allmulticast;
226 bool unmanaged;
227 bool configure_without_carrier;
228 bool ignore_carrier_loss;
229 uint32_t iaid;
230 DUID duid;
231
232 bool iaid_set;
233
234 bool required_for_online; /* Is this network required to be considered online? */
235 LinkOperationalState required_operstate_for_online;
236
237 LLDPMode lldp_mode; /* LLDP reception */
238 LLDPEmit lldp_emit; /* LLDP transmission */
239
240 LIST_HEAD(Address, static_addresses);
241 LIST_HEAD(Route, static_routes);
242 LIST_HEAD(FdbEntry, static_fdb_entries);
243 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
244 LIST_HEAD(Neighbor, neighbors);
245 LIST_HEAD(AddressLabel, address_labels);
246 LIST_HEAD(Prefix, static_prefixes);
247 LIST_HEAD(RoutingPolicyRule, rules);
248
249 unsigned n_static_addresses;
250 unsigned n_static_routes;
251 unsigned n_static_fdb_entries;
252 unsigned n_ipv6_proxy_ndp_addresses;
253 unsigned n_neighbors;
254 unsigned n_address_labels;
255 unsigned n_static_prefixes;
256 unsigned n_rules;
257
258 Hashmap *addresses_by_section;
259 Hashmap *routes_by_section;
260 Hashmap *fdb_entries_by_section;
261 Hashmap *neighbors_by_section;
262 Hashmap *address_labels_by_section;
263 Hashmap *prefixes_by_section;
264 Hashmap *rules_by_section;
265
266 /* All kinds of DNS configuration */
267 struct in_addr_data *dns;
268 unsigned n_dns;
269 OrderedSet *search_domains, *route_domains;
270
271 int dns_default_route;
272 ResolveSupport llmnr;
273 ResolveSupport mdns;
274 DnssecMode dnssec_mode;
275 DnsOverTlsMode dns_over_tls_mode;
276 Set *dnssec_negative_trust_anchors;
277
278 char **ntp;
279 char **bind_carrier;
280 };
281
282 Network *network_ref(Network *network);
283 Network *network_unref(Network *network);
284 DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
285
286 int network_load(Manager *manager);
287 int network_load_one(Manager *manager, const char *filename);
288 int network_verify(Network *network);
289
290 int network_get_by_name(Manager *manager, const char *name, Network **ret);
291 int network_get(Manager *manager, sd_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
292 int network_apply(Network *network, Link *link);
293 void network_apply_anonymize_if_set(Network *network);
294
295 bool network_has_static_ipv6_addresses(Network *network);
296
297 CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
298 CONFIG_PARSER_PROTOTYPE(config_parse_domains);
299 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
300 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp);
301 CONFIG_PARSER_PROTOTYPE(config_parse_dns);
302 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_client_identifier);
303 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
304 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
305 CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
306 CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
307 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_dns);
308 CONFIG_PARSER_PROTOTYPE(config_parse_radv_dns);
309 CONFIG_PARSER_PROTOTYPE(config_parse_radv_search_domains);
310 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_ntp);
311 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
312 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_use_domains);
313 CONFIG_PARSER_PROTOTYPE(config_parse_lldp_mode);
314 CONFIG_PARSER_PROTOTYPE(config_parse_section_route_table);
315 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_user_class);
316 CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
317 CONFIG_PARSER_PROTOTYPE(config_parse_iaid);
318 CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
319 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_max_attempts);
320 /* Legacy IPv4LL support */
321 CONFIG_PARSER_PROTOTYPE(config_parse_ipv4ll);
322
323 const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
324
325 extern const sd_bus_vtable network_vtable[];
326
327 int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
328 int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
329
330 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
331 IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
332
333 const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
334 DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
335
336 const char* lldp_mode_to_string(LLDPMode m) _const_;
337 LLDPMode lldp_mode_from_string(const char *s) _pure_;
338
339 const char* radv_prefix_delegation_to_string(RADVPrefixDelegation i) _const_;
340 RADVPrefixDelegation radv_prefix_delegation_from_string(const char *s) _pure_;