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