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