]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-network.h
pkgconfig: define variables relative to ${prefix}/${rootprefix}/${sysconfdir}
[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-radv.h"
19 #include "networkd-route.h"
20 #include "networkd-routing-policy-rule.h"
21 #include "networkd-util.h"
22 #include "resolve-util.h"
23
24 #define DHCP_ROUTE_METRIC 1024
25 #define IPV4LL_ROUTE_METRIC 2048
26
27 #define BRIDGE_VLAN_BITMAP_MAX 4096
28 #define BRIDGE_VLAN_BITMAP_LEN (BRIDGE_VLAN_BITMAP_MAX / 32)
29
30 typedef enum DHCPClientIdentifier {
31 DHCP_CLIENT_ID_MAC,
32 DHCP_CLIENT_ID_DUID,
33 /* The following option may not be good for RFC regarding DHCP (3315 and 4361).
34 * But some setups require this. E.g., Sky Broadband, the second largest provider in the UK
35 * requires the client id to be set to a custom string, reported at
36 * https://github.com/systemd/systemd/issues/7828 */
37 DHCP_CLIENT_ID_DUID_ONLY,
38 _DHCP_CLIENT_ID_MAX,
39 _DHCP_CLIENT_ID_INVALID = -1,
40 } DHCPClientIdentifier;
41
42 typedef enum IPv6PrivacyExtensions {
43 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
44 IPV6_PRIVACY_EXTENSIONS_NO,
45 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
46 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
47 _IPV6_PRIVACY_EXTENSIONS_MAX,
48 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
49 } IPv6PrivacyExtensions;
50
51 typedef enum DHCPUseDomains {
52 DHCP_USE_DOMAINS_NO,
53 DHCP_USE_DOMAINS_YES,
54 DHCP_USE_DOMAINS_ROUTE,
55 _DHCP_USE_DOMAINS_MAX,
56 _DHCP_USE_DOMAINS_INVALID = -1,
57 } DHCPUseDomains;
58
59 typedef enum LLDPMode {
60 LLDP_MODE_NO = 0,
61 LLDP_MODE_YES = 1,
62 LLDP_MODE_ROUTERS_ONLY = 2,
63 _LLDP_MODE_MAX,
64 _LLDP_MODE_INVALID = -1,
65 } LLDPMode;
66
67 typedef struct DUID {
68 /* Value of Type in [DHCP] section */
69 DUIDType type;
70
71 uint8_t raw_data_len;
72 uint8_t raw_data[MAX_DUID_LEN];
73 usec_t llt_time;
74 } DUID;
75
76 typedef enum RADVPrefixDelegation {
77 RADV_PREFIX_DELEGATION_NONE,
78 RADV_PREFIX_DELEGATION_STATIC,
79 RADV_PREFIX_DELEGATION_DHCP6,
80 RADV_PREFIX_DELEGATION_BOTH,
81 _RADV_PREFIX_DELEGATION_MAX,
82 _RADV_PREFIX_DELEGATION_INVALID = -1,
83 } RADVPrefixDelegation;
84
85 typedef struct NetworkConfigSection {
86 unsigned line;
87 char filename[];
88 } NetworkConfigSection;
89
90 int network_config_section_new(const char *filename, unsigned line, NetworkConfigSection **s);
91 void network_config_section_free(NetworkConfigSection *network);
92 DEFINE_TRIVIAL_CLEANUP_FUNC(NetworkConfigSection*, network_config_section_free);
93 extern const struct hash_ops network_config_hash_ops;
94
95 typedef struct Manager Manager;
96
97 struct Network {
98 Manager *manager;
99
100 char *filename;
101 char *name;
102
103 Set *match_mac;
104 char **match_path;
105 char **match_driver;
106 char **match_type;
107 char **match_name;
108
109 Condition *match_host;
110 Condition *match_virt;
111 Condition *match_kernel_cmdline;
112 Condition *match_kernel_version;
113 Condition *match_arch;
114
115 char *description;
116
117 NetDev *bridge;
118 NetDev *bond;
119 NetDev *vrf;
120 Hashmap *stacked_netdevs;
121
122 /* DHCP Client Support */
123 AddressFamilyBoolean dhcp;
124 DHCPClientIdentifier dhcp_client_identifier;
125 char *dhcp_vendor_class_identifier;
126 char **dhcp_user_class;
127 char *dhcp_hostname;
128 unsigned dhcp_route_metric;
129 uint32_t dhcp_route_table;
130 uint16_t dhcp_client_port;
131 bool dhcp_anonymize;
132 bool dhcp_send_hostname;
133 bool dhcp_broadcast;
134 bool dhcp_critical;
135 bool dhcp_use_dns;
136 bool dhcp_use_ntp;
137 bool dhcp_use_mtu;
138 bool dhcp_use_routes;
139 bool dhcp_use_timezone;
140 bool rapid_commit;
141 bool dhcp_use_hostname;
142 bool dhcp_route_table_set;
143 DHCPUseDomains dhcp_use_domains;
144
145 /* DHCP Server Support */
146 bool dhcp_server;
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;
153 bool dhcp_server_emit_router;
154 bool dhcp_server_emit_timezone;
155 char *dhcp_server_timezone;
156 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
157 uint32_t dhcp_server_pool_offset;
158 uint32_t dhcp_server_pool_size;
159
160 /* IPV4LL Support */
161 AddressFamilyBoolean link_local;
162 bool ipv4ll_route;
163
164 /* IPv6 prefix delegation support */
165 RADVPrefixDelegation router_prefix_delegation;
166 usec_t router_lifetime_usec;
167 uint8_t router_preference;
168 bool router_managed;
169 bool router_other_information;
170 bool router_emit_dns;
171 bool router_emit_domains;
172 usec_t router_dns_lifetime_usec;
173 struct in6_addr *router_dns;
174 unsigned n_router_dns;
175 char **router_search_domains;
176 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
177 RA flag is set, see RFC 7084,
178 WPD-4 */
179
180 /* Bridge Support */
181 int use_bpdu;
182 int hairpin;
183 int fast_leave;
184 int allow_port_to_be_root;
185 int unicast_flood;
186 uint32_t cost;
187 uint16_t priority;
188
189 bool use_br_vlan;
190 uint16_t pvid;
191 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
192 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
193
194 /* CAN support */
195 size_t can_bitrate;
196 unsigned can_sample_point;
197 usec_t can_restart_us;
198
199 AddressFamilyBoolean ip_forward;
200 bool ip_masquerade;
201
202 int ipv6_accept_ra;
203 int ipv6_dad_transmits;
204 int ipv6_hop_limit;
205 int ipv6_proxy_ndp;
206 int proxy_arp;
207 uint32_t ipv6_mtu;
208
209 bool ipv6_accept_ra_use_dns;
210 bool active_slave;
211 bool primary_slave;
212 DHCPUseDomains ipv6_accept_ra_use_domains;
213 uint32_t ipv6_accept_ra_route_table;
214
215 union in_addr_union ipv6_token;
216 IPv6PrivacyExtensions ipv6_privacy_extensions;
217
218 struct ether_addr *mac;
219 uint32_t mtu;
220 int arp;
221 int multicast;
222 int allmulticast;
223 bool unmanaged;
224 bool configure_without_carrier;
225 uint32_t iaid;
226 DUID duid;
227
228 bool required_for_online; /* Is this network required to be considered online? */
229
230 LLDPMode lldp_mode; /* LLDP reception */
231 LLDPEmit lldp_emit; /* LLDP transmission */
232
233 LIST_HEAD(Address, static_addresses);
234 LIST_HEAD(Route, static_routes);
235 LIST_HEAD(FdbEntry, static_fdb_entries);
236 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
237 LIST_HEAD(AddressLabel, address_labels);
238 LIST_HEAD(Prefix, static_prefixes);
239 LIST_HEAD(RoutingPolicyRule, rules);
240
241 unsigned n_static_addresses;
242 unsigned n_static_routes;
243 unsigned n_static_fdb_entries;
244 unsigned n_ipv6_proxy_ndp_addresses;
245 unsigned n_address_labels;
246 unsigned n_static_prefixes;
247 unsigned n_rules;
248
249 Hashmap *addresses_by_section;
250 Hashmap *routes_by_section;
251 Hashmap *fdb_entries_by_section;
252 Hashmap *address_labels_by_section;
253 Hashmap *prefixes_by_section;
254 Hashmap *rules_by_section;
255
256 struct in_addr_data *dns;
257 unsigned n_dns;
258
259 char **search_domains, **route_domains, **ntp, **bind_carrier;
260
261 ResolveSupport llmnr;
262 ResolveSupport mdns;
263 DnssecMode dnssec_mode;
264 DnsOverTlsMode dns_over_tls_mode;
265 Set *dnssec_negative_trust_anchors;
266
267 LIST_FIELDS(Network, networks);
268 };
269
270 void network_free(Network *network);
271
272 DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_free);
273
274 int network_load(Manager *manager);
275 int network_load_one(Manager *manager, const char *filename);
276
277 int network_get_by_name(Manager *manager, const char *name, Network **ret);
278 int network_get(Manager *manager, sd_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
279 int network_apply(Network *network, Link *link);
280 void network_apply_anonymize_if_set(Network *network);
281
282 bool network_has_static_ipv6_addresses(Network *network);
283
284 CONFIG_PARSER_PROTOTYPE(config_parse_netdev);
285 CONFIG_PARSER_PROTOTYPE(config_parse_domains);
286 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
287 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp);
288 CONFIG_PARSER_PROTOTYPE(config_parse_dns);
289 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_client_identifier);
290 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
291 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
292 CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
293 CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
294 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_dns);
295 CONFIG_PARSER_PROTOTYPE(config_parse_radv_dns);
296 CONFIG_PARSER_PROTOTYPE(config_parse_radv_search_domains);
297 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_server_ntp);
298 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
299 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_use_domains);
300 CONFIG_PARSER_PROTOTYPE(config_parse_lldp_mode);
301 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_route_table);
302 CONFIG_PARSER_PROTOTYPE(config_parse_dhcp_user_class);
303 CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
304 /* Legacy IPv4LL support */
305 CONFIG_PARSER_PROTOTYPE(config_parse_ipv4ll);
306
307 const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
308
309 extern const sd_bus_vtable network_vtable[];
310
311 int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
312 int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
313
314 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
315 IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
316
317 const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
318 DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
319
320 const char* lldp_mode_to_string(LLDPMode m) _const_;
321 LLDPMode lldp_mode_from_string(const char *s) _pure_;
322
323 const char* radv_prefix_delegation_to_string(RADVPrefixDelegation i) _const_;
324 RADVPrefixDelegation radv_prefix_delegation_from_string(const char *s) _pure_;