dhcpv6-ia: rework reconfigure accept logic
[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
24 #ifndef typeof
25 #define typeof __typeof
26 #endif
27
28 #ifndef container_of
29 #define container_of(ptr, type, member) (           \
30     (type *)( (char *)ptr - offsetof(type,member) ))
31 #endif
32
33 #include <libubox/list.h>
34 #include <libubox/uloop.h>
35
36 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
37
38 // RFC 6106 defines this router advertisement option
39 #define ND_OPT_ROUTE_INFO 24
40 #define ND_OPT_RECURSIVE_DNS 25
41 #define ND_OPT_DNS_SEARCH 31
42
43 #define RELAYD_BUFFER_SIZE 8192
44
45 #define INFINITE_VALID(x) ((x) == 0)
46
47 #define _unused __attribute__((unused))
48 #define _packed __attribute__((packed))
49
50
51 #define ALL_IPV6_NODES {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
52                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}}}
53
54 #define ALL_IPV6_ROUTERS {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
55                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02}}}
56
57 #define IN6_IS_ADDR_ULA(a) (((a)->s6_addr32[0] & htonl(0xfe000000)) == htonl(0xfc000000))
58
59 struct interface;
60 struct nl_sock;
61 extern struct list_head leases;
62
63 struct odhcpd_event {
64         struct uloop_fd uloop;
65         void (*handle_dgram)(void *addr, void *data, size_t len,
66                         struct interface *iface, void *dest_addr);
67         void (*handle_error)(struct odhcpd_event *e, int error);
68         void (*recv_msgs)(struct odhcpd_event *e);
69 };
70
71 union if_addr {
72         struct in_addr in;
73         struct in6_addr in6;
74 };
75
76 struct odhcpd_ipaddr {
77         union if_addr addr;
78         uint8_t prefix;
79         uint32_t preferred;
80         uint32_t valid;
81
82         /* ipv6 only */
83         uint8_t dprefix;
84
85         /* ipv4 only */
86         struct in_addr broadcast;
87 };
88
89 enum odhcpd_mode {
90         RELAYD_DISABLED,
91         RELAYD_SERVER,
92         RELAYD_RELAY,
93         RELAYD_HYBRID
94 };
95
96
97 enum odhcpd_assignment_flags {
98         OAF_BOUND       = (1 << 0),
99         OAF_STATIC      = (1 << 1),
100 };
101
102 struct config {
103         bool legacy;
104         bool main_dhcpv4;
105         char *dhcp_cb;
106         char *dhcp_statefile;
107         int log_level;
108 } config;
109
110
111 struct lease {
112         struct list_head head;
113         struct in_addr ipaddr;
114         uint32_t hostid;
115         struct ether_addr mac;
116         uint16_t duid_len;
117         uint8_t *duid;
118         uint32_t dhcpv4_leasetime;
119         char hostname[];
120 };
121
122
123 struct interface {
124         struct list_head head;
125
126         int ifindex;
127         char *ifname;
128         const char *name;
129
130         // Runtime data
131         struct uloop_timeout timer_rs;
132         struct list_head ia_assignments;
133         struct odhcpd_ipaddr *addr4;
134         size_t addr4_len;
135         struct odhcpd_ipaddr *ia_addr;
136         size_t ia_addr_len;
137
138         // DHCPv4
139         struct odhcpd_event dhcpv6_event;
140         struct odhcpd_event dhcpv4_event;
141         struct odhcpd_event ndp_event;
142         struct list_head dhcpv4_assignments;
143
144         // Managed PD
145         char dhcpv6_pd_manager[128];
146         struct in6_addr dhcpv6_pd_cer;
147
148         // Services
149         enum odhcpd_mode ra;
150         enum odhcpd_mode dhcpv6;
151         enum odhcpd_mode ndp;
152         enum odhcpd_mode dhcpv4;
153
154         // Config
155         bool inuse;
156         bool external;
157         bool master;
158         bool ignore;
159         bool always_rewrite_dns;
160         bool ra_not_onlink;
161         bool ra_advrouter;
162         bool ra_useleasetime;
163         bool no_dynamic_dhcp;
164
165         // RA
166         int learn_routes;
167         int default_router;
168         int ra_managed;
169         int route_preference;
170         int ra_maxinterval;
171         int ra_mininterval;
172         int ra_lifetime;
173         uint32_t ra_reachabletime;
174         uint32_t ra_retranstime;
175         uint32_t ra_hoplimit;
176         int ra_mtu;
177
178         // DHCPv4
179         struct in_addr dhcpv4_start;
180         struct in_addr dhcpv4_end;
181         struct in_addr *dhcpv4_router;
182         size_t dhcpv4_router_cnt;
183         struct in_addr *dhcpv4_dns;
184         size_t dhcpv4_dns_cnt;
185         uint32_t dhcpv4_leasetime;
186
187         // DNS
188         struct in6_addr *dns;
189         size_t dns_cnt;
190         uint8_t *search;
191         size_t search_len;
192
193         // DHCPV6
194         void *dhcpv6_raw;
195         size_t dhcpv6_raw_len;
196         bool dhcpv6_assignall;
197
198         char *upstream;
199         size_t upstream_len;
200
201         char *filter_class;
202 };
203
204 extern struct list_head interfaces;
205
206 #define RA_MANAGED_NO_MFLAG     0
207 #define RA_MANAGED_MFLAG        1
208 #define RA_MANAGED_NO_AFLAG     2
209
210
211 // Exported main functions
212 int odhcpd_register(struct odhcpd_event *event);
213 int odhcpd_deregister(struct odhcpd_event *event);
214 void odhcpd_process(struct odhcpd_event *event);
215
216 struct nl_sock *odhcpd_create_nl_socket(int protocol);
217 ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest,
218                 struct iovec *iov, size_t iov_len,
219                 const struct interface *iface);
220 ssize_t odhcpd_get_interface_addresses(int ifindex, bool v6,
221                 struct odhcpd_ipaddr **addrs);
222 int odhcpd_get_interface_dns_addr(const struct interface *iface,
223                 struct in6_addr *addr);
224 struct interface* odhcpd_get_interface_by_name(const char *name);
225 int odhcpd_get_interface_config(const char *ifname, const char *what);
226 int odhcpd_get_mac(const struct interface *iface, uint8_t mac[6]);
227 struct interface* odhcpd_get_interface_by_index(int ifindex);
228 struct interface* odhcpd_get_master_interface(void);
229 int odhcpd_urandom(void *data, size_t len);
230 int odhcpd_setup_route(const struct in6_addr *addr, const int prefixlen,
231                 const struct interface *iface, const struct in6_addr *gw,
232                 const uint32_t metric, const bool add);
233 int odhcpd_setup_proxy_neigh(const struct in6_addr *addr,
234                 const struct interface *iface, const bool add);
235
236 void odhcpd_run(void);
237 time_t odhcpd_time(void);
238 ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src);
239 void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len);
240
241 int odhcpd_bmemcmp(const void *av, const void *bv, size_t bits);
242 void odhcpd_bmemcpy(void *av, const void *bv, size_t bits);
243
244 int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite);
245
246 #ifdef WITH_UBUS
247 int init_ubus(void);
248 const char* ubus_get_ifname(const char *name);
249 void ubus_apply_network(void);
250 bool ubus_has_prefix(const char *name, const char *ifname);
251 #endif
252
253
254 // Exported module initializers
255 int init_router(void);
256 int init_dhcpv6(void);
257 int init_dhcpv4(void);
258 int init_ndp(void);
259
260 int setup_router_interface(struct interface *iface, bool enable);
261 int setup_dhcpv6_interface(struct interface *iface, bool enable);
262 int setup_ndp_interface(struct interface *iface, bool enable);
263 int setup_dhcpv4_interface(struct interface *iface, bool enable);
264
265 void odhcpd_reload(void);