netlink: rework handling of netlink messages
[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
27 // RFC 6106 defines this router advertisement option
28 #define ND_OPT_ROUTE_INFO 24
29 #define ND_OPT_RECURSIVE_DNS 25
30 #define ND_OPT_DNS_SEARCH 31
31
32 #define INFINITE_VALID(x) ((x) == 0)
33
34 #define _unused __attribute__((unused))
35 #define _packed __attribute__((packed))
36
37 #define ALL_IPV6_NODES "ff02::1"
38 #define ALL_IPV6_ROUTERS "ff02::2"
39
40 #define IN6_IS_ADDR_ULA(a) (((a)->s6_addr32[0] & htonl(0xfe000000)) == htonl(0xfc000000))
41
42 struct interface;
43 struct nl_sock;
44 extern struct list_head leases;
45
46 struct odhcpd_event {
47         struct uloop_fd uloop;
48         void (*handle_dgram)(void *addr, void *data, size_t len,
49                         struct interface *iface, void *dest_addr);
50         void (*handle_error)(struct odhcpd_event *e, int error);
51         void (*recv_msgs)(struct odhcpd_event *e);
52 };
53
54 union if_addr {
55         struct in_addr in;
56         struct in6_addr in6;
57 };
58
59 struct netevent_handler_info {
60         struct interface *iface;
61         union {
62                 struct {
63                         union if_addr dst;
64                         uint8_t dst_len;
65                         union if_addr gateway;
66                 } rt;
67                 struct {
68                         union if_addr dst;
69                         uint16_t state;
70                         uint8_t flags;
71                 } neigh;
72                 struct {
73                         struct odhcpd_ipaddr *addrs;
74                         size_t len;
75                 } addrs_old;
76                 union if_addr addr;
77         };
78 };
79
80 enum netevents {
81         NETEV_IFINDEX_CHANGE,
82         NETEV_ADDR_ADD,
83         NETEV_ADDR_DEL,
84         NETEV_ADDRLIST_CHANGE,
85         NETEV_ADDR6_ADD,
86         NETEV_ADDR6_DEL,
87         NETEV_ADDR6LIST_CHANGE,
88         NETEV_ROUTE6_ADD,
89         NETEV_ROUTE6_DEL,
90         NETEV_NEIGH6_ADD,
91         NETEV_NEIGH6_DEL,
92 };
93
94 struct netevent_handler {
95         struct list_head head;
96         void (*cb) (unsigned long event, struct netevent_handler_info *info);
97 };
98
99 struct odhcpd_ipaddr {
100         union if_addr addr;
101         uint8_t prefix;
102         uint32_t preferred;
103         uint32_t valid;
104
105         /* ipv6 only */
106         uint8_t dprefix;
107
108         /* ipv4 only */
109         struct in_addr broadcast;
110 };
111
112 enum odhcpd_mode {
113         MODE_DISABLED,
114         MODE_SERVER,
115         MODE_RELAY,
116         MODE_HYBRID
117 };
118
119
120 enum odhcpd_assignment_flags {
121         OAF_TENTATIVE           = (1 << 0),
122         OAF_BOUND               = (1 << 1),
123         OAF_STATIC              = (1 << 2),
124         OAF_BROKEN_HOSTNAME     = (1 << 3),
125 };
126
127 struct config {
128         bool legacy;
129         bool main_dhcpv4;
130         char *dhcp_cb;
131         char *dhcp_statefile;
132         int log_level;
133 } config;
134
135
136 struct lease {
137         struct list_head head;
138         struct in_addr ipaddr;
139         uint32_t hostid;
140         struct ether_addr mac;
141         uint16_t duid_len;
142         uint8_t *duid;
143         uint32_t dhcpv4_leasetime;
144         char hostname[];
145 };
146
147
148 struct interface {
149         struct avl_node avl;
150
151         int ifindex;
152         char *ifname;
153         const char *name;
154
155         // IPv6 runtime data
156         struct odhcpd_ipaddr *addr6;
157         size_t addr6_len;
158
159         // RA runtime data
160         struct uloop_timeout timer_rs;
161
162         // DHCPv6 runtime data
163         struct odhcpd_event dhcpv6_event;
164         struct list_head ia_assignments;
165
166         // NDP runtime data
167         struct odhcpd_event ndp_event;
168
169         // IPv4 runtime data
170         struct odhcpd_ipaddr *addr4;
171         size_t addr4_len;
172
173         // DHCPv4 runtime data
174         struct odhcpd_event dhcpv4_event;
175         struct list_head dhcpv4_assignments;
176         struct list_head dhcpv4_fr_ips;
177
178         // Managed PD
179         char dhcpv6_pd_manager[128];
180         struct in6_addr dhcpv6_pd_cer;
181
182         // Services
183         enum odhcpd_mode ra;
184         enum odhcpd_mode dhcpv6;
185         enum odhcpd_mode ndp;
186         enum odhcpd_mode dhcpv4;
187
188         // Config
189         bool inuse;
190         bool external;
191         bool master;
192         bool ignore;
193         bool always_rewrite_dns;
194         bool ra_not_onlink;
195         bool ra_advrouter;
196         bool ra_useleasetime;
197         bool ra_dns;
198         bool no_dynamic_dhcp;
199         uint8_t pio_filter_length;
200         struct in6_addr pio_filter_addr;
201
202         // RA
203         int learn_routes;
204         int default_router;
205         int ra_managed;
206         int route_preference;
207         int ra_maxinterval;
208         int ra_mininterval;
209         int ra_lifetime;
210         uint32_t ra_reachabletime;
211         uint32_t ra_retranstime;
212         uint32_t ra_hoplimit;
213         int ra_mtu;
214
215         // DHCPv4
216         struct in_addr dhcpv4_start;
217         struct in_addr dhcpv4_end;
218         struct in_addr dhcpv4_start_ip;
219         struct in_addr dhcpv4_end_ip;
220         struct in_addr dhcpv4_local;
221         struct in_addr dhcpv4_bcast;
222         struct in_addr dhcpv4_mask;
223         struct in_addr *dhcpv4_router;
224         size_t dhcpv4_router_cnt;
225         struct in_addr *dhcpv4_dns;
226         size_t dhcpv4_dns_cnt;
227         uint32_t dhcpv4_leasetime;
228         bool dhcpv4_forcereconf;
229
230         // DNS
231         struct in6_addr *dns;
232         size_t dns_cnt;
233         uint8_t *search;
234         size_t search_len;
235
236         // DHCPV6
237         void *dhcpv6_raw;
238         size_t dhcpv6_raw_len;
239         bool dhcpv6_assignall;
240         bool dhcpv6_pd;
241         bool dhcpv6_na;
242
243         char *upstream;
244         size_t upstream_len;
245
246         char *filter_class;
247 };
248
249 extern struct avl_tree interfaces;
250
251 #define RA_MANAGED_NO_MFLAG     0
252 #define RA_MANAGED_MFLAG        1
253 #define RA_MANAGED_NO_AFLAG     2
254
255
256 // Exported main functions
257 int odhcpd_register(struct odhcpd_event *event);
258 int odhcpd_deregister(struct odhcpd_event *event);
259 void odhcpd_process(struct odhcpd_event *event);
260
261 ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest,
262                 struct iovec *iov, size_t iov_len,
263                 const struct interface *iface);
264 int odhcpd_get_interface_dns_addr(const struct interface *iface,
265                 struct in6_addr *addr);
266 int odhcpd_get_interface_config(const char *ifname, const char *what);
267 int odhcpd_get_mac(const struct interface *iface, uint8_t mac[6]);
268 struct interface* odhcpd_get_interface_by_index(int ifindex);
269 struct interface* odhcpd_get_master_interface(void);
270 int odhcpd_urandom(void *data, size_t len);
271
272 void odhcpd_run(void);
273 time_t odhcpd_time(void);
274 ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src);
275 void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len);
276 const char *odhcpd_print_mac(const uint8_t *mac, const size_t len);
277
278 int odhcpd_bmemcmp(const void *av, const void *bv, size_t bits);
279 void odhcpd_bmemcpy(void *av, const void *bv, size_t bits);
280
281 int odhcpd_netmask2bitlen(bool v6, void *mask);
282 bool odhcpd_bitlen2netmask(bool v6, unsigned int bits, void *mask);
283 bool odhcpd_valid_hostname(const char *name);
284
285 int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite);
286
287 #ifdef WITH_UBUS
288 int ubus_init(void);
289 const char* ubus_get_ifname(const char *name);
290 void ubus_apply_network(void);
291 bool ubus_has_prefix(const char *name, const char *ifname);
292 void ubus_bcast_dhcp_event(const char *type, const uint8_t *mac, const size_t mac_len,
293                 const struct in_addr *addr, const char *name, const char *interface);
294 #endif
295
296 int netlink_add_netevent_handler(struct netevent_handler *hdlr);
297 ssize_t netlink_get_interface_addrs(const int ifindex, bool v6,
298                 struct odhcpd_ipaddr **addrs);
299 int netlink_setup_route(const struct in6_addr *addr, const int prefixlen,
300                 const int ifindex, const struct in6_addr *gw,
301                 const uint32_t metric, const bool add);
302 int netlink_setup_proxy_neigh(const struct in6_addr *addr,
303                 const int ifindex, const bool add);
304 int netlink_setup_addr(struct odhcpd_ipaddr *addr,
305                 const int ifindex, const bool v6, const bool add);
306 void netlink_dump_neigh_table(const bool proxy);
307 void netlink_dump_addr_table(const bool v6);
308
309 // Exported module initializers
310 int netlink_init(void);
311 int router_init(void);
312 int dhcpv6_init(void);
313 int ndp_init(void);
314 #ifdef DHCPV4_SUPPORT
315 int dhcpv4_init(void);
316
317 int dhcpv4_setup_interface(struct interface *iface, bool enable);
318 #endif
319 int router_setup_interface(struct interface *iface, bool enable);
320 int dhcpv6_setup_interface(struct interface *iface, bool enable);
321 int ndp_setup_interface(struct interface *iface, bool enable);
322
323 void odhcpd_reload(void);