]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-network.h
network: DHCPv6 Add support to send MUD URL
[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_user_class;
95 char *dhcp_hostname;
96 uint64_t dhcp_max_attempts;
97 unsigned dhcp_route_metric;
98 uint32_t dhcp_route_table;
99 uint32_t dhcp_route_mtu;
100 uint16_t dhcp_client_port;
101 int dhcp_critical;
102 int ip_service_type;
103 bool dhcp_anonymize;
104 bool dhcp_send_hostname;
105 bool dhcp_broadcast;
106 bool dhcp_use_dns;
107 bool dhcp_routes_to_dns;
108 bool dhcp_use_ntp;
109 bool dhcp_use_sip;
110 bool dhcp_use_mtu;
111 bool dhcp_use_routes;
112 bool dhcp_use_gateway;
113 bool dhcp_use_timezone;
114 bool rapid_commit;
115 bool dhcp_use_hostname;
116 bool dhcp_route_table_set;
117 bool dhcp_send_release;
118 bool dhcp_send_decline;
119 DHCPUseDomains dhcp_use_domains;
120 sd_ipv4acd *dhcp_acd;
121 Set *dhcp_black_listed_ip;
122 Set *dhcp_request_options;
123 OrderedHashmap *dhcp_client_send_options;
124 OrderedHashmap *dhcp_client_send_vendor_options;
125 OrderedHashmap *dhcp_server_send_options;
126 OrderedHashmap *dhcp_server_send_vendor_options;
127
128 /* DHCPv6 Client support*/
129 bool dhcp6_use_dns;
130 bool dhcp6_use_ntp;
131 bool dhcp6_without_ra;
132 uint8_t dhcp6_pd_length;
133 char *dhcp6_mudurl;
134 struct in6_addr dhcp6_pd_address;
135
136 /* DHCP Server Support */
137 bool dhcp_server;
138
139 bool dhcp_server_emit_dns;
140 struct in_addr *dhcp_server_dns;
141 unsigned n_dhcp_server_dns;
142
143 bool dhcp_server_emit_ntp;
144 struct in_addr *dhcp_server_ntp;
145 unsigned n_dhcp_server_ntp;
146
147 bool dhcp_server_emit_sip;
148 struct in_addr *dhcp_server_sip;
149 unsigned n_dhcp_server_sip;
150
151 bool dhcp_server_emit_router;
152 bool dhcp_server_emit_timezone;
153 char *dhcp_server_timezone;
154 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
155 uint32_t dhcp_server_pool_offset;
156 uint32_t dhcp_server_pool_size;
157
158 /* IPV4LL Support */
159 AddressFamily link_local;
160 bool ipv4ll_route;
161
162 bool default_route_on_device;
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 OrderedSet *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 int multicast_flood;
187 int multicast_to_unicast;
188 int neighbor_suppression;
189 int learning;
190 int bridge_proxy_arp;
191 int bridge_proxy_arp_wifi;
192 uint32_t cost;
193 uint16_t priority;
194 MulticastRouter multicast_router;
195
196 bool use_br_vlan;
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
201 /* CAN support */
202 uint64_t can_bitrate;
203 unsigned can_sample_point;
204 usec_t can_restart_us;
205 int can_triple_sampling;
206 int can_termination;
207 int can_listen_only;
208
209 AddressFamily ip_forward;
210 bool ip_masquerade;
211
212 int ipv6_accept_ra;
213 int ipv6_dad_transmits;
214 int ipv6_hop_limit;
215 int ipv6_proxy_ndp;
216 int proxy_arp;
217 uint32_t ipv6_mtu;
218
219 bool ipv6_accept_ra_use_dns;
220 bool ipv6_accept_ra_use_autonomous_prefix;
221 bool ipv6_accept_ra_use_onlink_prefix;
222 bool ipv6_accept_ra_start_dhcp6_client;
223 bool active_slave;
224 bool primary_slave;
225 DHCPUseDomains ipv6_accept_ra_use_domains;
226 uint32_t ipv6_accept_ra_route_table;
227 bool ipv6_accept_ra_route_table_set;
228 Set *ndisc_black_listed_prefix;
229 OrderedHashmap *ipv6_tokens;
230
231 IPv6PrivacyExtensions ipv6_privacy_extensions;
232
233 struct ether_addr *mac;
234 uint32_t mtu;
235 int arp;
236 int multicast;
237 int allmulticast;
238 bool unmanaged;
239 bool configure_without_carrier;
240 bool ignore_carrier_loss;
241 KeepConfiguration keep_configuration;
242 uint32_t iaid;
243 DUID duid;
244
245 bool iaid_set;
246
247 bool required_for_online; /* Is this network required to be considered online? */
248 LinkOperationalStateRange required_operstate_for_online;
249
250 LLDPMode lldp_mode; /* LLDP reception */
251 LLDPEmit lldp_emit; /* LLDP transmission */
252
253 LIST_HEAD(Address, static_addresses);
254 LIST_HEAD(Route, static_routes);
255 LIST_HEAD(NextHop, static_nexthops);
256 LIST_HEAD(FdbEntry, static_fdb_entries);
257 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
258 LIST_HEAD(Neighbor, neighbors);
259 LIST_HEAD(AddressLabel, address_labels);
260 LIST_HEAD(Prefix, static_prefixes);
261 LIST_HEAD(RoutePrefix, static_route_prefixes);
262 LIST_HEAD(RoutingPolicyRule, rules);
263
264 unsigned n_static_addresses;
265 unsigned n_static_routes;
266 unsigned n_static_nexthops;
267 unsigned n_static_fdb_entries;
268 unsigned n_ipv6_proxy_ndp_addresses;
269 unsigned n_neighbors;
270 unsigned n_address_labels;
271 unsigned n_static_prefixes;
272 unsigned n_static_route_prefixes;
273 unsigned n_rules;
274
275 Hashmap *addresses_by_section;
276 Hashmap *routes_by_section;
277 Hashmap *nexthops_by_section;
278 Hashmap *fdb_entries_by_section;
279 Hashmap *neighbors_by_section;
280 Hashmap *address_labels_by_section;
281 Hashmap *prefixes_by_section;
282 Hashmap *route_prefixes_by_section;
283 Hashmap *rules_by_section;
284 OrderedHashmap *tc_by_section;
285
286 /* All kinds of DNS configuration */
287 struct in_addr_data *dns;
288 unsigned n_dns;
289 OrderedSet *search_domains, *route_domains;
290
291 int dns_default_route;
292 ResolveSupport llmnr;
293 ResolveSupport mdns;
294 DnssecMode dnssec_mode;
295 DnsOverTlsMode dns_over_tls_mode;
296 Set *dnssec_negative_trust_anchors;
297
298 char **ntp;
299 char **sip;
300 char **bind_carrier;
301 };
302
303 Network *network_ref(Network *network);
304 Network *network_unref(Network *network);
305 DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
306
307 int network_load(Manager *manager, OrderedHashmap **networks);
308 int network_reload(Manager *manager);
309 int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename);
310 int network_verify(Network *network);
311
312 int network_get_by_name(Manager *manager, const char *name, Network **ret);
313 int network_get(Manager *manager, unsigned short iftype, sd_device *device, const char *ifname, char * const *alternative_names,
314 const struct ether_addr *mac, const struct ether_addr *permanent_mac,
315 enum nl80211_iftype wlan_iftype, const char *ssid,
316 const struct ether_addr *bssid, Network **ret);
317 int network_apply(Network *network, Link *link);
318 void network_apply_anonymize_if_set(Network *network);
319
320 bool network_has_static_ipv6_configurations(Network *network);
321
322 CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
323 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
324 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
325 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
326 CONFIG_PARSER_PROTOTYPE(config_parse_domains);
327 CONFIG_PARSER_PROTOTYPE(config_parse_dns);
328 CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
329 CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
330 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
331 CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
332 CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
333 CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration);
334
335 const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
336
337 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
338 IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
339
340 const char* keep_configuration_to_string(KeepConfiguration i) _const_;
341 KeepConfiguration keep_configuration_from_string(const char *s) _pure_;