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