]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
sd-radv: Add Router Advertisement prefix handling
[thirdparty/systemd.git] / src / network / networkd-network.h
CommitLineData
fc2f9534
LP
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2013 Tom Gundersen <teg@jklm.no>
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
634f0f98
ZJS
22#include "sd-bus.h"
23#include "udev.h"
24
fc2f9534 25#include "condition.h"
634f0f98
ZJS
26#include "dhcp-identifier.h"
27#include "hashmap.h"
af49ca27 28#include "resolve-util.h"
fc2f9534 29
fc2f9534 30#include "networkd-address.h"
95b74ef6 31#include "networkd-address-label.h"
13b498f9 32#include "networkd-brvlan.h"
fc2f9534 33#include "networkd-fdb.h"
7272b25e 34#include "networkd-lldp-tx.h"
a0e5c15d 35#include "networkd-ipv6-proxy-ndp.h"
71d35b6b 36#include "networkd-route.h"
fc2f9534 37#include "networkd-util.h"
441e9ae4 38#include "netdev/netdev.h"
fc2f9534
LP
39
40#define DHCP_ROUTE_METRIC 1024
41#define IPV4LL_ROUTE_METRIC 2048
42
13b498f9
TJ
43#define BRIDGE_VLAN_BITMAP_MAX 4096
44#define BRIDGE_VLAN_BITMAP_LEN (BRIDGE_VLAN_BITMAP_MAX / 32)
45
fc2f9534
LP
46typedef enum DCHPClientIdentifier {
47 DHCP_CLIENT_ID_MAC,
48 DHCP_CLIENT_ID_DUID,
49 _DHCP_CLIENT_ID_MAX,
50 _DHCP_CLIENT_ID_INVALID = -1,
51} DCHPClientIdentifier;
52
53typedef enum IPv6PrivacyExtensions {
54 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
55 IPV6_PRIVACY_EXTENSIONS_NO,
56 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
57 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
58 _IPV6_PRIVACY_EXTENSIONS_MAX,
59 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
60} IPv6PrivacyExtensions;
61
b2a81c0b
LP
62typedef enum DHCPUseDomains {
63 DHCP_USE_DOMAINS_NO,
64 DHCP_USE_DOMAINS_YES,
65 DHCP_USE_DOMAINS_ROUTE,
66 _DHCP_USE_DOMAINS_MAX,
67 _DHCP_USE_DOMAINS_INVALID = -1,
68} DHCPUseDomains;
69
34437b4f
LP
70typedef enum LLDPMode {
71 LLDP_MODE_NO = 0,
72 LLDP_MODE_YES = 1,
73 LLDP_MODE_ROUTERS_ONLY = 2,
74 _LLDP_MODE_MAX,
75 _LLDP_MODE_INVALID = -1,
76} LLDPMode;
77
8341a5c3
ZJS
78typedef struct DUID {
79 /* Value of Type in [DHCP] section */
80 DUIDType type;
81
82 uint8_t raw_data_len;
83 uint8_t raw_data[MAX_DUID_LEN];
84} DUID;
85
f4859fc7
SS
86typedef struct NetworkConfigSection {
87 unsigned line;
88 char filename[];
89} NetworkConfigSection;
90
91int network_config_section_new(const char *filename, unsigned line, NetworkConfigSection **s);
92void network_config_section_free(NetworkConfigSection *network);
93
94DEFINE_TRIVIAL_CLEANUP_FUNC(NetworkConfigSection*, network_config_section_free);
95#define _cleanup_network_config_section_free_ _cleanup_(network_config_section_freep)
96
634f0f98
ZJS
97typedef struct Manager Manager;
98
fc2f9534
LP
99struct Network {
100 Manager *manager;
101
102 char *filename;
103 char *name;
104
105 struct ether_addr *match_mac;
106 char **match_path;
107 char **match_driver;
108 char **match_type;
109 char **match_name;
110
111 Condition *match_host;
112 Condition *match_virt;
113 Condition *match_kernel;
114 Condition *match_arch;
115
116 char *description;
117
118 NetDev *bridge;
119 NetDev *bond;
6cb955c6 120 NetDev *vrf;
fc2f9534
LP
121 Hashmap *stacked_netdevs;
122
123 /* DHCP Client Support */
124 AddressFamilyBoolean dhcp;
125 DCHPClientIdentifier dhcp_client_identifier;
126 char *dhcp_vendor_class_identifier;
27cb34f5 127 char *dhcp_hostname;
94e9bd57
LP
128 unsigned dhcp_route_metric;
129 uint32_t dhcp_route_table;
9c77d107 130 uint16_t dhcp_client_port;
27cb34f5 131 bool dhcp_send_hostname;
fc2f9534
LP
132 bool dhcp_broadcast;
133 bool dhcp_critical;
94e9bd57
LP
134 bool dhcp_use_dns;
135 bool dhcp_use_ntp;
136 bool dhcp_use_mtu;
27cb34f5
LP
137 bool dhcp_use_routes;
138 bool dhcp_use_timezone;
94e9bd57
LP
139 bool dhcp_use_hostname;
140 DHCPUseDomains dhcp_use_domains;
fc2f9534
LP
141
142 /* DHCP Server Support */
143 bool dhcp_server;
1a04db0f
LP
144 bool dhcp_server_emit_dns;
145 struct in_addr *dhcp_server_dns;
146 unsigned n_dhcp_server_dns;
147 bool dhcp_server_emit_ntp;
148 struct in_addr *dhcp_server_ntp;
149 unsigned n_dhcp_server_ntp;
77ff6022 150 bool dhcp_server_emit_router;
fc2f9534 151 bool dhcp_server_emit_timezone;
1a04db0f 152 char *dhcp_server_timezone;
fc2f9534 153 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
154 uint32_t dhcp_server_pool_offset;
155 uint32_t dhcp_server_pool_size;
fc2f9534
LP
156
157 /* IPV4LL Support */
158 AddressFamilyBoolean link_local;
159 bool ipv4ll_route;
160
161 /* Bridge Support */
162 bool use_bpdu;
163 bool hairpin;
164 bool fast_leave;
165 bool allow_port_to_be_root;
166 bool unicast_flood;
b56be296
DJL
167 uint32_t cost;
168 uint16_t priority;
fc2f9534 169
ffff9abe 170 bool use_br_vlan;
13b498f9
TJ
171 uint16_t pvid;
172 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
173 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
174
fc2f9534
LP
175 AddressFamilyBoolean ip_forward;
176 bool ip_masquerade;
177
4f2e437a 178 int ipv6_accept_ra;
8749cbcd 179 int ipv6_dad_transmits;
b69c3180 180 int ipv6_hop_limit;
465dfe59 181 int ipv6_proxy_ndp;
23d8b221 182 int proxy_arp;
4f2e437a 183
1e7a0e21 184 bool ipv6_accept_ra_use_dns;
eb64b435
SS
185 bool active_slave;
186 bool primary_slave;
1e7a0e21 187 DHCPUseDomains ipv6_accept_ra_use_domains;
2ba31d29 188 uint32_t ipv6_accept_ra_route_table;
1e7a0e21 189
fc2f9534
LP
190 union in_addr_union ipv6_token;
191 IPv6PrivacyExtensions ipv6_privacy_extensions;
192
193 struct ether_addr *mac;
b8b40317 194 size_t mtu;
99d2baa2 195 int arp;
a09dc546 196 bool unmanaged;
413708d1 197 uint32_t iaid;
8341a5c3 198 DUID duid;
fc2f9534 199
8e1ad1ea 200 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 201 LLDPEmit lldp_emit; /* LLDP transmission */
fc2f9534
LP
202
203 LIST_HEAD(Address, static_addresses);
204 LIST_HEAD(Route, static_routes);
205 LIST_HEAD(FdbEntry, static_fdb_entries);
a0e5c15d 206 LIST_HEAD(IPv6ProxyNDPAddress, ipv6_proxy_ndp_addresses);
95b74ef6 207 LIST_HEAD(AddressLabel, address_labels);
fc2f9534 208
8c34b963
LP
209 unsigned n_static_addresses;
210 unsigned n_static_routes;
211 unsigned n_static_fdb_entries;
a0e5c15d 212 unsigned n_ipv6_proxy_ndp_addresses;
95b74ef6 213 unsigned n_address_labels;
8c34b963 214
fc2f9534
LP
215 Hashmap *addresses_by_section;
216 Hashmap *routes_by_section;
217 Hashmap *fdb_entries_by_section;
95b74ef6 218 Hashmap *address_labels_by_section;
fc2f9534 219
5512a963
LP
220 struct in_addr_data *dns;
221 unsigned n_dns;
222
223 char **search_domains, **route_domains, **ntp, **bind_carrier;
fc2f9534
LP
224
225 ResolveSupport llmnr;
aaa297d4 226 ResolveSupport mdns;
ad6c0475 227 DnssecMode dnssec_mode;
8a516214 228 Set *dnssec_negative_trust_anchors;
fc2f9534
LP
229
230 LIST_FIELDS(Network, networks);
231};
232
233void network_free(Network *network);
234
235DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_free);
236#define _cleanup_network_free_ _cleanup_(network_freep)
237
238int network_load(Manager *manager);
239
240int network_get_by_name(Manager *manager, const char *name, Network **ret);
241int network_get(Manager *manager, struct udev_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
7d342c03 242int network_apply(Network *network, Link *link);
fc2f9534 243
439689c6
SS
244bool network_has_static_ipv6_addresses(Network *network);
245
fc2f9534
LP
246int 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);
247int 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);
248int 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);
249int 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 250int 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
251int 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);
252int 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);
253int 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);
254int 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);
255int 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
LP
256int 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);
257int 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 258int 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 259int 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 260int 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);
f594276b 261int 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);
26575990 262int 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
263
264/* Legacy IPv4LL support */
265int 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);
266
c9f7b4d3 267const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
fc2f9534
LP
268
269extern const sd_bus_vtable network_vtable[];
270
271int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
272int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
273
274const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
275IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
b2a81c0b
LP
276
277const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
278DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
34437b4f
LP
279
280const char* lldp_mode_to_string(LLDPMode m) _const_;
281LLDPMode lldp_mode_from_string(const char *s) _pure_;