]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
Merge pull request #16514 from keszybz/zstd-decompress-fix
[thirdparty/systemd.git] / src / network / networkd-network.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
fc2f9534
LP
2#pragma once
3
78404d22
YW
4#include <linux/nl80211.h>
5
634f0f98 6#include "sd-bus.h"
51517f9e 7#include "sd-device.h"
0f3ff4ea 8#include "sd-ipv4acd.h"
634f0f98 9
737f1405 10#include "bridge.h"
fc2f9534 11#include "condition.h"
a2106925 12#include "conf-parser.h"
634f0f98 13#include "hashmap.h"
737f1405 14#include "netdev.h"
95b74ef6 15#include "networkd-address-label.h"
a2106925 16#include "networkd-address.h"
13b498f9 17#include "networkd-brvlan.h"
ca5ad760
YW
18#include "networkd-dhcp-common.h"
19#include "networkd-dhcp4.h"
838d39af 20#include "networkd-dhcp6.h"
564ca984 21#include "networkd-dhcp-server.h"
fc2f9534 22#include "networkd-fdb.h"
a0e5c15d 23#include "networkd-ipv6-proxy-ndp.h"
7f853950 24#include "networkd-lldp-rx.h"
a2106925 25#include "networkd-lldp-tx.h"
5f506a55 26#include "networkd-ndisc.h"
e4a71bf3 27#include "networkd-neighbor.h"
c16c7808 28#include "networkd-nexthop.h"
6e849e95 29#include "networkd-radv.h"
71d35b6b 30#include "networkd-route.h"
bce67bbe 31#include "networkd-routing-policy-rule.h"
fc2f9534 32#include "networkd-util.h"
5e2a51d5 33#include "ordered-set.h"
a2106925 34#include "resolve-util.h"
e77bd3fd 35#include "socket-netlink.h"
fc2f9534 36
fc2f9534
LP
37typedef enum IPv6PrivacyExtensions {
38 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
39 IPV6_PRIVACY_EXTENSIONS_NO,
40 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
41 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
42 _IPV6_PRIVACY_EXTENSIONS_MAX,
43 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
44} IPv6PrivacyExtensions;
45
7da377ef 46typedef enum KeepConfiguration {
95355a28
YW
47 KEEP_CONFIGURATION_NO = 0,
48 KEEP_CONFIGURATION_DHCP_ON_START = 1 << 0,
49 KEEP_CONFIGURATION_DHCP_ON_STOP = 1 << 1,
50 KEEP_CONFIGURATION_DHCP = KEEP_CONFIGURATION_DHCP_ON_START | KEEP_CONFIGURATION_DHCP_ON_STOP,
51 KEEP_CONFIGURATION_STATIC = 1 << 2,
52 KEEP_CONFIGURATION_YES = KEEP_CONFIGURATION_DHCP | KEEP_CONFIGURATION_STATIC,
7da377ef
SS
53 _KEEP_CONFIGURATION_MAX,
54 _KEEP_CONFIGURATION_INVALID = -1,
55} KeepConfiguration;
56
6f6296b9
YW
57typedef enum IPv6LinkLocalAddressGenMode {
58 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_EUI64 = IN6_ADDR_GEN_MODE_EUI64,
59 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_NONE = IN6_ADDR_GEN_MODE_NONE,
60 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_STABLE_PRIVACY = IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
61 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_RANDOM = IN6_ADDR_GEN_MODE_RANDOM,
62 _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_MAX,
63 _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_INVALID = -1
64} IPv6LinkLocalAddressGenMode;
65
634f0f98
ZJS
66typedef struct Manager Manager;
67
2a71d57f
LP
68typedef struct NetworkDHCPServerEmitAddress {
69 bool emit;
70 struct in_addr *addresses;
71 size_t n_addresses;
72} NetworkDHCPServerEmitAddress;
73
fc2f9534
LP
74struct Network {
75 Manager *manager;
76
77 char *filename;
78 char *name;
7f06b3e1 79 usec_t timestamp;
fc2f9534 80
35ac3b76
YW
81 unsigned n_ref;
82
e90d0374 83 Set *match_mac;
4bb7cc82 84 Set *match_permanent_mac;
fc2f9534
LP
85 char **match_path;
86 char **match_driver;
87 char **match_type;
88 char **match_name;
44005bfb 89 char **match_property;
78404d22 90 char **match_wlan_iftype;
8d968fdd 91 char **match_ssid;
277ba8d1 92 Set *match_bssid;
1beabe08 93 LIST_HEAD(Condition, conditions);
fc2f9534
LP
94
95 char *description;
96
97 NetDev *bridge;
98 NetDev *bond;
6cb955c6 99 NetDev *vrf;
98d20a17 100 NetDev *xfrm;
fc2f9534 101 Hashmap *stacked_netdevs;
cebe1257
YW
102 char *bridge_name;
103 char *bond_name;
104 char *vrf_name;
105 Hashmap *stacked_netdev_names;
fc2f9534
LP
106
107 /* DHCP Client Support */
2d792895 108 AddressFamily dhcp;
499d555a 109 DHCPClientIdentifier dhcp_client_identifier;
fc2f9534 110 char *dhcp_vendor_class_identifier;
7b8d23a9 111 char *dhcp_mudurl;
af1c0de0 112 char **dhcp_user_class;
27cb34f5 113 char *dhcp_hostname;
715cedfb 114 uint64_t dhcp_max_attempts;
132be2b8 115 uint32_t dhcp_route_metric;
bdad94d0 116 bool dhcp_route_metric_set;
94e9bd57 117 uint32_t dhcp_route_table;
d6463307 118 uint32_t dhcp_fallback_lease_lifetime;
c695dcf9 119 uint32_t dhcp_route_mtu;
9c77d107 120 uint16_t dhcp_client_port;
cb29c156
SS
121 int dhcp_critical;
122 int ip_service_type;
7585baa0 123 bool dhcp_anonymize;
27cb34f5 124 bool dhcp_send_hostname;
fc2f9534 125 bool dhcp_broadcast;
94e9bd57 126 bool dhcp_use_dns;
bdad94d0 127 bool dhcp_use_dns_set;
a24e12f0 128 bool dhcp_routes_to_dns;
94e9bd57 129 bool dhcp_use_ntp;
bdad94d0 130 bool dhcp_use_ntp_set;
299d578f 131 bool dhcp_use_sip;
94e9bd57 132 bool dhcp_use_mtu;
27cb34f5 133 bool dhcp_use_routes;
589397a2 134 int dhcp_use_gateway;
27cb34f5 135 bool dhcp_use_timezone;
fb5c8216 136 bool rapid_commit;
94e9bd57 137 bool dhcp_use_hostname;
fc1ba79d 138 bool dhcp_route_table_set;
1501b429 139 bool dhcp_send_release;
0f3ff4ea 140 bool dhcp_send_decline;
94e9bd57 141 DHCPUseDomains dhcp_use_domains;
0f3ff4ea 142 sd_ipv4acd *dhcp_acd;
6b000af4 143 Set *dhcp_deny_listed_ip;
98ebef62 144 Set *dhcp_allow_listed_ip;
5bc945be 145 Set *dhcp_request_options;
0e96961d 146 OrderedHashmap *dhcp_client_send_options;
7354900d 147 OrderedHashmap *dhcp_client_send_vendor_options;
0e96961d 148 OrderedHashmap *dhcp_server_send_options;
7354900d 149 OrderedHashmap *dhcp_server_send_vendor_options;
fc2f9534 150
caa8ca42
SS
151 /* DHCPv6 Client support*/
152 bool dhcp6_use_dns;
bdad94d0 153 bool dhcp6_use_dns_set;
caa8ca42 154 bool dhcp6_use_ntp;
bdad94d0 155 bool dhcp6_use_ntp_set;
2805536b 156 uint8_t dhcp6_pd_length;
1bf1bfd9 157 uint32_t dhcp6_route_metric;
bdad94d0 158 bool dhcp6_route_metric_set;
3175a8c2 159 char *dhcp6_mudurl;
f37f2a6b 160 char **dhcp6_user_class;
ed0d1b2e 161 char **dhcp6_vendor_class;
2805536b 162 struct in6_addr dhcp6_pd_address;
838d39af 163 DHCP6ClientStartMode dhcp6_without_ra;
e7d5fe17 164 OrderedHashmap *dhcp6_client_send_options;
b4ccc5de 165 OrderedHashmap *dhcp6_client_send_vendor_options;
35f6a5cb 166 Set *dhcp6_request_options;
caa8ca42 167
fc2f9534
LP
168 /* DHCP Server Support */
169 bool dhcp_server;
2a71d57f 170 NetworkDHCPServerEmitAddress dhcp_server_emit[_SD_DHCP_LEASE_SERVER_TYPE_MAX];
77ff6022 171 bool dhcp_server_emit_router;
fc2f9534 172 bool dhcp_server_emit_timezone;
1a04db0f 173 char *dhcp_server_timezone;
fc2f9534 174 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
175 uint32_t dhcp_server_pool_offset;
176 uint32_t dhcp_server_pool_size;
fc2f9534 177
6f6296b9 178 /* link local addressing support */
2d792895 179 AddressFamily link_local;
6f6296b9 180 IPv6LinkLocalAddressGenMode ipv6ll_address_gen_mode;
fc2f9534
LP
181 bool ipv4ll_route;
182
5d5003ab
YW
183 bool default_route_on_device;
184
7d5cac19 185 /* IPv6 prefix delegation support */
56a23cb4 186 RADVPrefixDelegation router_prefix_delegation;
02e9e34b 187 int64_t router_prefix_subnet_id;
7d5cac19
PF
188 usec_t router_lifetime_usec;
189 uint8_t router_preference;
190 bool router_managed;
191 bool router_other_information;
9e25315c
PF
192 bool router_emit_dns;
193 bool router_emit_domains;
88295a05
PF
194 usec_t router_dns_lifetime_usec;
195 struct in6_addr *router_dns;
196 unsigned n_router_dns;
5e2a51d5 197 OrderedSet *router_search_domains;
125f20b4
PF
198 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
199 RA flag is set, see RFC 7084,
200 WPD-4 */
9efa8a3c 201 bool dhcp6_pd_assign_prefix;
120b5c0b 202 union in_addr_union dhcp6_delegation_prefix_token;
7d5cac19 203
fc2f9534 204 /* Bridge Support */
7f9915f0
SS
205 int use_bpdu;
206 int hairpin;
207 int fast_leave;
208 int allow_port_to_be_root;
209 int unicast_flood;
7f15b714 210 int multicast_flood;
d3aa8b49 211 int multicast_to_unicast;
7f15b714
TJ
212 int neighbor_suppression;
213 int learning;
1087623b
SS
214 int bridge_proxy_arp;
215 int bridge_proxy_arp_wifi;
b56be296
DJL
216 uint32_t cost;
217 uint16_t priority;
0fadb2a4 218 MulticastRouter multicast_router;
fc2f9534 219
ffff9abe 220 bool use_br_vlan;
13b498f9
TJ
221 uint16_t pvid;
222 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
223 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
224
06828bb6 225 /* CAN support */
74a27268 226 uint32_t can_bitrate;
06828bb6 227 unsigned can_sample_point;
7e025e9c
RP
228 uint32_t can_data_bitrate;
229 unsigned can_data_sample_point;
06828bb6 230 usec_t can_restart_us;
c423be28 231 int can_triple_sampling;
52aa38f1 232 int can_termination;
74f0fb90 233 int can_listen_only;
7e025e9c
RP
234 int can_fd_mode;
235 int can_non_iso;
06828bb6 236
2d792895 237 AddressFamily ip_forward;
fc2f9534 238 bool ip_masquerade;
94d76d07 239 int ipv4_accept_local;
fc2f9534 240
4f2e437a 241 int ipv6_accept_ra;
8749cbcd 242 int ipv6_dad_transmits;
b69c3180 243 int ipv6_hop_limit;
465dfe59 244 int ipv6_proxy_ndp;
23d8b221 245 int proxy_arp;
4e964aa0 246 uint32_t ipv6_mtu;
4f2e437a 247
1e7a0e21 248 bool ipv6_accept_ra_use_dns;
062c2eea
SS
249 bool ipv6_accept_ra_use_autonomous_prefix;
250 bool ipv6_accept_ra_use_onlink_prefix;
eb64b435
SS
251 bool active_slave;
252 bool primary_slave;
ac24e418 253 bool ipv6_accept_ra_route_table_set;
1e7a0e21 254 DHCPUseDomains ipv6_accept_ra_use_domains;
ac24e418 255 IPv6AcceptRAStartDHCP6Client ipv6_accept_ra_start_dhcp6_client;
2ba31d29 256 uint32_t ipv6_accept_ra_route_table;
6b000af4 257 Set *ndisc_deny_listed_prefix;
5f506a55 258 OrderedHashmap *ipv6_tokens;
1e7a0e21 259
fc2f9534
LP
260 IPv6PrivacyExtensions ipv6_privacy_extensions;
261
262 struct ether_addr *mac;
4e964aa0 263 uint32_t mtu;
89fe6535 264 uint32_t group;
99d2baa2 265 int arp;
e6ebebbe 266 int multicast;
866e6b7a 267 int allmulticast;
a09dc546 268 bool unmanaged;
dad2d78e 269 bool configure_without_carrier;
bd0d471c 270 int ignore_carrier_loss;
7da377ef 271 KeepConfiguration keep_configuration;
413708d1 272 uint32_t iaid;
8341a5c3 273 DUID duid;
fc2f9534 274
8217ed5e
TH
275 bool iaid_set;
276
c1a38904 277 bool required_for_online; /* Is this network required to be considered online? */
75cd4a5d 278 LinkOperationalStateRange required_operstate_for_online;
c1a38904 279
e9a8c550 280 /* LLDP support */
8e1ad1ea 281 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 282 LLDPEmit lldp_emit; /* LLDP transmission */
e9a8c550 283 char *lldp_mud; /* LLDP MUD URL */
fc2f9534
LP
284
285 LIST_HEAD(Address, static_addresses);
286 LIST_HEAD(Route, static_routes);
c16c7808 287 LIST_HEAD(NextHop, static_nexthops);
fc2f9534 288 LIST_HEAD(FdbEntry, static_fdb_entries);
a0e5c15d 289 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
e4a71bf3 290 LIST_HEAD(Neighbor, neighbors);
95b74ef6 291 LIST_HEAD(AddressLabel, address_labels);
057abfd8 292 LIST_HEAD(Prefix, static_prefixes);
95081e08 293 LIST_HEAD(RoutePrefix, static_route_prefixes);
bce67bbe 294 LIST_HEAD(RoutingPolicyRule, rules);
fc2f9534 295
8c34b963
LP
296 unsigned n_static_addresses;
297 unsigned n_static_routes;
c16c7808 298 unsigned n_static_nexthops;
8c34b963 299 unsigned n_static_fdb_entries;
a0e5c15d 300 unsigned n_ipv6_proxy_ndp_addresses;
e4a71bf3 301 unsigned n_neighbors;
95b74ef6 302 unsigned n_address_labels;
057abfd8 303 unsigned n_static_prefixes;
203d4df5 304 unsigned n_static_route_prefixes;
bce67bbe 305 unsigned n_rules;
8c34b963 306
fc2f9534
LP
307 Hashmap *addresses_by_section;
308 Hashmap *routes_by_section;
c16c7808 309 Hashmap *nexthops_by_section;
fc2f9534 310 Hashmap *fdb_entries_by_section;
e4a71bf3 311 Hashmap *neighbors_by_section;
95b74ef6 312 Hashmap *address_labels_by_section;
057abfd8 313 Hashmap *prefixes_by_section;
203d4df5 314 Hashmap *route_prefixes_by_section;
bce67bbe 315 Hashmap *rules_by_section;
34658df2 316 OrderedHashmap *tc_by_section;
518cd6b5 317 OrderedHashmap *sr_iov_by_section;
fc2f9534 318
7ece6f58 319 /* All kinds of DNS configuration */
e77bd3fd 320 struct in_addr_full **dns;
5512a963 321 unsigned n_dns;
5e2a51d5
ZJS
322 OrderedSet *search_domains, *route_domains;
323
7ece6f58 324 int dns_default_route;
fc2f9534 325 ResolveSupport llmnr;
aaa297d4 326 ResolveSupport mdns;
ad6c0475 327 DnssecMode dnssec_mode;
c9299be2 328 DnsOverTlsMode dns_over_tls_mode;
8a516214 329 Set *dnssec_negative_trust_anchors;
fc2f9534 330
7ece6f58
LP
331 char **ntp;
332 char **bind_carrier;
fc2f9534
LP
333};
334
35ac3b76
YW
335Network *network_ref(Network *network);
336Network *network_unref(Network *network);
337DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
fc2f9534 338
7f06b3e1
YW
339int network_load(Manager *manager, OrderedHashmap **networks);
340int network_reload(Manager *manager);
341int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename);
96db6412 342int network_verify(Network *network);
fc2f9534
LP
343
344int network_get_by_name(Manager *manager, const char *name, Network **ret);
c643bda5
YW
345int network_get(Manager *manager, unsigned short iftype, sd_device *device,
346 const char *ifname, char * const *alternative_names, const char *driver,
4bb7cc82 347 const struct ether_addr *mac, const struct ether_addr *permanent_mac,
c643bda5
YW
348 enum nl80211_iftype wlan_iftype, const char *ssid, const struct ether_addr *bssid,
349 Network **ret);
7d342c03 350int network_apply(Network *network, Link *link);
add8d07d 351void network_apply_anonymize_if_set(Network *network);
fc2f9534 352
adfeee49 353bool network_has_static_ipv6_configurations(Network *network);
439689c6 354
cebe1257 355CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
a2106925 356CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
a2106925
LP
357CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
358CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
ca5ad760
YW
359CONFIG_PARSER_PROTOTYPE(config_parse_domains);
360CONFIG_PARSER_PROTOTYPE(config_parse_dns);
a2106925
LP
361CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
362CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
a2106925 363CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
a2106925 364CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
4ac77d63 365CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
7da377ef 366CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration);
6f6296b9 367CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_link_local_address_gen_mode);
fc2f9534 368
c9f7b4d3 369const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
fc2f9534 370
fc2f9534
LP
371const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
372IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
b2a81c0b 373
7da377ef
SS
374const char* keep_configuration_to_string(KeepConfiguration i) _const_;
375KeepConfiguration keep_configuration_from_string(const char *s) _pure_;
6f6296b9
YW
376
377const char* ipv6_link_local_address_gen_mode_to_string(IPv6LinkLocalAddressGenMode s) _const_;
378IPv6LinkLocalAddressGenMode ipv6_link_local_address_gen_mode_from_string(const char *s) _pure_;