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