a2ef9f70f973b8ba499462f7c7d19aa4d3df3e4f
[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
61 struct interface;
62 struct nl_sock;
63 extern struct list_head leases;
64
65 struct odhcpd_event {
66 struct uloop_fd uloop;
67 void (*handle_dgram)(void *addr, void *data, size_t len,
68 struct interface *iface, void *dest_addr);
69 void (*handle_error)(int error);
70 };
71
72
73 struct odhcpd_ipaddr {
74 struct in6_addr addr;
75 uint8_t prefix;
76 uint8_t dprefix;
77 uint32_t preferred;
78 uint32_t valid;
79 };
80
81 enum odhcpd_mode {
82 RELAYD_DISABLED,
83 RELAYD_SERVER,
84 RELAYD_RELAY,
85 RELAYD_HYBRID
86 };
87
88
89 enum odhcpd_assignment_flags {
90 OAF_BOUND = (1 << 0),
91 OAF_STATIC = (1 << 1),
92 };
93
94 struct config {
95 bool legacy;
96 char *dhcp_cb;
97 char *dhcp_statefile;
98 } config;
99
100
101 struct lease {
102 struct list_head head;
103 struct in_addr ipaddr;
104 uint32_t hostid;
105 struct ether_addr mac;
106 uint16_t duid_len;
107 uint8_t *duid;
108 uint32_t dhcpv4_leasetime;
109 char hostname[];
110 };
111
112
113 struct interface {
114 struct list_head head;
115
116 int ifindex;
117 char ifname[IF_NAMESIZE];
118 char name[IF_NAMESIZE];
119
120 // Runtime data
121 struct uloop_timeout timer_rs;
122 struct list_head ia_assignments;
123 struct odhcpd_ipaddr ia_addr[RELAYD_MAX_ADDRS];
124 size_t ia_addr_len;
125
126 // DHCPv4
127 struct odhcpd_event dhcpv6_event;
128 struct odhcpd_event dhcpv4_event;
129 struct odhcpd_event ndp_event;
130 struct list_head dhcpv4_assignments;
131
132 // Managed PD
133 char dhcpv6_pd_manager[128];
134 struct in6_addr dhcpv6_pd_cer;
135
136 // Services
137 enum odhcpd_mode ra;
138 enum odhcpd_mode dhcpv6;
139 enum odhcpd_mode ndp;
140 enum odhcpd_mode dhcpv4;
141
142 // Config
143 bool inuse;
144 bool external;
145 bool master;
146 bool ignore;
147 bool always_rewrite_dns;
148 bool ra_not_onlink;
149 bool ra_advrouter;
150 bool no_dynamic_dhcp;
151
152 int learn_routes;
153 int default_router;
154 int managed;
155 int route_preference;
156 int ra_maxinterval;
157
158 // DHCPv4
159 struct in_addr dhcpv4_start;
160 struct in_addr dhcpv4_end;
161 struct in_addr *dhcpv4_router;
162 size_t dhcpv4_router_cnt;
163 struct in_addr *dhcpv4_dns;
164 size_t dhcpv4_dns_cnt;
165 uint32_t dhcpv4_leasetime;
166
167 // DNS
168 struct in6_addr *dns;
169 size_t dns_cnt;
170 uint8_t *search;
171 size_t search_len;
172
173 void *dhcpv6_raw;
174 size_t dhcpv6_raw_len;
175
176 char *upstream;
177 size_t upstream_len;
178
179 char *filter_class;
180 };
181
182 extern struct list_head interfaces;
183
184 #define RELAYD_MANAGED_MFLAG 1
185 #define RELAYD_MANAGED_NO_AFLAG 2
186
187
188 // Exported main functions
189 struct nl_sock *odhcpd_open_rtnl(int protocol, int groups);
190 int odhcpd_register(struct odhcpd_event *event);
191 void odhcpd_process(struct odhcpd_event *event);
192
193 struct nl_sock *odhcpd_create_nl_socket(int protocol, int groups);
194 ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest,
195 struct iovec *iov, size_t iov_len,
196 const struct interface *iface);
197 ssize_t odhcpd_get_interface_addresses(int ifindex,
198 struct odhcpd_ipaddr *addrs, size_t cnt);
199 int odhcpd_get_linklocal_interface_address(int ifindex, struct in6_addr *lladdr);
200 struct interface* odhcpd_get_interface_by_name(const char *name);
201 int odhcpd_get_interface_config(const char *ifname, const char *what);
202 int odhcpd_get_mac(const struct interface *iface, uint8_t mac[6]);
203 struct interface* odhcpd_get_interface_by_index(int ifindex);
204 struct interface* odhcpd_get_master_interface(void);
205 int odhcpd_urandom(void *data, size_t len);
206 int odhcpd_setup_route(const struct in6_addr *addr, int prefixlen,
207 const struct interface *iface, const struct in6_addr *gw,
208 uint32_t metric, bool add);
209
210 void odhcpd_run(void);
211 time_t odhcpd_time(void);
212 ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src);
213 void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len);
214
215 int odhcpd_bmemcmp(const void *av, const void *bv, size_t bits);
216 void odhcpd_bmemcpy(void *av, const void *bv, size_t bits);
217
218 int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite);
219
220 #ifdef WITH_UBUS
221 int init_ubus(void);
222 const char* ubus_get_ifname(const char *name);
223 void ubus_apply_network(void);
224 bool ubus_has_prefix(const char *name, const char *ifname);
225 #endif
226
227
228 // Exported module initializers
229 int init_router(void);
230 int init_dhcpv6(void);
231 int init_dhcpv4(void);
232 int init_ndp(void);
233
234 int setup_router_interface(struct interface *iface, bool enable);
235 int setup_dhcpv6_interface(struct interface *iface, bool enable);
236 int setup_ndp_interface(struct interface *iface, bool enable);
237 int setup_dhcpv4_interface(struct interface *iface, bool enable);
238
239 void odhcpd_reload(void);