]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
Merge pull request #17185 from yuwata/ethtool-update
[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"
634f0f98 8
737f1405 9#include "bridge.h"
fc2f9534 10#include "condition.h"
a2106925 11#include "conf-parser.h"
634f0f98 12#include "hashmap.h"
737f1405 13#include "netdev.h"
13b498f9 14#include "networkd-brvlan.h"
ca5ad760
YW
15#include "networkd-dhcp-common.h"
16#include "networkd-dhcp4.h"
838d39af 17#include "networkd-dhcp6.h"
564ca984 18#include "networkd-dhcp-server.h"
7f853950 19#include "networkd-lldp-rx.h"
a2106925 20#include "networkd-lldp-tx.h"
5f506a55 21#include "networkd-ndisc.h"
6e849e95 22#include "networkd-radv.h"
5e0534f1 23#include "networkd-sysctl.h"
fc2f9534 24#include "networkd-util.h"
5e2a51d5 25#include "ordered-set.h"
a2106925 26#include "resolve-util.h"
e77bd3fd 27#include "socket-netlink.h"
fc2f9534 28
7da377ef 29typedef enum KeepConfiguration {
95355a28
YW
30 KEEP_CONFIGURATION_NO = 0,
31 KEEP_CONFIGURATION_DHCP_ON_START = 1 << 0,
32 KEEP_CONFIGURATION_DHCP_ON_STOP = 1 << 1,
33 KEEP_CONFIGURATION_DHCP = KEEP_CONFIGURATION_DHCP_ON_START | KEEP_CONFIGURATION_DHCP_ON_STOP,
34 KEEP_CONFIGURATION_STATIC = 1 << 2,
35 KEEP_CONFIGURATION_YES = KEEP_CONFIGURATION_DHCP | KEEP_CONFIGURATION_STATIC,
7da377ef
SS
36 _KEEP_CONFIGURATION_MAX,
37 _KEEP_CONFIGURATION_INVALID = -1,
38} KeepConfiguration;
39
6f6296b9
YW
40typedef enum IPv6LinkLocalAddressGenMode {
41 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_EUI64 = IN6_ADDR_GEN_MODE_EUI64,
42 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_NONE = IN6_ADDR_GEN_MODE_NONE,
43 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_STABLE_PRIVACY = IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
44 IPV6_LINK_LOCAL_ADDRESSS_GEN_MODE_RANDOM = IN6_ADDR_GEN_MODE_RANDOM,
45 _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_MAX,
46 _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_INVALID = -1
47} IPv6LinkLocalAddressGenMode;
48
634f0f98
ZJS
49typedef struct Manager Manager;
50
2a71d57f
LP
51typedef struct NetworkDHCPServerEmitAddress {
52 bool emit;
53 struct in_addr *addresses;
54 size_t n_addresses;
55} NetworkDHCPServerEmitAddress;
56
fc2f9534
LP
57struct Network {
58 Manager *manager;
59
db5756f3
YW
60 unsigned n_ref;
61
fc2f9534 62 char *name;
db5756f3 63 char *filename;
7f06b3e1 64 usec_t timestamp;
db5756f3 65 char *description;
fc2f9534 66
db5756f3 67 /* [Match] section */
e90d0374 68 Set *match_mac;
4bb7cc82 69 Set *match_permanent_mac;
fc2f9534
LP
70 char **match_path;
71 char **match_driver;
72 char **match_type;
73 char **match_name;
44005bfb 74 char **match_property;
78404d22 75 char **match_wlan_iftype;
8d968fdd 76 char **match_ssid;
277ba8d1 77 Set *match_bssid;
1beabe08 78 LIST_HEAD(Condition, conditions);
fc2f9534 79
db5756f3 80 /* Master or stacked netdevs */
fc2f9534
LP
81 NetDev *bridge;
82 NetDev *bond;
6cb955c6 83 NetDev *vrf;
98d20a17 84 NetDev *xfrm;
fc2f9534 85 Hashmap *stacked_netdevs;
cebe1257
YW
86 char *bridge_name;
87 char *bond_name;
88 char *vrf_name;
89 Hashmap *stacked_netdev_names;
fc2f9534 90
db5756f3
YW
91 /* [Link] section */
92 struct ether_addr *mac;
93 uint32_t mtu;
94 uint32_t group;
95 int arp;
96 int multicast;
97 int allmulticast;
98 bool unmanaged;
99 bool required_for_online; /* Is this network required to be considered online? */
100 LinkOperationalStateRange required_operstate_for_online;
101
102 /* misc settings */
103 bool configure_without_carrier;
104 int ignore_carrier_loss;
105 KeepConfiguration keep_configuration;
106 char **bind_carrier;
107 bool default_route_on_device;
108 bool ip_masquerade;
109
fc2f9534 110 /* DHCP Client Support */
2d792895 111 AddressFamily dhcp;
499d555a 112 DHCPClientIdentifier dhcp_client_identifier;
db5756f3
YW
113 DUID duid;
114 uint32_t iaid;
115 bool iaid_set;
fc2f9534 116 char *dhcp_vendor_class_identifier;
7b8d23a9 117 char *dhcp_mudurl;
af1c0de0 118 char **dhcp_user_class;
27cb34f5 119 char *dhcp_hostname;
715cedfb 120 uint64_t dhcp_max_attempts;
132be2b8 121 uint32_t dhcp_route_metric;
bdad94d0 122 bool dhcp_route_metric_set;
94e9bd57 123 uint32_t dhcp_route_table;
d6463307 124 uint32_t dhcp_fallback_lease_lifetime;
c695dcf9 125 uint32_t dhcp_route_mtu;
9c77d107 126 uint16_t dhcp_client_port;
cb29c156 127 int dhcp_critical;
db5756f3 128 int dhcp_ip_service_type;
7585baa0 129 bool dhcp_anonymize;
27cb34f5 130 bool dhcp_send_hostname;
fc2f9534 131 bool dhcp_broadcast;
94e9bd57 132 bool dhcp_use_dns;
bdad94d0 133 bool dhcp_use_dns_set;
a24e12f0 134 bool dhcp_routes_to_dns;
94e9bd57 135 bool dhcp_use_ntp;
bdad94d0 136 bool dhcp_use_ntp_set;
299d578f 137 bool dhcp_use_sip;
94e9bd57 138 bool dhcp_use_mtu;
27cb34f5 139 bool dhcp_use_routes;
589397a2 140 int dhcp_use_gateway;
27cb34f5 141 bool dhcp_use_timezone;
94e9bd57 142 bool dhcp_use_hostname;
fc1ba79d 143 bool dhcp_route_table_set;
1501b429 144 bool dhcp_send_release;
0f3ff4ea 145 bool dhcp_send_decline;
94e9bd57 146 DHCPUseDomains dhcp_use_domains;
6b000af4 147 Set *dhcp_deny_listed_ip;
98ebef62 148 Set *dhcp_allow_listed_ip;
5bc945be 149 Set *dhcp_request_options;
0e96961d 150 OrderedHashmap *dhcp_client_send_options;
7354900d 151 OrderedHashmap *dhcp_client_send_vendor_options;
fc2f9534 152
caa8ca42
SS
153 /* DHCPv6 Client support*/
154 bool dhcp6_use_dns;
bdad94d0 155 bool dhcp6_use_dns_set;
caa8ca42 156 bool dhcp6_use_ntp;
bdad94d0 157 bool dhcp6_use_ntp_set;
db5756f3 158 bool dhcp6_rapid_commit;
2805536b 159 uint8_t dhcp6_pd_length;
1bf1bfd9 160 uint32_t dhcp6_route_metric;
bdad94d0 161 bool dhcp6_route_metric_set;
3175a8c2 162 char *dhcp6_mudurl;
f37f2a6b 163 char **dhcp6_user_class;
ed0d1b2e 164 char **dhcp6_vendor_class;
2805536b 165 struct in6_addr dhcp6_pd_address;
838d39af 166 DHCP6ClientStartMode dhcp6_without_ra;
e7d5fe17 167 OrderedHashmap *dhcp6_client_send_options;
b4ccc5de 168 OrderedHashmap *dhcp6_client_send_vendor_options;
35f6a5cb 169 Set *dhcp6_request_options;
db5756f3
YW
170 /* Start DHCPv6 PD also when 'O' RA flag is set, see RFC 7084, WPD-4 */
171 bool dhcp6_force_pd_other_information;
caa8ca42 172
fc2f9534
LP
173 /* DHCP Server Support */
174 bool dhcp_server;
2a71d57f 175 NetworkDHCPServerEmitAddress dhcp_server_emit[_SD_DHCP_LEASE_SERVER_TYPE_MAX];
77ff6022 176 bool dhcp_server_emit_router;
fc2f9534 177 bool dhcp_server_emit_timezone;
1a04db0f 178 char *dhcp_server_timezone;
fc2f9534 179 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
180 uint32_t dhcp_server_pool_offset;
181 uint32_t dhcp_server_pool_size;
db5756f3
YW
182 OrderedHashmap *dhcp_server_send_options;
183 OrderedHashmap *dhcp_server_send_vendor_options;
fc2f9534 184
6f6296b9 185 /* link local addressing support */
2d792895 186 AddressFamily link_local;
6f6296b9 187 IPv6LinkLocalAddressGenMode ipv6ll_address_gen_mode;
fc2f9534
LP
188 bool ipv4ll_route;
189
27ff0490 190 /* IPv6 RA support */
56a23cb4 191 RADVPrefixDelegation router_prefix_delegation;
7d5cac19
PF
192 usec_t router_lifetime_usec;
193 uint8_t router_preference;
194 bool router_managed;
195 bool router_other_information;
9e25315c
PF
196 bool router_emit_dns;
197 bool router_emit_domains;
88295a05
PF
198 usec_t router_dns_lifetime_usec;
199 struct in6_addr *router_dns;
200 unsigned n_router_dns;
5e2a51d5 201 OrderedSet *router_search_domains;
99e015e2
YW
202
203 /* DHCPv6 Prefix Delegation support */
e502f94d 204 int dhcp6_pd;
4afd9867 205 bool dhcp6_pd_announce;
99e015e2 206 bool dhcp6_pd_assign;
db5756f3 207 int64_t dhcp6_pd_subnet_id;
99e015e2 208 union in_addr_union dhcp6_pd_token;
7d5cac19 209
fc2f9534 210 /* Bridge Support */
7f9915f0
SS
211 int use_bpdu;
212 int hairpin;
213 int fast_leave;
214 int allow_port_to_be_root;
215 int unicast_flood;
7f15b714 216 int multicast_flood;
d3aa8b49 217 int multicast_to_unicast;
7f15b714
TJ
218 int neighbor_suppression;
219 int learning;
1087623b
SS
220 int bridge_proxy_arp;
221 int bridge_proxy_arp_wifi;
b56be296
DJL
222 uint32_t cost;
223 uint16_t priority;
0fadb2a4 224 MulticastRouter multicast_router;
fc2f9534 225
db5756f3 226 /* Bridge VLAN */
ffff9abe 227 bool use_br_vlan;
13b498f9
TJ
228 uint16_t pvid;
229 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
230 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
231
06828bb6 232 /* CAN support */
74a27268 233 uint32_t can_bitrate;
06828bb6 234 unsigned can_sample_point;
7e025e9c
RP
235 uint32_t can_data_bitrate;
236 unsigned can_data_sample_point;
06828bb6 237 usec_t can_restart_us;
c423be28 238 int can_triple_sampling;
52aa38f1 239 int can_termination;
74f0fb90 240 int can_listen_only;
7e025e9c
RP
241 int can_fd_mode;
242 int can_non_iso;
06828bb6 243
db5756f3 244 /* sysctl settings */
2d792895 245 AddressFamily ip_forward;
94d76d07 246 int ipv4_accept_local;
8749cbcd 247 int ipv6_dad_transmits;
b69c3180 248 int ipv6_hop_limit;
23d8b221 249 int proxy_arp;
4e964aa0 250 uint32_t ipv6_mtu;
db5756f3
YW
251 IPv6PrivacyExtensions ipv6_privacy_extensions;
252 int ipv6_proxy_ndp;
253 Set *ipv6_proxy_ndp_addresses;
4f2e437a 254
db5756f3
YW
255 /* IPv6 accept RA */
256 int ipv6_accept_ra;
1e7a0e21 257 bool ipv6_accept_ra_use_dns;
062c2eea
SS
258 bool ipv6_accept_ra_use_autonomous_prefix;
259 bool ipv6_accept_ra_use_onlink_prefix;
eb64b435
SS
260 bool active_slave;
261 bool primary_slave;
ac24e418 262 bool ipv6_accept_ra_route_table_set;
1e7a0e21 263 DHCPUseDomains ipv6_accept_ra_use_domains;
ac24e418 264 IPv6AcceptRAStartDHCP6Client ipv6_accept_ra_start_dhcp6_client;
2ba31d29 265 uint32_t ipv6_accept_ra_route_table;
6b000af4 266 Set *ndisc_deny_listed_prefix;
2c621495 267 OrderedSet *ipv6_tokens;
1e7a0e21 268
e9a8c550 269 /* LLDP support */
8e1ad1ea 270 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 271 LLDPEmit lldp_emit; /* LLDP transmission */
e9a8c550 272 char *lldp_mud; /* LLDP MUD URL */
fc2f9534 273
9cd9fc8f 274 OrderedHashmap *addresses_by_section;
fc2f9534 275 Hashmap *routes_by_section;
c16c7808 276 Hashmap *nexthops_by_section;
fc2f9534 277 Hashmap *fdb_entries_by_section;
3db468ea 278 Hashmap *mdb_entries_by_section;
e4a71bf3 279 Hashmap *neighbors_by_section;
95b74ef6 280 Hashmap *address_labels_by_section;
057abfd8 281 Hashmap *prefixes_by_section;
203d4df5 282 Hashmap *route_prefixes_by_section;
bce67bbe 283 Hashmap *rules_by_section;
34658df2 284 OrderedHashmap *tc_by_section;
518cd6b5 285 OrderedHashmap *sr_iov_by_section;
fc2f9534 286
7ece6f58 287 /* All kinds of DNS configuration */
e77bd3fd 288 struct in_addr_full **dns;
5512a963 289 unsigned n_dns;
5e2a51d5 290 OrderedSet *search_domains, *route_domains;
7ece6f58 291 int dns_default_route;
fc2f9534 292 ResolveSupport llmnr;
aaa297d4 293 ResolveSupport mdns;
ad6c0475 294 DnssecMode dnssec_mode;
c9299be2 295 DnsOverTlsMode dns_over_tls_mode;
8a516214 296 Set *dnssec_negative_trust_anchors;
fc2f9534 297
db5756f3 298 /* NTP */
7ece6f58 299 char **ntp;
fc2f9534
LP
300};
301
35ac3b76
YW
302Network *network_ref(Network *network);
303Network *network_unref(Network *network);
304DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_unref);
fc2f9534 305
7f06b3e1
YW
306int network_load(Manager *manager, OrderedHashmap **networks);
307int network_reload(Manager *manager);
308int network_load_one(Manager *manager, OrderedHashmap **networks, const char *filename);
96db6412 309int network_verify(Network *network);
fc2f9534
LP
310
311int network_get_by_name(Manager *manager, const char *name, Network **ret);
c643bda5
YW
312int network_get(Manager *manager, unsigned short iftype, sd_device *device,
313 const char *ifname, char * const *alternative_names, const char *driver,
4bb7cc82 314 const struct ether_addr *mac, const struct ether_addr *permanent_mac,
c643bda5
YW
315 enum nl80211_iftype wlan_iftype, const char *ssid, const struct ether_addr *bssid,
316 Network **ret);
7d342c03 317int network_apply(Network *network, Link *link);
add8d07d 318void network_apply_anonymize_if_set(Network *network);
fc2f9534 319
adfeee49 320bool network_has_static_ipv6_configurations(Network *network);
439689c6 321
cebe1257 322CONFIG_PARSER_PROTOTYPE(config_parse_stacked_netdev);
a2106925 323CONFIG_PARSER_PROTOTYPE(config_parse_tunnel);
ca5ad760
YW
324CONFIG_PARSER_PROTOTYPE(config_parse_domains);
325CONFIG_PARSER_PROTOTYPE(config_parse_dns);
a2106925
LP
326CONFIG_PARSER_PROTOTYPE(config_parse_hostname);
327CONFIG_PARSER_PROTOTYPE(config_parse_timezone);
a2106925 328CONFIG_PARSER_PROTOTYPE(config_parse_dnssec_negative_trust_anchors);
a2106925 329CONFIG_PARSER_PROTOTYPE(config_parse_ntp);
4ac77d63 330CONFIG_PARSER_PROTOTYPE(config_parse_required_for_online);
7da377ef 331CONFIG_PARSER_PROTOTYPE(config_parse_keep_configuration);
6f6296b9 332CONFIG_PARSER_PROTOTYPE(config_parse_ipv6_link_local_address_gen_mode);
fc2f9534 333
c9f7b4d3 334const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
fc2f9534 335
7da377ef
SS
336const char* keep_configuration_to_string(KeepConfiguration i) _const_;
337KeepConfiguration keep_configuration_from_string(const char *s) _pure_;
6f6296b9
YW
338
339const char* ipv6_link_local_address_gen_mode_to_string(IPv6LinkLocalAddressGenMode s) _const_;
340IPv6LinkLocalAddressGenMode ipv6_link_local_address_gen_mode_from_string(const char *s) _pure_;