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