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