]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-network.h
networkd: validate NTP server strings configured in .network files
[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"
13b498f9 31#include "networkd-brvlan.h"
fc2f9534 32#include "networkd-fdb.h"
7272b25e 33#include "networkd-lldp-tx.h"
71d35b6b 34#include "networkd-route.h"
fc2f9534 35#include "networkd-util.h"
441e9ae4 36#include "netdev/netdev.h"
fc2f9534
LP
37
38#define DHCP_ROUTE_METRIC 1024
39#define IPV4LL_ROUTE_METRIC 2048
40
13b498f9
TJ
41#define BRIDGE_VLAN_BITMAP_MAX 4096
42#define BRIDGE_VLAN_BITMAP_LEN (BRIDGE_VLAN_BITMAP_MAX / 32)
43
fc2f9534
LP
44typedef enum DCHPClientIdentifier {
45 DHCP_CLIENT_ID_MAC,
46 DHCP_CLIENT_ID_DUID,
47 _DHCP_CLIENT_ID_MAX,
48 _DHCP_CLIENT_ID_INVALID = -1,
49} DCHPClientIdentifier;
50
51typedef enum IPv6PrivacyExtensions {
52 /* The values map to the kernel's /proc/sys/net/ipv6/conf/xxx/use_tempaddr values */
53 IPV6_PRIVACY_EXTENSIONS_NO,
54 IPV6_PRIVACY_EXTENSIONS_PREFER_PUBLIC,
55 IPV6_PRIVACY_EXTENSIONS_YES, /* aka prefer-temporary */
56 _IPV6_PRIVACY_EXTENSIONS_MAX,
57 _IPV6_PRIVACY_EXTENSIONS_INVALID = -1,
58} IPv6PrivacyExtensions;
59
b2a81c0b
LP
60typedef enum DHCPUseDomains {
61 DHCP_USE_DOMAINS_NO,
62 DHCP_USE_DOMAINS_YES,
63 DHCP_USE_DOMAINS_ROUTE,
64 _DHCP_USE_DOMAINS_MAX,
65 _DHCP_USE_DOMAINS_INVALID = -1,
66} DHCPUseDomains;
67
34437b4f
LP
68typedef enum LLDPMode {
69 LLDP_MODE_NO = 0,
70 LLDP_MODE_YES = 1,
71 LLDP_MODE_ROUTERS_ONLY = 2,
72 _LLDP_MODE_MAX,
73 _LLDP_MODE_INVALID = -1,
74} LLDPMode;
75
8341a5c3
ZJS
76typedef struct DUID {
77 /* Value of Type in [DHCP] section */
78 DUIDType type;
79
80 uint8_t raw_data_len;
81 uint8_t raw_data[MAX_DUID_LEN];
82} DUID;
83
634f0f98
ZJS
84typedef struct Manager Manager;
85
fc2f9534
LP
86struct Network {
87 Manager *manager;
88
89 char *filename;
90 char *name;
91
92 struct ether_addr *match_mac;
93 char **match_path;
94 char **match_driver;
95 char **match_type;
96 char **match_name;
97
98 Condition *match_host;
99 Condition *match_virt;
100 Condition *match_kernel;
101 Condition *match_arch;
102
103 char *description;
104
105 NetDev *bridge;
106 NetDev *bond;
6cb955c6 107 NetDev *vrf;
fc2f9534
LP
108 Hashmap *stacked_netdevs;
109
110 /* DHCP Client Support */
111 AddressFamilyBoolean dhcp;
112 DCHPClientIdentifier dhcp_client_identifier;
113 char *dhcp_vendor_class_identifier;
27cb34f5
LP
114 char *dhcp_hostname;
115 bool dhcp_use_dns;
116 bool dhcp_use_ntp;
117 bool dhcp_use_mtu;
118 bool dhcp_use_hostname;
b2a81c0b 119 DHCPUseDomains dhcp_use_domains;
27cb34f5 120 bool dhcp_send_hostname;
fc2f9534
LP
121 bool dhcp_broadcast;
122 bool dhcp_critical;
27cb34f5
LP
123 bool dhcp_use_routes;
124 bool dhcp_use_timezone;
fc2f9534 125 unsigned dhcp_route_metric;
f594276b 126 uint32_t dhcp_route_table;
9faed222 127 uint32_t dhcp_client_port;
fc2f9534
LP
128
129 /* DHCP Server Support */
130 bool dhcp_server;
1a04db0f
LP
131 bool dhcp_server_emit_dns;
132 struct in_addr *dhcp_server_dns;
133 unsigned n_dhcp_server_dns;
134 bool dhcp_server_emit_ntp;
135 struct in_addr *dhcp_server_ntp;
136 unsigned n_dhcp_server_ntp;
77ff6022 137 bool dhcp_server_emit_router;
fc2f9534 138 bool dhcp_server_emit_timezone;
1a04db0f 139 char *dhcp_server_timezone;
fc2f9534 140 usec_t dhcp_server_default_lease_time_usec, dhcp_server_max_lease_time_usec;
9b3a67c5
TG
141 uint32_t dhcp_server_pool_offset;
142 uint32_t dhcp_server_pool_size;
fc2f9534
LP
143
144 /* IPV4LL Support */
145 AddressFamilyBoolean link_local;
146 bool ipv4ll_route;
147
148 /* Bridge Support */
149 bool use_bpdu;
150 bool hairpin;
151 bool fast_leave;
152 bool allow_port_to_be_root;
153 bool unicast_flood;
154 unsigned cost;
155
ffff9abe 156 bool use_br_vlan;
13b498f9
TJ
157 uint16_t pvid;
158 uint32_t br_vid_bitmap[BRIDGE_VLAN_BITMAP_LEN];
159 uint32_t br_untagged_bitmap[BRIDGE_VLAN_BITMAP_LEN];
160
fc2f9534
LP
161 AddressFamilyBoolean ip_forward;
162 bool ip_masquerade;
163
4f2e437a 164 int ipv6_accept_ra;
8749cbcd 165 int ipv6_dad_transmits;
b69c3180 166 int ipv6_hop_limit;
23d8b221 167 int proxy_arp;
4f2e437a 168
1e7a0e21
LP
169 bool ipv6_accept_ra_use_dns;
170 DHCPUseDomains ipv6_accept_ra_use_domains;
2ba31d29 171 uint32_t ipv6_accept_ra_route_table;
1e7a0e21 172
fc2f9534
LP
173 union in_addr_union ipv6_token;
174 IPv6PrivacyExtensions ipv6_privacy_extensions;
175
176 struct ether_addr *mac;
177 unsigned mtu;
99d2baa2 178 int arp;
413708d1 179 uint32_t iaid;
8341a5c3 180 DUID duid;
fc2f9534 181
8e1ad1ea 182 LLDPMode lldp_mode; /* LLDP reception */
7272b25e 183 LLDPEmit lldp_emit; /* LLDP transmission */
fc2f9534
LP
184
185 LIST_HEAD(Address, static_addresses);
186 LIST_HEAD(Route, static_routes);
187 LIST_HEAD(FdbEntry, static_fdb_entries);
188
8c34b963
LP
189 unsigned n_static_addresses;
190 unsigned n_static_routes;
191 unsigned n_static_fdb_entries;
192
fc2f9534
LP
193 Hashmap *addresses_by_section;
194 Hashmap *routes_by_section;
195 Hashmap *fdb_entries_by_section;
196
3df9bec5 197 char **search_domains, **route_domains, **dns, **ntp, **bind_carrier;
fc2f9534
LP
198
199 ResolveSupport llmnr;
aaa297d4 200 ResolveSupport mdns;
ad6c0475 201 DnssecMode dnssec_mode;
8a516214 202 Set *dnssec_negative_trust_anchors;
fc2f9534
LP
203
204 LIST_FIELDS(Network, networks);
205};
206
207void network_free(Network *network);
208
209DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_free);
210#define _cleanup_network_free_ _cleanup_(network_freep)
211
212int network_load(Manager *manager);
213
214int network_get_by_name(Manager *manager, const char *name, Network **ret);
215int network_get(Manager *manager, struct udev_device *device, const char *ifname, const struct ether_addr *mac, Network **ret);
7d342c03 216int network_apply(Network *network, Link *link);
fc2f9534 217
439689c6
SS
218bool network_has_static_ipv6_addresses(Network *network);
219
fc2f9534
LP
220int 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);
221int 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);
222int 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);
223int 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 224int 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
225int 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);
226int 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);
227int 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);
228int 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);
229int 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
230int 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);
231int 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 232int 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 233int 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 234int 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 235int 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 236int 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
237
238/* Legacy IPv4LL support */
239int 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);
240
241const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, unsigned length);
242
243extern const sd_bus_vtable network_vtable[];
244
245int network_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error);
246int network_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error);
247
248const char* ipv6_privacy_extensions_to_string(IPv6PrivacyExtensions i) _const_;
249IPv6PrivacyExtensions ipv6_privacy_extensions_from_string(const char *s) _pure_;
b2a81c0b
LP
250
251const char* dhcp_use_domains_to_string(DHCPUseDomains p) _const_;
252DHCPUseDomains dhcp_use_domains_from_string(const char *s) _pure_;
34437b4f
LP
253
254const char* lldp_mode_to_string(LLDPMode m) _const_;
255LLDPMode lldp_mode_from_string(const char *s) _pure_;