]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
sd-network: DHCPv4 Add support to send and receive LPR servers.
[thirdparty/systemd.git] / src / network / networkd-network.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
fc2f9534
LP
2#pragma once
3
78404d22
YW
4#include <linux/nl80211.h>
5
634f0f98 6#include "sd-bus.h"
51517f9e 7#include "sd-device.h"
0f3ff4ea 8#include "sd-ipv4acd.h"
634f0f98 9
737f1405 10#include "bridge.h"
fc2f9534 11#include "condition.h"
a2106925 12#include "conf-parser.h"
634f0f98 13#include "hashmap.h"
737f1405 14#include "netdev.h"
95b74ef6 15#include "networkd-address-label.h"
a2106925 16#include "networkd-address.h"
13b498f9 17#include "networkd-brvlan.h"
ca5ad760
YW
18#include "networkd-dhcp-common.h"
19#include "networkd-dhcp4.h"
564ca984 20#include "networkd-dhcp-server.h"
fc2f9534 21#include "networkd-fdb.h"
a0e5c15d 22#include "networkd-ipv6-proxy-ndp.h"
7f853950 23#include "networkd-lldp-rx.h"
a2106925 24#include "networkd-lldp-tx.h"
5f506a55 25#include "networkd-ndisc.h"
e4a71bf3 26#include "networkd-neighbor.h"
c16c7808 27#include "networkd-nexthop.h"
6e849e95 28#include "networkd-radv.h"
71d35b6b 29#include "networkd-route.h"
bce67bbe 30#include "networkd-routing-policy-rule.h"
fc2f9534 31#include "networkd-util.h"
5e2a51d5 32#include "ordered-set.h"
a2106925 33#include "resolve-util.h"
fc2f9534 34
fc2f9534
LP
35typedef 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
7da377ef 44typedef enum KeepConfiguration {
95355a28
YW
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,
7da377ef
SS
51 _KEEP_CONFIGURATION_MAX,
52 _KEEP_CONFIGURATION_INVALID = -1,
53} KeepConfiguration;
54
634f0f98
ZJS
55typedef struct Manager Manager;
56
fc2f9534
LP
57struct Network {
58 Manager *manager;
59
60 char *filename;
61 char *name;
7f06b3e1 62 usec_t timestamp;
fc2f9534 63
35ac3b76
YW
64 unsigned n_ref;
65
e90d0374 66 Set *match_mac;
4bb7cc82 67 Set *match_permanent_mac;
fc2f9534
LP
68 char **match_path;
69 char **match_driver;
70 char **match_type;
71 char **match_name;
44005bfb 72 char **match_property;
78404d22 73 char **match_wlan_iftype;
8d968fdd 74 char **match_ssid;
277ba8d1 75 Set *match_bssid;
1beabe08 76 LIST_HEAD(Condition, conditions);
fc2f9534
LP
77
78 char *description;
79
80 NetDev *bridge;
81 NetDev *bond;
6cb955c6 82 NetDev *vrf;
98d20a17 83 NetDev *xfrm;
fc2f9534 84 Hashmap *stacked_netdevs;
cebe1257
YW
85 char *bridge_name;
86 char *bond_name;
87 char *vrf_name;
88 Hashmap *stacked_netdev_names;
fc2f9534
LP
89
90 /* DHCP Client Support */
2d792895 91 AddressFamily dhcp;
499d555a 92 DHCPClientIdentifier dhcp_client_identifier;
fc2f9534 93 char *dhcp_vendor_class_identifier;
7b8d23a9 94 char *dhcp_mudurl;
af1c0de0 95 char **dhcp_user_class;
27cb34f5 96 char *dhcp_hostname;
715cedfb 97 uint64_t dhcp_max_attempts;
94e9bd57
LP
98 unsigned dhcp_route_metric;
99 uint32_t dhcp_route_table;
c695dcf9 100 uint32_t dhcp_route_mtu;
9c77d107 101 uint16_t dhcp_client_port;
cb29c156
SS
102 int dhcp_critical;
103 int ip_service_type;
7585baa0 104 bool dhcp_anonymize;
27cb34f5 105 bool dhcp_send_hostname;
fc2f9534 106 bool dhcp_broadcast;
94e9bd57 107 bool dhcp_use_dns;
a24e12f0 108 bool dhcp_routes_to_dns;
94e9bd57 109 bool dhcp_use_ntp;
299d578f 110 bool dhcp_use_sip;
94e9bd57 111 bool dhcp_use_mtu;
27cb34f5 112 bool dhcp_use_routes;
b4531227 113 bool dhcp_use_gateway;
27cb34f5 114 bool dhcp_use_timezone;
fb5c8216 115 bool rapid_commit;
94e9bd57 116 bool dhcp_use_hostname;
fc1ba79d 117 bool dhcp_route_table_set;
1501b429 118 bool dhcp_send_release;
0f3ff4ea 119 bool dhcp_send_decline;
94e9bd57 120 DHCPUseDomains dhcp_use_domains;
0f3ff4ea 121 sd_ipv4acd *dhcp_acd;
727b5734 122 Set *dhcp_black_listed_ip;
5bc945be 123 Set *dhcp_request_options;
0e96961d 124 OrderedHashmap *dhcp_client_send_options;
7354900d 125 OrderedHashmap *dhcp_client_send_vendor_options;
0e96961d 126 OrderedHashmap *dhcp_server_send_options;
7354900d 127 OrderedHashmap *dhcp_server_send_vendor_options;
fc2f9534 128
caa8ca42
SS
129 /* DHCPv6 Client support*/
130 bool dhcp6_use_dns;
131 bool dhcp6_use_ntp;
cd305af1 132 bool dhcp6_without_ra;
2805536b 133 uint8_t dhcp6_pd_length;
3175a8c2 134 char *dhcp6_mudurl;
2805536b 135 struct in6_addr dhcp6_pd_address;
caa8ca42 136
fc2f9534
LP
137 /* DHCP Server Support */
138 bool dhcp_server;
299d578f 139
1a04db0f
LP
140 bool dhcp_server_emit_dns;
141 struct in_addr *dhcp_server_dns;
142 unsigned n_dhcp_server_dns;
299d578f 143
1a04db0f
LP
144 bool dhcp_server_emit_ntp;
145 struct in_addr *dhcp_server_ntp;
146 unsigned n_dhcp_server_ntp;
299d578f
SS
147
148 bool dhcp_server_emit_sip;
149 struct in_addr *dhcp_server_sip;
150 unsigned n_dhcp_server_sip;
151
284e8fd0
SS
152 struct in_addr *dhcp_server_pop3;
153 unsigned n_dhcp_server_pop3;
154
f6269fe7
SS
155 struct in_addr *dhcp_server_smtp;
156 unsigned n_dhcp_server_smtp;
157
77ff6022 158 bool dhcp_server_emit_router;
fc2f9534 159 bool dhcp_server_emit_timezone;
1a04db0f 160 char *dhcp_server_timezone;
fc2f9534 161 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
162 uint32_t dhcp_server_pool_offset;
163 uint32_t dhcp_server_pool_size;
fc2f9534
LP
164
165 /* IPV4LL Support */
2d792895 166 AddressFamily link_local;
fc2f9534
LP
167 bool ipv4ll_route;
168
5d5003ab
YW
169 bool default_route_on_device;
170
7d5cac19 171 /* IPv6 prefix delegation support */
56a23cb4 172 RADVPrefixDelegation router_prefix_delegation;
7d5cac19
PF
173 usec_t router_lifetime_usec;
174 uint8_t router_preference;
175 bool router_managed;
176 bool router_other_information;
9e25315c
PF
177 bool router_emit_dns;
178 bool router_emit_domains;
88295a05
PF
179 usec_t router_dns_lifetime_usec;
180 struct in6_addr *router_dns;
181 unsigned n_router_dns;
5e2a51d5 182 OrderedSet *router_search_domains;
125f20b4
PF
183 bool dhcp6_force_pd_other_information; /* Start DHCPv6 PD also when 'O'
184 RA flag is set, see RFC 7084,
185 WPD-4 */
7d5cac19 186
fc2f9534 187 /* Bridge Support */
7f9915f0
SS
188 int use_bpdu;
189 int hairpin;
190 int fast_leave;
191 int allow_port_to_be_root;
192 int unicast_flood;
7f15b714 193 int multicast_flood;
d3aa8b49 194 int multicast_to_unicast;
7f15b714
TJ
195 int neighbor_suppression;
196 int learning;
1087623b
SS
197 int bridge_proxy_arp;
198 int bridge_proxy_arp_wifi;
b56be296
DJL
199 uint32_t cost;
200 uint16_t priority;
0fadb2a4 201 MulticastRouter multicast_router;
fc2f9534 202
ffff9abe 203 bool use_br_vlan;
13b498f9
TJ
204 uint16_t pvid;
205 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
206 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
207
06828bb6 208 /* CAN support */
74a27268 209 uint32_t can_bitrate;
06828bb6 210 unsigned can_sample_point;
7e025e9c
RP
211 uint32_t can_data_bitrate;
212 unsigned can_data_sample_point;
06828bb6 213 usec_t can_restart_us;
c423be28 214 int can_triple_sampling;
52aa38f1 215 int can_termination;
74f0fb90 216 int can_listen_only;
7e025e9c
RP
217 int can_fd_mode;
218 int can_non_iso;
06828bb6 219
2d792895 220 AddressFamily ip_forward;
fc2f9534
LP
221 bool ip_masquerade;
222
4f2e437a 223 int ipv6_accept_ra;
8749cbcd 224 int ipv6_dad_transmits;
b69c3180 225 int ipv6_hop_limit;
465dfe59 226 int ipv6_proxy_ndp;
23d8b221 227 int proxy_arp;
4e964aa0 228 uint32_t ipv6_mtu;
4f2e437a 229
1e7a0e21 230 bool ipv6_accept_ra_use_dns;
062c2eea
SS
231 bool ipv6_accept_ra_use_autonomous_prefix;
232 bool ipv6_accept_ra_use_onlink_prefix;
eb64b435
SS
233 bool active_slave;
234 bool primary_slave;
ac24e418 235 bool ipv6_accept_ra_route_table_set;
1e7a0e21 236 DHCPUseDomains ipv6_accept_ra_use_domains;
ac24e418 237 IPv6AcceptRAStartDHCP6Client ipv6_accept_ra_start_dhcp6_client;
2ba31d29 238 uint32_t ipv6_accept_ra_route_table;
e520ce64 239 Set *ndisc_black_listed_prefix;
5f506a55 240 OrderedHashmap *ipv6_tokens;
1e7a0e21 241
fc2f9534
LP
242 IPv6PrivacyExtensions ipv6_privacy_extensions;
243
244 struct ether_addr *mac;
4e964aa0 245 uint32_t mtu;
99d2baa2 246 int arp;
e6ebebbe 247 int multicast;
866e6b7a 248 int allmulticast;
a09dc546 249 bool unmanaged;
dad2d78e 250 bool configure_without_carrier;
93b4dab5 251 bool ignore_carrier_loss;
7da377ef 252 KeepConfiguration keep_configuration;
413708d1 253 uint32_t iaid;
8341a5c3 254 DUID duid;
fc2f9534 255
8217ed5e
TH
256 bool iaid_set;
257
c1a38904 258 bool required_for_online; /* Is this network required to be considered online? */
75cd4a5d 259 LinkOperationalStateRange required_operstate_for_online;
c1a38904 260
e9a8c550 261 /* LLDP support */
8e1ad1ea 262 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 263 LLDPEmit lldp_emit; /* LLDP transmission */
e9a8c550 264 char *lldp_mud; /* LLDP MUD URL */
fc2f9534
LP
265
266 LIST_HEAD(Address, static_addresses);
267 LIST_HEAD(Route, static_routes);
c16c7808 268 LIST_HEAD(NextHop, static_nexthops);
fc2f9534 269 LIST_HEAD(FdbEntry, static_fdb_entries);
a0e5c15d 270 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
e4a71bf3 271 LIST_HEAD(Neighbor, neighbors);
95b74ef6 272 LIST_HEAD(AddressLabel, address_labels);
057abfd8 273 LIST_HEAD(Prefix, static_prefixes);
95081e08 274 LIST_HEAD(RoutePrefix, static_route_prefixes);
bce67bbe 275 LIST_HEAD(RoutingPolicyRule, rules);
fc2f9534 276
8c34b963
LP
277 unsigned n_static_addresses;
278 unsigned n_static_routes;
c16c7808 279 unsigned n_static_nexthops;
8c34b963 280 unsigned n_static_fdb_entries;
a0e5c15d 281 unsigned n_ipv6_proxy_ndp_addresses;
e4a71bf3 282 unsigned n_neighbors;
95b74ef6 283 unsigned n_address_labels;
057abfd8 284 unsigned n_static_prefixes;
203d4df5 285 unsigned n_static_route_prefixes;
bce67bbe 286 unsigned n_rules;
8c34b963 287
fc2f9534
LP
288 Hashmap *addresses_by_section;
289 Hashmap *routes_by_section;
c16c7808 290 Hashmap *nexthops_by_section;
fc2f9534 291 Hashmap *fdb_entries_by_section;
e4a71bf3 292 Hashmap *neighbors_by_section;
95b74ef6 293 Hashmap *address_labels_by_section;
057abfd8 294 Hashmap *prefixes_by_section;
203d4df5 295 Hashmap *route_prefixes_by_section;
bce67bbe 296 Hashmap *rules_by_section;
34658df2 297 OrderedHashmap *tc_by_section;
fc2f9534 298
7ece6f58 299 /* All kinds of DNS configuration */
5512a963
LP
300 struct in_addr_data *dns;
301 unsigned n_dns;
5e2a51d5
ZJS
302 OrderedSet *search_domains, *route_domains;
303
7ece6f58 304 int dns_default_route;
fc2f9534 305 ResolveSupport llmnr;
aaa297d4 306 ResolveSupport mdns;
ad6c0475 307 DnssecMode dnssec_mode;
c9299be2 308 DnsOverTlsMode dns_over_tls_mode;
8a516214 309 Set *dnssec_negative_trust_anchors;
fc2f9534 310
7ece6f58 311 char **ntp;
299d578f 312 char **sip;
284e8fd0 313 char **pop3;
f6269fe7 314 char **smtp;
7ece6f58 315 char **bind_carrier;
fc2f9534
LP
316};
317
35ac3b76
YW
318Network *network_ref(Network *network);
319Network *network_unref(Network *network);
320DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
fc2f9534 321
7f06b3e1
YW
322int network_load(Manager *manager, OrderedHashmap **networks);
323int network_reload(Manager *manager);
324int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename);
96db6412 325int network_verify(Network *network);
fc2f9534
LP
326
327int network_get_by_name(Manager *manager, const char *name, Network **ret);
ef62949a 328int network_get(Manager *manager, unsigned short iftype, sd_device *device, const char *ifname, char * const *alternative_names,
4bb7cc82
YW
329 const struct ether_addr *mac, const struct ether_addr *permanent_mac,
330 enum nl80211_iftype wlan_iftype, const char *ssid,
572b21d9 331 const struct ether_addr *bssid, Network **ret);
7d342c03 332int network_apply(Network *network, Link *link);
add8d07d 333void network_apply_anonymize_if_set(Network *network);
fc2f9534 334
adfeee49 335bool network_has_static_ipv6_configurations(Network *network);
439689c6 336
cebe1257 337CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
a2106925 338CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
a2106925
LP
339CONFIG_PARSER_PROTOTYPE(config_parse_ipv6token);
340CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_privacy_extensions);
ca5ad760
YW
341CONFIG_PARSER_PROTOTYPE(config_parse_domains);
342CONFIG_PARSER_PROTOTYPE(config_parse_dns);
a2106925
LP
343CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
344CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
a2106925 345CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
a2106925 346CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
4ac77d63 347CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
7da377ef 348CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration);
fc2f9534 349
c9f7b4d3 350const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
fc2f9534 351
fc2f9534
LP
352const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
353IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
b2a81c0b 354
7da377ef
SS
355const char* keep_configuration_to_string(KeepConfiguration i) _const_;
356KeepConfiguration keep_configuration_from_string(const char *s) _pure_;