]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-network.h
00ecac6ca9421d60d3499eac5c38c01b06cdcc3e
[thirdparty/systemd.git] / src / network / networkd-network.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <linux/nl80211.h>
5
6 #include "sd-bus.h"
7 #include "sd-device.h"
8 #include "sd-ipv4acd.h"
9
10 #include "bridge.h"
11 #include "condition.h"
12 #include "conf-parser.h"
13 #include "hashmap.h"
14 #include "netdev.h"
15 #include "networkd-address-label.h"
16 #include "networkd-address.h"
17 #include "networkd-brvlan.h"
18 #include "networkd-dhcp-common.h"
19 #include "networkd-dhcp4.h"
20 #include "networkd-dhcp-server.h"
21 #include "networkd-fdb.h"
22 #include "networkd-ipv6-proxy-ndp.h"
23 #include "networkd-lldp-rx.h"
24 #include "networkd-lldp-tx.h"
25 #include "networkd-ndisc.h"
26 #include "networkd-neighbor.h"
27 #include "networkd-nexthop.h"
28 #include "networkd-radv.h"
29 #include "networkd-route.h"
30 #include "networkd-routing-policy-rule.h"
31 #include "networkd-util.h"
32 #include "ordered-set.h"
33 #include "resolve-util.h"
34
35 typedef enum IPv6PrivacyExtensions {
36 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
37 IPV6_PRIVACY_EXTENSIONS_NO,
38 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
39 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
40 _IPV6_PRIVACY_EXTENSIONS_MAX,
41 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
42 } IPv6PrivacyExtensions;
43
44 typedef enum KeepConfiguration {
45 KEEP_CONFIGURATION_NO = 0,
46 KEEP_CONFIGURATION_DHCP_ON_START = 1 << 0,
47 KEEP_CONFIGURATION_DHCP_ON_STOP = 1 << 1,
48 KEEP_CONFIGURATION_DHCP = KEEP_CONFIGURATION_DHCP_ON_START | KEEP_CONFIGURATION_DHCP_ON_STOP,
49 KEEP_CONFIGURATION_STATIC = 1 << 2,
50 KEEP_CONFIGURATION_YES = KEEP_CONFIGURATION_DHCP | KEEP_CONFIGURATION_STATIC,
51 _KEEP_CONFIGURATION_MAX,
52 _KEEP_CONFIGURATION_INVALID = -1,
53 } KeepConfiguration;
54
55 typedef struct Manager Manager;
56
57 struct Network {
58 Manager *manager;
59
60 char *filename;
61 char *name;
62 usec_t timestamp;
63
64 unsigned n_ref;
65
66 Set *match_mac;
67 Set *match_permanent_mac;
68 char **match_path;
69 char **match_driver;
70 char **match_type;
71 char **match_name;
72 char **match_property;
73 char **match_wlan_iftype;
74 char **match_ssid;
75 Set *match_bssid;
76 LIST_HEAD(Condition, conditions);
77
78 char *description;
79
80 NetDev *bridge;
81 NetDev *bond;
82 NetDev *vrf;
83 NetDev *xfrm;
84 Hashmap *stacked_netdevs;
85 char *bridge_name;
86 char *bond_name;
87 char *vrf_name;
88 Hashmap *stacked_netdev_names;
89
90 /* DHCP Client Support */
91 AddressFamily dhcp;
92 DHCPClientIdentifier dhcp_client_identifier;
93 char *dhcp_vendor_class_identifier;
94 char *dhcp_mudurl;
95 char **dhcp_user_class;
96 char *dhcp_hostname;
97 uint64_t dhcp_max_attempts;
98 uint32_t dhcp_route_metric;
99 bool dhcp_route_metric_set;
100 uint32_t dhcp_route_table;
101 uint32_t dhcp_fallback_lease_lifetime;
102 uint32_t dhcp_route_mtu;
103 uint16_t dhcp_client_port;
104 int dhcp_critical;
105 int ip_service_type;
106 bool dhcp_anonymize;
107 bool dhcp_send_hostname;
108 bool dhcp_broadcast;
109 bool dhcp_use_dns;
110 bool dhcp_use_dns_set;
111 bool dhcp_routes_to_dns;
112 bool dhcp_use_ntp;
113 bool dhcp_use_ntp_set;
114 bool dhcp_use_sip;
115 bool dhcp_use_mtu;
116 bool dhcp_use_routes;
117 int dhcp_use_gateway;
118 bool dhcp_use_timezone;
119 bool rapid_commit;
120 bool dhcp_use_hostname;
121 bool dhcp_route_table_set;
122 bool dhcp_send_release;
123 bool dhcp_send_decline;
124 DHCPUseDomains dhcp_use_domains;
125 sd_ipv4acd *dhcp_acd;
126 Set *dhcp_black_listed_ip;
127 Set *dhcp_request_options;
128 OrderedHashmap *dhcp_client_send_options;
129 OrderedHashmap *dhcp_client_send_vendor_options;
130 OrderedHashmap *dhcp_server_send_options;
131 OrderedHashmap *dhcp_server_send_vendor_options;
132
133 /* DHCPv6 Client support*/
134 bool dhcp6_use_dns;
135 bool dhcp6_use_dns_set;
136 bool dhcp6_use_ntp;
137 bool dhcp6_use_ntp_set;
138 bool dhcp6_without_ra;
139 uint8_t dhcp6_pd_length;
140 uint32_t dhcp6_route_metric;
141 bool dhcp6_route_metric_set;
142 char *dhcp6_mudurl;
143 char **dhcp6_user_class;
144 char **dhcp6_vendor_class;
145 struct in6_addr dhcp6_pd_address;
146 OrderedHashmap *dhcp6_client_send_options;
147 OrderedHashmap *dhcp6_client_send_vendor_options;
148 Set *dhcp6_request_options;
149
150 /* DHCP Server Support */
151 bool dhcp_server;
152
153 bool dhcp_server_emit_dns;
154 struct in_addr *dhcp_server_dns;
155 unsigned n_dhcp_server_dns;
156
157 bool dhcp_server_emit_ntp;
158 struct in_addr *dhcp_server_ntp;
159 unsigned n_dhcp_server_ntp;
160
161 bool dhcp_server_emit_sip;
162 struct in_addr *dhcp_server_sip;
163 unsigned n_dhcp_server_sip;
164
165 struct in_addr *dhcp_server_pop3;
166 unsigned n_dhcp_server_pop3;
167
168 struct in_addr *dhcp_server_smtp;
169 unsigned n_dhcp_server_smtp;
170
171 struct in_addr *dhcp_server_lpr;
172 unsigned n_dhcp_server_lpr;
173
174 bool dhcp_server_emit_router;
175 bool dhcp_server_emit_timezone;
176 char *dhcp_server_timezone;
177 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
178 uint32_t dhcp_server_pool_offset;
179 uint32_t dhcp_server_pool_size;
180
181 /* IPV4LL Support */
182 AddressFamily link_local;
183 bool ipv4ll_route;
184
185 bool default_route_on_device;
186
187 /* IPv6 prefix delegation support */
188 RADVPrefixDelegation router_prefix_delegation;
189 int64_t router_prefix_subnet_id;
190 usec_t router_lifetime_usec;
191 uint8_t router_preference;
192 bool router_managed;
193 bool router_other_information;
194 bool router_emit_dns;
195 bool router_emit_domains;
196 usec_t router_dns_lifetime_usec;
197 struct in6_addr *router_dns;
198 unsigned n_router_dns;
199 OrderedSet *router_search_domains;
200 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
201 RA flag is set, see RFC 7084,
202 WPD-4 */
203 bool dhcp6_pd_assign_prefix;
204 union in_addr_union dhcp6_delegation_prefix_token;
205
206 /* Bridge Support */
207 int use_bpdu;
208 int hairpin;
209 int fast_leave;
210 int allow_port_to_be_root;
211 int unicast_flood;
212 int multicast_flood;
213 int multicast_to_unicast;
214 int neighbor_suppression;
215 int learning;
216 int bridge_proxy_arp;
217 int bridge_proxy_arp_wifi;
218 uint32_t cost;
219 uint16_t priority;
220 MulticastRouter multicast_router;
221
222 bool use_br_vlan;
223 uint16_t pvid;
224 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
225 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
226
227 /* CAN support */
228 uint32_t can_bitrate;
229 unsigned can_sample_point;
230 uint32_t can_data_bitrate;
231 unsigned can_data_sample_point;
232 usec_t can_restart_us;
233 int can_triple_sampling;
234 int can_termination;
235 int can_listen_only;
236 int can_fd_mode;
237 int can_non_iso;
238
239 AddressFamily ip_forward;
240 bool ip_masquerade;
241 int ipv4_accept_local;
242
243 int ipv6_accept_ra;
244 int ipv6_dad_transmits;
245 int ipv6_hop_limit;
246 int ipv6_proxy_ndp;
247 int proxy_arp;
248 uint32_t ipv6_mtu;
249
250 bool ipv6_accept_ra_use_dns;
251 bool ipv6_accept_ra_use_autonomous_prefix;
252 bool ipv6_accept_ra_use_onlink_prefix;
253 bool active_slave;
254 bool primary_slave;
255 bool ipv6_accept_ra_route_table_set;
256 DHCPUseDomains ipv6_accept_ra_use_domains;
257 IPv6AcceptRAStartDHCP6Client ipv6_accept_ra_start_dhcp6_client;
258 uint32_t ipv6_accept_ra_route_table;
259 Set *ndisc_black_listed_prefix;
260 OrderedHashmap *ipv6_tokens;
261
262 IPv6PrivacyExtensions ipv6_privacy_extensions;
263
264 struct ether_addr *mac;
265 uint32_t mtu;
266 uint32_t group;
267 int arp;
268 int multicast;
269 int allmulticast;
270 bool unmanaged;
271 bool configure_without_carrier;
272 int ignore_carrier_loss;
273 KeepConfiguration keep_configuration;
274 LinkIPv6AddressGenMode ipv6_address_gen_mode;
275 uint32_t iaid;
276 DUID duid;
277
278 bool iaid_set;
279
280 bool required_for_online; /* Is this network required to be considered online? */
281 LinkOperationalStateRange required_operstate_for_online;
282
283 /* LLDP support */
284 LLDPMode lldp_mode; /* LLDP reception */
285 LLDPEmit lldp_emit; /* LLDP transmission */
286 char *lldp_mud; /* LLDP MUD URL */
287
288 LIST_HEAD(Address, static_addresses);
289 LIST_HEAD(Route, static_routes);
290 LIST_HEAD(NextHop, static_nexthops);
291 LIST_HEAD(FdbEntry, static_fdb_entries);
292 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
293 LIST_HEAD(Neighbor, neighbors);
294 LIST_HEAD(AddressLabel, address_labels);
295 LIST_HEAD(Prefix, static_prefixes);
296 LIST_HEAD(RoutePrefix, static_route_prefixes);
297 LIST_HEAD(RoutingPolicyRule, rules);
298
299 unsigned n_static_addresses;
300 unsigned n_static_routes;
301 unsigned n_static_nexthops;
302 unsigned n_static_fdb_entries;
303 unsigned n_ipv6_proxy_ndp_addresses;
304 unsigned n_neighbors;
305 unsigned n_address_labels;
306 unsigned n_static_prefixes;
307 unsigned n_static_route_prefixes;
308 unsigned n_rules;
309
310 Hashmap *addresses_by_section;
311 Hashmap *routes_by_section;
312 Hashmap *nexthops_by_section;
313 Hashmap *fdb_entries_by_section;
314 Hashmap *neighbors_by_section;
315 Hashmap *address_labels_by_section;
316 Hashmap *prefixes_by_section;
317 Hashmap *route_prefixes_by_section;
318 Hashmap *rules_by_section;
319 OrderedHashmap *tc_by_section;
320
321 /* All kinds of DNS configuration */
322 struct in_addr_data *dns;
323 unsigned n_dns;
324 OrderedSet *search_domains, *route_domains;
325
326 int dns_default_route;
327 ResolveSupport llmnr;
328 ResolveSupport mdns;
329 DnssecMode dnssec_mode;
330 DnsOverTlsMode dns_over_tls_mode;
331 Set *dnssec_negative_trust_anchors;
332
333 char **ntp;
334 char **sip;
335 char **pop3;
336 char **smtp;
337 char **lpr;
338 char **bind_carrier;
339 };
340
341 Network *network_ref(Network *network);
342 Network *network_unref(Network *network);
343 DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
344
345 int network_load(Manager *manager, OrderedHashmap **networks);
346 int network_reload(Manager *manager);
347 int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename);
348 int network_verify(Network *network);
349
350 int network_get_by_name(Manager *manager, const char *name, Network **ret);
351 int network_get(Manager *manager, unsigned short iftype, sd_device *device,
352 const char *ifname, char * const *alternative_names, const char *driver,
353 const struct ether_addr *mac, const struct ether_addr *permanent_mac,
354 enum nl80211_iftype wlan_iftype, const char *ssid, const struct ether_addr *bssid,
355 Network **ret);
356 int network_apply(Network *network, Link *link);
357 void network_apply_anonymize_if_set(Network *network);
358
359 bool network_has_static_ipv6_configurations(Network *network);
360
361 CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
362 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
363 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
364 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
365 CONFIG_PARSER_PROTOTYPE(config_parse_domains);
366 CONFIG_PARSER_PROTOTYPE(config_parse_dns);
367 CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
368 CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
369 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
370 CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
371 CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
372 CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration);
373
374 const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
375
376 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
377 IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
378
379 const char* keep_configuration_to_string(KeepConfiguration i) _const_;
380 KeepConfiguration keep_configuration_from_string(const char *s) _pure_;