dhcp: rework static lease logic
[oweals/odhcpd.git] / src / odhcpd.h
1 /**
2  * Copyright (C) 2012-2013 Steven Barth <steven@midlink.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License v2 as published by
6  * the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  */
14
15 #pragma once
16 #include <netinet/in.h>
17 #include <netinet/icmp6.h>
18 #include <netinet/ether.h>
19 #include <stdbool.h>
20 #include <syslog.h>
21
22 #include <libubox/blobmsg.h>
23 #include <libubox/list.h>
24 #include <libubox/uloop.h>
25 #include <libubox/avl.h>
26 #include <libubox/ustream.h>
27 #include <libubox/vlist.h>
28
29 // RFC 6106 defines this router advertisement option
30 #define ND_OPT_ROUTE_INFO 24
31 #define ND_OPT_RECURSIVE_DNS 25
32 #define ND_OPT_DNS_SEARCH 31
33
34 #define INFINITE_VALID(x) ((x) == 0)
35
36 #define _unused __attribute__((unused))
37 #define _packed __attribute__((packed))
38
39 #define ALL_IPV6_NODES "ff02::1"
40 #define ALL_IPV6_ROUTERS "ff02::2"
41
42 #define IN6_IS_ADDR_ULA(a) (((a)->s6_addr32[0] & htonl(0xfe000000)) == htonl(0xfc000000))
43
44 struct interface;
45 struct nl_sock;
46 extern struct vlist_tree leases;
47
48 struct odhcpd_event {
49         struct uloop_fd uloop;
50         void (*handle_dgram)(void *addr, void *data, size_t len,
51                         struct interface *iface, void *dest_addr);
52         void (*handle_error)(struct odhcpd_event *e, int error);
53         void (*recv_msgs)(struct odhcpd_event *e);
54 };
55
56 typedef void (*dhcpv6_binding_cb_handler_t)(struct in6_addr *addr, int prefix,
57                                             uint32_t pref, uint32_t valid,
58                                             void *arg);
59
60 union if_addr {
61         struct in_addr in;
62         struct in6_addr in6;
63 };
64
65 struct netevent_handler_info {
66         struct interface *iface;
67         union {
68                 struct {
69                         union if_addr dst;
70                         uint8_t dst_len;
71                         union if_addr gateway;
72                 } rt;
73                 struct {
74                         union if_addr dst;
75                         uint16_t state;
76                         uint8_t flags;
77                 } neigh;
78                 struct {
79                         struct odhcpd_ipaddr *addrs;
80                         size_t len;
81                 } addrs_old;
82                 union if_addr addr;
83         };
84 };
85
86 enum netevents {
87         NETEV_IFINDEX_CHANGE,
88         NETEV_ADDR_ADD,
89         NETEV_ADDR_DEL,
90         NETEV_ADDRLIST_CHANGE,
91         NETEV_ADDR6_ADD,
92         NETEV_ADDR6_DEL,
93         NETEV_ADDR6LIST_CHANGE,
94         NETEV_ROUTE6_ADD,
95         NETEV_ROUTE6_DEL,
96         NETEV_NEIGH6_ADD,
97         NETEV_NEIGH6_DEL,
98 };
99
100 struct netevent_handler {
101         struct list_head head;
102         void (*cb) (unsigned long event, struct netevent_handler_info *info);
103 };
104
105 struct odhcpd_ipaddr {
106         union if_addr addr;
107         uint8_t prefix;
108         uint32_t preferred;
109         uint32_t valid;
110
111         /* ipv6 only */
112         uint8_t dprefix;
113
114         /* ipv4 only */
115         struct in_addr broadcast;
116 };
117
118 enum odhcpd_mode {
119         MODE_DISABLED,
120         MODE_SERVER,
121         MODE_RELAY,
122         MODE_HYBRID
123 };
124
125
126 enum odhcpd_assignment_flags {
127         OAF_TENTATIVE           = (1 << 0),
128         OAF_BOUND               = (1 << 1),
129         OAF_STATIC              = (1 << 2),
130         OAF_BROKEN_HOSTNAME     = (1 << 3),
131         OAF_DHCPV4              = (1 << 4),
132         OAF_DHCPV6              = (1 << 5),
133 };
134
135 struct config {
136         bool legacy;
137         bool main_dhcpv4;
138         char *dhcp_cb;
139         char *dhcp_statefile;
140         int log_level;
141 } config;
142
143
144 struct lease {
145         struct vlist_node node;
146         struct list_head assignments;
147         uint32_t ipaddr;
148         uint32_t hostid;
149         struct ether_addr mac;
150         uint16_t duid_len;
151         uint8_t *duid;
152         uint32_t leasetime;
153         char *hostname;
154 };
155
156
157 struct odhcpd_ref_ip;
158
159 struct dhcp_assignment {
160         struct list_head head;
161         struct list_head lease_list;
162
163         struct interface *iface;
164         struct lease *lease;
165
166         struct sockaddr_in6 peer;
167         time_t valid_until;
168
169 #define fr_timer        reconf_timer
170         struct uloop_timeout reconf_timer;
171 #define accept_fr_nonce accept_reconf
172         bool accept_reconf;
173 #define fr_cnt          reconf_cnt
174         int reconf_cnt;
175         uint8_t key[16];
176         struct odhcpd_ref_ip *fr_ip;
177
178         uint32_t addr;
179         uint32_t assigned;
180         uint32_t iaid;
181         uint8_t length; // length == 128 -> IA_NA, length <= 64 -> IA_PD
182
183         struct odhcpd_ipaddr *managed;
184         ssize_t managed_size;
185         struct ustream_fd managed_sock;
186
187         unsigned int flags;
188         uint32_t leasetime;
189         char *hostname;
190 #define hwaddr          mac
191         uint8_t mac[6];
192
193         uint16_t clid_len;
194         uint8_t clid_data[];
195 };
196
197
198 struct interface {
199         struct avl_node avl;
200
201         int ifindex;
202         char *ifname;
203         const char *name;
204
205         // IPv6 runtime data
206         struct odhcpd_ipaddr *addr6;
207         size_t addr6_len;
208
209         // RA runtime data
210         struct uloop_timeout timer_rs;
211
212         // DHCPv6 runtime data
213         struct odhcpd_event dhcpv6_event;
214         struct list_head ia_assignments;
215
216         // NDP runtime data
217         struct odhcpd_event ndp_event;
218
219         // IPv4 runtime data
220         struct odhcpd_ipaddr *addr4;
221         size_t addr4_len;
222
223         // DHCPv4 runtime data
224         struct odhcpd_event dhcpv4_event;
225         struct list_head dhcpv4_assignments;
226         struct list_head dhcpv4_fr_ips;
227
228         // Managed PD
229         char dhcpv6_pd_manager[128];
230         struct in6_addr dhcpv6_pd_cer;
231
232         // Services
233         enum odhcpd_mode ra;
234         enum odhcpd_mode dhcpv6;
235         enum odhcpd_mode ndp;
236         enum odhcpd_mode dhcpv4;
237
238         // Config
239         bool inuse;
240         bool external;
241         bool master;
242         bool ignore;
243         bool always_rewrite_dns;
244         bool ra_not_onlink;
245         bool ra_advrouter;
246         bool ra_useleasetime;
247         bool ra_dns;
248         bool no_dynamic_dhcp;
249         uint8_t pio_filter_length;
250         struct in6_addr pio_filter_addr;
251
252         // RA
253         int learn_routes;
254         int default_router;
255         int ra_managed;
256         int route_preference;
257         int ra_maxinterval;
258         int ra_mininterval;
259         int ra_lifetime;
260         uint32_t ra_reachabletime;
261         uint32_t ra_retranstime;
262         uint32_t ra_hoplimit;
263         int ra_mtu;
264
265         // DHCPv4
266         struct in_addr dhcpv4_start;
267         struct in_addr dhcpv4_end;
268         struct in_addr dhcpv4_start_ip;
269         struct in_addr dhcpv4_end_ip;
270         struct in_addr dhcpv4_local;
271         struct in_addr dhcpv4_bcast;
272         struct in_addr dhcpv4_mask;
273         struct in_addr *dhcpv4_router;
274         size_t dhcpv4_router_cnt;
275         struct in_addr *dhcpv4_dns;
276         size_t dhcpv4_dns_cnt;
277         uint32_t dhcpv4_leasetime;
278         bool dhcpv4_forcereconf;
279
280         // DNS
281         struct in6_addr *dns;
282         size_t dns_cnt;
283         uint8_t *search;
284         size_t search_len;
285
286         // DHCPV6
287         void *dhcpv6_raw;
288         size_t dhcpv6_raw_len;
289         bool dhcpv6_assignall;
290         bool dhcpv6_pd;
291         bool dhcpv6_na;
292
293         char *upstream;
294         size_t upstream_len;
295
296         char *filter_class;
297 };
298
299 extern struct avl_tree interfaces;
300
301 #define RA_MANAGED_NO_MFLAG     0
302 #define RA_MANAGED_MFLAG        1
303 #define RA_MANAGED_NO_AFLAG     2
304
305
306 // Exported main functions
307 int odhcpd_register(struct odhcpd_event *event);
308 int odhcpd_deregister(struct odhcpd_event *event);
309 void odhcpd_process(struct odhcpd_event *event);
310
311 ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest,
312                 struct iovec *iov, size_t iov_len,
313                 const struct interface *iface);
314 int odhcpd_get_interface_dns_addr(const struct interface *iface,
315                 struct in6_addr *addr);
316 int odhcpd_get_interface_config(const char *ifname, const char *what);
317 int odhcpd_get_mac(const struct interface *iface, uint8_t mac[6]);
318 struct interface* odhcpd_get_interface_by_index(int ifindex);
319 struct interface* odhcpd_get_master_interface(void);
320 int odhcpd_urandom(void *data, size_t len);
321
322 void odhcpd_run(void);
323 time_t odhcpd_time(void);
324 ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src);
325 void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len);
326 const char *odhcpd_print_mac(const uint8_t *mac, const size_t len);
327
328 int odhcpd_bmemcmp(const void *av, const void *bv, size_t bits);
329 void odhcpd_bmemcpy(void *av, const void *bv, size_t bits);
330
331 int odhcpd_netmask2bitlen(bool v6, void *mask);
332 bool odhcpd_bitlen2netmask(bool v6, unsigned int bits, void *mask);
333 bool odhcpd_valid_hostname(const char *name);
334
335 int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite);
336 struct lease *config_find_lease_by_duid(const uint8_t *duid, const uint16_t len);
337 struct lease *config_find_lease_by_mac(const uint8_t *mac);
338 struct lease *config_find_lease_by_hostid(const uint32_t hostid);
339 struct lease *config_find_lease_by_ipaddr(const uint32_t ipaddr);
340
341 #ifdef WITH_UBUS
342 int ubus_init(void);
343 const char* ubus_get_ifname(const char *name);
344 void ubus_apply_network(void);
345 bool ubus_has_prefix(const char *name, const char *ifname);
346 void ubus_bcast_dhcp_event(const char *type, const uint8_t *mac, const size_t mac_len,
347                 const struct in_addr *addr, const char *name, const char *interface);
348 #endif
349
350 void dhcpv4_free_assignment(struct dhcp_assignment *a);
351
352 ssize_t dhcpv6_ia_handle_IAs(uint8_t *buf, size_t buflen, struct interface *iface,
353                 const struct sockaddr_in6 *addr, const void *data, const uint8_t *end);
354 int dhcpv6_ia_init(void);
355 int dhcpv6_ia_setup_interface(struct interface *iface, bool enable);
356 void dhcpv6_ia_enum_addrs(struct interface *iface, struct dhcp_assignment *c, time_t now,
357                                 dhcpv6_binding_cb_handler_t func, void *arg);
358 void dhcpv6_ia_write_statefile(void);
359 void dhcpv6_ia_free_assignment(struct dhcp_assignment *c);
360
361 int netlink_add_netevent_handler(struct netevent_handler *hdlr);
362 ssize_t netlink_get_interface_addrs(const int ifindex, bool v6,
363                 struct odhcpd_ipaddr **addrs);
364 int netlink_setup_route(const struct in6_addr *addr, const int prefixlen,
365                 const int ifindex, const struct in6_addr *gw,
366                 const uint32_t metric, const bool add);
367 int netlink_setup_proxy_neigh(const struct in6_addr *addr,
368                 const int ifindex, const bool add);
369 int netlink_setup_addr(struct odhcpd_ipaddr *addr,
370                 const int ifindex, const bool v6, const bool add);
371 void netlink_dump_neigh_table(const bool proxy);
372 void netlink_dump_addr_table(const bool v6);
373
374 // Exported module initializers
375 int netlink_init(void);
376 int router_init(void);
377 int dhcpv6_init(void);
378 int ndp_init(void);
379 #ifdef DHCPV4_SUPPORT
380 int dhcpv4_init(void);
381
382 int dhcpv4_setup_interface(struct interface *iface, bool enable);
383 #endif
384 int router_setup_interface(struct interface *iface, bool enable);
385 int dhcpv6_setup_interface(struct interface *iface, bool enable);
386 int ndp_setup_interface(struct interface *iface, bool enable);
387
388 void odhcpd_reload(void);