1 /* SPDX-License-Identifier: LGPL-2.1+ */
4 #include <linux/nl80211.h>
8 #include "sd-ipv4acd.h"
11 #include "condition.h"
12 #include "conf-parser.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-dhcp6.h"
21 #include "networkd-dhcp-server.h"
22 #include "networkd-fdb.h"
23 #include "networkd-ipv6-proxy-ndp.h"
24 #include "networkd-lldp-rx.h"
25 #include "networkd-lldp-tx.h"
26 #include "networkd-mdb.h"
27 #include "networkd-ndisc.h"
28 #include "networkd-neighbor.h"
29 #include "networkd-nexthop.h"
30 #include "networkd-radv.h"
31 #include "networkd-route.h"
32 #include "networkd-util.h"
33 #include "ordered-set.h"
34 #include "resolve-util.h"
35 #include "socket-netlink.h"
37 typedef 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
;
46 typedef enum KeepConfiguration
{
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
,
53 _KEEP_CONFIGURATION_MAX
,
54 _KEEP_CONFIGURATION_INVALID
= -1,
57 typedef 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
;
66 typedef struct Manager Manager
;
68 typedef struct NetworkDHCPServerEmitAddress
{
70 struct in_addr
*addresses
;
72 } NetworkDHCPServerEmitAddress
;
84 Set
*match_permanent_mac
;
89 char **match_property
;
90 char **match_wlan_iftype
;
93 LIST_HEAD(Condition
, conditions
);
101 Hashmap
*stacked_netdevs
;
105 Hashmap
*stacked_netdev_names
;
107 /* DHCP Client Support */
109 DHCPClientIdentifier dhcp_client_identifier
;
110 char *dhcp_vendor_class_identifier
;
112 char **dhcp_user_class
;
114 uint64_t dhcp_max_attempts
;
115 uint32_t dhcp_route_metric
;
116 bool dhcp_route_metric_set
;
117 uint32_t dhcp_route_table
;
118 uint32_t dhcp_fallback_lease_lifetime
;
119 uint32_t dhcp_route_mtu
;
120 uint16_t dhcp_client_port
;
124 bool dhcp_send_hostname
;
127 bool dhcp_use_dns_set
;
128 bool dhcp_routes_to_dns
;
130 bool dhcp_use_ntp_set
;
133 bool dhcp_use_routes
;
134 int dhcp_use_gateway
;
135 bool dhcp_use_timezone
;
137 bool dhcp_use_hostname
;
138 bool dhcp_route_table_set
;
139 bool dhcp_send_release
;
140 bool dhcp_send_decline
;
141 DHCPUseDomains dhcp_use_domains
;
142 sd_ipv4acd
*dhcp_acd
;
143 Set
*dhcp_deny_listed_ip
;
144 Set
*dhcp_allow_listed_ip
;
145 Set
*dhcp_request_options
;
146 OrderedHashmap
*dhcp_client_send_options
;
147 OrderedHashmap
*dhcp_client_send_vendor_options
;
148 OrderedHashmap
*dhcp_server_send_options
;
149 OrderedHashmap
*dhcp_server_send_vendor_options
;
151 /* DHCPv6 Client support*/
153 bool dhcp6_use_dns_set
;
155 bool dhcp6_use_ntp_set
;
156 uint8_t dhcp6_pd_length
;
157 uint32_t dhcp6_route_metric
;
158 bool dhcp6_route_metric_set
;
160 char **dhcp6_user_class
;
161 char **dhcp6_vendor_class
;
162 struct in6_addr dhcp6_pd_address
;
163 DHCP6ClientStartMode dhcp6_without_ra
;
164 OrderedHashmap
*dhcp6_client_send_options
;
165 OrderedHashmap
*dhcp6_client_send_vendor_options
;
166 Set
*dhcp6_request_options
;
168 /* DHCP Server Support */
170 NetworkDHCPServerEmitAddress dhcp_server_emit
[_SD_DHCP_LEASE_SERVER_TYPE_MAX
];
171 bool dhcp_server_emit_router
;
172 bool dhcp_server_emit_timezone
;
173 char *dhcp_server_timezone
;
174 usec_t dhcp_server_default_lease_time_usec
, dhcp_server_max_lease_time_usec
;
175 uint32_t dhcp_server_pool_offset
;
176 uint32_t dhcp_server_pool_size
;
178 /* link local addressing support */
179 AddressFamily link_local
;
180 IPv6LinkLocalAddressGenMode ipv6ll_address_gen_mode
;
183 bool default_route_on_device
;
185 /* IPv6 prefix delegation support */
186 RADVPrefixDelegation router_prefix_delegation
;
187 usec_t router_lifetime_usec
;
188 uint8_t router_preference
;
190 bool router_other_information
;
191 bool router_emit_dns
;
192 bool router_emit_domains
;
193 usec_t router_dns_lifetime_usec
;
194 struct in6_addr
*router_dns
;
195 unsigned n_router_dns
;
196 OrderedSet
*router_search_domains
;
197 bool dhcp6_force_pd_other_information
; /* Start DHCPv6 PD also when 'O'
198 RA flag is set, see RFC 7084,
201 /* DHCPv6 Prefix Delegation support */
202 int64_t dhcp6_pd_subnet_id
;
203 bool dhcp6_pd_assign
;
204 union in_addr_union dhcp6_pd_token
;
210 int allow_port_to_be_root
;
213 int multicast_to_unicast
;
214 int neighbor_suppression
;
216 int bridge_proxy_arp
;
217 int bridge_proxy_arp_wifi
;
220 MulticastRouter multicast_router
;
224 uint32_t br_vid_bitmap
[BRIDGE_VLAN_BITMAP_LEN
];
225 uint32_t br_untagged_bitmap
[BRIDGE_VLAN_BITMAP_LEN
];
228 uint32_t can_bitrate
;
229 unsigned can_sample_point
;
230 uint32_t can_data_bitrate
;
231 unsigned can_data_sample_point
;
232 usec_t can_restart_us
;
233 int can_triple_sampling
;
239 AddressFamily ip_forward
;
241 int ipv4_accept_local
;
244 int ipv6_dad_transmits
;
250 bool ipv6_accept_ra_use_dns
;
251 bool ipv6_accept_ra_use_autonomous_prefix
;
252 bool ipv6_accept_ra_use_onlink_prefix
;
255 bool ipv6_accept_ra_route_table_set
;
256 DHCPUseDomains ipv6_accept_ra_use_domains
;
257 IPv6AcceptRAStartDHCP6Client ipv6_accept_ra_start_dhcp6_client
;
258 uint32_t ipv6_accept_ra_route_table
;
259 Set
*ndisc_deny_listed_prefix
;
260 OrderedSet
*ipv6_tokens
;
262 IPv6PrivacyExtensions ipv6_privacy_extensions
;
264 struct ether_addr
*mac
;
271 bool configure_without_carrier
;
272 int ignore_carrier_loss
;
273 KeepConfiguration keep_configuration
;
279 bool required_for_online
; /* Is this network required to be considered online? */
280 LinkOperationalStateRange required_operstate_for_online
;
283 LLDPMode lldp_mode
; /* LLDP reception */
284 LLDPEmit lldp_emit
; /* LLDP transmission */
285 char *lldp_mud
; /* LLDP MUD URL */
287 LIST_HEAD(Address
, static_addresses
);
288 LIST_HEAD(Route
, static_routes
);
289 LIST_HEAD(NextHop
, static_nexthops
);
290 LIST_HEAD(FdbEntry
, static_fdb_entries
);
291 LIST_HEAD(MdbEntry
, static_mdb_entries
);
292 LIST_HEAD(IPv6ProxyNDPAddress
, ipv6_proxy_ndp_addresses
);
293 LIST_HEAD(Neighbor
, neighbors
);
294 LIST_HEAD(AddressLabel
, address_labels
);
295 LIST_HEAD(Prefix
, static_prefixes
);
296 LIST_HEAD(RoutePrefix
, static_route_prefixes
);
298 unsigned n_static_addresses
;
299 unsigned n_static_routes
;
300 unsigned n_static_nexthops
;
301 unsigned n_static_fdb_entries
;
302 unsigned n_static_mdb_entries
;
303 unsigned n_ipv6_proxy_ndp_addresses
;
304 unsigned n_neighbors
;
305 unsigned n_address_labels
;
306 unsigned n_static_prefixes
;
307 unsigned n_static_route_prefixes
;
309 Hashmap
*addresses_by_section
;
310 Hashmap
*routes_by_section
;
311 Hashmap
*nexthops_by_section
;
312 Hashmap
*fdb_entries_by_section
;
313 Hashmap
*mdb_entries_by_section
;
314 Hashmap
*neighbors_by_section
;
315 Hashmap
*address_labels_by_section
;
316 Hashmap
*prefixes_by_section
;
317 Hashmap
*route_prefixes_by_section
;
318 Hashmap
*rules_by_section
;
319 OrderedHashmap
*tc_by_section
;
320 OrderedHashmap
*sr_iov_by_section
;
322 /* All kinds of DNS configuration */
323 struct in_addr_full
**dns
;
325 OrderedSet
*search_domains
, *route_domains
;
327 int dns_default_route
;
328 ResolveSupport llmnr
;
330 DnssecMode dnssec_mode
;
331 DnsOverTlsMode dns_over_tls_mode
;
332 Set
*dnssec_negative_trust_anchors
;
338 Network
*network_ref(Network
*network
);
339 Network
*network_unref(Network
*network
);
340 DEFINE_TRIVIAL_CLEANUP_FUNC(Network
*, network_unref
);
342 int network_load(Manager
*manager
, OrderedHashmap
**networks
);
343 int network_reload(Manager
*manager
);
344 int network_load_one(Manager
*manager
, OrderedHashmap
**networks
, const char *filename
);
345 int network_verify(Network
*network
);
347 int network_get_by_name(Manager
*manager
, const char *name
, Network
**ret
);
348 int network_get(Manager
*manager
, unsigned short iftype
, sd_device
*device
,
349 const char *ifname
, char * const *alternative_names
, const char *driver
,
350 const struct ether_addr
*mac
, const struct ether_addr
*permanent_mac
,
351 enum nl80211_iftype wlan_iftype
, const char *ssid
, const struct ether_addr
*bssid
,
353 int network_apply(Network
*network
, Link
*link
);
354 void network_apply_anonymize_if_set(Network
*network
);
356 bool network_has_static_ipv6_configurations(Network
*network
);
358 CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev
);
359 CONFIG_PARSER_PROTOTYPE(config_parse_tunnel
);
360 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token
);
361 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions
);
362 CONFIG_PARSER_PROTOTYPE(config_parse_domains
);
363 CONFIG_PARSER_PROTOTYPE(config_parse_dns
);
364 CONFIG_PARSER_PROTOTYPE(config_parse_hostname
);
365 CONFIG_PARSER_PROTOTYPE(config_parse_timezone
);
366 CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors
);
367 CONFIG_PARSER_PROTOTYPE(config_parse_ntp
);
368 CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online
);
369 CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration
);
370 CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_link_local_address_gen_mode
);
372 const struct ConfigPerfItem
* network_network_gperf_lookup(const char *key
, GPERF_LEN_TYPE length
);
374 const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i
) _const_
;
375 IPv6PrivacyExtensions
ipv6_privacy_extensions_from_string(const char *s
) _pure_
;
377 const char* keep_configuration_to_string(KeepConfiguration i
) _const_
;
378 KeepConfiguration
keep_configuration_from_string(const char *s
) _pure_
;
380 const char* ipv6_link_local_address_gen_mode_to_string(IPv6LinkLocalAddressGenMode s
) _const_
;
381 IPv6LinkLocalAddressGenMode
ipv6_link_local_address_gen_mode_from_string(const char *s
) _pure_
;