]>
Commit | Line | Data |
---|---|---|
db9ecf05 | 1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
fc2f9534 LP |
2 | #pragma once |
3 | ||
baa3fadf | 4 | #include "sd-dhcp-lease.h" |
c01b9b87 | 5 | #include "sd-lldp-tx.h" |
634f0f98 | 6 | |
737f1405 | 7 | #include "bridge.h" |
fc289dd0 | 8 | #include "firewall-util.h" |
72e65e6f | 9 | #include "ipoib.h" |
5722fb89 | 10 | #include "net-condition.h" |
baa3fadf | 11 | #include "network-util.h" |
0ee78fc9 | 12 | #include "networkd-bridge-vlan.h" |
ca5ad760 | 13 | #include "networkd-dhcp-common.h" |
a145343b | 14 | #include "networkd-dhcp-server.h" |
ca5ad760 | 15 | #include "networkd-dhcp4.h" |
838d39af | 16 | #include "networkd-dhcp6.h" |
54bb2c0e | 17 | #include "networkd-dns.h" |
baa3fadf | 18 | #include "networkd-forward.h" |
0ee78fc9 | 19 | #include "networkd-ipv6ll.h" |
7f853950 | 20 | #include "networkd-lldp-rx.h" |
5f506a55 | 21 | #include "networkd-ndisc.h" |
6e849e95 | 22 | #include "networkd-radv.h" |
5e0534f1 | 23 | #include "networkd-sysctl.h" |
0ee78fc9 | 24 | #include "resolve-util.h" |
fc2f9534 | 25 | |
7da377ef | 26 | typedef enum KeepConfiguration { |
80a89d1a YW |
27 | KEEP_CONFIGURATION_NO = 0, |
28 | KEEP_CONFIGURATION_DYNAMIC_ON_START = 1 << 0, | |
29 | KEEP_CONFIGURATION_DYNAMIC_ON_STOP = 1 << 1, | |
30 | KEEP_CONFIGURATION_DYNAMIC = KEEP_CONFIGURATION_DYNAMIC_ON_START | KEEP_CONFIGURATION_DYNAMIC_ON_STOP, | |
31 | KEEP_CONFIGURATION_STATIC = 1 << 2, | |
32 | KEEP_CONFIGURATION_YES = KEEP_CONFIGURATION_DYNAMIC | KEEP_CONFIGURATION_STATIC, | |
7da377ef | 33 | _KEEP_CONFIGURATION_MAX, |
80a89d1a | 34 | _KEEP_CONFIGURATION_INVALID = -EINVAL, |
7da377ef SS |
35 | } KeepConfiguration; |
36 | ||
61135582 DS |
37 | typedef enum ActivationPolicy { |
38 | ACTIVATION_POLICY_UP, | |
39 | ACTIVATION_POLICY_ALWAYS_UP, | |
40 | ACTIVATION_POLICY_MANUAL, | |
41 | ACTIVATION_POLICY_ALWAYS_DOWN, | |
42 | ACTIVATION_POLICY_DOWN, | |
43 | ACTIVATION_POLICY_BOUND, | |
44 | _ACTIVATION_POLICY_MAX, | |
2d93c20e | 45 | _ACTIVATION_POLICY_INVALID = -EINVAL, |
61135582 DS |
46 | } ActivationPolicy; |
47 | ||
2a71d57f LP |
48 | typedef struct NetworkDHCPServerEmitAddress { |
49 | bool emit; | |
50 | struct in_addr *addresses; | |
51 | size_t n_addresses; | |
52 | } NetworkDHCPServerEmitAddress; | |
53 | ||
baa3fadf | 54 | typedef struct Network { |
fc2f9534 LP |
55 | Manager *manager; |
56 | ||
db5756f3 YW |
57 | unsigned n_ref; |
58 | ||
fc2f9534 | 59 | char *name; |
db5756f3 | 60 | char *filename; |
a2640646 | 61 | char **dropins; |
8524db50 | 62 | Hashmap *stats_by_path; |
db5756f3 | 63 | char *description; |
fc2f9534 | 64 | |
db5756f3 | 65 | /* [Match] section */ |
5722fb89 | 66 | NetMatch match; |
1beabe08 | 67 | LIST_HEAD(Condition, conditions); |
fc2f9534 | 68 | |
db5756f3 | 69 | /* Master or stacked netdevs */ |
57aef9d7 | 70 | bool keep_master; |
c0267a59 | 71 | NetDev *batadv; |
fc2f9534 LP |
72 | NetDev *bridge; |
73 | NetDev *bond; | |
6cb955c6 | 74 | NetDev *vrf; |
98d20a17 | 75 | NetDev *xfrm; |
fc2f9534 | 76 | Hashmap *stacked_netdevs; |
c0267a59 | 77 | char *batadv_name; |
cebe1257 YW |
78 | char *bridge_name; |
79 | char *bond_name; | |
80 | char *vrf_name; | |
81 | Hashmap *stacked_netdev_names; | |
fc2f9534 | 82 | |
db5756f3 | 83 | /* [Link] section */ |
a8840714 | 84 | struct hw_addr_data hw_addr; |
db5756f3 | 85 | uint32_t mtu; |
10af8bb2 | 86 | int32_t group; |
db5756f3 YW |
87 | int arp; |
88 | int multicast; | |
89 | int allmulticast; | |
937e305e | 90 | int promiscuous; |
db5756f3 | 91 | bool unmanaged; |
7c644a69 | 92 | int required_for_online; /* Is this network required to be considered online? */ |
db5756f3 | 93 | LinkOperationalStateRange required_operstate_for_online; |
8430841b | 94 | AddressFamily required_family_for_online; |
61135582 | 95 | ActivationPolicy activation_policy; |
db5756f3 YW |
96 | |
97 | /* misc settings */ | |
98 | bool configure_without_carrier; | |
6706ce2f YW |
99 | bool ignore_carrier_loss_set; |
100 | usec_t ignore_carrier_loss_usec; /* timespan */ | |
db5756f3 YW |
101 | KeepConfiguration keep_configuration; |
102 | char **bind_carrier; | |
103 | bool default_route_on_device; | |
48ed2766 | 104 | AddressFamily ip_masquerade; |
c2691d8e | 105 | usec_t ipv4_dad_timeout_usec; |
db5756f3 | 106 | |
418f2dc7 YW |
107 | /* Protocol independent settings */ |
108 | UseDomains use_domains; | |
109 | ||
7a169cb4 YW |
110 | /* For backward compatibility, only applied to DHCPv4 and DHCPv6. */ |
111 | UseDomains compat_dhcp_use_domains; | |
9646ffe2 | 112 | int compat_dhcp_use_dns; |
d12fb2bc | 113 | int compat_dhcp_use_ntp; |
7a169cb4 | 114 | |
fc2f9534 | 115 | /* DHCP Client Support */ |
2d792895 | 116 | AddressFamily dhcp; |
b93bf1bf | 117 | struct in_addr dhcp_request_address; |
0dbb5139 | 118 | bool dhcp_use_bootp; |
499d555a | 119 | DHCPClientIdentifier dhcp_client_identifier; |
4e26a5ba YW |
120 | DUID dhcp_duid; |
121 | uint32_t dhcp_iaid; | |
122 | bool dhcp_iaid_set; | |
fc2f9534 | 123 | char *dhcp_vendor_class_identifier; |
7b8d23a9 | 124 | char *dhcp_mudurl; |
af1c0de0 | 125 | char **dhcp_user_class; |
27cb34f5 | 126 | char *dhcp_hostname; |
d419ef02 | 127 | char *dhcp_label; |
715cedfb | 128 | uint64_t dhcp_max_attempts; |
132be2b8 | 129 | uint32_t dhcp_route_metric; |
bdad94d0 | 130 | bool dhcp_route_metric_set; |
94e9bd57 | 131 | uint32_t dhcp_route_table; |
e47bcb7d | 132 | bool dhcp_route_table_set; |
5fde4d37 | 133 | usec_t dhcp_fallback_lease_lifetime_usec; |
c695dcf9 | 134 | uint32_t dhcp_route_mtu; |
9c77d107 | 135 | uint16_t dhcp_client_port; |
ea932bd3 | 136 | uint16_t dhcp_port; |
cb29c156 | 137 | int dhcp_critical; |
db5756f3 | 138 | int dhcp_ip_service_type; |
ea577968 | 139 | int dhcp_socket_priority; |
140 | bool dhcp_socket_priority_set; | |
7585baa0 | 141 | bool dhcp_anonymize; |
27cb34f5 | 142 | bool dhcp_send_hostname; |
b90480c8 | 143 | bool dhcp_send_hostname_set; |
e70eca9b | 144 | int dhcp_broadcast; |
fc35a9f8 | 145 | int dhcp_ipv6_only_mode; |
cf289b14 | 146 | int dhcp_use_rapid_commit; |
9646ffe2 | 147 | int dhcp_use_dns; |
86938158 | 148 | int dhcp_use_dnr; |
a24e12f0 | 149 | bool dhcp_routes_to_dns; |
d12fb2bc | 150 | int dhcp_use_ntp; |
d7b04506 | 151 | bool dhcp_routes_to_ntp; |
299d578f | 152 | bool dhcp_use_sip; |
edb88a72 | 153 | bool dhcp_use_captive_portal; |
94e9bd57 | 154 | bool dhcp_use_mtu; |
27cb34f5 | 155 | bool dhcp_use_routes; |
589397a2 | 156 | int dhcp_use_gateway; |
f95fb199 | 157 | bool dhcp_quickack; |
cb35a0d4 SS |
158 | uint32_t dhcp_initial_congestion_window; |
159 | uint32_t dhcp_advertised_receive_window; | |
27cb34f5 | 160 | bool dhcp_use_timezone; |
94e9bd57 | 161 | bool dhcp_use_hostname; |
e49bad01 | 162 | bool dhcp_use_6rd; |
a61869d4 | 163 | uint8_t dhcp_6rd_prefix_route_type; |
1501b429 | 164 | bool dhcp_send_release; |
0f3ff4ea | 165 | bool dhcp_send_decline; |
78f5c649 | 166 | UseDomains dhcp_use_domains; |
6b000af4 | 167 | Set *dhcp_deny_listed_ip; |
98ebef62 | 168 | Set *dhcp_allow_listed_ip; |
5bc945be | 169 | Set *dhcp_request_options; |
0e96961d | 170 | OrderedHashmap *dhcp_client_send_options; |
7354900d | 171 | OrderedHashmap *dhcp_client_send_vendor_options; |
4b3590c3 | 172 | char *dhcp_netlabel; |
fc289dd0 | 173 | NFTSetContext dhcp_nft_set_context; |
fc2f9534 | 174 | |
7802194a | 175 | /* DHCPv6 Client support */ |
1536b7b2 | 176 | bool dhcp6_use_address; |
0f5ef9b6 | 177 | bool dhcp6_use_pd_prefix; |
b90480c8 RP |
178 | bool dhcp6_send_hostname; |
179 | bool dhcp6_send_hostname_set; | |
9646ffe2 | 180 | int dhcp6_use_dns; |
c691f9d9 | 181 | int dhcp6_use_dnr; |
38ba3da0 | 182 | bool dhcp6_use_hostname; |
d12fb2bc | 183 | int dhcp6_use_ntp; |
a75feb55 | 184 | bool dhcp6_use_captive_portal; |
50ee1fec | 185 | bool dhcp6_use_rapid_commit; |
78f5c649 | 186 | UseDomains dhcp6_use_domains; |
4e26a5ba YW |
187 | uint32_t dhcp6_iaid; |
188 | bool dhcp6_iaid_set; | |
189 | bool dhcp6_iaid_set_explicitly; | |
190 | DUID dhcp6_duid; | |
df8bf726 YW |
191 | uint8_t dhcp6_pd_prefix_length; |
192 | struct in6_addr dhcp6_pd_prefix_hint; | |
a61869d4 | 193 | uint8_t dhcp6_pd_prefix_route_type; |
b90480c8 | 194 | char *dhcp6_hostname; |
3175a8c2 | 195 | char *dhcp6_mudurl; |
f37f2a6b | 196 | char **dhcp6_user_class; |
ed0d1b2e | 197 | char **dhcp6_vendor_class; |
0e45721e | 198 | DHCP6ClientStartMode dhcp6_client_start_mode; |
e7d5fe17 | 199 | OrderedHashmap *dhcp6_client_send_options; |
b4ccc5de | 200 | OrderedHashmap *dhcp6_client_send_vendor_options; |
35f6a5cb | 201 | Set *dhcp6_request_options; |
4b3590c3 | 202 | char *dhcp6_netlabel; |
b895aa5f | 203 | bool dhcp6_send_release; |
fc289dd0 | 204 | NFTSetContext dhcp6_nft_set_context; |
caa8ca42 | 205 | |
fc2f9534 LP |
206 | /* DHCP Server Support */ |
207 | bool dhcp_server; | |
21b6b87e | 208 | bool dhcp_server_bind_to_interface; |
0017ba31 | 209 | unsigned char dhcp_server_address_prefixlen; |
5459e11d YW |
210 | struct in_addr dhcp_server_address_in_addr; |
211 | const Address *dhcp_server_address; | |
165d7c5c YW |
212 | int dhcp_server_uplink_index; |
213 | char *dhcp_server_uplink_name; | |
c95df587 | 214 | struct in_addr dhcp_server_relay_target; |
11c38d3e YA |
215 | char *dhcp_server_relay_agent_circuit_id; |
216 | char *dhcp_server_relay_agent_remote_id; | |
2a71d57f | 217 | NetworkDHCPServerEmitAddress dhcp_server_emit[_SD_DHCP_LEASE_SERVER_TYPE_MAX]; |
77ff6022 | 218 | bool dhcp_server_emit_router; |
59aa6220 | 219 | struct in_addr dhcp_server_router; |
fc2f9534 | 220 | bool dhcp_server_emit_timezone; |
1a04db0f | 221 | char *dhcp_server_timezone; |
fc2f9534 | 222 | usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec; |
9b3a67c5 TG |
223 | uint32_t dhcp_server_pool_offset; |
224 | uint32_t dhcp_server_pool_size; | |
db5756f3 YW |
225 | OrderedHashmap *dhcp_server_send_options; |
226 | OrderedHashmap *dhcp_server_send_vendor_options; | |
6278e428 YW |
227 | struct in_addr dhcp_server_boot_server_address; |
228 | char *dhcp_server_boot_server_name; | |
229 | char *dhcp_server_boot_filename; | |
34bea0a1 | 230 | usec_t dhcp_server_ipv6_only_preferred_usec; |
1fa0a4ef | 231 | bool dhcp_server_rapid_commit; |
a145343b | 232 | DHCPServerPersistLeases dhcp_server_persist_leases; |
fc2f9534 | 233 | |
f81ac115 | 234 | /* link-local addressing support */ |
2d792895 | 235 | AddressFamily link_local; |
6f6296b9 | 236 | IPv6LinkLocalAddressGenMode ipv6ll_address_gen_mode; |
9e1432d5 | 237 | struct in6_addr ipv6ll_stable_secret; |
34b63c9e | 238 | struct in_addr ipv4ll_start_address; |
fc2f9534 LP |
239 | bool ipv4ll_route; |
240 | ||
27ff0490 | 241 | /* IPv6 RA support */ |
56a23cb4 | 242 | RADVPrefixDelegation router_prefix_delegation; |
7d5cac19 PF |
243 | usec_t router_lifetime_usec; |
244 | uint8_t router_preference; | |
59d475ba | 245 | usec_t router_reachable_usec; |
fdc4c67c | 246 | usec_t router_retransmit_usec; |
b26c3452 | 247 | uint8_t router_hop_limit; |
7d5cac19 PF |
248 | bool router_managed; |
249 | bool router_other_information; | |
9e25315c PF |
250 | bool router_emit_dns; |
251 | bool router_emit_domains; | |
88295a05 PF |
252 | usec_t router_dns_lifetime_usec; |
253 | struct in6_addr *router_dns; | |
254 | unsigned n_router_dns; | |
5e2a51d5 | 255 | OrderedSet *router_search_domains; |
63295b42 YW |
256 | int router_uplink_index; |
257 | char *router_uplink_name; | |
6a6d27bc SS |
258 | /* Mobile IPv6 Home Agent */ |
259 | bool router_home_agent_information; | |
260 | uint16_t router_home_agent_preference; | |
261 | usec_t home_agent_lifetime_usec; | |
99e015e2 | 262 | |
a27588d4 YW |
263 | /* DHCP Prefix Delegation support */ |
264 | int dhcp_pd; | |
265 | bool dhcp_pd_announce; | |
266 | bool dhcp_pd_assign; | |
267 | bool dhcp_pd_manage_temporary_address; | |
268 | int64_t dhcp_pd_subnet_id; | |
269 | uint32_t dhcp_pd_route_metric; | |
270 | Set *dhcp_pd_tokens; | |
271 | int dhcp_pd_uplink_index; | |
272 | char *dhcp_pd_uplink_name; | |
4b3590c3 | 273 | char *dhcp_pd_netlabel; |
fc289dd0 | 274 | NFTSetContext dhcp_pd_nft_set_context; |
7d5cac19 | 275 | |
fc2f9534 | 276 | /* Bridge Support */ |
7f9915f0 SS |
277 | int use_bpdu; |
278 | int hairpin; | |
97f27f8a | 279 | int isolated; |
7f9915f0 SS |
280 | int fast_leave; |
281 | int allow_port_to_be_root; | |
282 | int unicast_flood; | |
7f15b714 | 283 | int multicast_flood; |
d3aa8b49 | 284 | int multicast_to_unicast; |
7f15b714 TJ |
285 | int neighbor_suppression; |
286 | int learning; | |
1087623b SS |
287 | int bridge_proxy_arp; |
288 | int bridge_proxy_arp_wifi; | |
b56be296 DJL |
289 | uint32_t cost; |
290 | uint16_t priority; | |
0fadb2a4 | 291 | MulticastRouter multicast_router; |
a434de60 | 292 | int bridge_locked; |
08a26ecc | 293 | int bridge_mac_authentication_bypass; |
c88adbc0 | 294 | int bridge_vlan_tunnel; |
fc2f9534 | 295 | |
db5756f3 | 296 | /* Bridge VLAN */ |
f269016c YW |
297 | uint16_t bridge_vlan_pvid; |
298 | uint32_t bridge_vlan_bitmap[BRIDGE_VLAN_BITMAP_LEN]; | |
299 | uint32_t bridge_vlan_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN]; | |
13b498f9 | 300 | |
06828bb6 | 301 | /* CAN support */ |
74a27268 | 302 | uint32_t can_bitrate; |
06828bb6 | 303 | unsigned can_sample_point; |
b164b570 YW |
304 | nsec_t can_time_quanta_ns; |
305 | uint32_t can_propagation_segment; | |
306 | uint32_t can_phase_buffer_segment_1; | |
307 | uint32_t can_phase_buffer_segment_2; | |
308 | uint32_t can_sync_jump_width; | |
7e025e9c RP |
309 | uint32_t can_data_bitrate; |
310 | unsigned can_data_sample_point; | |
b164b570 YW |
311 | nsec_t can_data_time_quanta_ns; |
312 | uint32_t can_data_propagation_segment; | |
313 | uint32_t can_data_phase_buffer_segment_1; | |
314 | uint32_t can_data_phase_buffer_segment_2; | |
315 | uint32_t can_data_sync_jump_width; | |
06828bb6 | 316 | usec_t can_restart_us; |
f1c141cb YW |
317 | uint32_t can_control_mode_mask; |
318 | uint32_t can_control_mode_flags; | |
239f91f7 YW |
319 | uint16_t can_termination; |
320 | bool can_termination_set; | |
06828bb6 | 321 | |
72e65e6f YW |
322 | /* IPoIB support */ |
323 | IPoIBMode ipoib_mode; | |
324 | int ipoib_umcast; | |
325 | ||
db5756f3 | 326 | /* sysctl settings */ |
3976c430 | 327 | int ip_forwarding[2]; |
94d76d07 | 328 | int ipv4_accept_local; |
d75bf6cf | 329 | int ipv4_route_localnet; |
8749cbcd | 330 | int ipv6_dad_transmits; |
986e1823 | 331 | uint8_t ipv6_hop_limit; |
d4c8de21 | 332 | usec_t ipv6_retransmission_time; |
23d8b221 | 333 | int proxy_arp; |
b4959550 | 334 | int proxy_arp_pvlan; |
4e964aa0 | 335 | uint32_t ipv6_mtu; |
db5756f3 | 336 | IPv6PrivacyExtensions ipv6_privacy_extensions; |
9c72e8f8 | 337 | IPReversePathFilter ipv4_rp_filter; |
d865abf9 | 338 | IPv4ForceIgmpVersion ipv4_force_igmp_version; |
db5756f3 YW |
339 | int ipv6_proxy_ndp; |
340 | Set *ipv6_proxy_ndp_addresses; | |
10a76844 | 341 | int mpls_input; |
4f2e437a | 342 | |
52672db3 YW |
343 | /* NDisc support */ |
344 | int ndisc; | |
9c683c0e | 345 | int ndisc_use_dnr; |
6df00594 | 346 | bool ndisc_use_redirect; |
9646ffe2 | 347 | int ndisc_use_dns; |
52672db3 YW |
348 | bool ndisc_use_gateway; |
349 | bool ndisc_use_route_prefix; | |
350 | bool ndisc_use_autonomous_prefix; | |
351 | bool ndisc_use_onlink_prefix; | |
352 | bool ndisc_use_mtu; | |
353 | bool ndisc_use_hop_limit; | |
354 | bool ndisc_use_reachable_time; | |
355 | bool ndisc_use_retransmission_time; | |
52672db3 YW |
356 | bool ndisc_quickack; |
357 | bool ndisc_use_captive_portal; | |
358 | bool ndisc_use_pref64; | |
eb64b435 SS |
359 | bool active_slave; |
360 | bool primary_slave; | |
78f5c649 | 361 | UseDomains ndisc_use_domains; |
52672db3 YW |
362 | IPv6AcceptRAStartDHCP6Client ndisc_start_dhcp6_client; |
363 | uint32_t ndisc_route_table; | |
364 | bool ndisc_route_table_set; | |
365 | uint32_t ndisc_route_metric_high; | |
366 | uint32_t ndisc_route_metric_medium; | |
367 | uint32_t ndisc_route_metric_low; | |
368 | bool ndisc_route_metric_set; | |
75d26411 YW |
369 | Set *ndisc_deny_listed_router; |
370 | Set *ndisc_allow_listed_router; | |
6b000af4 | 371 | Set *ndisc_deny_listed_prefix; |
de6b6ff8 | 372 | Set *ndisc_allow_listed_prefix; |
16c89e64 | 373 | Set *ndisc_deny_listed_route_prefix; |
de6b6ff8 | 374 | Set *ndisc_allow_listed_route_prefix; |
3bac5fe6 | 375 | Set *ndisc_tokens; |
4b3590c3 | 376 | char *ndisc_netlabel; |
fc289dd0 | 377 | NFTSetContext ndisc_nft_set_context; |
1e7a0e21 | 378 | |
e9a8c550 | 379 | /* LLDP support */ |
8e1ad1ea | 380 | LLDPMode lldp_mode; /* LLDP reception */ |
c01b9b87 YW |
381 | sd_lldp_multicast_mode_t lldp_multicast_mode; /* LLDP transmission */ |
382 | char *lldp_mudurl; /* LLDP MUD URL */ | |
fc2f9534 | 383 | |
9cd9fc8f | 384 | OrderedHashmap *addresses_by_section; |
fc2f9534 | 385 | Hashmap *routes_by_section; |
015b2432 | 386 | OrderedHashmap *nexthops_by_section; |
9671ae9d | 387 | Hashmap *bridge_fdb_entries_by_section; |
ff9e0783 | 388 | Hashmap *bridge_mdb_entries_by_section; |
aa9626ee | 389 | OrderedHashmap *neighbors_by_section; |
95b74ef6 | 390 | Hashmap *address_labels_by_section; |
057abfd8 | 391 | Hashmap *prefixes_by_section; |
203d4df5 | 392 | Hashmap *route_prefixes_by_section; |
1925f829 | 393 | Hashmap *pref64_prefixes_by_section; |
bce67bbe | 394 | Hashmap *rules_by_section; |
c517a49b | 395 | Hashmap *dhcp_static_leases_by_section; |
3a67b8bb YW |
396 | Hashmap *qdiscs_by_section; |
397 | Hashmap *tclasses_by_section; | |
518cd6b5 | 398 | OrderedHashmap *sr_iov_by_section; |
fc2f9534 | 399 | |
7ece6f58 | 400 | /* All kinds of DNS configuration */ |
e77bd3fd | 401 | struct in_addr_full **dns; |
5512a963 | 402 | unsigned n_dns; |
5e2a51d5 | 403 | OrderedSet *search_domains, *route_domains; |
7ece6f58 | 404 | int dns_default_route; |
fc2f9534 | 405 | ResolveSupport llmnr; |
aaa297d4 | 406 | ResolveSupport mdns; |
ad6c0475 | 407 | DnssecMode dnssec_mode; |
c9299be2 | 408 | DnsOverTlsMode dns_over_tls_mode; |
8a516214 | 409 | Set *dnssec_negative_trust_anchors; |
fc2f9534 | 410 | |
db5756f3 | 411 | /* NTP */ |
7ece6f58 | 412 | char **ntp; |
baa3fadf | 413 | } Network; |
fc2f9534 | 414 | |
35ac3b76 YW |
415 | Network *network_ref(Network *network); |
416 | Network *network_unref(Network *network); | |
417 | DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref); | |
fc2f9534 | 418 | |
173c9f63 | 419 | int network_load(Manager *manager, OrderedHashmap **ret); |
7f06b3e1 YW |
420 | int network_reload(Manager *manager); |
421 | int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename); | |
96db6412 | 422 | int network_verify(Network *network); |
fc2f9534 | 423 | |
a27588d4 | 424 | int manager_build_dhcp_pd_subnet_ids(Manager *manager); |
1a4ca0e2 | 425 | |
fc2f9534 | 426 | int network_get_by_name(Manager *manager, const char *name, Network **ret); |
add8d07d | 427 | void network_apply_anonymize_if_set(Network *network); |
fc2f9534 | 428 | |
adfeee49 | 429 | bool network_has_static_ipv6_configurations(Network *network); |
439689c6 | 430 | |
cebe1257 | 431 | CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev); |
a2106925 | 432 | CONFIG_PARSER_PROTOTYPE(config_parse_tunnel); |
4ac77d63 | 433 | CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online); |
8430841b | 434 | CONFIG_PARSER_PROTOTYPE(config_parse_required_family_for_online); |
7da377ef | 435 | CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration); |
61135582 | 436 | CONFIG_PARSER_PROTOTYPE(config_parse_activation_policy); |
f0c09831 | 437 | CONFIG_PARSER_PROTOTYPE(config_parse_link_group); |
6706ce2f | 438 | CONFIG_PARSER_PROTOTYPE(config_parse_ignore_carrier_loss); |
fc2f9534 | 439 | |
c9f7b4d3 | 440 | const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length); |
fc2f9534 | 441 | |
7da377ef SS |
442 | const char* keep_configuration_to_string(KeepConfiguration i) _const_; |
443 | KeepConfiguration keep_configuration_from_string(const char *s) _pure_; | |
6f6296b9 | 444 | |
61135582 DS |
445 | const char* activation_policy_to_string(ActivationPolicy i) _const_; |
446 | ActivationPolicy activation_policy_from_string(const char *s) _pure_; |