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