]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd.h
networkd: don't warn about missing links unnecessarily
[thirdparty/systemd.git] / src / network / networkd.h
CommitLineData
f579559b
TG
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
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
22#pragma once
23
24#include <arpa/inet.h>
f579559b
TG
25
26#include "sd-event.h"
27#include "sd-rtnl.h"
1346b1f0 28#include "sd-bus.h"
f5be5601 29#include "sd-dhcp-client.h"
dd43110f 30#include "sd-dhcp-server.h"
5c1d3fc9 31#include "sd-ipv4ll.h"
4138fb2c
PF
32#include "sd-icmp6-nd.h"
33#include "sd-dhcp6-client.h"
f579559b 34#include "udev.h"
ce43e484 35#include "sd-lldp.h"
f579559b
TG
36
37#include "rtnl-util.h"
38#include "hashmap.h"
39#include "list.h"
06f021a8 40#include "set.h"
134e56dc 41#include "condition.h"
3b653205 42#include "in-addr-util.h"
f579559b 43
aba496a5 44#define CACHE_INFO_INFINITY_LIFE_TIME 0xFFFFFFFFU
4faefc7f
LP
45#define DHCP_ROUTE_METRIC 1024
46#define IPV4LL_ROUTE_METRIC 2048
aba496a5 47
1a436809 48typedef struct NetDev NetDev;
f579559b
TG
49typedef struct Network Network;
50typedef struct Link Link;
51typedef struct Address Address;
52typedef struct Route Route;
53typedef struct Manager Manager;
11bf3cce 54typedef struct AddressPool AddressPool;
b98b483b 55typedef struct FdbEntry FdbEntry;
f579559b 56
cb9fc36a 57typedef enum AddressFamilyBoolean {
769d324c
LP
58 /* This is a bitmask, though it usually doesn't feel that way! */
59 ADDRESS_FAMILY_NO = 0,
60 ADDRESS_FAMILY_IPV4 = 1,
61 ADDRESS_FAMILY_IPV6 = 2,
62 ADDRESS_FAMILY_YES = 3,
cb9fc36a
LP
63 _ADDRESS_FAMILY_BOOLEAN_MAX,
64 _ADDRESS_FAMILY_BOOLEAN_INVALID = -1,
65} AddressFamilyBoolean;
ed942a9e 66
bd8f6538
TG
67typedef enum LLMNRSupport {
68 LLMNR_SUPPORT_NO,
69 LLMNR_SUPPORT_YES,
70 LLMNR_SUPPORT_RESOLVE,
71 _LLMNR_SUPPORT_MAX,
72 _LLMNR_SUPPORT_INVALID = -1,
73} LLMNRSupport;
74
b98b483b
AR
75struct FdbEntry {
76 Network *network;
77 unsigned section;
78
79 struct ether_addr *mac_addr;
80 uint16_t vlan_id;
81
82 LIST_FIELDS(FdbEntry, static_fdb_entries);
83};
84
f579559b
TG
85struct Network {
86 Manager *manager;
87
88 char *filename;
89
90 struct ether_addr *match_mac;
91 char *match_path;
92 char *match_driver;
93 char *match_type;
94 char *match_name;
edb85f0d
SS
95 char *dhcp_vendor_class_identifier;
96
2cc412b5
TG
97 Condition *match_host;
98 Condition *match_virt;
99 Condition *match_kernel;
edbb03e9 100 Condition *match_arch;
f579559b
TG
101
102 char *description;
1a436809
TG
103 NetDev *bridge;
104 NetDev *bond;
6a0a2f86 105 Hashmap *stacked_netdevs;
cb9fc36a 106 AddressFamilyBoolean dhcp;
5be4d38e 107 bool dhcp_dns;
bcb7a07e 108 bool dhcp_ntp;
4f882b2a 109 bool dhcp_mtu;
1346b1f0 110 bool dhcp_hostname;
ad0734e8 111 bool dhcp_domains;
4cc7a82c 112 bool dhcp_sendhost;
f5de5b00 113 bool dhcp_broadcast;
eb27aeca 114 bool dhcp_critical;
e1ea665e 115 bool dhcp_routes;
84b5b79a 116 unsigned dhcp_route_metric;
5c1d3fc9 117 bool ipv4ll;
bfa695b5 118 bool ipv4ll_route;
f579559b 119
dd43110f
TG
120 bool dhcp_server;
121
e1853b00
SS
122 unsigned cost;
123
769d324c 124 AddressFamilyBoolean ip_forward;
5a8bcb67 125 bool ip_masquerade;
5a8bcb67 126
c106cc36
TG
127 struct ether_addr *mac;
128 unsigned mtu;
129
ce43e484
SS
130 bool lldp;
131
f048a16b
TG
132 LIST_HEAD(Address, static_addresses);
133 LIST_HEAD(Route, static_routes);
b98b483b 134 LIST_HEAD(FdbEntry, static_fdb_entries);
f579559b 135
6ae115c1
TG
136 Hashmap *addresses_by_section;
137 Hashmap *routes_by_section;
b98b483b 138 Hashmap *fdb_entries_by_section;
6ae115c1 139
67272d15 140 bool wildcard_domain;
6192b846 141 char **domains, **dns, **ntp;
06f021a8 142
bd8f6538
TG
143 LLMNRSupport llmnr;
144
f579559b
TG
145 LIST_FIELDS(Network, networks);
146};
147
148struct Address {
149 Network *network;
16aa63a0 150 unsigned section;
f579559b 151
0dd25fb9 152 int family;
f579559b 153 unsigned char prefixlen;
5c1d3fc9 154 unsigned char scope;
81163121 155 unsigned char flags;
f579559b
TG
156 char *label;
157
eb0ea358 158 struct in_addr broadcast;
aba496a5 159 struct ifa_cacheinfo cinfo;
8cd11a0f 160
5d3de3fe 161 union in_addr_union in_addr;
c081882f 162 union in_addr_union in_addr_peer;
f579559b 163
fd6d906c 164 bool ip_masquerade_done;
5a8bcb67 165
3d3d4255 166 LIST_FIELDS(Address, addresses);
f579559b
TG
167};
168
169struct Route {
170 Network *network;
16aa63a0 171 unsigned section;
f579559b 172
0dd25fb9 173 int family;
6ae115c1 174 unsigned char dst_prefixlen;
9e7e4408 175 unsigned char src_prefixlen;
5c1d3fc9
UTL
176 unsigned char scope;
177 uint32_t metrics;
28cc555d 178 unsigned char protocol; /* RTPROT_* */
f579559b 179
5d3de3fe
LP
180 union in_addr_union in_addr;
181 union in_addr_union dst_addr;
9e7e4408 182 union in_addr_union src_addr;
46b0c76e 183 union in_addr_union prefsrc_addr;
6ae115c1 184
3d3d4255 185 LIST_FIELDS(Route, routes);
f579559b
TG
186};
187
11bf3cce
LP
188struct AddressPool {
189 Manager *manager;
190
0dd25fb9 191 int family;
11bf3cce
LP
192 unsigned prefixlen;
193
194 union in_addr_union in_addr;
195
196 LIST_FIELDS(AddressPool, address_pools);
197};
198
f579559b
TG
199struct Manager {
200 sd_rtnl *rtnl;
201 sd_event *event;
9c0a72f9 202 sd_event_source *bus_retry_event_source;
1346b1f0 203 sd_bus *bus;
9c0a72f9 204 sd_bus_slot *prepare_for_sleep_slot;
f579559b
TG
205 struct udev *udev;
206 struct udev_monitor *udev_monitor;
207 sd_event_source *udev_event_source;
208
6a24f148
TG
209 bool enumerating;
210
bbf7c048
TG
211 char *state_file;
212
f579559b 213 Hashmap *links;
52433f6b 214 Hashmap *netdevs;
f579559b 215 LIST_HEAD(Network, networks);
11bf3cce 216 LIST_HEAD(AddressPool, address_pools);
f579559b 217
f579559b
TG
218 usec_t network_dirs_ts_usec;
219};
220
2ad8416d
ZJS
221extern const char* const network_dirs[];
222
f579559b
TG
223/* Manager */
224
225int manager_new(Manager **ret);
226void manager_free(Manager *m);
227
02b59d57
TG
228int manager_load_config(Manager *m);
229bool manager_should_reload(Manager *m);
230
505f8da7 231int manager_rtnl_enumerate_links(Manager *m);
45af44d4 232int manager_rtnl_enumerate_addresses(Manager *m);
f579559b 233
bbf7c048 234int manager_save(Manager *m);
3bef724f 235
0dd25fb9 236int manager_address_pool_acquire(Manager *m, int family, unsigned prefixlen, union in_addr_union *found);
11bf3cce 237
f579559b
TG
238DEFINE_TRIVIAL_CLEANUP_FUNC(Manager*, manager_free);
239#define _cleanup_manager_free_ _cleanup_(manager_freep)
240
241/* Network */
242
243int network_load(Manager *manager);
f579559b
TG
244
245void network_free(Network *network);
246
247DEFINE_TRIVIAL_CLEANUP_FUNC(Network*, network_free);
248#define _cleanup_network_free_ _cleanup_(network_freep)
249
505f8da7
TG
250int network_get(Manager *manager, struct udev_device *device,
251 const char *ifname, const struct ether_addr *mac,
252 Network **ret);
f579559b
TG
253int network_apply(Manager *manager, Network *network, Link *link);
254
69a93e7d 255int config_parse_netdev(const char *unit, const char *filename, unsigned line,
02b59d57
TG
256 const char *section, unsigned section_line, const char *lvalue,
257 int ltype, const char *rvalue, void *data, void *userdata);
258
6192b846
TG
259int config_parse_domains(const char *unit,
260 const char *filename,
261 unsigned line,
262 const char *section,
263 unsigned section_line,
264 const char *lvalue,
265 int ltype,
266 const char *rvalue,
267 void *data,
268 void *userdata);
269
7951dea2
SS
270int config_parse_tunnel(const char *unit,
271 const char *filename,
272 unsigned line,
273 const char *section,
274 unsigned section_line,
275 const char *lvalue,
276 int ltype,
277 const char *rvalue,
278 void *data,
279 void *userdata);
280
281int config_parse_tunnel_address(const char *unit,
282 const char *filename,
283 unsigned line,
284 const char *section,
285 unsigned section_line,
286 const char *lvalue,
287 int ltype,
288 const char *rvalue,
289 void *data,
290 void *userdata);
291
85a8eeee
SS
292int config_parse_vxlan_group_address(const char *unit,
293 const char *filename,
294 unsigned line,
295 const char *section,
296 unsigned section_line,
297 const char *lvalue,
298 int ltype,
299 const char *rvalue,
300 void *data,
301 void *userdata);
302
02b59d57 303/* gperf */
c0dda186 304const struct ConfigPerfItem* network_network_gperf_lookup(const char *key, unsigned length);
f579559b
TG
305
306/* Route */
f048a16b 307int route_new_static(Network *network, unsigned section, Route **ret);
28cc555d 308int route_new_dynamic(Route **ret, unsigned char rtm_protocol);
f579559b 309void route_free(Route *route);
f882c247 310int route_configure(Route *route, Link *link, sd_rtnl_message_handler_t callback);
5c1d3fc9
UTL
311int route_drop(Route *route, Link *link, sd_rtnl_message_handler_t callback);
312
f579559b
TG
313
314DEFINE_TRIVIAL_CLEANUP_FUNC(Route*, route_free);
315#define _cleanup_route_free_ _cleanup_(route_freep)
316
317int config_parse_gateway(const char *unit, const char *filename, unsigned line,
71a61510
TG
318 const char *section, unsigned section_line, const char *lvalue,
319 int ltype, const char *rvalue, void *data, void *userdata);
f579559b 320
6ae115c1
TG
321int config_parse_destination(const char *unit, const char *filename, unsigned line,
322 const char *section, unsigned section_line, const char *lvalue,
323 int ltype, const char *rvalue, void *data, void *userdata);
324
5d8e593d
SS
325int config_parse_route_priority(const char *unit, const char *filename, unsigned line,
326 const char *section, unsigned section_line, const char *lvalue,
327 int ltype, const char *rvalue, void *data, void *userdata);
f579559b 328/* Address */
f048a16b
TG
329int address_new_static(Network *network, unsigned section, Address **ret);
330int address_new_dynamic(Address **ret);
f579559b 331void address_free(Address *address);
f882c247 332int address_configure(Address *address, Link *link, sd_rtnl_message_handler_t callback);
aba496a5 333int address_update(Address *address, Link *link, sd_rtnl_message_handler_t callback);
407fe036 334int address_drop(Address *address, Link *link, sd_rtnl_message_handler_t callback);
5a8bcb67
LP
335int address_establish(Address *address, Link *link);
336int address_release(Address *address, Link *link);
9505d3c6 337bool address_equal(Address *a1, Address *a2);
f579559b
TG
338
339DEFINE_TRIVIAL_CLEANUP_FUNC(Address*, address_free);
340#define _cleanup_address_free_ _cleanup_(address_freep)
341
342int config_parse_address(const char *unit, const char *filename, unsigned line,
71a61510
TG
343 const char *section, unsigned section_line, const char *lvalue,
344 int ltype, const char *rvalue, void *data, void *userdata);
f579559b 345
eb0ea358
TG
346int config_parse_broadcast(const char *unit, const char *filename, unsigned line,
347 const char *section, unsigned section_line, const char *lvalue,
348 int ltype, const char *rvalue, void *data, void *userdata);
349
6ae115c1
TG
350int config_parse_label(const char *unit, const char *filename, unsigned line,
351 const char *section, unsigned section_line, const char *lvalue,
352 int ltype, const char *rvalue, void *data, void *userdata);
353
b98b483b
AR
354/* Forwarding database table. */
355int fdb_entry_configure(sd_rtnl *const rtnl, FdbEntry *const fdb_entry, const int ifindex);
356void fdb_entry_free(FdbEntry *fdb_entry);
357int fdb_entry_new_static(Network *const network, const unsigned section, FdbEntry **ret);
358
359DEFINE_TRIVIAL_CLEANUP_FUNC(FdbEntry*, fdb_entry_free);
360#define _cleanup_fdbentry_free_ _cleanup_(fdb_entry_freep)
361
362int config_parse_fdb_hwaddr(const char *unit, const char *filename, unsigned line,
363 const char *section, unsigned section_line, const char *lvalue,
364 int ltype, const char *rvalue, void *data, void *userdata);
365
366int config_parse_fdb_vlan_id(const char *unit, const char *filename, unsigned line,
367 const char *section, unsigned section_line, const char *lvalue,
368 int ltype, const char *rvalue, void *data, void *userdata);
369
ed942a9e
TG
370/* DHCP support */
371
ed942a9e
TG
372int config_parse_dhcp(const char *unit, const char *filename, unsigned line,
373 const char *section, unsigned section_line, const char *lvalue,
374 int ltype, const char *rvalue, void *data, void *userdata);
375
bd8f6538
TG
376/* LLMNR support */
377
378const char* llmnr_support_to_string(LLMNRSupport i) _const_;
379LLMNRSupport llmnr_support_from_string(const char *s) _pure_;
380
381int config_parse_llmnr(const char *unit, const char *filename, unsigned line,
382 const char *section, unsigned section_line, const char *lvalue,
383 int ltype, const char *rvalue, void *data, void *userdata);
384
11bf3cce
LP
385/* Address Pool */
386
0dd25fb9
LP
387int address_pool_new(Manager *m, AddressPool **ret, int family, const union in_addr_union *u, unsigned prefixlen);
388int address_pool_new_from_string(Manager *m, AddressPool **ret, int family, const char *p, unsigned prefixlen);
11bf3cce
LP
389void address_pool_free(AddressPool *p);
390
391int address_pool_acquire(AddressPool *p, unsigned prefixlen, union in_addr_union *found);
cb9fc36a
LP
392
393const char *address_family_boolean_to_string(AddressFamilyBoolean b) _const_;
394AddressFamilyBoolean address_family_boolean_from_string(const char *s) _const_;
769d324c
LP
395
396int config_parse_address_family_boolean(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);