]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
networkd: add support to send DHCP user class option (#7499)
[thirdparty/systemd.git] / src / network / networkd-network.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
fc2f9534
LP
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2013 Tom Gundersen <teg@jklm.no>
fc2f9534
LP
8***/
9
634f0f98
ZJS
10#include "sd-bus.h"
11#include "udev.h"
12
fc2f9534 13#include "condition.h"
634f0f98
ZJS
14#include "dhcp-identifier.h"
15#include "hashmap.h"
af49ca27 16#include "resolve-util.h"
fc2f9534 17
fc2f9534 18#include "networkd-address.h"
95b74ef6 19#include "networkd-address-label.h"
13b498f9 20#include "networkd-brvlan.h"
fc2f9534 21#include "networkd-fdb.h"
7272b25e 22#include "networkd-lldp-tx.h"
a0e5c15d 23#include "networkd-ipv6-proxy-ndp.h"
6e849e95 24#include "networkd-radv.h"
71d35b6b 25#include "networkd-route.h"
bce67bbe 26#include "networkd-routing-policy-rule.h"
fc2f9534 27#include "networkd-util.h"
441e9ae4 28#include "netdev/netdev.h"
fc2f9534
LP
29
30#define DHCP_ROUTE_METRIC 1024
31#define IPV4LL_ROUTE_METRIC 2048
32
13b498f9
TJ
33#define BRIDGE_VLAN_BITMAP_MAX 4096
34#define BRIDGE_VLAN_BITMAP_LEN (BRIDGE_VLAN_BITMAP_MAX / 32)
35
499d555a 36typedef enum DHCPClientIdentifier {
fc2f9534
LP
37 DHCP_CLIENT_ID_MAC,
38 DHCP_CLIENT_ID_DUID,
dace710c
YW
39 /* The following option may not be good for RFC regarding DHCP (3315 and 4361).
40 * But some setups require this. E.g., Sky Broadband, the second largest provider in the UK
41 * requires the client id to be set to a custom string, reported at
42 * https://github.com/systemd/systemd/issues/7828 */
43 DHCP_CLIENT_ID_DUID_ONLY,
fc2f9534
LP
44 _DHCP_CLIENT_ID_MAX,
45 _DHCP_CLIENT_ID_INVALID = -1,
499d555a 46} DHCPClientIdentifier;
fc2f9534
LP
47
48typedef enum IPv6PrivacyExtensions {
49 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
50 IPV6_PRIVACY_EXTENSIONS_NO,
51 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
52 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
53 _IPV6_PRIVACY_EXTENSIONS_MAX,
54 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
55} IPv6PrivacyExtensions;
56
b2a81c0b
LP
57typedef enum DHCPUseDomains {
58 DHCP_USE_DOMAINS_NO,
59 DHCP_USE_DOMAINS_YES,
60 DHCP_USE_DOMAINS_ROUTE,
61 _DHCP_USE_DOMAINS_MAX,
62 _DHCP_USE_DOMAINS_INVALID = -1,
63} DHCPUseDomains;
64
34437b4f
LP
65typedef enum LLDPMode {
66 LLDP_MODE_NO = 0,
67 LLDP_MODE_YES = 1,
68 LLDP_MODE_ROUTERS_ONLY = 2,
69 _LLDP_MODE_MAX,
70 _LLDP_MODE_INVALID = -1,
71} LLDPMode;
72
8341a5c3
ZJS
73typedef struct DUID {
74 /* Value of Type in [DHCP] section */
75 DUIDType type;
76
77 uint8_t raw_data_len;
78 uint8_t raw_data[MAX_DUID_LEN];
79} DUID;
80
56a23cb4
PF
81typedef enum RADVPrefixDelegation {
82 RADV_PREFIX_DELEGATION_NONE,
83 RADV_PREFIX_DELEGATION_STATIC,
84 RADV_PREFIX_DELEGATION_DHCP6,
85 RADV_PREFIX_DELEGATION_BOTH,
86} RADVPrefixDelegation;
87
f4859fc7
SS
88typedef struct NetworkConfigSection {
89 unsigned line;
90 char filename[];
91} NetworkConfigSection;
92
93int network_config_section_new(const char *filename, unsigned line, NetworkConfigSection **s);
94void network_config_section_free(NetworkConfigSection *network);
95
96DEFINE_TRIVIAL_CLEANUP_FUNC(NetworkConfigSection*, network_config_section_free);
f4859fc7 97
634f0f98
ZJS
98typedef struct Manager Manager;
99
fc2f9534
LP
100struct Network {
101 Manager *manager;
102
103 char *filename;
104 char *name;
105
106 struct ether_addr *match_mac;
107 char **match_path;
108 char **match_driver;
109 char **match_type;
110 char **match_name;
111
112 Condition *match_host;
113 Condition *match_virt;
5022f08a
LP
114 Condition *match_kernel_cmdline;
115 Condition *match_kernel_version;
fc2f9534
LP
116 Condition *match_arch;
117
118 char *description;
119
120 NetDev *bridge;
121 NetDev *bond;
6cb955c6 122 NetDev *vrf;
fc2f9534
LP
123 Hashmap *stacked_netdevs;
124
125 /* DHCP Client Support */
126 AddressFamilyBoolean dhcp;
499d555a 127 DHCPClientIdentifier dhcp_client_identifier;
fc2f9534 128 char *dhcp_vendor_class_identifier;
af1c0de0 129 char **dhcp_user_class;
27cb34f5 130 char *dhcp_hostname;
94e9bd57
LP
131 unsigned dhcp_route_metric;
132 uint32_t dhcp_route_table;
9c77d107 133 uint16_t dhcp_client_port;
7585baa0 134 bool dhcp_anonymize;
27cb34f5 135 bool dhcp_send_hostname;
fc2f9534
LP
136 bool dhcp_broadcast;
137 bool dhcp_critical;
94e9bd57
LP
138 bool dhcp_use_dns;
139 bool dhcp_use_ntp;
140 bool dhcp_use_mtu;
27cb34f5
LP
141 bool dhcp_use_routes;
142 bool dhcp_use_timezone;
fb5c8216 143 bool rapid_commit;
94e9bd57 144 bool dhcp_use_hostname;
fc1ba79d 145 bool dhcp_route_table_set;
94e9bd57 146 DHCPUseDomains dhcp_use_domains;
fc2f9534
LP
147
148 /* DHCP Server Support */
149 bool dhcp_server;
1a04db0f
LP
150 bool dhcp_server_emit_dns;
151 struct in_addr *dhcp_server_dns;
152 unsigned n_dhcp_server_dns;
153 bool dhcp_server_emit_ntp;
154 struct in_addr *dhcp_server_ntp;
155 unsigned n_dhcp_server_ntp;
77ff6022 156 bool dhcp_server_emit_router;
fc2f9534 157 bool dhcp_server_emit_timezone;
1a04db0f 158 char *dhcp_server_timezone;
fc2f9534 159 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
160 uint32_t dhcp_server_pool_offset;
161 uint32_t dhcp_server_pool_size;
fc2f9534
LP
162
163 /* IPV4LL Support */
164 AddressFamilyBoolean link_local;
165 bool ipv4ll_route;
166
7d5cac19 167 /* IPv6 prefix delegation support */
56a23cb4 168 RADVPrefixDelegation router_prefix_delegation;
7d5cac19
PF
169 usec_t router_lifetime_usec;
170 uint8_t router_preference;
171 bool router_managed;
172 bool router_other_information;
9e25315c
PF
173 bool router_emit_dns;
174 bool router_emit_domains;
88295a05
PF
175 usec_t router_dns_lifetime_usec;
176 struct in6_addr *router_dns;
177 unsigned n_router_dns;
700f1186 178 char **router_search_domains;
7d5cac19 179
fc2f9534 180 /* Bridge Support */
7f9915f0
SS
181 int use_bpdu;
182 int hairpin;
183 int fast_leave;
184 int allow_port_to_be_root;
185 int unicast_flood;
b56be296
DJL
186 uint32_t cost;
187 uint16_t priority;
fc2f9534 188
ffff9abe 189 bool use_br_vlan;
13b498f9
TJ
190 uint16_t pvid;
191 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
192 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
193
fc2f9534
LP
194 AddressFamilyBoolean ip_forward;
195 bool ip_masquerade;
196
4f2e437a 197 int ipv6_accept_ra;
8749cbcd 198 int ipv6_dad_transmits;
b69c3180 199 int ipv6_hop_limit;
465dfe59 200 int ipv6_proxy_ndp;
23d8b221 201 int proxy_arp;
4e964aa0 202 uint32_t ipv6_mtu;
4f2e437a 203
1e7a0e21 204 bool ipv6_accept_ra_use_dns;
eb64b435
SS
205 bool active_slave;
206 bool primary_slave;
1e7a0e21 207 DHCPUseDomains ipv6_accept_ra_use_domains;
2ba31d29 208 uint32_t ipv6_accept_ra_route_table;
1e7a0e21 209
fc2f9534
LP
210 union in_addr_union ipv6_token;
211 IPv6PrivacyExtensions ipv6_privacy_extensions;
212
213 struct ether_addr *mac;
4e964aa0 214 uint32_t mtu;
99d2baa2 215 int arp;
a09dc546 216 bool unmanaged;
dad2d78e 217 bool configure_without_carrier;
413708d1 218 uint32_t iaid;
8341a5c3 219 DUID duid;
fc2f9534 220
c1a38904
MTL
221 bool required_for_online; /* Is this network required to be considered online? */
222
8e1ad1ea 223 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 224 LLDPEmit lldp_emit; /* LLDP transmission */
fc2f9534
LP
225
226 LIST_HEAD(Address, static_addresses);
227 LIST_HEAD(Route, static_routes);
228 LIST_HEAD(FdbEntry, static_fdb_entries);
a0e5c15d 229 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
95b74ef6 230 LIST_HEAD(AddressLabel, address_labels);
057abfd8 231 LIST_HEAD(Prefix, static_prefixes);
bce67bbe 232 LIST_HEAD(RoutingPolicyRule, rules);
fc2f9534 233
8c34b963
LP
234 unsigned n_static_addresses;
235 unsigned n_static_routes;
236 unsigned n_static_fdb_entries;
a0e5c15d 237 unsigned n_ipv6_proxy_ndp_addresses;
95b74ef6 238 unsigned n_address_labels;
057abfd8 239 unsigned n_static_prefixes;
bce67bbe 240 unsigned n_rules;
8c34b963 241
fc2f9534
LP
242 Hashmap *addresses_by_section;
243 Hashmap *routes_by_section;
244 Hashmap *fdb_entries_by_section;
95b74ef6 245 Hashmap *address_labels_by_section;
057abfd8 246 Hashmap *prefixes_by_section;
bce67bbe 247 Hashmap *rules_by_section;
fc2f9534 248
5512a963
LP
249 struct in_addr_data *dns;
250 unsigned n_dns;
251
252 char **search_domains, **route_domains, **ntp, **bind_carrier;
fc2f9534
LP
253
254 ResolveSupport llmnr;
aaa297d4 255 ResolveSupport mdns;
ad6c0475 256 DnssecMode dnssec_mode;
8a516214 257 Set *dnssec_negative_trust_anchors;
fc2f9534
LP
258
259 LIST_FIELDS(Network, networks);
260};
261
262void network_free(Network *network);
263
264DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_free);
fc2f9534
LP
265
266int network_load(Manager *manager);
267
268int network_get_by_name(Manager *manager, const char *name, Network **ret);
269int network_get(Manager *manager, struct udev_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
7d342c03 270int network_apply(Network *network, Link *link);
add8d07d 271void network_apply_anonymize_if_set(Network *network);
fc2f9534 272
439689c6
SS
273bool network_has_static_ipv6_addresses(Network *network);
274
fc2f9534
LP
275int config_parse_netdev(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
276int config_parse_domains(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
277int config_parse_tunnel(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
278int config_parse_dhcp(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
53253824 279int config_parse_dns(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
fc2f9534
LP
280int config_parse_dhcp_client_identifier(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
281int config_parse_ipv6token(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
282int config_parse_ipv6_privacy_extensions(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
283int config_parse_hostname(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
284int config_parse_timezone(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
1a04db0f 285int config_parse_dhcp_server_dns(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
88295a05 286int config_parse_radv_dns(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
700f1186 287int config_parse_radv_search_domains(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
1a04db0f 288int config_parse_dhcp_server_ntp(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
8a516214 289int config_parse_dnssec_negative_trust_anchors(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
b2a81c0b 290int config_parse_dhcp_use_domains(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
34437b4f 291int config_parse_lldp_mode(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
af1c0de0 292int config_parse_dhcp_route_table(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);int config_parse_dhcp_user_class(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
26575990 293int config_parse_ntp(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
fc2f9534
LP
294/* Legacy IPv4LL support */
295int config_parse_ipv4ll(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
296
c9f7b4d3 297const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
fc2f9534
LP
298
299extern const sd_bus_vtable network_vtable[];
300
301int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
302int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
303
304const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
305IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
b2a81c0b
LP
306
307const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
308DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
34437b4f
LP
309
310const char* lldp_mode_to_string(LLDPMode m) _const_;
311LLDPMode lldp_mode_from_string(const char *s) _pure_;