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